QueryAccountsResponse is the response type for the Query/Accounts RPC method.

Since: cosmos-sdk 0.43

interface QueryAccountsResponse {
    accounts: Any[] | (Any | BaseAccount)[];
    pagination?: PageResponse;
}

Properties

accounts: Any[] | (Any | BaseAccount)[]

accounts are the existing accounts

pagination?: PageResponse

pagination defines the pagination in the response.