Type alias AccountsFindByTypeConfig

AccountsFindByTypeConfig: {
    accountType: string;
    cacheControl?: string;
    cluster: Cluster;
    limit: number;
    offset: number;
    program: string;
}

Configures the accounts findByType request.

Type declaration

  • accountType: string

    The type of account consider for the query.

  • Optional cacheControl?: string

    The cache control header to use for the request.

  • cluster: Cluster

    The cluster to execute the query on, i.e. mainnet or devnet.

  • limit: number

    The max amount of accounts to include in the result

  • offset: number

    The number of accounts to skip before including them in the result

  • program: string

    The program whose accounts we are querying.

Generated using TypeDoc