Interface IGetWalletsParams

IGetWalletsParams Interface representing the parameters for querying wallets.

const walletParams: IWalletParams = {
assets: ["BTC", "ETH"],
service: "main",
offset: 0,
limit: 10
};
interface IGetWalletsParams {
    assets?: string[];
    limit?: number;
    offset?: number;
    service?: string;
}

Hierarchy (view full)

Properties

assets?: string[]

Optional array of asset types to filter the wallets.

limit?: number

The number of items to return.

offset?: number

The number of items to skip before starting to collect the result set.

service?: string

Optional service associated with the wallets.