gill

AssetData

type AssetData = {
  collection: Option<Collection>;
  collectionDetails: Option<CollectionDetails>;
  creators: Option<Creator[]>;
  isMutable: boolean;
  name: string;
  primarySaleHappened: boolean;
  ruleSet: Option<Address>;
  sellerFeeBasisPoints: number;
  symbol: string;
  tokenStandard: TokenStandard;
  uri: string;
  uses: Option<Uses>;
};

Properties

collection

collection: Option<Collection>;

collectionDetails

collectionDetails: Option<CollectionDetails>;

creators

creators: Option<Creator[]>;

isMutable

isMutable: boolean;

name

name: string;

primarySaleHappened

primarySaleHappened: boolean;

ruleSet

ruleSet: Option<Address>;

sellerFeeBasisPoints

sellerFeeBasisPoints: number;

symbol

symbol: string;

tokenStandard

tokenStandard: TokenStandard;

uri

uri: string;

uses

uses: Option<Uses>;

On this page