Interface MagicEdenActivity

Magic Eden Activity (Sales/Listings)

interface MagicEdenActivity {
    blockTime: number;
    buyer?: string;
    collection: string;
    collectionName?: string;
    price: number;
    seller?: string;
    signature: string;
    slot: number;
    tokenMint: string;
    type:
        | "buyNow"
        | "list"
        | "delist"
        | "bid"
        | "cancelBid";
}

Properties

blockTime: number

Block time (Unix seconds)

buyer?: string

Buyer wallet

collection: string

Collection symbol

collectionName?: string

Collection name

price: number

Price in lamports

seller?: string

Seller wallet

signature: string

Transaction signature

slot: number

Slot number

tokenMint: string

NFT mint

type:
    | "buyNow"
    | "list"
    | "delist"
    | "bid"
    | "cancelBid"

Activity type