@ledgerhq/coin-hedera
Version:
Ledger Hedera Coin integration
15 lines • 727 B
TypeScript
import BigNumber from "bignumber.js";
import type { Transaction as HederaTransaction, TransactionResponse } from "@hashgraph/sdk";
import { TransferTransaction } from "@hashgraph/sdk";
import { Account } from "@ledgerhq/types-live";
import { Transaction } from "../types";
export declare function broadcastTransaction(transaction: HederaTransaction): Promise<TransactionResponse>;
export declare function buildUnsignedTransaction({ account, transaction, }: {
account: Account;
transaction: Transaction;
}): Promise<TransferTransaction>;
export interface AccountBalance {
balance: BigNumber;
}
export declare function getAccountBalance(address: string): Promise<AccountBalance>;
//# sourceMappingURL=network.d.ts.map