├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md └── src ├── erc20_abi.json └── main.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .env -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmsdev82/rust-web3-basics-tutorial/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmsdev82/rust-web3-basics-tutorial/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmsdev82/rust-web3-basics-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /src/erc20_abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmsdev82/rust-web3-basics-tutorial/HEAD/src/erc20_abi.json -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmsdev82/rust-web3-basics-tutorial/HEAD/src/main.rs --------------------------------------------------------------------------------