secret-polar
Version:
Polar is a development environment to compile, deploy, test, run scrt contracts on different networks.
9 lines (8 loc) • 589 B
TypeScript
/// <reference types="chai" />
import { SecretNetworkClient } from "secretjs";
import type { Coin } from "../../../types";
export declare function supportChangeScrtBalance(Assertion: Chai.AssertionStatic): void;
export declare function getBalance(client: SecretNetworkClient, accountAddress: string): Promise<Coin[]>;
export declare function getBalanceChange(// eslint-disable-line sonarjs/cognitive-complexity
transaction: (() => Promise<any>), // eslint-disable-line @typescript-eslint/no-explicit-any
accountAddr: string, includeFee?: boolean, logResponse?: boolean): Promise<number>;