Interfaces
BalanceOperations
Kotlin Interface
Interface
Funds the wallet with test tokens (staging only).
Gets the wallet balances.
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Kotlin Interface
interface BalanceOperations
| Function | Description |
|---|---|
fund | Funds the wallet with test tokens (staging only). |
getBalances | Gets the wallet balances. |
abstract suspend fun fund(token: String, amount: Int, chain: String): Result<Unit, BalanceError>
abstract suspend fun getBalances(tokens: List<String>): Result<Balances, BalanceError>
Was this page helpful?
