/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer, utils } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { CyanWallet, CyanWalletInterface } from "../CyanWallet"; const _abi = [ { inputs: [ { internalType: "address", name: "to", type: "address", }, { internalType: "uint256", name: "value", type: "uint256", }, { internalType: "bytes", name: "data", type: "bytes", }, ], name: "execute", outputs: [ { internalType: "bytes", name: "", type: "bytes", }, ], stateMutability: "payable", type: "function", }, { inputs: [ { components: [ { internalType: "address", name: "to", type: "address", }, { internalType: "uint256", name: "value", type: "uint256", }, { internalType: "bytes", name: "data", type: "bytes", }, ], internalType: "struct Core.Call[]", name: "data", type: "tuple[]", }, ], name: "executeBatch", outputs: [], stateMutability: "payable", type: "function", }, ] as const; export class CyanWallet__factory { static readonly abi = _abi; static createInterface(): CyanWalletInterface { return new utils.Interface(_abi) as CyanWalletInterface; } static connect( address: string, signerOrProvider: Signer | Provider ): CyanWallet { return new Contract(address, _abi, signerOrProvider) as CyanWallet; } }