status-go/services/collectibles/collectible_contract_data.go

11 lines
220 B
Go

package collectibles
import "github.com/status-im/status-go/services/wallet/bigint"
type CollectibleContractData struct {
TotalSupply *bigint.BigInt
Transferable bool
RemoteBurnable bool
InfiniteSupply bool
}