Wallets V1
Kotlin Interface
interface BalanceOperations
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?