@ledgerhq/coin-icon
Version:
Ledger Icon Coin integration
14 lines • 408 B
TypeScript
export type IconAddress = {
publicKey: string;
address: string;
chainCode?: string;
};
export type IconSignature = {
signedRawTxBase64: string;
hashHex: string;
};
export interface IconSigner {
getAddress(path: string, shouldDisplay?: boolean): Promise<IconAddress>;
signTransaction(path: string, rawTxAscii: string): Promise<IconSignature>;
}
//# sourceMappingURL=signer.d.ts.map