Get Registered Wallets

getWalletRegistrations(params?: WalletManageListQuery)

Description

Query this endpoint to get a list of all the wallet addresses you have registered with OpenPool.

  • OpenPool API Endpoint: GET:/wallet/manage/

Parameters

NameTypeDescriptionOptional
paramsWalletManageListQueryQuery parameters for the requestYes
interface WalletManageListQuery {
	address?: string;
	page?: number;
}

Response

{
  "count": number;
  "next": null | string;
  "previous": null | string;
  "results": [
    {
      "id": string;
      "address": string;
      "is_loaded": boolean;
    },
]