Variable PAYMASTER_FLOW_ABIConst

PAYMASTER_FLOW_ABI: Contract<
    readonly [
        {
            inputs: readonly [
                { internalType: "address"; name: "_token"; type: "address" },
                { internalType: "uint256"; name: "_minAllowance"; type: "uint256" },
                { internalType: "bytes"; name: "_innerInput"; type: "bytes" },
            ];
            name: "approvalBased";
            outputs: readonly [];
            stateMutability: "nonpayable";
            type: "function";
        },
        {
            inputs: readonly [
                { internalType: "bytes"; name: "input"; type: "bytes" },
            ];
            name: "general";
            outputs: readonly [];
            stateMutability: "nonpayable";
            type: "function";
        },
    ],
> = ...

The ABI for the IPaymasterFlow interface, which is utilized for encoding input parameters for paymaster flows.