@ledgerhq/coin-tron
Version:
Ledger Tron Coin integration
10 lines • 347 B
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>;
}
//# sourceMappingURL=signer.d.ts.map