Interface QuotesForStacksRequestParams

Request parameters for quotesForStacks operation in PricingApi.

QuotesForStacksRequest

interface QuotesForStacksRequestParams {
    chainName: string;
    contractAddress: string;
    stackId: string[];
    pageCursor?: string;
}

Properties

chainName: string

The name of chain

QuotesForStacks

contractAddress: string

Contract address for collection that these stacks are on

QuotesForStacks

stackId: string[]

List of stack ids to get pricing data for

QuotesForStacks

pageCursor?: string

Encoded page cursor to retrieve previous or next page. Use the value returned in the response.

QuotesForStacks