├── .gitignore ├── .prettierignore ├── 00-connect-to-blockchain.html ├── 01-read-address-data.html ├── 02-connect-to-contracts.html ├── 03-using-ens.html ├── 04-ercs.html ├── 05-example-app.html ├── 06-public-and-private-keys.html ├── 07-externally-owned-accounts.html ├── 08-crypto-wallet-setup.html ├── 09-test-networks.html ├── README.md ├── boilerplate ├── editor.js └── style.css ├── example_app.html ├── images ├── blockchain-connection-ethersjs.png ├── blockchain-connection.png ├── ecc-keys.png ├── encryption.png ├── ethereum-ecosystem.png ├── externally-owned-account.png └── signature.png └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.html -------------------------------------------------------------------------------- /00-connect-to-blockchain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-is/web3-from-zero/HEAD/00-connect-to-blockchain.html -------------------------------------------------------------------------------- /01-read-address-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-is/web3-from-zero/HEAD/01-read-address-data.html -------------------------------------------------------------------------------- /02-connect-to-contracts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-is/web3-from-zero/HEAD/02-connect-to-contracts.html -------------------------------------------------------------------------------- /03-using-ens.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-is/web3-from-zero/HEAD/03-using-ens.html -------------------------------------------------------------------------------- /04-ercs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-is/web3-from-zero/HEAD/04-ercs.html -------------------------------------------------------------------------------- /05-example-app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-is/web3-from-zero/HEAD/05-example-app.html -------------------------------------------------------------------------------- /06-public-and-private-keys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-is/web3-from-zero/HEAD/06-public-and-private-keys.html -------------------------------------------------------------------------------- /07-externally-owned-accounts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-is/web3-from-zero/HEAD/07-externally-owned-accounts.html -------------------------------------------------------------------------------- /08-crypto-wallet-setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-is/web3-from-zero/HEAD/08-crypto-wallet-setup.html -------------------------------------------------------------------------------- /09-test-networks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-is/web3-from-zero/HEAD/09-test-networks.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-is/web3-from-zero/HEAD/README.md -------------------------------------------------------------------------------- /boilerplate/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-is/web3-from-zero/HEAD/boilerplate/editor.js -------------------------------------------------------------------------------- /boilerplate/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-is/web3-from-zero/HEAD/boilerplate/style.css -------------------------------------------------------------------------------- /example_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-is/web3-from-zero/HEAD/example_app.html -------------------------------------------------------------------------------- /images/blockchain-connection-ethersjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-is/web3-from-zero/HEAD/images/blockchain-connection-ethersjs.png -------------------------------------------------------------------------------- /images/blockchain-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-is/web3-from-zero/HEAD/images/blockchain-connection.png -------------------------------------------------------------------------------- /images/ecc-keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-is/web3-from-zero/HEAD/images/ecc-keys.png -------------------------------------------------------------------------------- /images/encryption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-is/web3-from-zero/HEAD/images/encryption.png -------------------------------------------------------------------------------- /images/ethereum-ecosystem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-is/web3-from-zero/HEAD/images/ethereum-ecosystem.png -------------------------------------------------------------------------------- /images/externally-owned-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-is/web3-from-zero/HEAD/images/externally-owned-account.png -------------------------------------------------------------------------------- /images/signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-is/web3-from-zero/HEAD/images/signature.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-is/web3-from-zero/HEAD/package.json --------------------------------------------------------------------------------