@bananahq/banana-sdk
Version:
Smart contract wallet sdk package by Banana Wallet
15 lines (14 loc) • 431 B
TypeScript
import * as Type from './solidity-types';
export default interface UserOperation {
sender: Type.address;
nonce: Type.uint256;
initCode: Type.bytes;
callData: Type.bytes;
callGasLimit: Type.uint256;
verificationGasLimit: Type.uint256;
preVerificationGas: Type.uint256;
maxFeePerGas: Type.uint256;
maxPriorityFeePerGas: Type.uint256;
paymasterAndData: Type.bytes;
signature: Type.bytes;
}