Register Wallet

registerWallet(data: Address)

Description

Register a new 0xAddress, or comma-separated string of 0xAddress with OpenPool.

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

Parameters

NameTypeDescriptionOptional
dataAddressThe address to be registeredNo
interface Address {
	address: string;
}

Response

{
  "results": [
    {
      "id": number;
      "address": string;
      "is_loaded": boolean;
    }
  ]
}