Divisible NEP11 token example
There is example code for a non-divisible NEP11 token, but not for a divisible. I think for completeness sake we should have one for a divisible token that can act as a reference for the implementation of the divisible specific methods (transfer() with from and amount params, ownerOf() returning aniterator and balanceOf with an extra tokenId parameter)
There is one in Go: https://github.com/nspcc-dev/neo-go/blob/master/examples/nft-d/nft.go
There's also one in Java: https://github.com/neow3j/neow3j-examples-java/blob/master/src/main/java/io/neow3j/examples/contractdevelopment/contracts/DivisibleNonFungibleToken.java
@Hecate2 implemented a pretty good one, https://github.com/Hecate2/NFTLoan/blob/master/DivisibleNep11Token/DivisibleNep11Token.cs
@Liaojinghui, this one from Hecate2 maybe can serve as an example.
We need to address some issues in this repo and also update examples.
Do any wallets even support divisible NFTs?
Do any wallets even support divisible NFTs?
No
That's not really an argument to not have an example though