Interface Asset

interface Asset {
    collection: CollectionDetails;
    created_at: null | string;
    description: null | string;
    fees?: Fee[];
    id?: string;
    image_url: null | string;
    metadata: null | object;
    name: null | string;
    orders?: OrderDetails;
    status: string;
    token_address: string;
    token_id: string;
    updated_at: null | string;
    uri: null | string;
    user: string;
}

Hierarchy

  • Asset
    • Asset

Properties

collection: CollectionDetails

Asset

created_at: null | string

Timestamp of when the asset was created

Asset

description: null | string

Description of this asset

Asset

fees?: Fee[]

Royalties to pay on this asset operations

Asset

id?: string

[DEPRECATED] Internal Immutable X Token ID

Asset

image_url: null | string

URL of the image which should be used for this asset

Asset

metadata: null | object

Metadata of this asset

Asset

name: null | string

Name of this asset

Asset

orders?: OrderDetails

Asset

status: string

Status of this asset (where it is in the system)

Asset

token_address: string

Address of the ERC721 contract

Asset

token_id: string

ERC721 Token ID of this asset

Asset

updated_at: null | string

Timestamp of when the asset was updated

Asset

uri: null | string

URI to access this asset externally to Immutable X

Asset

user: string

Ethereum address of the user who owns this asset

Asset