"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getBalance = getBalance;
async function getBalance(client, params) {
const data = await client.request({
method: 'getBalance',
params,
}, { dedupe: true });
return data;
}