export interface Transaction {
    to: string;
    from: string;
    data: string;
    value: string;
}
