2023-08-25 15:36:39 +00:00
|
|
|
package communitytokens
|
2023-08-22 17:48:42 +00:00
|
|
|
|
|
|
|
import "github.com/status-im/status-go/services/wallet/bigint"
|
|
|
|
|
|
|
|
type CollectibleContractData struct {
|
|
|
|
TotalSupply *bigint.BigInt
|
|
|
|
Transferable bool
|
|
|
|
RemoteBurnable bool
|
|
|
|
InfiniteSupply bool
|
|
|
|
}
|