soul-wallet-lib
Version:
The EIP-4337 library for Soul-Wallet
15 lines (14 loc) • 320 B
TypeScript
/**
* token approve data interface
*
* @export
* @interface IApproveToken
* @property {string} token the token address
* @property {string} spender the spender address
* @property {string?} value the approve value
*/
export interface IApproveToken {
token: string;
spender: string;
value?: string;
}