@ledgerhq/coin-hedera
Version:
Ledger Hedera Coin integration
10 lines • 482 B
TypeScript
import { AccountId } from "@hashgraph/sdk";
import { Operation } from "@ledgerhq/types-live";
import BigNumber from "bignumber.js";
export interface Account {
accountId: AccountId;
balance: BigNumber;
}
export declare function getAccountsForPublicKey(publicKey: string): Promise<Account[]>;
export declare function getOperationsForAccount(ledgerAccountId: string, address: string, latestOperationTimestamp: string): Promise<Operation[]>;
//# sourceMappingURL=mirror.d.ts.map