├── .gitignore ├── LICENSE ├── README.md ├── func ├── build │ ├── nft-collection-code.fif │ ├── nft-item-code.fif │ ├── print-hex.fif │ └── root-dns-code.fif ├── compile.sh ├── dns-utils.fc ├── nft-collection.fc ├── nft-item.fc ├── op-codes.fc ├── params.fc ├── root-dns.fc └── stdlib.fc ├── test.sh └── test ├── collection-config.js ├── collection-get.js ├── collection.js ├── funcer.js ├── item-already-init.js ├── item-bid-prolong.js ├── item-bid.js ├── item-config-transfer.js ├── item-config.js ├── item-delete-record.js ├── item-edit-record.js ├── item-fill-up.js ├── item-finish-auction-change-content.js ├── item-get-static-data.js ├── item-get.js ├── item-loss.js ├── item-transfer.js ├── item.js ├── root.js └── utils.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/README.md -------------------------------------------------------------------------------- /func/build/nft-collection-code.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/func/build/nft-collection-code.fif -------------------------------------------------------------------------------- /func/build/nft-item-code.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/func/build/nft-item-code.fif -------------------------------------------------------------------------------- /func/build/print-hex.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/func/build/print-hex.fif -------------------------------------------------------------------------------- /func/build/root-dns-code.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/func/build/root-dns-code.fif -------------------------------------------------------------------------------- /func/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/func/compile.sh -------------------------------------------------------------------------------- /func/dns-utils.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/func/dns-utils.fc -------------------------------------------------------------------------------- /func/nft-collection.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/func/nft-collection.fc -------------------------------------------------------------------------------- /func/nft-item.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/func/nft-item.fc -------------------------------------------------------------------------------- /func/op-codes.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/func/op-codes.fc -------------------------------------------------------------------------------- /func/params.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/func/params.fc -------------------------------------------------------------------------------- /func/root-dns.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/func/root-dns.fc -------------------------------------------------------------------------------- /func/stdlib.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/func/stdlib.fc -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/test.sh -------------------------------------------------------------------------------- /test/collection-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/test/collection-config.js -------------------------------------------------------------------------------- /test/collection-get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/test/collection-get.js -------------------------------------------------------------------------------- /test/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/test/collection.js -------------------------------------------------------------------------------- /test/funcer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/test/funcer.js -------------------------------------------------------------------------------- /test/item-already-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/test/item-already-init.js -------------------------------------------------------------------------------- /test/item-bid-prolong.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/test/item-bid-prolong.js -------------------------------------------------------------------------------- /test/item-bid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/test/item-bid.js -------------------------------------------------------------------------------- /test/item-config-transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/test/item-config-transfer.js -------------------------------------------------------------------------------- /test/item-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/test/item-config.js -------------------------------------------------------------------------------- /test/item-delete-record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/test/item-delete-record.js -------------------------------------------------------------------------------- /test/item-edit-record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/test/item-edit-record.js -------------------------------------------------------------------------------- /test/item-fill-up.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/test/item-fill-up.js -------------------------------------------------------------------------------- /test/item-finish-auction-change-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/test/item-finish-auction-change-content.js -------------------------------------------------------------------------------- /test/item-get-static-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/test/item-get-static-data.js -------------------------------------------------------------------------------- /test/item-get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/test/item-get.js -------------------------------------------------------------------------------- /test/item-loss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/test/item-loss.js -------------------------------------------------------------------------------- /test/item-transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/test/item-transfer.js -------------------------------------------------------------------------------- /test/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/test/item.js -------------------------------------------------------------------------------- /test/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/test/root.js -------------------------------------------------------------------------------- /test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/dns-contract/HEAD/test/utils.js --------------------------------------------------------------------------------