@ledgerhq/coin-algorand
Version:
Ledger Algorand Coin integration
11 lines • 888 B
TypeScript
import { SignerContext } from "@ledgerhq/coin-framework/signer";
import type { AccountBridge, CurrencyBridge } from "@ledgerhq/types-live";
import type { AlgorandAccount, AlgorandOperation, Transaction, TransactionStatus } from "../types";
import { AlgorandSigner } from "../signer";
export declare function buildCurrencyBridge(signerContext: SignerContext<AlgorandSigner>): CurrencyBridge;
export declare function buildAccountBridge(signerContext: SignerContext<AlgorandSigner>): AccountBridge<Transaction, AlgorandAccount, TransactionStatus, AlgorandOperation>;
export declare function createBridges(signerContext: SignerContext<AlgorandSigner>): {
currencyBridge: CurrencyBridge;
accountBridge: AccountBridge<import("../types").AlgorandTransaction, AlgorandAccount, import("@ledgerhq/types-live").TransactionStatusCommon, AlgorandOperation>;
};
//# sourceMappingURL=js.d.ts.map