/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer, utils } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { CyanFactory, CyanFactoryInterface } from "../CyanFactory"; const _abi = [ { anonymous: false, inputs: [ { indexed: false, internalType: "address", name: "router", type: "address", }, ], name: "FactoryCreated", type: "event", }, { anonymous: false, inputs: [ { indexed: false, internalType: "uint8", name: "version", type: "uint8", }, ], name: "Initialized", type: "event", }, { anonymous: false, inputs: [ { indexed: false, internalType: "address", name: "owner", type: "address", }, { indexed: false, internalType: "address", name: "wallet", type: "address", }, ], name: "WalletCreated", type: "event", }, { inputs: [ { internalType: "address", name: "owner", type: "address", }, ], name: "getOrDeployWallet", outputs: [ { internalType: "address", name: "wallet", type: "address", }, ], stateMutability: "nonpayable", type: "function", }, { inputs: [ { internalType: "address", name: "owner", type: "address", }, ], name: "getOwnerWallet", outputs: [ { internalType: "address", name: "", type: "address", }, ], stateMutability: "view", type: "function", }, { inputs: [], name: "getRouter", outputs: [ { internalType: "address", name: "", type: "address", }, ], stateMutability: "view", type: "function", }, { inputs: [ { internalType: "address", name: "wallet", type: "address", }, ], name: "getWalletOwner", outputs: [ { internalType: "address", name: "", type: "address", }, ], stateMutability: "view", type: "function", }, { inputs: [ { internalType: "address", name: "router", type: "address", }, ], name: "initialize", outputs: [], stateMutability: "nonpayable", type: "function", }, { inputs: [ { internalType: "address", name: "owner", type: "address", }, ], name: "predictDeterministicAddress", outputs: [ { internalType: "address", name: "predicted", type: "address", }, ], stateMutability: "view", type: "function", }, ] as const; export class CyanFactory__factory { static readonly abi = _abi; static createInterface(): CyanFactoryInterface { return new utils.Interface(_abi) as CyanFactoryInterface; } static connect( address: string, signerOrProvider: Signer | Provider ): CyanFactory { return new Contract(address, _abi, signerOrProvider) as CyanFactory; } }