@tronlink/core
Version:
The library serves as a core module within TronLink Extension, which provides low-level wallet functionality for both Tron and Ethereum networks, primary features includes account generation and transaction signing
7 lines (6 loc) • 313 B
TypeScript
import { LedgerSigner } from '../../base_wallet/ledger/LedgerSigner';
import { LedgerSignParams } from '../../base_wallet/types';
export declare class LedgerEvmSigner extends LedgerSigner {
ledgerSign(params: LedgerSignParams): Promise<any>;
ledgerSignTypedData(params: LedgerSignParams): Promise<any>;
}