Parameters for fetching assets by owner.

1.0.0

interface GetAssetsByOwnerParams {
    after?: string;
    before?: string;
    cursor?: string;
    limit?: number;
    ownerAddress: never;
    page?: number;
    showCollectionMetadata?: boolean;
    showFungible?: boolean;
    showInscription?: boolean;
    showNativeBalance?: boolean;
    showUnverifiedCollections?: boolean;
    showZeroBalance?: boolean;
    sortBy?: {
        sortBy: DasSortBy;
        sortDirection: DasSortDirection;
    };
}

Properties

after?: string
before?: string
cursor?: string
limit?: number
ownerAddress: never
page?: number
showCollectionMetadata?: boolean
showFungible?: boolean
showInscription?: boolean
showNativeBalance?: boolean
showUnverifiedCollections?: boolean
showZeroBalance?: boolean
sortBy?: {
    sortBy: DasSortBy;
    sortDirection: DasSortDirection;
}