@ledgerhq/coin-celo
Version:
11 lines • 786 B
TypeScript
import type { AccountBridge, CurrencyBridge } from "@ledgerhq/types-live";
import { SignerContext } from "@ledgerhq/coin-framework/signer";
import type { CeloAccount, Transaction, TransactionStatus } from "../types";
import { CeloSigner } from "../signer/signer";
export declare function buildCurrencyBridge(signerContext: SignerContext<CeloSigner>): CurrencyBridge;
export declare function buildAccountBridge(signerContext: SignerContext<CeloSigner>): AccountBridge<Transaction, CeloAccount, TransactionStatus>;
export declare function createBridges(signerContext: SignerContext<CeloSigner>): {
currencyBridge: CurrencyBridge;
accountBridge: AccountBridge<Transaction, CeloAccount, import("@ledgerhq/types-live").TransactionStatusCommon>;
};
//# sourceMappingURL=index.d.ts.map