├── .gitignore ├── Cargo.toml ├── LICENSE ├── Makefile.toml ├── README.md ├── rust-toolchain.toml └── src ├── contract.rs └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | Cargo.lock 4 | 5 | /neardev 6 | /target 7 | /deploy 8 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEARFoundation/near-smart-contract-rust-template/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEARFoundation/near-smart-contract-rust-template/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEARFoundation/near-smart-contract-rust-template/HEAD/Makefile.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEARFoundation/near-smart-contract-rust-template/HEAD/README.md -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "1.77.2" 3 | -------------------------------------------------------------------------------- /src/contract.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEARFoundation/near-smart-contract-rust-template/HEAD/src/contract.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEARFoundation/near-smart-contract-rust-template/HEAD/src/lib.rs --------------------------------------------------------------------------------