README.md

0.70 Kb ยท 11 lines
 1NFT's are all the rage these days, for various reasons.
 2
 3I read over EIP-721 which appears to be the de-facto NFT standard on Ethereum. Then, made a sample implementation of EIP-721 (let's here called GRC-721). The implementation isn't complete, but it demonstrates the main functionality.
 4
 5- [EIP-721](https://eips.ethereum.org/EIPS/eip-721)
 6- [gno.land/r/demo/nft/nft.go](https://gno.land/r/demo/nft/nft.go)
 7- [zrealm_nft3.go test](https://github.com/gnolang/gno/blob/master/tests/files2/zrealm_nft3.gno)
 8
 9In short, this demonstrates how to implement Ethereum contract interfaces in gno.land; by using only standard Go language features.
10
11Please leave a comment ([guide](https://gno.land/r/demo/boards:gnolang/1)).