/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Interface } from '@ethersproject/abi' import { Signer } from '@ethersproject/abstract-signer' import { Contract } from '@ethersproject/contracts' import type { Provider } from '@ethersproject/providers' import type { BulkRenewal, BulkRenewalInterface } from '../BulkRenewal' const _abi = [ { inputs: [ { internalType: 'contract FNS', name: '_fns', type: 'address', }, ], stateMutability: 'nonpayable', type: 'constructor', }, { inputs: [], name: 'fns', outputs: [ { internalType: 'contract FNS', name: '', type: 'address', }, ], stateMutability: 'view', type: 'function', }, { inputs: [ { internalType: 'string[]', name: 'names', type: 'string[]', }, { internalType: 'uint256', name: 'duration', type: 'uint256', }, ], name: 'renewAll', outputs: [], stateMutability: 'payable', type: 'function', }, { inputs: [ { internalType: 'string[]', name: 'names', type: 'string[]', }, { internalType: 'uint256', name: 'duration', type: 'uint256', }, ], name: 'rentPrice', outputs: [ { internalType: 'uint256', name: 'total', type: 'uint256', }, ], stateMutability: 'view', type: 'function', }, { inputs: [ { internalType: 'bytes4', name: 'interfaceID', type: 'bytes4', }, ], name: 'supportsInterface', outputs: [ { internalType: 'bool', name: '', type: 'bool', }, ], stateMutability: 'pure', type: 'function', }, ] export class BulkRenewal__factory { static readonly abi = _abi static createInterface(): BulkRenewalInterface { return new Interface(_abi) as BulkRenewalInterface } static connect( address: string, signerOrProvider: Signer | Provider, ): BulkRenewal { return new Contract(address, _abi, signerOrProvider) as BulkRenewal } }