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:
Parameter | Required | Description |
---|---|---|
filter | False | Filter that will be applied to the result |
filter.secretType | False | Filter on a blockchain, SecretType. |
filter.includeBalance | False | Include balance when fetching wallets. By default: true ā ļø Setting this to true might impact performance |
Include balance when fetching wallets.
By default: true
⚠️ Setting this to true might impact performance
|
Example:
arkaneConnect.api.getWallets();
Object Types
Updated 12 months ago