/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers"; import { Provider, TransactionRequest } from "@ethersproject/providers"; import type { BytesLib, BytesLibInterface } from "../BytesLib"; const _abi = [ { inputs: [ { internalType: "bytes8", name: "c__cf01c64c", type: "bytes8", }, ], name: "c_cf01c64c", outputs: [], stateMutability: "pure", type: "function", }, { inputs: [ { internalType: "bytes8", name: "c__cf01c64c", type: "bytes8", }, ], name: "c_falsecf01c64c", outputs: [ { internalType: "bool", name: "", type: "bool", }, ], stateMutability: "pure", type: "function", }, { inputs: [ { internalType: "bytes8", name: "c__cf01c64c", type: "bytes8", }, ], name: "c_truecf01c64c", outputs: [ { internalType: "bool", name: "", type: "bool", }, ], stateMutability: "pure", type: "function", }, ]; const _bytecode = "0x610179610026600b82828239805160001a60731461001957fe5b30600052607381538281f3fe730000000000000000000000000000000000000000301460806040526004361061004b5760003560e01c80634c8a384b14610050578063639fedc0146100af5780637faf7b501461010e575b600080fd5b6100976004803603602081101561006657600080fd5b81019080803577ffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610157565b60405180821515815260200191505060405180910390f35b6100f6600480360360208110156100c557600080fd5b81019080803577ffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610162565b60405180821515815260200191505060405180910390f35b6101556004803603602081101561012457600080fd5b81019080803577ffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610169565b005b600060019050919050565b6000919050565b5056fea164736f6c634300060c000a"; type BytesLibConstructorParams = | [signer?: Signer] | ConstructorParameters; const isSuperArgs = ( xs: BytesLibConstructorParams ): xs is ConstructorParameters => xs.length > 1; export class BytesLib__factory extends ContractFactory { constructor(...args: BytesLibConstructorParams) { if (isSuperArgs(args)) { super(...args); } else { super(_abi, _bytecode, args[0]); } } 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): BytesLib { return super.attach(address) as BytesLib; } connect(signer: Signer): BytesLib__factory { return super.connect(signer) as BytesLib__factory; } static readonly bytecode = _bytecode; static readonly abi = _abi; static createInterface(): BytesLibInterface { return new utils.Interface(_abi) as BytesLibInterface; } static connect( address: string, signerOrProvider: Signer | Provider ): BytesLib { return new Contract(address, _abi, signerOrProvider) as BytesLib; } }