Wallet Module
The Wallet Management module enables applications to manage user wallets securely within the Unity framework. This includes creating wallets, transferring coins, and accessing transaction details.
Create Wallet sdk.wallet.createWallet('userId').then(walletId => console.log('Wallet created:', walletId))
Get Wallet Details sdk.wallet.getWalletDetails('walletId')
Transfer Coins sdk.wallet.transferCoins('sourceWalletId', 'targetWalletId', 100)
Get Transactions sdk.wallet.getTransactions('walletId')
Last updated