/* Autogenerated file. Do not edit manually. */ /* eslint-disable */ import { Contract, Signer } from 'ethers'; import { Provider } from '@ethersproject/providers'; import type { IERC202612 } from './IERC202612'; export class IERC202612Factory { static connect( address: string, signerOrProvider: Signer | Provider, ): IERC202612 { return new Contract(address, _abi, signerOrProvider) as IERC202612; } } const _abi = [ { inputs: [ { internalType: 'address', name: 'owner', type: 'address', }, ], name: '_nonces', outputs: [ { internalType: 'uint256', name: '', type: 'uint256', }, ], stateMutability: 'view', type: 'function', }, { inputs: [ { internalType: 'address', name: 'owner', type: 'address', }, ], name: 'nonces', outputs: [ { internalType: 'uint256', name: '', type: 'uint256', }, ], stateMutability: 'view', type: 'function', }, { inputs: [], name: 'version', outputs: [ { internalType: 'string', name: '', type: 'string', }, ], stateMutability: 'view', type: 'function', }, ];