├── .gitattributes ├── .github └── workflows │ ├── add-to-devrel.yml │ └── tests.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── LICENSE-APACHE ├── README.md ├── rust-toolchain.toml ├── src └── lib.rs └── tests ├── common.rs ├── contracts └── defi │ ├── Cargo.lock │ ├── Cargo.toml │ ├── res │ └── defi.wasm │ └── src │ └── lib.rs ├── storage.rs ├── supply.rs └── transfer.rs /.gitattributes: -------------------------------------------------------------------------------- 1 | Cargo.lock -diff 2 | -------------------------------------------------------------------------------- /.github/workflows/add-to-devrel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-examples/FT/HEAD/.github/workflows/add-to-devrel.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-examples/FT/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-examples/FT/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-examples/FT/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-examples/FT/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-examples/FT/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-examples/FT/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-examples/FT/HEAD/README.md -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-examples/FT/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-examples/FT/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-examples/FT/HEAD/tests/common.rs -------------------------------------------------------------------------------- /tests/contracts/defi/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-examples/FT/HEAD/tests/contracts/defi/Cargo.lock -------------------------------------------------------------------------------- /tests/contracts/defi/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-examples/FT/HEAD/tests/contracts/defi/Cargo.toml -------------------------------------------------------------------------------- /tests/contracts/defi/res/defi.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-examples/FT/HEAD/tests/contracts/defi/res/defi.wasm -------------------------------------------------------------------------------- /tests/contracts/defi/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-examples/FT/HEAD/tests/contracts/defi/src/lib.rs -------------------------------------------------------------------------------- /tests/storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-examples/FT/HEAD/tests/storage.rs -------------------------------------------------------------------------------- /tests/supply.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-examples/FT/HEAD/tests/supply.rs -------------------------------------------------------------------------------- /tests/transfer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near-examples/FT/HEAD/tests/transfer.rs --------------------------------------------------------------------------------