opensea-js - v8.0.20
    Preparing search index...

    Type Alias SearchResult

    A single search result with a type discriminator and the corresponding typed object.

    type SearchResult = {
        account?: AccountSearchResult;
        collection?: CollectionSearchResult;
        nft?: NftSearchResult;
        token?: TokenSearchResult;
        type: string;
    }
    Index

    Properties

    Account details, present when type is 'account'

    Collection details, present when type is 'collection'

    NFT details, present when type is 'nft'

    Token details, present when type is 'token'

    type: string

    The type of search result