soul-wallet-lib
Version:
The EIP-4337 library for Soul-Wallet
17 lines (16 loc) • 408 B
TypeScript
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;
}