github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/examples/gno.land/r/demo/nft/README.md (about)

     1  NFT's are all the rage these days, for various reasons.
     2  
     3  I 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/nft/nft.go](https://gno.land/r/nft/nft.go)
     7   - [zrealm_nft3.go test](https://github.com/gnolang/gno/blob/master/tests/files2/zrealm_nft3.gno)
     8  
     9  In short, this demonstrates how to implement Ethereum contract interfaces in Gno.land; by using only standard Go language features.
    10  
    11  Please leave a comment ([guide](https://gno.land/r/boards:gnolang/1)).