├── .gitignore ├── LICENSE ├── Move.toml └── sources ├── nftango.move └── nftango_test.move /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | storage/ 3 | .idea/ 4 | .aptos/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBaadal/nftango/HEAD/LICENSE -------------------------------------------------------------------------------- /Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBaadal/nftango/HEAD/Move.toml -------------------------------------------------------------------------------- /sources/nftango.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBaadal/nftango/HEAD/sources/nftango.move -------------------------------------------------------------------------------- /sources/nftango_test.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBaadal/nftango/HEAD/sources/nftango_test.move --------------------------------------------------------------------------------