UNPKG

@ledgerhq/coin-canton

Version:
10 lines 315 B
export type CantonAddress = { publicKey: string; address: string; }; export type CantonSignature = string; export interface CantonSigner { getAddress(path: string): Promise<CantonAddress>; signTransaction(path: string, rawTx: string): Promise<CantonSignature>; } //# sourceMappingURL=signer.d.ts.map