name
untyped stringValue
"Gno NFT"
symbol
untyped stringValue
"GNFT"
owners
v0.Tree// tokenID (zero-padded string) -> address
- OID
- 0ec1a0…de4f:4
owners details
balances
v0.Tree// owner address (string) -> uint64
- OID
- 0ec1a0…de4f:6
balances details
approvals
v0.Tree// tokenID (zero-padded string) -> approved address
- OID
- 0ec1a0…de4f:8
approvals details
nextID
int64Value
1
minted
int64// total tokens ever minted (== live supply, no burn)
Value
0
key
func(id int64) stringkey formats a token id into a zero-padded, lexicographically-sortable key.
- OID
- 0ec1a0…de4f:11
key details
Mint
func(to .uverse.address) int64Mint creates the next token id and assigns it to \`to\`. Only sequential minting is supported (id is returned via the Mint event).
- OID
- 0ec1a0…de4f:13
Mint details
Transfer
func(to .uverse.address, id int64)Transfer moves token \`id\` from the caller to \`to\`. The caller must own the token (approvals are cleared on transfer).
- OID
- 0ec1a0…de4f:14
Transfer details
Approve
func(spender .uverse.address, id int64)Approve grants \`spender\` the right to transfer token \`id\`. Only the current owner may approve.
- OID
- 0ec1a0…de4f:15
Approve details
ownerOf
func(id int64) .uverse.address- OID
- 0ec1a0…de4f:16
ownerOf details
approvedOf
func(id int64) .uverse.address- OID
- 0ec1a0…de4f:17
approvedOf details
balanceOf
func(owner .uverse.address) uint64balanceOf returns how many tokens \`owner\` holds.
- OID
- 0ec1a0…de4f:18
balanceOf details
exists
func(id int64) boolexists reports whether token \`id\` has been minted (and not since moved away).
- OID
- 0ec1a0…de4f:19
exists details
totalSupply
func() int64totalSupply returns the number of tokens in circulation.
- OID
- 0ec1a0…de4f:20
totalSupply details
OwnerOf
func(id int64) .uverse.address- OID
- 0ec1a0…de4f:21
OwnerOf details
BalanceOf
func(owner .uverse.address) uint64BalanceOf is the exported read-only accessor for balanceOf.
- OID
- 0ec1a0…de4f:22
BalanceOf details
TotalSupply
func() int64TotalSupply is the exported read-only accessor for totalSupply.
- OID
- 0ec1a0…de4f:23
TotalSupply details
Render
func(path string) stringRender displays collection metadata and a token -> owner table.
- OID
- 0ec1a0…de4f:24