pawtils
Version:
This repository contains several utils to work with the cryptocurrency [Paw](https://paw.digital/) inside the browser.
19 lines • 522 B
TypeScript
/**
* Represents a RPC account balance response
*/
export interface IAccountBalanceResponse {
/**
* The current balance of the account
*/
balance: bigint;
/**
* The currently pending balanace of the account
*/
pending: bigint;
}
/**
* Parses the provided json into an abstract representation
* @param json - The json to parse
*/
export declare function parseAccountBalanceResponse(json: any): IAccountBalanceResponse;
//# sourceMappingURL=account-balance.d.ts.map