UNPKG

soul-wallet-lib

Version:
17 lines (16 loc) 408 B
import { NumberLike } from "../defines/numberLike"; /** * transcation interface * @interface ITransaction * @property {string} from the from address * @property {string} data the data * @property {string} to the to address * @property {string} value the value */ export interface ITransaction { from?: string; data: string; to: string; value?: NumberLike; gasLimit?: NumberLike; }