UNPKG

@ledgerhq/live-common

Version:
22 lines 933 B
import { Transaction, VechainSigner } from "./types"; import type { Bridge } from "@ledgerhq/types-live"; import type { Resolver } from "../../hw/getAddress/types"; declare const bridge: Bridge<Transaction>; declare const messageSigner: { signMessage: (signerContext: import("@ledgerhq/coin-framework/lib/signer").SignerContext<VechainSigner>) => (deviceId: string, path: string, message: string, rawMessage: string) => Promise<string>; }; declare const resolver: Resolver; declare const cliTools: { options: { name: string; type: any; desc: string; }[]; inferTransactions: (transactions: { account: import("@ledgerhq/types-live").AccountLike; transaction: Transaction; mainAccount: import("@ledgerhq/types-live").Account; }[], opts: Record<string, any>) => Transaction[]; }; export { bridge, cliTools, messageSigner, resolver }; //# sourceMappingURL=setup.d.ts.map