/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Signer, Contract, ContractFactory, Overrides } from "ethers"; import { Provider, TransactionRequest } from "@ethersproject/providers"; import type { EIP712Base } from "../EIP712Base"; export class EIP712Base__factory extends ContractFactory { constructor(signer?: Signer) { super(_abi, _bytecode, signer); } deploy( overrides?: Overrides & { from?: string | Promise } ): Promise { return super.deploy(overrides || {}) as Promise; } getDeployTransaction( overrides?: Overrides & { from?: string | Promise } ): TransactionRequest { return super.getDeployTransaction(overrides || {}); } attach(address: string): EIP712Base { return super.attach(address) as EIP712Base; } connect(signer: Signer): EIP712Base__factory { return super.connect(signer) as EIP712Base__factory; } static connect( address: string, signerOrProvider: Signer | Provider ): EIP712Base { return new Contract(address, _abi, signerOrProvider) as EIP712Base; } } const _abi = [ { inputs: [], name: "ERC712_VERSION", outputs: [ { internalType: "string", name: "", type: "string", }, ], stateMutability: "view", type: "function", }, { inputs: [], name: "getChainId", outputs: [ { internalType: "uint256", name: "", type: "uint256", }, ], stateMutability: "view", type: "function", }, { inputs: [], name: "getDomainSeperator", outputs: [ { internalType: "bytes32", name: "", type: "bytes32", }, ], stateMutability: "view", type: "function", }, ]; const _bytecode = "0x60806040526000805460ff1916905534801561001a57600080fd5b5061012e8061002a6000396000f3fe6080604052348015600f57600080fd5b5060043610603c5760003560e01c80630f7e597014604157806320379ee51460905780633408e4701460a1575b600080fd5b607c6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b6040516087919060a6565b60405180910390f35b6001545b6040519081526020016087565b466094565b600060208083528351808285015260005b8181101560d15785810183015185820160400152820160b7565b8181111560e2576000604083870101525b50601f01601f191692909201604001939250505056fea26469706673582212205ef0e8a8bce205cfb193837187a0b1830b888c322a7afd9a31d0eb2bff161ee764736f6c63430008070033";