├── .cargo └── config ├── .gitignore ├── .travis.yml ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── compiled ├── TokenContract.json ├── token-deployed.wasm └── token.wasm ├── contract ├── Cargo.toml └── src │ └── lib.rs ├── rust-toolchain ├── src └── token.rs └── wasm-install.sh /.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/pwasm-token-example/HEAD/.cargo/config -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | **/*.rs.bk 3 | .vscode 4 | contract/Cargo.lock 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/pwasm-token-example/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/pwasm-token-example/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/pwasm-token-example/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/pwasm-token-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/pwasm-token-example/HEAD/README.md -------------------------------------------------------------------------------- /compiled/TokenContract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/pwasm-token-example/HEAD/compiled/TokenContract.json -------------------------------------------------------------------------------- /compiled/token-deployed.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/pwasm-token-example/HEAD/compiled/token-deployed.wasm -------------------------------------------------------------------------------- /compiled/token.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/pwasm-token-example/HEAD/compiled/token.wasm -------------------------------------------------------------------------------- /contract/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/pwasm-token-example/HEAD/contract/Cargo.toml -------------------------------------------------------------------------------- /contract/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/pwasm-token-example/HEAD/contract/src/lib.rs -------------------------------------------------------------------------------- /rust-toolchain: -------------------------------------------------------------------------------- 1 | nightly-2019-03-05 -------------------------------------------------------------------------------- /src/token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/pwasm-token-example/HEAD/src/token.rs -------------------------------------------------------------------------------- /wasm-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openethereum/pwasm-token-example/HEAD/wasm-install.sh --------------------------------------------------------------------------------