├── .github ├── labels.json └── workflows │ └── issue-label.yml ├── .gitignore ├── Bitcoin └── README.md ├── Celo └── README.md ├── Chainlink └── README.md ├── DigitalBits └── README.md ├── Ethereum ├── BANK │ ├── Bank.sol │ └── README.md ├── ERC-20 │ ├── README.md │ ├── TokenSwap.sol │ └── images │ │ └── functions.png ├── ERC-721 │ ├── ERC721.sol │ └── README.md ├── README.md └── TextBasedNFT │ ├── README.md │ ├── TextBasedNFT.sol │ └── images │ ├── functions.png │ ├── mintNft.png │ └── tokenURI.png ├── Filecoin └── README.md ├── HyperledgerFabric └── README.md ├── HyperledgerIroha └── README.md ├── IPFS └── README.md ├── Near └── README.md ├── Neo └── README.md ├── Pinata ├── README.md └── UnpinScript │ ├── ReadMe.md │ └── unpin.js ├── Project_Details_Template.md ├── README.md ├── Ripple └── README.md ├── Solana └── README.md ├── Stack └── README.md ├── Stellar └── README.md ├── Tezos └── README.md ├── Theta └── README.md ├── pull_request_template.md └── shardeum └── README.md /.github/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theblockchainchief/web3-hub/HEAD/.github/labels.json -------------------------------------------------------------------------------- /.github/workflows/issue-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theblockchainchief/web3-hub/HEAD/.github/workflows/issue-label.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theblockchainchief/web3-hub/HEAD/.gitignore -------------------------------------------------------------------------------- /Bitcoin/README.md: -------------------------------------------------------------------------------- 1 | # web3-hub -------------------------------------------------------------------------------- /Celo/README.md: -------------------------------------------------------------------------------- 1 | # web3-hub -------------------------------------------------------------------------------- /Chainlink/README.md: -------------------------------------------------------------------------------- 1 | # web3-hub -------------------------------------------------------------------------------- /DigitalBits/README.md: -------------------------------------------------------------------------------- 1 | # web3-hub -------------------------------------------------------------------------------- /Ethereum/BANK/Bank.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theblockchainchief/web3-hub/HEAD/Ethereum/BANK/Bank.sol -------------------------------------------------------------------------------- /Ethereum/BANK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theblockchainchief/web3-hub/HEAD/Ethereum/BANK/README.md -------------------------------------------------------------------------------- /Ethereum/ERC-20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theblockchainchief/web3-hub/HEAD/Ethereum/ERC-20/README.md -------------------------------------------------------------------------------- /Ethereum/ERC-20/TokenSwap.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theblockchainchief/web3-hub/HEAD/Ethereum/ERC-20/TokenSwap.sol -------------------------------------------------------------------------------- /Ethereum/ERC-20/images/functions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theblockchainchief/web3-hub/HEAD/Ethereum/ERC-20/images/functions.png -------------------------------------------------------------------------------- /Ethereum/ERC-721/ERC721.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theblockchainchief/web3-hub/HEAD/Ethereum/ERC-721/ERC721.sol -------------------------------------------------------------------------------- /Ethereum/ERC-721/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theblockchainchief/web3-hub/HEAD/Ethereum/ERC-721/README.md -------------------------------------------------------------------------------- /Ethereum/README.md: -------------------------------------------------------------------------------- 1 | # web3-hub -------------------------------------------------------------------------------- /Ethereum/TextBasedNFT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theblockchainchief/web3-hub/HEAD/Ethereum/TextBasedNFT/README.md -------------------------------------------------------------------------------- /Ethereum/TextBasedNFT/TextBasedNFT.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theblockchainchief/web3-hub/HEAD/Ethereum/TextBasedNFT/TextBasedNFT.sol -------------------------------------------------------------------------------- /Ethereum/TextBasedNFT/images/functions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theblockchainchief/web3-hub/HEAD/Ethereum/TextBasedNFT/images/functions.png -------------------------------------------------------------------------------- /Ethereum/TextBasedNFT/images/mintNft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theblockchainchief/web3-hub/HEAD/Ethereum/TextBasedNFT/images/mintNft.png -------------------------------------------------------------------------------- /Ethereum/TextBasedNFT/images/tokenURI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theblockchainchief/web3-hub/HEAD/Ethereum/TextBasedNFT/images/tokenURI.png -------------------------------------------------------------------------------- /Filecoin/README.md: -------------------------------------------------------------------------------- 1 | # web3-hub -------------------------------------------------------------------------------- /HyperledgerFabric/README.md: -------------------------------------------------------------------------------- 1 | # web3-hub -------------------------------------------------------------------------------- /HyperledgerIroha/README.md: -------------------------------------------------------------------------------- 1 | # web3-hub -------------------------------------------------------------------------------- /IPFS/README.md: -------------------------------------------------------------------------------- 1 | # web3-hub -------------------------------------------------------------------------------- /Near/README.md: -------------------------------------------------------------------------------- 1 | # web3-hub -------------------------------------------------------------------------------- /Neo/README.md: -------------------------------------------------------------------------------- 1 | # web3-hub -------------------------------------------------------------------------------- /Pinata/README.md: -------------------------------------------------------------------------------- 1 | # web3-hub -------------------------------------------------------------------------------- /Pinata/UnpinScript/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theblockchainchief/web3-hub/HEAD/Pinata/UnpinScript/ReadMe.md -------------------------------------------------------------------------------- /Pinata/UnpinScript/unpin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theblockchainchief/web3-hub/HEAD/Pinata/UnpinScript/unpin.js -------------------------------------------------------------------------------- /Project_Details_Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theblockchainchief/web3-hub/HEAD/Project_Details_Template.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theblockchainchief/web3-hub/HEAD/README.md -------------------------------------------------------------------------------- /Ripple/README.md: -------------------------------------------------------------------------------- 1 | # web3-hub -------------------------------------------------------------------------------- /Solana/README.md: -------------------------------------------------------------------------------- 1 | # web3-hub -------------------------------------------------------------------------------- /Stack/README.md: -------------------------------------------------------------------------------- 1 | # web3-hub -------------------------------------------------------------------------------- /Stellar/README.md: -------------------------------------------------------------------------------- 1 | # web3-hub -------------------------------------------------------------------------------- /Tezos/README.md: -------------------------------------------------------------------------------- 1 | # web3-hub -------------------------------------------------------------------------------- /Theta/README.md: -------------------------------------------------------------------------------- 1 | # web3-hub -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theblockchainchief/web3-hub/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /shardeum/README.md: -------------------------------------------------------------------------------- 1 | # web3-hub --------------------------------------------------------------------------------