UNPKG

soul-wallet-lib

Version:
13 lines (12 loc) 273 B
/** * transaction info * @class TransactionInfo * @property {string?} from the from address * @property {string?} to the to address * @property {string?} data the data */ export declare class TransactionInfo { from?: string; to?: string; data?: string; }