mirror of
https://github.com/status-im/status-go.git
synced 2025-02-23 12:18:38 +00:00
feat: sync CommunityTokens between privileged users feat: restore PrivilegeLevel for synchronized CommunityToken
11 lines
220 B
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
|
|
}
|