9 lines
172 B
Go
9 lines
172 B
Go
|
package collectibles
|
||
|
|
||
|
import "github.com/status-im/status-go/services/wallet/bigint"
|
||
|
|
||
|
type AssetContractData struct {
|
||
|
TotalSupply *bigint.BigInt
|
||
|
InfiniteSupply bool
|
||
|
}
|