Interface RestRequestGetWalletList

Get Wallet List

  • Returns all wallet addresses associated with the API key used to make the request.

Example

import { v1 as uuidv1 } from 'uuid';

// create client

await authenticatedClient.getWalletList({
nonce: uuidv1(),
});


See

interface RestRequestGetWalletList {
    nonce: string;
}

Properties

Properties

nonce: string

User data and trade endpoints requests must include a nonce.

  • MUST be a version 1 UUID
  • Nonces may be supplied with or without hyphens.

Remarks

Version 1 UUIDs encode a timestamp in addition to other unique information, and thus serve both to prevent replay attacks as well as to enforce request timing. As a result, nonces MUST be generated at the time of a request.