├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ ├── docs.yml │ ├── feature_request.yml │ └── other.yml ├── PULL_REQUEST_TEMPLATE │ └── PULL_REQUEST_TEMPLATE.md └── workflows │ └── release.yml ├── .gitignore ├── .releaserc.js ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── docs ├── SDKs │ ├── _category_.json │ ├── alchemysdk.md │ ├── moralis.md │ ├── sdks.md │ └── thirdweb.md ├── blockchains │ ├── _category_.json │ ├── blockchains.md │ ├── ethereum.md │ ├── polygon.md │ └── solana.md ├── courses │ ├── _category_.json │ ├── alchemy.md │ ├── courses.md │ ├── cryptozombies.md │ ├── cyfrinupdraft.md │ └── learnweb3.md ├── cross-chain │ ├── _category_.json │ ├── axelar.md │ └── cross-chain.md ├── data-network │ ├── _category_.json │ ├── ceramic.md │ └── data-networks.md ├── file-storage │ ├── _category_.json │ ├── arweave.md │ ├── file-storage.md │ ├── filecoin.md │ ├── ipfs.md │ └── swarm.md ├── identity │ ├── _category_.json │ ├── identity.md │ ├── metamask.md │ ├── phantom.md │ └── walletconect.md ├── indexing │ ├── _category_.json │ ├── indexing.md │ └── thegraph.md ├── libraries │ ├── _category_.json │ ├── ethersjs.md │ ├── libraries.md │ ├── web3js.md │ └── web3py.md ├── node-providers │ ├── Alchemy.md │ ├── ChainConnect.md │ ├── Chainstack.md │ ├── Infura.md │ ├── Quicknode.md │ ├── _category_.json │ └── node-providers.md ├── notification │ ├── _category_.json │ ├── notification.md │ ├── pushprotocol.md │ └── webhooks.md ├── oracles │ ├── _category_.json │ ├── chainlink.md │ ├── flux.md │ └── oracles.md └── roadmap │ ├── _category_.json │ └── introduction.md ├── docusaurus.config.js ├── package.json ├── sidebars.js ├── src ├── components │ └── HomepageFeatures │ │ ├── index.js │ │ └── styles.module.css ├── css │ └── custom.css ├── pages │ ├── index.js │ └── index.module.css └── resources │ ├── Open-Source │ ├── _category_.json │ └── oss.md │ ├── Project Ideas │ ├── _category_.json │ └── project-ideas.md │ ├── Solidity │ ├── _category_.json │ └── intro-to-solidity.md │ ├── code-snippets │ ├── ERC1155Token.sol │ ├── ERC20Token.sol │ ├── ERC721Token.sol │ ├── EnglishAuction.sol │ ├── PiggyBank.sol │ ├── Transactions.sol │ ├── Weth.sol │ └── functsolidity.sol │ ├── dao-communities │ ├── _category_.json │ └── daos.md │ ├── nft-marketplaces │ ├── _category_.json │ └── nftmarketplaces.md │ ├── presentations │ ├── FINALHOW TO LEARN WEB3.pdf │ ├── HOW TO LEARN WEB3.pdf │ └── SLIDES_IntroToSolidity.pdf │ ├── twitterposts.md │ └── youtube-tutorials │ ├── yt-english.md │ └── yt-hindi-urdu.md └── static ├── .nojekyll ├── favicon-blue.ico ├── favicon.ico ├── fb-twitter-banner.png ├── free web3 resources.png ├── img ├── favicon-blue.ico ├── fw3-blue-logo-squared.png ├── icons │ ├── beginner.svg │ ├── blockchains.svg │ ├── cross-chain.svg │ ├── ethereum.svg │ ├── filestorage.svg │ ├── girl-graduated.svg │ ├── gps.svg │ ├── gradhat2.svg │ ├── identity.svg │ ├── identity2.svg │ ├── indexing.svg │ ├── layers.svg │ ├── links.svg │ ├── nodes.svg │ ├── notification.svg │ ├── onoff.svg │ ├── package.svg │ ├── roadmap.svg │ ├── roadmap2.svg │ ├── rocket.svg │ ├── sdks.svg │ ├── sunglasses.svg │ └── sunglasses2.svg ├── undraw_docusaurus_mountain.svg ├── undraw_docusaurus_react.svg └── undraw_docusaurus_tree.svg └── polygon.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/.github/ISSUE_TEMPLATE/docs.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/.github/ISSUE_TEMPLATE/other.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/.releaserc.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/SDKs/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/SDKs/_category_.json -------------------------------------------------------------------------------- /docs/SDKs/alchemysdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/SDKs/alchemysdk.md -------------------------------------------------------------------------------- /docs/SDKs/moralis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/SDKs/moralis.md -------------------------------------------------------------------------------- /docs/SDKs/sdks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/SDKs/sdks.md -------------------------------------------------------------------------------- /docs/SDKs/thirdweb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/SDKs/thirdweb.md -------------------------------------------------------------------------------- /docs/blockchains/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/blockchains/_category_.json -------------------------------------------------------------------------------- /docs/blockchains/blockchains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/blockchains/blockchains.md -------------------------------------------------------------------------------- /docs/blockchains/ethereum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/blockchains/ethereum.md -------------------------------------------------------------------------------- /docs/blockchains/polygon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/blockchains/polygon.md -------------------------------------------------------------------------------- /docs/blockchains/solana.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/blockchains/solana.md -------------------------------------------------------------------------------- /docs/courses/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/courses/_category_.json -------------------------------------------------------------------------------- /docs/courses/alchemy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/courses/alchemy.md -------------------------------------------------------------------------------- /docs/courses/courses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/courses/courses.md -------------------------------------------------------------------------------- /docs/courses/cryptozombies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/courses/cryptozombies.md -------------------------------------------------------------------------------- /docs/courses/cyfrinupdraft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/courses/cyfrinupdraft.md -------------------------------------------------------------------------------- /docs/courses/learnweb3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/courses/learnweb3.md -------------------------------------------------------------------------------- /docs/cross-chain/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/cross-chain/_category_.json -------------------------------------------------------------------------------- /docs/cross-chain/axelar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/cross-chain/axelar.md -------------------------------------------------------------------------------- /docs/cross-chain/cross-chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/cross-chain/cross-chain.md -------------------------------------------------------------------------------- /docs/data-network/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/data-network/_category_.json -------------------------------------------------------------------------------- /docs/data-network/ceramic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/data-network/ceramic.md -------------------------------------------------------------------------------- /docs/data-network/data-networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/data-network/data-networks.md -------------------------------------------------------------------------------- /docs/file-storage/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/file-storage/_category_.json -------------------------------------------------------------------------------- /docs/file-storage/arweave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/file-storage/arweave.md -------------------------------------------------------------------------------- /docs/file-storage/file-storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/file-storage/file-storage.md -------------------------------------------------------------------------------- /docs/file-storage/filecoin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/file-storage/filecoin.md -------------------------------------------------------------------------------- /docs/file-storage/ipfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/file-storage/ipfs.md -------------------------------------------------------------------------------- /docs/file-storage/swarm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/file-storage/swarm.md -------------------------------------------------------------------------------- /docs/identity/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/identity/_category_.json -------------------------------------------------------------------------------- /docs/identity/identity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/identity/identity.md -------------------------------------------------------------------------------- /docs/identity/metamask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/identity/metamask.md -------------------------------------------------------------------------------- /docs/identity/phantom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/identity/phantom.md -------------------------------------------------------------------------------- /docs/identity/walletconect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/identity/walletconect.md -------------------------------------------------------------------------------- /docs/indexing/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/indexing/_category_.json -------------------------------------------------------------------------------- /docs/indexing/indexing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/indexing/indexing.md -------------------------------------------------------------------------------- /docs/indexing/thegraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/indexing/thegraph.md -------------------------------------------------------------------------------- /docs/libraries/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/libraries/_category_.json -------------------------------------------------------------------------------- /docs/libraries/ethersjs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/libraries/ethersjs.md -------------------------------------------------------------------------------- /docs/libraries/libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/libraries/libraries.md -------------------------------------------------------------------------------- /docs/libraries/web3js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/libraries/web3js.md -------------------------------------------------------------------------------- /docs/libraries/web3py.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/libraries/web3py.md -------------------------------------------------------------------------------- /docs/node-providers/Alchemy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/node-providers/Alchemy.md -------------------------------------------------------------------------------- /docs/node-providers/ChainConnect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/node-providers/ChainConnect.md -------------------------------------------------------------------------------- /docs/node-providers/Chainstack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/node-providers/Chainstack.md -------------------------------------------------------------------------------- /docs/node-providers/Infura.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/node-providers/Infura.md -------------------------------------------------------------------------------- /docs/node-providers/Quicknode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/node-providers/Quicknode.md -------------------------------------------------------------------------------- /docs/node-providers/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/node-providers/_category_.json -------------------------------------------------------------------------------- /docs/node-providers/node-providers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/node-providers/node-providers.md -------------------------------------------------------------------------------- /docs/notification/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/notification/_category_.json -------------------------------------------------------------------------------- /docs/notification/notification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/notification/notification.md -------------------------------------------------------------------------------- /docs/notification/pushprotocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/notification/pushprotocol.md -------------------------------------------------------------------------------- /docs/notification/webhooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/notification/webhooks.md -------------------------------------------------------------------------------- /docs/oracles/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/oracles/_category_.json -------------------------------------------------------------------------------- /docs/oracles/chainlink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/oracles/chainlink.md -------------------------------------------------------------------------------- /docs/oracles/flux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/oracles/flux.md -------------------------------------------------------------------------------- /docs/oracles/oracles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/oracles/oracles.md -------------------------------------------------------------------------------- /docs/roadmap/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/roadmap/_category_.json -------------------------------------------------------------------------------- /docs/roadmap/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docs/roadmap/introduction.md -------------------------------------------------------------------------------- /docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/docusaurus.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/package.json -------------------------------------------------------------------------------- /sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/sidebars.js -------------------------------------------------------------------------------- /src/components/HomepageFeatures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/components/HomepageFeatures/index.js -------------------------------------------------------------------------------- /src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/css/custom.css -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/pages/index.module.css -------------------------------------------------------------------------------- /src/resources/Open-Source/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/Open-Source/_category_.json -------------------------------------------------------------------------------- /src/resources/Open-Source/oss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/Open-Source/oss.md -------------------------------------------------------------------------------- /src/resources/Project Ideas/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/Project Ideas/_category_.json -------------------------------------------------------------------------------- /src/resources/Project Ideas/project-ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/Project Ideas/project-ideas.md -------------------------------------------------------------------------------- /src/resources/Solidity/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/Solidity/_category_.json -------------------------------------------------------------------------------- /src/resources/Solidity/intro-to-solidity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/Solidity/intro-to-solidity.md -------------------------------------------------------------------------------- /src/resources/code-snippets/ERC1155Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/code-snippets/ERC1155Token.sol -------------------------------------------------------------------------------- /src/resources/code-snippets/ERC20Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/code-snippets/ERC20Token.sol -------------------------------------------------------------------------------- /src/resources/code-snippets/ERC721Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/code-snippets/ERC721Token.sol -------------------------------------------------------------------------------- /src/resources/code-snippets/EnglishAuction.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/code-snippets/EnglishAuction.sol -------------------------------------------------------------------------------- /src/resources/code-snippets/PiggyBank.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/code-snippets/PiggyBank.sol -------------------------------------------------------------------------------- /src/resources/code-snippets/Transactions.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/code-snippets/Transactions.sol -------------------------------------------------------------------------------- /src/resources/code-snippets/Weth.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/code-snippets/Weth.sol -------------------------------------------------------------------------------- /src/resources/code-snippets/functsolidity.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/code-snippets/functsolidity.sol -------------------------------------------------------------------------------- /src/resources/dao-communities/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/dao-communities/_category_.json -------------------------------------------------------------------------------- /src/resources/dao-communities/daos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/dao-communities/daos.md -------------------------------------------------------------------------------- /src/resources/nft-marketplaces/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/nft-marketplaces/_category_.json -------------------------------------------------------------------------------- /src/resources/nft-marketplaces/nftmarketplaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/nft-marketplaces/nftmarketplaces.md -------------------------------------------------------------------------------- /src/resources/presentations/FINALHOW TO LEARN WEB3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/presentations/FINALHOW TO LEARN WEB3.pdf -------------------------------------------------------------------------------- /src/resources/presentations/HOW TO LEARN WEB3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/presentations/HOW TO LEARN WEB3.pdf -------------------------------------------------------------------------------- /src/resources/presentations/SLIDES_IntroToSolidity.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/presentations/SLIDES_IntroToSolidity.pdf -------------------------------------------------------------------------------- /src/resources/twitterposts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/twitterposts.md -------------------------------------------------------------------------------- /src/resources/youtube-tutorials/yt-english.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/youtube-tutorials/yt-english.md -------------------------------------------------------------------------------- /src/resources/youtube-tutorials/yt-hindi-urdu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/src/resources/youtube-tutorials/yt-hindi-urdu.md -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/favicon-blue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/favicon-blue.ico -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/fb-twitter-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/fb-twitter-banner.png -------------------------------------------------------------------------------- /static/free web3 resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/free web3 resources.png -------------------------------------------------------------------------------- /static/img/favicon-blue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/favicon-blue.ico -------------------------------------------------------------------------------- /static/img/fw3-blue-logo-squared.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/fw3-blue-logo-squared.png -------------------------------------------------------------------------------- /static/img/icons/beginner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/icons/beginner.svg -------------------------------------------------------------------------------- /static/img/icons/blockchains.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/icons/blockchains.svg -------------------------------------------------------------------------------- /static/img/icons/cross-chain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/icons/cross-chain.svg -------------------------------------------------------------------------------- /static/img/icons/ethereum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/icons/ethereum.svg -------------------------------------------------------------------------------- /static/img/icons/filestorage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/icons/filestorage.svg -------------------------------------------------------------------------------- /static/img/icons/girl-graduated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/icons/girl-graduated.svg -------------------------------------------------------------------------------- /static/img/icons/gps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/icons/gps.svg -------------------------------------------------------------------------------- /static/img/icons/gradhat2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/icons/gradhat2.svg -------------------------------------------------------------------------------- /static/img/icons/identity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/icons/identity.svg -------------------------------------------------------------------------------- /static/img/icons/identity2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/icons/identity2.svg -------------------------------------------------------------------------------- /static/img/icons/indexing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/icons/indexing.svg -------------------------------------------------------------------------------- /static/img/icons/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/icons/layers.svg -------------------------------------------------------------------------------- /static/img/icons/links.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/icons/links.svg -------------------------------------------------------------------------------- /static/img/icons/nodes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/icons/nodes.svg -------------------------------------------------------------------------------- /static/img/icons/notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/icons/notification.svg -------------------------------------------------------------------------------- /static/img/icons/onoff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/icons/onoff.svg -------------------------------------------------------------------------------- /static/img/icons/package.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/icons/package.svg -------------------------------------------------------------------------------- /static/img/icons/roadmap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/icons/roadmap.svg -------------------------------------------------------------------------------- /static/img/icons/roadmap2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/icons/roadmap2.svg -------------------------------------------------------------------------------- /static/img/icons/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/icons/rocket.svg -------------------------------------------------------------------------------- /static/img/icons/sdks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/icons/sdks.svg -------------------------------------------------------------------------------- /static/img/icons/sunglasses.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/icons/sunglasses.svg -------------------------------------------------------------------------------- /static/img/icons/sunglasses2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/icons/sunglasses2.svg -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /static/polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/free-Web3-resources/HEAD/static/polygon.png --------------------------------------------------------------------------------