Type Alias AssetWithTradeDataCore

AssetWithTradeDataCore: {
    cachedImageUrl: string | null;
    contractAddress: string;
    numberOwners: Bignumber;
    orderbookStats: AssetOrbderbookStats;
    owner: string | null;
    supply: Bignumber;
    tokenId: string;
    tokenType: TokenType;
    updatedAt: string;
    updatedAtBlockNumber: number;
}

Type declaration

  • cachedImageUrl: string | null

    The cached image URL of the asset.

  • contractAddress: string

    The contract address of the asset.

  • numberOwners: Bignumber

    The number of distinct owners of the asset. 1 if asset is an ERC721.

  • orderbookStats: AssetOrbderbookStats

    The orderbook stats of the asset.

  • owner: string | null

    The owner address of the asset. null if asset is an ERC1155 (see getAssetOwners route).

  • supply: Bignumber

    The supply of the asset. 1 if asset is an ERC721.

  • tokenId: string

    The token ID of the asset.

  • tokenType: TokenType
  • updatedAt: string

    The last time the asset was updated.

  • updatedAtBlockNumber: number

    The block number of the last update.