block_grc1155.gno
0.33 Kb · 10 lines
1package block
2
3import "gno.land/p/akkadia/v0/grc1155"
4
5type BlockGRC1155Token interface {
6 grc1155.IGRC1155
7 SafeMint(caller, to address, tokenID grc1155.TokenID, amount int64) error
8 Burn(caller, from address, tokenID grc1155.TokenID, amount int64) error
9 BatchBurn(caller, from address, batch []grc1155.TokenID, amounts []int64) error
10}