├── .gitignore ├── README.md ├── examples ├── 1_accounts.js ├── 2_read_smart_contract.js ├── 3_send_signed_transaction.js ├── 4_write_contract.js ├── 5_contract_event_stream.js └── 6_inspecting_blocks.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/ethers_examples/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/ethers_examples/HEAD/README.md -------------------------------------------------------------------------------- /examples/1_accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/ethers_examples/HEAD/examples/1_accounts.js -------------------------------------------------------------------------------- /examples/2_read_smart_contract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/ethers_examples/HEAD/examples/2_read_smart_contract.js -------------------------------------------------------------------------------- /examples/3_send_signed_transaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/ethers_examples/HEAD/examples/3_send_signed_transaction.js -------------------------------------------------------------------------------- /examples/4_write_contract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/ethers_examples/HEAD/examples/4_write_contract.js -------------------------------------------------------------------------------- /examples/5_contract_event_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/ethers_examples/HEAD/examples/5_contract_event_stream.js -------------------------------------------------------------------------------- /examples/6_inspecting_blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/ethers_examples/HEAD/examples/6_inspecting_blocks.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/ethers_examples/HEAD/package.json --------------------------------------------------------------------------------