Wallet
The WalletService
manages wallet information.
Methods:
Method | Description | Corresponding API call |
---|---|---|
getWallet() | Retrieve wallet information | Get wallet |
Usage Examples:
Fetching wallet information
WirexPay.wallet.getWallet()
.then(response => console.log('Wallet info:', response))
.catch(error => console.error('Error fetching transactions:', error));
Updated 4 months ago