@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
8 lines • 345 B
TypeScript
import { EvmAddress } from "@ledgerhq/coin-evm/types/signer";
import { CreateSigner } from "../../setup";
export type Signer = {
getAddress: (path: string) => Promise<EvmAddress>;
signTransaction: (path: string, tx: string) => Promise<string>;
};
export declare const createSigner: CreateSigner<Signer>;
//# sourceMappingURL=Eth.d.ts.map