getWallets

Fetch all the wallets for a specifc user

getWallets

This function returns all the wallets for the specified user (bearer token)

arkaneConnect.api.getWallets();

Signature:

arkaneConnect.api.getWallets(filter?: { secretType?: SecretType, includeBalance?:boolean }): Promise<Wallet[]>

Returns:

Promise<Wallet[]>

Parameters:

ParameterRequiredDescription
filterFalseFilter that will be applied to the result
filter.secretTypeFalseFilter on a blockchain, SecretType.
filter.includeBalanceFalseInclude balance when fetching wallets.
By default: true
โš ๏ธ Setting this to true might impact performance
    Include balance when fetching wallets.
      By default: true
    &#x26A0;&#xFE0F; Setting this to true might impact performance
   |

Example:

arkaneConnect.api.getWallets();

Object Types

๐Ÿ“˜