@ledgerhq/coin-tron
Version:
Ledger Tron Coin integration
10 lines (9 loc) • 303 B
text/typescript
export type TronAddress = {
publicKey: string;
address: string;
};
export type TronSignature = string;
export interface TronSigner {
getAddress(path: string, boolDisplay?: boolean): Promise<TronAddress>;
sign(path: string, rawTxHex: string, tokenSignatures: string[]): Promise<TronSignature>;
}