The NFT Sale activity details

NFTSale

interface NFTSale {
    order_id: string;
    to: string;
    from: string;
    asset: ActivityNFT[];
    payment: SalePayment;
}

Properties

order_id: string

The id of order

NFTSale

to: string

The account address of buyer

NFTSale

from: string

The account address of seller

NFTSale

asset: ActivityNFT[]

NFTSale

payment: SalePayment

NFTSale