Stack bundle includes stacks, markets and listings

StackBundle

interface StackBundle {
    stack: Stack;
    stack_count: number;
    market: null | Market;
    listings: blockchainData.Types.Listing[];
}

Properties

stack: Stack

StackBundle

stack_count: number

Total count of NFTs in the stack matching the filter params

StackBundle

market: null | Market

StackBundle

List of open listings for the stack.

StackBundle