/**
* transaction info
* @class TransactionInfo
* @property {string?} from the from address
* @property {string?} to the to address
* @property {string?} data the data
*/
export declareclassTransactionInfo{
from?: string;
to?: string;
data?: string;
}