UNPKG

@hdwallet/core

Version:

A complete Hierarchical Deterministic (HD) Wallet generator for 200+ cryptocurrencies, built with TypeScript.

11 lines 505 B
import { PublicKey } from '../eccs'; import { Address } from './address'; import { AddressOptionsInterface } from '../interfaces'; export declare class TronAddress extends Address { static publicKeyAddressPrefix: number; static alphabet: string; static getName(): string; static encode(publicKey: Uint8Array | string | PublicKey, options?: AddressOptionsInterface): string; static decode(address: string, options?: AddressOptionsInterface): string; } //# sourceMappingURL=tron.d.ts.map