@ledgerhq/coin-canton
Version:
7 lines • 349 B
JavaScript
import { getAccountInfo } from "../../network/node";
// Could be getAccountInfo so it is used in both bridge and api
export async function getBalance(address) {
const accountInfo = await getAccountInfo(address);
return [{ asset: { type: "native" }, value: BigInt(accountInfo.account_data.Balance) }];
}
//# sourceMappingURL=getBalance.js.map