getWallets
Fetch all the wallets for a specifc user
This function returns all the wallets for the specified user (bearer token)
venlyConnect.api.getWallets();
venlyConnect.api.getWallets(filter?: { secretType?: SecretType, includeBalance?:boolean }): Promise<Wallet[]>
Promise<Wallet[]>
Parameter | Required | Description |
filter | False | Filter that will be applied to the result |
filter.secretType | False | |
filter.includeBalance | False | Include balance when fetching wallets.
By default: true ⚠️ Setting this to true might impact performance |
venlyConnect.api.getWallets();
Last modified 8mo ago