getWallets

Fetch all the wallets for a specifc user
This function returns all the wallets for the specified user (bearer token)
venlyConnect.api.getWallets();

Signature

venlyConnect.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

Example

venlyConnect.api.getWallets();

Object Types