Skip to content

Instantly share code, notes, and snippets.

@drewstone
Created April 25, 2023 05:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drewstone/d3e9542ad364e0a04500d3b9f47691ea to your computer and use it in GitHub Desktop.
Save drewstone/d3e9542ad364e0a04500d3b9f47691ea to your computer and use it in GitHub Desktop.
214 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/handlers/RegistryHandler__factory.ts:220:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
220 return super.getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
221 bridgeAddress,
~~~~~~~~~~~~~~~~~~~~
...
224 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
225 );
~~~~~~
typechain-types/factories/contracts/handlers/RegistryHandler__factory.ts:227:3 - error TS2300: Duplicate identifier 'override'.
227 override attach(address: string): RegistryHandler {
~~~~~~~~
typechain-types/factories/contracts/handlers/RegistryHandler__factory.ts:227:12 - error TS1005: ';' expected.
227 override attach(address: string): RegistryHandler {
~~~~~~
typechain-types/factories/contracts/handlers/RegistryHandler__factory.ts:228:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
228 return super.attach(address) as RegistryHandler;
~~~~~~
typechain-types/factories/contracts/handlers/RegistryHandler__factory.ts:230:3 - error TS2300: Duplicate identifier 'override'.
230 override connect(signer: Signer): RegistryHandler__factory {
~~~~~~~~
typechain-types/factories/contracts/handlers/RegistryHandler__factory.ts:230:12 - error TS1005: ';' expected.
230 override connect(signer: Signer): RegistryHandler__factory {
~~~~~~~
typechain-types/factories/contracts/handlers/RegistryHandler__factory.ts:230:12 - error TS2416: Property 'connect' in type 'RegistryHandler__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => RegistryHandler__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'RegistryHandler__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
230 override connect(signer: Signer): RegistryHandler__factory {
~~~~~~~
typechain-types/factories/contracts/handlers/RegistryHandler__factory.ts:231:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'RegistryHandler__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'RegistryHandler__factory': override, attach
231 return super.connect(signer) as RegistryHandler__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/handlers/RegistryHandler__factory.ts:243:12 - error TS2352: Conversion of type 'Contract' to type 'RegistryHandler' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'RegistryHandler': attach, deployed, functions, _bridgeAddress, and 10 more.
243 return new Contract(address, _abi, signerOrProvider) as RegistryHandler;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/handlers/RegistryHandler__factory.ts:243:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
243 return new Contract(address, _abi, signerOrProvider) as RegistryHandler;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/handlers/TokenWrapperHandler__factory.ts:6:3 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
6 utils,
~~~~~
typechain-types/factories/contracts/handlers/TokenWrapperHandler__factory.ts:166:6 - error TS2304: Cannot find name 'signer'.
166 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/handlers/TokenWrapperHandler__factory.ts:166:13 - error TS1005: ',' expected.
166 | [signer?: Signer]
~
typechain-types/factories/contracts/handlers/TokenWrapperHandler__factory.ts:182:12 - error TS1005: ';' expected.
182 override deploy(
~~~~~~
typechain-types/factories/contracts/handlers/TokenWrapperHandler__factory.ts:182:12 - error TS2416: Property 'deploy' in type 'TokenWrapperHandler__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(bridgeAddress: PromiseOrValue<string>, initialResourceIDs: PromiseOrValue<BytesLike>[], initialContractAddresses: PromiseOrValue<string>[], overrides?: Overrides & { ...; }) => Promise<...>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<TokenWrapperHandler>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'TokenWrapperHandler' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'TokenWrapperHandler' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'TokenWrapperHandlerInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
182 override deploy(
~~~~~~
typechain-types/factories/contracts/handlers/TokenWrapperHandler__factory.ts:188:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<TokenWrapperHandler>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'TokenWrapperHandler': attach, deployed, functions, _bridgeAddress, and 9 more.
188 return super.deploy(
~~~~~~~~~~~~~
189 bridgeAddress,
~~~~~~~~~~~~~~~~~~~~
...
192 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
193 ) as Promise<TokenWrapperHandler>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/handlers/TokenWrapperHandler__factory.ts:195:3 - error TS2300: Duplicate identifier 'override'.
195 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/handlers/TokenWrapperHandler__factory.ts:195:12 - error TS1005: ';' expected.
195 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/handlers/TokenWrapperHandler__factory.ts:195:12 - error TS2416: Property 'getDeployTransaction' in type 'TokenWrapperHandler__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(bridgeAddress: PromiseOrValue<string>, initialResourceIDs: PromiseOrValue<BytesLike>[], initialContractAddresses: PromiseOrValue<string>[], overrides?: Overrides & { ...; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
195 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/handlers/TokenWrapperHandler__factory.ts:201:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
201 return super.getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
202 bridgeAddress,
~~~~~~~~~~~~~~~~~~~~
...
205 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
206 );
~~~~~~
typechain-types/factories/contracts/handlers/TokenWrapperHandler__factory.ts:208:3 - error TS2300: Duplicate identifier 'override'.
208 override attach(address: string): TokenWrapperHandler {
~~~~~~~~
typechain-types/factories/contracts/handlers/TokenWrapperHandler__factory.ts:208:12 - error TS1005: ';' expected.
208 override attach(address: string): TokenWrapperHandler {
~~~~~~
typechain-types/factories/contracts/handlers/TokenWrapperHandler__factory.ts:209:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
209 return super.attach(address) as TokenWrapperHandler;
~~~~~~
typechain-types/factories/contracts/handlers/TokenWrapperHandler__factory.ts:211:3 - error TS2300: Duplicate identifier 'override'.
211 override connect(signer: Signer): TokenWrapperHandler__factory {
~~~~~~~~
typechain-types/factories/contracts/handlers/TokenWrapperHandler__factory.ts:211:12 - error TS1005: ';' expected.
211 override connect(signer: Signer): TokenWrapperHandler__factory {
~~~~~~~
typechain-types/factories/contracts/handlers/TokenWrapperHandler__factory.ts:211:12 - error TS2416: Property 'connect' in type 'TokenWrapperHandler__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => TokenWrapperHandler__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'TokenWrapperHandler__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
211 override connect(signer: Signer): TokenWrapperHandler__factory {
~~~~~~~
typechain-types/factories/contracts/handlers/TokenWrapperHandler__factory.ts:212:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'TokenWrapperHandler__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'TokenWrapperHandler__factory': override, attach
212 return super.connect(signer) as TokenWrapperHandler__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/handlers/TokenWrapperHandler__factory.ts:224:12 - error TS2352: Conversion of type 'Contract' to type 'TokenWrapperHandler' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'TokenWrapperHandler': attach, deployed, functions, _bridgeAddress, and 9 more.
224 return new Contract(address, _abi, signerOrProvider) as TokenWrapperHandler;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/handlers/TokenWrapperHandler__factory.ts:224:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
224 return new Contract(address, _abi, signerOrProvider) as TokenWrapperHandler;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/handlers/TreasuryHandler__factory.ts:6:3 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
6 utils,
~~~~~
typechain-types/factories/contracts/handlers/TreasuryHandler__factory.ts:166:6 - error TS2304: Cannot find name 'signer'.
166 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/handlers/TreasuryHandler__factory.ts:166:13 - error TS1005: ',' expected.
166 | [signer?: Signer]
~
typechain-types/factories/contracts/handlers/TreasuryHandler__factory.ts:182:12 - error TS1005: ';' expected.
182 override deploy(
~~~~~~
typechain-types/factories/contracts/handlers/TreasuryHandler__factory.ts:182:12 - error TS2416: Property 'deploy' in type 'TreasuryHandler__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(bridgeAddress: PromiseOrValue<string>, initialResourceIDs: PromiseOrValue<BytesLike>[], initialContractAddresses: PromiseOrValue<string>[], overrides?: Overrides & { ...; }) => Promise<...>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<TreasuryHandler>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'TreasuryHandler' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'TreasuryHandler' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'TreasuryHandlerInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
182 override deploy(
~~~~~~
typechain-types/factories/contracts/handlers/TreasuryHandler__factory.ts:188:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<TreasuryHandler>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'TreasuryHandler': attach, deployed, functions, _bridgeAddress, and 9 more.
188 return super.deploy(
~~~~~~~~~~~~~
189 bridgeAddress,
~~~~~~~~~~~~~~~~~~~~
...
192 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
193 ) as Promise<TreasuryHandler>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/handlers/TreasuryHandler__factory.ts:195:3 - error TS2300: Duplicate identifier 'override'.
195 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/handlers/TreasuryHandler__factory.ts:195:12 - error TS1005: ';' expected.
195 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/handlers/TreasuryHandler__factory.ts:195:12 - error TS2416: Property 'getDeployTransaction' in type 'TreasuryHandler__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(bridgeAddress: PromiseOrValue<string>, initialResourceIDs: PromiseOrValue<BytesLike>[], initialContractAddresses: PromiseOrValue<string>[], overrides?: Overrides & { ...; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
195 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/handlers/TreasuryHandler__factory.ts:201:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
201 return super.getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
202 bridgeAddress,
~~~~~~~~~~~~~~~~~~~~
...
205 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
206 );
~~~~~~
typechain-types/factories/contracts/handlers/TreasuryHandler__factory.ts:208:3 - error TS2300: Duplicate identifier 'override'.
208 override attach(address: string): TreasuryHandler {
~~~~~~~~
typechain-types/factories/contracts/handlers/TreasuryHandler__factory.ts:208:12 - error TS1005: ';' expected.
208 override attach(address: string): TreasuryHandler {
~~~~~~
typechain-types/factories/contracts/handlers/TreasuryHandler__factory.ts:209:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
209 return super.attach(address) as TreasuryHandler;
~~~~~~
typechain-types/factories/contracts/handlers/TreasuryHandler__factory.ts:211:3 - error TS2300: Duplicate identifier 'override'.
211 override connect(signer: Signer): TreasuryHandler__factory {
~~~~~~~~
typechain-types/factories/contracts/handlers/TreasuryHandler__factory.ts:211:12 - error TS1005: ';' expected.
211 override connect(signer: Signer): TreasuryHandler__factory {
~~~~~~~
typechain-types/factories/contracts/handlers/TreasuryHandler__factory.ts:211:12 - error TS2416: Property 'connect' in type 'TreasuryHandler__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => TreasuryHandler__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'TreasuryHandler__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
211 override connect(signer: Signer): TreasuryHandler__factory {
~~~~~~~
typechain-types/factories/contracts/handlers/TreasuryHandler__factory.ts:212:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'TreasuryHandler__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'TreasuryHandler__factory': override, attach
212 return super.connect(signer) as TreasuryHandler__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/handlers/TreasuryHandler__factory.ts:224:12 - error TS2352: Conversion of type 'Contract' to type 'TreasuryHandler' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'TreasuryHandler': attach, deployed, functions, _bridgeAddress, and 9 more.
224 return new Contract(address, _abi, signerOrProvider) as TreasuryHandler;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/handlers/TreasuryHandler__factory.ts:224:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
224 return new Contract(address, _abi, signerOrProvider) as TreasuryHandler;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/IHasher__factory.ts:5:28 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/hashers/IHasher__factory.ts:86:12 - error TS2352: Conversion of type 'Contract' to type 'IHasher' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IHasher': attach, deployed, functions, hash3, and 5 more.
86 return new Contract(address, _abi, signerOrProvider) as IHasher;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/IHasher__factory.ts:86:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
86 return new Contract(address, _abi, signerOrProvider) as IHasher;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/KeccakHasher__factory.ts:4:18 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/hashers/KeccakHasher__factory.ts:81:6 - error TS2304: Cannot find name 'signer'.
81 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/hashers/KeccakHasher__factory.ts:81:13 - error TS1005: ',' expected.
81 | [signer?: Signer]
~
typechain-types/factories/contracts/hashers/KeccakHasher__factory.ts:97:12 - error TS1005: ';' expected.
97 override deploy(
~~~~~~
typechain-types/factories/contracts/hashers/KeccakHasher__factory.ts:97:12 - error TS2416: Property 'deploy' in type 'KeccakHasher__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<KeccakHasher>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<KeccakHasher>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'KeccakHasher' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'KeccakHasher' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'KeccakHasherInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
97 override deploy(
~~~~~~
typechain-types/factories/contracts/hashers/KeccakHasher__factory.ts:100:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<KeccakHasher>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'KeccakHasher': attach, deployed, functions, hash3, and 5 more.
100 return super.deploy(overrides || {}) as Promise<KeccakHasher>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/KeccakHasher__factory.ts:102:3 - error TS2300: Duplicate identifier 'override'.
102 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/hashers/KeccakHasher__factory.ts:102:12 - error TS1005: ';' expected.
102 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/KeccakHasher__factory.ts:102:12 - error TS2416: Property 'getDeployTransaction' in type 'KeccakHasher__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
102 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/KeccakHasher__factory.ts:105:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
105 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/KeccakHasher__factory.ts:107:3 - error TS2300: Duplicate identifier 'override'.
107 override attach(address: string): KeccakHasher {
~~~~~~~~
typechain-types/factories/contracts/hashers/KeccakHasher__factory.ts:107:12 - error TS1005: ';' expected.
107 override attach(address: string): KeccakHasher {
~~~~~~
typechain-types/factories/contracts/hashers/KeccakHasher__factory.ts:108:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
108 return super.attach(address) as KeccakHasher;
~~~~~~
typechain-types/factories/contracts/hashers/KeccakHasher__factory.ts:110:3 - error TS2300: Duplicate identifier 'override'.
110 override connect(signer: Signer): KeccakHasher__factory {
~~~~~~~~
typechain-types/factories/contracts/hashers/KeccakHasher__factory.ts:110:12 - error TS1005: ';' expected.
110 override connect(signer: Signer): KeccakHasher__factory {
~~~~~~~
typechain-types/factories/contracts/hashers/KeccakHasher__factory.ts:110:12 - error TS2416: Property 'connect' in type 'KeccakHasher__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => KeccakHasher__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'KeccakHasher__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
110 override connect(signer: Signer): KeccakHasher__factory {
~~~~~~~
typechain-types/factories/contracts/hashers/KeccakHasher__factory.ts:111:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'KeccakHasher__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'KeccakHasher__factory': override, attach
111 return super.connect(signer) as KeccakHasher__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/KeccakHasher__factory.ts:123:12 - error TS2352: Conversion of type 'Contract' to type 'KeccakHasher' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'KeccakHasher': attach, deployed, functions, hash3, and 5 more.
123 return new Contract(address, _abi, signerOrProvider) as KeccakHasher;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/KeccakHasher__factory.ts:123:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
123 return new Contract(address, _abi, signerOrProvider) as KeccakHasher;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT2__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT2__factory.ts:38:6 - error TS2304: Cannot find name 'signer'.
38 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT2__factory.ts:38:13 - error TS1005: ',' expected.
38 | [signer?: Signer]
~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT2__factory.ts:54:12 - error TS1005: ';' expected.
54 override deploy(
~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT2__factory.ts:54:12 - error TS2416: Property 'deploy' in type 'PoseidonT2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<PoseidonT2>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<PoseidonT2>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'PoseidonT2' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'PoseidonT2' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'PoseidonT2Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
54 override deploy(
~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT2__factory.ts:57:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<PoseidonT2>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'PoseidonT2': attach, deployed, functions, poseidon, and 3 more.
57 return super.deploy(overrides || {}) as Promise<PoseidonT2>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT2__factory.ts:59:3 - error TS2300: Duplicate identifier 'override'.
59 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT2__factory.ts:59:12 - error TS1005: ';' expected.
59 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT2__factory.ts:59:12 - error TS2416: Property 'getDeployTransaction' in type 'PoseidonT2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
59 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT2__factory.ts:62:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
62 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT2__factory.ts:64:3 - error TS2300: Duplicate identifier 'override'.
64 override attach(address: string): PoseidonT2 {
~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT2__factory.ts:64:12 - error TS1005: ';' expected.
64 override attach(address: string): PoseidonT2 {
~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT2__factory.ts:65:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
65 return super.attach(address) as PoseidonT2;
~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT2__factory.ts:67:3 - error TS2300: Duplicate identifier 'override'.
67 override connect(signer: Signer): PoseidonT2__factory {
~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT2__factory.ts:67:12 - error TS1005: ';' expected.
67 override connect(signer: Signer): PoseidonT2__factory {
~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT2__factory.ts:67:12 - error TS2416: Property 'connect' in type 'PoseidonT2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => PoseidonT2__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'PoseidonT2__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
67 override connect(signer: Signer): PoseidonT2__factory {
~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT2__factory.ts:68:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'PoseidonT2__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'PoseidonT2__factory': override, attach
68 return super.connect(signer) as PoseidonT2__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT2__factory.ts:80:12 - error TS2352: Conversion of type 'Contract' to type 'PoseidonT2' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'PoseidonT2': attach, deployed, functions, poseidon, and 3 more.
80 return new Contract(address, _abi, signerOrProvider) as PoseidonT2;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT2__factory.ts:80:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
80 return new Contract(address, _abi, signerOrProvider) as PoseidonT2;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT3__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT3__factory.ts:38:6 - error TS2304: Cannot find name 'signer'.
38 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT3__factory.ts:38:13 - error TS1005: ',' expected.
38 | [signer?: Signer]
~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT3__factory.ts:54:12 - error TS1005: ';' expected.
54 override deploy(
~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT3__factory.ts:54:12 - error TS2416: Property 'deploy' in type 'PoseidonT3__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<PoseidonT3>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<PoseidonT3>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'PoseidonT3' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'PoseidonT3' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'PoseidonT3Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
54 override deploy(
~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT3__factory.ts:57:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<PoseidonT3>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'PoseidonT3': attach, deployed, functions, poseidon, and 3 more.
57 return super.deploy(overrides || {}) as Promise<PoseidonT3>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT3__factory.ts:59:3 - error TS2300: Duplicate identifier 'override'.
59 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT3__factory.ts:59:12 - error TS1005: ';' expected.
59 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT3__factory.ts:59:12 - error TS2416: Property 'getDeployTransaction' in type 'PoseidonT3__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
59 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT3__factory.ts:62:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
62 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT3__factory.ts:64:3 - error TS2300: Duplicate identifier 'override'.
64 override attach(address: string): PoseidonT3 {
~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT3__factory.ts:64:12 - error TS1005: ';' expected.
64 override attach(address: string): PoseidonT3 {
~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT3__factory.ts:65:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
65 return super.attach(address) as PoseidonT3;
~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT3__factory.ts:67:3 - error TS2300: Duplicate identifier 'override'.
67 override connect(signer: Signer): PoseidonT3__factory {
~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT3__factory.ts:67:12 - error TS1005: ';' expected.
67 override connect(signer: Signer): PoseidonT3__factory {
~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT3__factory.ts:67:12 - error TS2416: Property 'connect' in type 'PoseidonT3__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => PoseidonT3__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'PoseidonT3__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
67 override connect(signer: Signer): PoseidonT3__factory {
~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT3__factory.ts:68:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'PoseidonT3__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'PoseidonT3__factory': override, attach
68 return super.connect(signer) as PoseidonT3__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT3__factory.ts:80:12 - error TS2352: Conversion of type 'Contract' to type 'PoseidonT3' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'PoseidonT3': attach, deployed, functions, poseidon, and 3 more.
80 return new Contract(address, _abi, signerOrProvider) as PoseidonT3;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT3__factory.ts:80:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
80 return new Contract(address, _abi, signerOrProvider) as PoseidonT3;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT4__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT4__factory.ts:38:6 - error TS2304: Cannot find name 'signer'.
38 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT4__factory.ts:38:13 - error TS1005: ',' expected.
38 | [signer?: Signer]
~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT4__factory.ts:54:12 - error TS1005: ';' expected.
54 override deploy(
~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT4__factory.ts:54:12 - error TS2416: Property 'deploy' in type 'PoseidonT4__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<PoseidonT4>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<PoseidonT4>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'PoseidonT4' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'PoseidonT4' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'PoseidonT4Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
54 override deploy(
~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT4__factory.ts:57:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<PoseidonT4>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'PoseidonT4': attach, deployed, functions, poseidon, and 3 more.
57 return super.deploy(overrides || {}) as Promise<PoseidonT4>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT4__factory.ts:59:3 - error TS2300: Duplicate identifier 'override'.
59 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT4__factory.ts:59:12 - error TS1005: ';' expected.
59 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT4__factory.ts:59:12 - error TS2416: Property 'getDeployTransaction' in type 'PoseidonT4__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
59 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT4__factory.ts:62:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
62 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT4__factory.ts:64:3 - error TS2300: Duplicate identifier 'override'.
64 override attach(address: string): PoseidonT4 {
~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT4__factory.ts:64:12 - error TS1005: ';' expected.
64 override attach(address: string): PoseidonT4 {
~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT4__factory.ts:65:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
65 return super.attach(address) as PoseidonT4;
~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT4__factory.ts:67:3 - error TS2300: Duplicate identifier 'override'.
67 override connect(signer: Signer): PoseidonT4__factory {
~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT4__factory.ts:67:12 - error TS1005: ';' expected.
67 override connect(signer: Signer): PoseidonT4__factory {
~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT4__factory.ts:67:12 - error TS2416: Property 'connect' in type 'PoseidonT4__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => PoseidonT4__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'PoseidonT4__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
67 override connect(signer: Signer): PoseidonT4__factory {
~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT4__factory.ts:68:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'PoseidonT4__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'PoseidonT4__factory': override, attach
68 return super.connect(signer) as PoseidonT4__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT4__factory.ts:80:12 - error TS2352: Conversion of type 'Contract' to type 'PoseidonT4' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'PoseidonT4': attach, deployed, functions, poseidon, and 3 more.
80 return new Contract(address, _abi, signerOrProvider) as PoseidonT4;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT4__factory.ts:80:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
80 return new Contract(address, _abi, signerOrProvider) as PoseidonT4;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT6__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT6__factory.ts:38:6 - error TS2304: Cannot find name 'signer'.
38 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT6__factory.ts:38:13 - error TS1005: ',' expected.
38 | [signer?: Signer]
~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT6__factory.ts:54:12 - error TS1005: ';' expected.
54 override deploy(
~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT6__factory.ts:54:12 - error TS2416: Property 'deploy' in type 'PoseidonT6__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<PoseidonT6>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<PoseidonT6>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'PoseidonT6' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'PoseidonT6' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'PoseidonT6Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
54 override deploy(
~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT6__factory.ts:57:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<PoseidonT6>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'PoseidonT6': attach, deployed, functions, poseidon, and 3 more.
57 return super.deploy(overrides || {}) as Promise<PoseidonT6>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT6__factory.ts:59:3 - error TS2300: Duplicate identifier 'override'.
59 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT6__factory.ts:59:12 - error TS1005: ';' expected.
59 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT6__factory.ts:59:12 - error TS2416: Property 'getDeployTransaction' in type 'PoseidonT6__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
59 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT6__factory.ts:62:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
62 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT6__factory.ts:64:3 - error TS2300: Duplicate identifier 'override'.
64 override attach(address: string): PoseidonT6 {
~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT6__factory.ts:64:12 - error TS1005: ';' expected.
64 override attach(address: string): PoseidonT6 {
~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT6__factory.ts:65:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
65 return super.attach(address) as PoseidonT6;
~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT6__factory.ts:67:3 - error TS2300: Duplicate identifier 'override'.
67 override connect(signer: Signer): PoseidonT6__factory {
~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT6__factory.ts:67:12 - error TS1005: ';' expected.
67 override connect(signer: Signer): PoseidonT6__factory {
~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT6__factory.ts:67:12 - error TS2416: Property 'connect' in type 'PoseidonT6__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => PoseidonT6__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'PoseidonT6__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
67 override connect(signer: Signer): PoseidonT6__factory {
~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT6__factory.ts:68:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'PoseidonT6__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'PoseidonT6__factory': override, attach
68 return super.connect(signer) as PoseidonT6__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT6__factory.ts:80:12 - error TS2352: Conversion of type 'Contract' to type 'PoseidonT6' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'PoseidonT6': attach, deployed, functions, poseidon, and 3 more.
80 return new Contract(address, _abi, signerOrProvider) as PoseidonT6;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/Poseidon.sol/PoseidonT6__factory.ts:80:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
80 return new Contract(address, _abi, signerOrProvider) as PoseidonT6;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/PoseidonHasher__factory.ts:4:18 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/hashers/PoseidonHasher__factory.ts:138:6 - error TS2304: Cannot find name 'linkLibraryAddresses'.
138 | [linkLibraryAddresses: PoseidonHasherLibraryAddresses, signer?: Signer]
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/PoseidonHasher__factory.ts:138:26 - error TS1005: ',' expected.
138 | [linkLibraryAddresses: PoseidonHasherLibraryAddresses, signer?: Signer]
~
typechain-types/factories/contracts/hashers/PoseidonHasher__factory.ts:138:60 - error TS2304: Cannot find name 'signer'.
138 | [linkLibraryAddresses: PoseidonHasherLibraryAddresses, signer?: Signer]
~~~~~~
typechain-types/factories/contracts/hashers/PoseidonHasher__factory.ts:138:67 - error TS1005: ',' expected.
138 | [linkLibraryAddresses: PoseidonHasherLibraryAddresses, signer?: Signer]
~
typechain-types/factories/contracts/hashers/PoseidonHasher__factory.ts:160:9 - error TS2345: Argument of type 'PoseidonHasherLibraryAddresses' is not assignable to parameter of type 'ContractRunner'.
Property 'provider' is missing in type 'PoseidonHasherLibraryAddresses' but required in type 'ContractRunner'.
160 signer
~~~~~~
node_modules/ethers/types/providers/contracts.d.ts:3:5
3 provider: null | Provider;
~~~~~~~~
'provider' is declared here.
typechain-types/factories/contracts/hashers/PoseidonHasher__factory.ts:201:12 - error TS1005: ';' expected.
201 override deploy(
~~~~~~
typechain-types/factories/contracts/hashers/PoseidonHasher__factory.ts:201:12 - error TS2416: Property 'deploy' in type 'PoseidonHasher__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<PoseidonHasher>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<PoseidonHasher>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'PoseidonHasher' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'PoseidonHasher' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'PoseidonHasherInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
201 override deploy(
~~~~~~
typechain-types/factories/contracts/hashers/PoseidonHasher__factory.ts:204:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<PoseidonHasher>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'PoseidonHasher': attach, deployed, functions, hash1, and 8 more.
204 return super.deploy(overrides || {}) as Promise<PoseidonHasher>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/PoseidonHasher__factory.ts:206:3 - error TS2300: Duplicate identifier 'override'.
206 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/hashers/PoseidonHasher__factory.ts:206:12 - error TS1005: ';' expected.
206 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/PoseidonHasher__factory.ts:206:12 - error TS2416: Property 'getDeployTransaction' in type 'PoseidonHasher__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
206 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/PoseidonHasher__factory.ts:209:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
209 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/PoseidonHasher__factory.ts:211:3 - error TS2300: Duplicate identifier 'override'.
211 override attach(address: string): PoseidonHasher {
~~~~~~~~
typechain-types/factories/contracts/hashers/PoseidonHasher__factory.ts:211:12 - error TS1005: ';' expected.
211 override attach(address: string): PoseidonHasher {
~~~~~~
typechain-types/factories/contracts/hashers/PoseidonHasher__factory.ts:212:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
212 return super.attach(address) as PoseidonHasher;
~~~~~~
typechain-types/factories/contracts/hashers/PoseidonHasher__factory.ts:214:3 - error TS2300: Duplicate identifier 'override'.
214 override connect(signer: Signer): PoseidonHasher__factory {
~~~~~~~~
typechain-types/factories/contracts/hashers/PoseidonHasher__factory.ts:214:12 - error TS1005: ';' expected.
214 override connect(signer: Signer): PoseidonHasher__factory {
~~~~~~~
typechain-types/factories/contracts/hashers/PoseidonHasher__factory.ts:214:12 - error TS2416: Property 'connect' in type 'PoseidonHasher__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => PoseidonHasher__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'PoseidonHasher__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
214 override connect(signer: Signer): PoseidonHasher__factory {
~~~~~~~
typechain-types/factories/contracts/hashers/PoseidonHasher__factory.ts:215:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'PoseidonHasher__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'PoseidonHasher__factory': override, attach
215 return super.connect(signer) as PoseidonHasher__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/PoseidonHasher__factory.ts:227:12 - error TS2352: Conversion of type 'Contract' to type 'PoseidonHasher' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'PoseidonHasher': attach, deployed, functions, hash1, and 8 more.
227 return new Contract(address, _abi, signerOrProvider) as PoseidonHasher;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/hashers/PoseidonHasher__factory.ts:227:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
227 return new Contract(address, _abi, signerOrProvider) as PoseidonHasher;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/anchors/ILinkableAnchor__factory.ts:5:28 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/anchors/ILinkableAnchor__factory.ts:101:12 - error TS2352: Conversion of type 'Contract' to type 'ILinkableAnchor' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'ILinkableAnchor': attach, deployed, functions, configureMaximumDepositLimit, and 6 more.
101 return new Contract(address, _abi, signerOrProvider) as ILinkableAnchor;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/anchors/ILinkableAnchor__factory.ts:101:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
101 return new Contract(address, _abi, signerOrProvider) as ILinkableAnchor;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/external/aave/IAaveLendingPool__factory.ts:5:28 - error TS2305: Module '"../../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/external/aave/IAaveLendingPool__factory.ts:81:12 - error TS2352: Conversion of type 'Contract' to type 'IAaveLendingPool' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IAaveLendingPool': attach, deployed, functions, deposit, and 4 more.
81 return new Contract(address, _abi, signerOrProvider) as IAaveLendingPool;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/external/aave/IAaveLendingPool__factory.ts:81:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
81 return new Contract(address, _abi, signerOrProvider) as IAaveLendingPool;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/external/chainalysis/ISanctionsList__factory.ts:5:28 - error TS2305: Module '"../../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/external/chainalysis/ISanctionsList__factory.ts:43:12 - error TS2352: Conversion of type 'Contract' to type 'ISanctionsList' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'ISanctionsList': attach, deployed, functions, isSanctioned, and 3 more.
43 return new Contract(address, _abi, signerOrProvider) as ISanctionsList;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/external/chainalysis/ISanctionsList__factory.ts:43:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
43 return new Contract(address, _abi, signerOrProvider) as ISanctionsList;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/IExecutor__factory.ts:5:28 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/IExecutor__factory.ts:73:12 - error TS2352: Conversion of type 'Contract' to type 'IExecutor' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IExecutor': attach, deployed, functions, executeProposal, and 5 more.
73 return new Contract(address, _abi, signerOrProvider) as IExecutor;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/IExecutor__factory.ts:73:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
73 return new Contract(address, _abi, signerOrProvider) as IExecutor;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/IMerkleSystem.sol/IMerkleSystem__factory.ts:5:28 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/IMerkleSystem.sol/IMerkleSystem__factory.ts:114:12 - error TS2352: Conversion of type 'Contract' to type 'IMerkleSystem' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IMerkleSystem': attach, deployed, functions, getHasher, and 8 more.
114 return new Contract(address, _abi, signerOrProvider) as IMerkleSystem;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/IMerkleSystem.sol/IMerkleSystem__factory.ts:114:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
114 return new Contract(address, _abi, signerOrProvider) as IMerkleSystem;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/IMerkleSystem.sol/MerkleSystem__factory.ts:5:28 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/IMerkleSystem.sol/MerkleSystem__factory.ts:296:12 - error TS2352: Conversion of type 'Contract' to type 'MerkleSystem' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'MerkleSystem': attach, deployed, functions, FIELD_SIZE, and 17 more.
296 return new Contract(address, _abi, signerOrProvider) as MerkleSystem;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/IMerkleSystem.sol/MerkleSystem__factory.ts:296:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
296 return new Contract(address, _abi, signerOrProvider) as MerkleSystem;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/ITreasury__factory.ts:5:28 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/ITreasury__factory.ts:70:12 - error TS2352: Conversion of type 'Contract' to type 'ITreasury' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'ITreasury': attach, deployed, functions, rescueTokens, and 4 more.
70 return new Contract(address, _abi, signerOrProvider) as ITreasury;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/ITreasury__factory.ts:70:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
70 return new Contract(address, _abi, signerOrProvider) as ITreasury;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/tokens/IAaveTokenWrapper__factory.ts:5:28 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/tokens/IAaveTokenWrapper__factory.ts:60:12 - error TS2352: Conversion of type 'Contract' to type 'IAaveTokenWrapper' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IAaveTokenWrapper': attach, deployed, functions, deposit, and 4 more.
60 return new Contract(address, _abi, signerOrProvider) as IAaveTokenWrapper;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/tokens/IAaveTokenWrapper__factory.ts:60:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
60 return new Contract(address, _abi, signerOrProvider) as IAaveTokenWrapper;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/tokens/IFungibleTokenWrapper__factory.ts:5:28 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/tokens/IFungibleTokenWrapper__factory.ts:96:12 - error TS2352: Conversion of type 'Contract' to type 'IFungibleTokenWrapper' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IFungibleTokenWrapper': attach, deployed, functions, add, and 6 more.
96 return new Contract(
~~~~~~~~~~~~~
97 address,
~~~~~~~~~~~~~~
...
99 signerOrProvider
~~~~~~~~~~~~~~~~~~~~~~
100 ) as IFungibleTokenWrapper;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/tokens/IFungibleTokenWrapper__factory.ts:99:7 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
99 signerOrProvider
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/tokens/IMintableERC20__factory.ts:5:28 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/tokens/IMintableERC20__factory.ts:95:12 - error TS2352: Conversion of type 'Contract' to type 'IMintableERC20' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IMintableERC20': attach, deployed, functions, mint, and 5 more.
95 return new Contract(address, _abi, signerOrProvider) as IMintableERC20;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/tokens/IMintableERC20__factory.ts:95:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
95 return new Contract(address, _abi, signerOrProvider) as IMintableERC20;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/tokens/IMultiTokenManager__factory.ts:5:28 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/tokens/IMultiTokenManager__factory.ts:125:12 - error TS2352: Conversion of type 'Contract' to type 'IMultiTokenManager' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IMultiTokenManager': attach, deployed, functions, initialize, and 5 more.
125 return new Contract(address, _abi, signerOrProvider) as IMultiTokenManager;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/tokens/IMultiTokenManager__factory.ts:125:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
125 return new Contract(address, _abi, signerOrProvider) as IMultiTokenManager;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/tokens/IMultiTokenWrapper__factory.ts:5:28 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/tokens/IMultiTokenWrapper__factory.ts:258:12 - error TS2352: Conversion of type 'Contract' to type 'IMultiTokenWrapper' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IMultiTokenWrapper': attach, deployed, functions, getAmountToWrap, and 11 more.
258 return new Contract(address, _abi, signerOrProvider) as IMultiTokenWrapper;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/tokens/IMultiTokenWrapper__factory.ts:258:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
258 return new Contract(address, _abi, signerOrProvider) as IMultiTokenWrapper;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/tokens/IRegistry__factory.ts:5:28 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/tokens/IRegistry__factory.ts:148:12 - error TS2352: Conversion of type 'Contract' to type 'IRegistry' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IRegistry': attach, deployed, functions, getAssetAddress, and 6 more.
148 return new Contract(address, _abi, signerOrProvider) as IRegistry;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/tokens/IRegistry__factory.ts:148:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
148 return new Contract(address, _abi, signerOrProvider) as IRegistry;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/tokens/ITokenWrapper__factory.ts:5:28 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/tokens/ITokenWrapper__factory.ts:214:12 - error TS2352: Conversion of type 'Contract' to type 'ITokenWrapper' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'ITokenWrapper': attach, deployed, functions, getAmountToWrap, and 11 more.
214 return new Contract(address, _abi, signerOrProvider) as ITokenWrapper;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/tokens/ITokenWrapper__factory.ts:214:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
214 return new Contract(address, _abi, signerOrProvider) as ITokenWrapper;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IAnchorVerifier__factory.ts:5:28 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IAnchorVerifier__factory.ts:68:12 - error TS2352: Conversion of type 'Contract' to type 'IAnchorVerifier' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IAnchorVerifier': attach, deployed, functions, verifyProof, and 3 more.
68 return new Contract(address, _abi, signerOrProvider) as IAnchorVerifier;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IAnchorVerifier__factory.ts:68:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
68 return new Contract(address, _abi, signerOrProvider) as IAnchorVerifier;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IBatchVerifier.sol/IBatchTreeVerifier__factory.ts:5:28 - error TS2305: Module '"../../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IBatchVerifier.sol/IBatchTreeVerifier__factory.ts:58:12 - error TS2352: Conversion of type 'Contract' to type 'IBatchTreeVerifier' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IBatchTreeVerifier': attach, deployed, functions, verifyProof, and 3 more.
58 return new Contract(address, _abi, signerOrProvider) as IBatchTreeVerifier;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IBatchVerifier.sol/IBatchTreeVerifier__factory.ts:58:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
58 return new Contract(address, _abi, signerOrProvider) as IBatchTreeVerifier;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IBatchVerifier.sol/IBatchTreeVerifierSelector__factory.ts:5:28 - error TS2305: Module '"../../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IBatchVerifier.sol/IBatchTreeVerifierSelector__factory.ts:63:12 - error TS2352: Conversion of type 'Contract' to type 'IBatchTreeVerifierSelector' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IBatchTreeVerifierSelector': attach, deployed, functions, verifyProof, and 3 more.
63 return new Contract(
~~~~~~~~~~~~~
64 address,
~~~~~~~~~~~~~~
...
66 signerOrProvider
~~~~~~~~~~~~~~~~~~~~~~
67 ) as IBatchTreeVerifierSelector;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IBatchVerifier.sol/IBatchTreeVerifierSelector__factory.ts:66:7 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
66 signerOrProvider
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IIdentityVAnchorVerifier.sol/IIdentityVAnchorVerifier2_16__factory.ts:5:28 - error TS2305: Module '"../../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IIdentityVAnchorVerifier.sol/IIdentityVAnchorVerifier2_16__factory.ts:58:12 - error TS2352: Conversion of type 'Contract' to type 'IIdentityVAnchorVerifier2_16' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IIdentityVAnchorVerifier2_16': attach, deployed, functions, verifyProof, and 3 more.
58 return new Contract(
~~~~~~~~~~~~~
59 address,
~~~~~~~~~~~~~~
...
61 signerOrProvider
~~~~~~~~~~~~~~~~~~~~~~
62 ) as IIdentityVAnchorVerifier2_16;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IIdentityVAnchorVerifier.sol/IIdentityVAnchorVerifier2_16__factory.ts:61:7 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
61 signerOrProvider
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IIdentityVAnchorVerifier.sol/IIdentityVAnchorVerifier2_2__factory.ts:5:28 - error TS2305: Module '"../../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IIdentityVAnchorVerifier.sol/IIdentityVAnchorVerifier2_2__factory.ts:58:12 - error TS2352: Conversion of type 'Contract' to type 'IIdentityVAnchorVerifier2_2' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IIdentityVAnchorVerifier2_2': attach, deployed, functions, verifyProof, and 3 more.
58 return new Contract(
~~~~~~~~~~~~~
59 address,
~~~~~~~~~~~~~~
...
61 signerOrProvider
~~~~~~~~~~~~~~~~~~~~~~
62 ) as IIdentityVAnchorVerifier2_2;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IIdentityVAnchorVerifier.sol/IIdentityVAnchorVerifier2_2__factory.ts:61:7 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
61 signerOrProvider
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IIdentityVAnchorVerifier.sol/IIdentityVAnchorVerifier8_16__factory.ts:5:28 - error TS2305: Module '"../../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IIdentityVAnchorVerifier.sol/IIdentityVAnchorVerifier8_16__factory.ts:58:12 - error TS2352: Conversion of type 'Contract' to type 'IIdentityVAnchorVerifier8_16' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IIdentityVAnchorVerifier8_16': attach, deployed, functions, verifyProof, and 3 more.
58 return new Contract(
~~~~~~~~~~~~~
59 address,
~~~~~~~~~~~~~~
...
61 signerOrProvider
~~~~~~~~~~~~~~~~~~~~~~
62 ) as IIdentityVAnchorVerifier8_16;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IIdentityVAnchorVerifier.sol/IIdentityVAnchorVerifier8_16__factory.ts:61:7 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
61 signerOrProvider
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IIdentityVAnchorVerifier.sol/IIdentityVAnchorVerifier8_2__factory.ts:5:28 - error TS2305: Module '"../../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IIdentityVAnchorVerifier.sol/IIdentityVAnchorVerifier8_2__factory.ts:58:12 - error TS2352: Conversion of type 'Contract' to type 'IIdentityVAnchorVerifier8_2' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IIdentityVAnchorVerifier8_2': attach, deployed, functions, verifyProof, and 3 more.
58 return new Contract(
~~~~~~~~~~~~~
59 address,
~~~~~~~~~~~~~~
...
61 signerOrProvider
~~~~~~~~~~~~~~~~~~~~~~
62 ) as IIdentityVAnchorVerifier8_2;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IIdentityVAnchorVerifier.sol/IIdentityVAnchorVerifier8_2__factory.ts:61:7 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
61 signerOrProvider
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IMASPVAnchorVerifier.sol/IMASPVAnchorVerifier2_16__factory.ts:5:28 - error TS2305: Module '"../../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IMASPVAnchorVerifier.sol/IMASPVAnchorVerifier2_16__factory.ts:58:12 - error TS2352: Conversion of type 'Contract' to type 'IMASPVAnchorVerifier2_16' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IMASPVAnchorVerifier2_16': attach, deployed, functions, verifyProof, and 3 more.
58 return new Contract(
~~~~~~~~~~~~~
59 address,
~~~~~~~~~~~~~~
...
61 signerOrProvider
~~~~~~~~~~~~~~~~~~~~~~
62 ) as IMASPVAnchorVerifier2_16;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IMASPVAnchorVerifier.sol/IMASPVAnchorVerifier2_16__factory.ts:61:7 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
61 signerOrProvider
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IMASPVAnchorVerifier.sol/IMASPVAnchorVerifier2_2__factory.ts:5:28 - error TS2305: Module '"../../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IMASPVAnchorVerifier.sol/IMASPVAnchorVerifier2_2__factory.ts:58:12 - error TS2352: Conversion of type 'Contract' to type 'IMASPVAnchorVerifier2_2' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IMASPVAnchorVerifier2_2': attach, deployed, functions, verifyProof, and 3 more.
58 return new Contract(
~~~~~~~~~~~~~
59 address,
~~~~~~~~~~~~~~
...
61 signerOrProvider
~~~~~~~~~~~~~~~~~~~~~~
62 ) as IMASPVAnchorVerifier2_2;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IMASPVAnchorVerifier.sol/IMASPVAnchorVerifier2_2__factory.ts:61:7 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
61 signerOrProvider
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IMASPVAnchorVerifier.sol/IMASPVAnchorVerifier8_16__factory.ts:5:28 - error TS2305: Module '"../../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IMASPVAnchorVerifier.sol/IMASPVAnchorVerifier8_16__factory.ts:58:12 - error TS2352: Conversion of type 'Contract' to type 'IMASPVAnchorVerifier8_16' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IMASPVAnchorVerifier8_16': attach, deployed, functions, verifyProof, and 3 more.
58 return new Contract(
~~~~~~~~~~~~~
59 address,
~~~~~~~~~~~~~~
...
61 signerOrProvider
~~~~~~~~~~~~~~~~~~~~~~
62 ) as IMASPVAnchorVerifier8_16;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IMASPVAnchorVerifier.sol/IMASPVAnchorVerifier8_16__factory.ts:61:7 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
61 signerOrProvider
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IMASPVAnchorVerifier.sol/IMASPVAnchorVerifier8_2__factory.ts:5:28 - error TS2305: Module '"../../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IMASPVAnchorVerifier.sol/IMASPVAnchorVerifier8_2__factory.ts:58:12 - error TS2352: Conversion of type 'Contract' to type 'IMASPVAnchorVerifier8_2' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IMASPVAnchorVerifier8_2': attach, deployed, functions, verifyProof, and 3 more.
58 return new Contract(
~~~~~~~~~~~~~
59 address,
~~~~~~~~~~~~~~
...
61 signerOrProvider
~~~~~~~~~~~~~~~~~~~~~~
62 ) as IMASPVAnchorVerifier8_2;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IMASPVAnchorVerifier.sol/IMASPVAnchorVerifier8_2__factory.ts:61:7 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
61 signerOrProvider
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/ISetVerifier__factory.ts:5:28 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/verifiers/ISetVerifier__factory.ts:42:12 - error TS2352: Conversion of type 'Contract' to type 'ISetVerifier' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'ISetVerifier': attach, deployed, functions, setVerifier, and 3 more.
42 return new Contract(address, _abi, signerOrProvider) as ISetVerifier;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/ISetVerifier__factory.ts:42:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
42 return new Contract(address, _abi, signerOrProvider) as ISetVerifier;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVAnchorVerifier.sol/IVAnchorVerifier2_16__factory.ts:5:28 - error TS2305: Module '"../../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVAnchorVerifier.sol/IVAnchorVerifier2_16__factory.ts:58:12 - error TS2352: Conversion of type 'Contract' to type 'IVAnchorVerifier2_16' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IVAnchorVerifier2_16': attach, deployed, functions, verifyProof, and 3 more.
58 return new Contract(
~~~~~~~~~~~~~
59 address,
~~~~~~~~~~~~~~
...
61 signerOrProvider
~~~~~~~~~~~~~~~~~~~~~~
62 ) as IVAnchorVerifier2_16;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVAnchorVerifier.sol/IVAnchorVerifier2_16__factory.ts:61:7 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
61 signerOrProvider
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVAnchorVerifier.sol/IVAnchorVerifier2_2__factory.ts:5:28 - error TS2305: Module '"../../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVAnchorVerifier.sol/IVAnchorVerifier2_2__factory.ts:58:12 - error TS2352: Conversion of type 'Contract' to type 'IVAnchorVerifier2_2' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IVAnchorVerifier2_2': attach, deployed, functions, verifyProof, and 3 more.
58 return new Contract(address, _abi, signerOrProvider) as IVAnchorVerifier2_2;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVAnchorVerifier.sol/IVAnchorVerifier2_2__factory.ts:58:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
58 return new Contract(address, _abi, signerOrProvider) as IVAnchorVerifier2_2;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVAnchorVerifier.sol/IVAnchorVerifier8_16__factory.ts:5:28 - error TS2305: Module '"../../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVAnchorVerifier.sol/IVAnchorVerifier8_16__factory.ts:58:12 - error TS2352: Conversion of type 'Contract' to type 'IVAnchorVerifier8_16' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IVAnchorVerifier8_16': attach, deployed, functions, verifyProof, and 3 more.
58 return new Contract(
~~~~~~~~~~~~~
59 address,
~~~~~~~~~~~~~~
...
61 signerOrProvider
~~~~~~~~~~~~~~~~~~~~~~
62 ) as IVAnchorVerifier8_16;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVAnchorVerifier.sol/IVAnchorVerifier8_16__factory.ts:61:7 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
61 signerOrProvider
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVAnchorVerifier.sol/IVAnchorVerifier8_2__factory.ts:5:28 - error TS2305: Module '"../../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVAnchorVerifier.sol/IVAnchorVerifier8_2__factory.ts:58:12 - error TS2352: Conversion of type 'Contract' to type 'IVAnchorVerifier8_2' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IVAnchorVerifier8_2': attach, deployed, functions, verifyProof, and 3 more.
58 return new Contract(address, _abi, signerOrProvider) as IVAnchorVerifier8_2;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVAnchorVerifier.sol/IVAnchorVerifier8_2__factory.ts:58:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
58 return new Contract(address, _abi, signerOrProvider) as IVAnchorVerifier8_2;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVerifier.sol/IVerifier2__factory.ts:5:28 - error TS2305: Module '"../../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVerifier.sol/IVerifier2__factory.ts:58:12 - error TS2352: Conversion of type 'Contract' to type 'IVerifier2' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IVerifier2': attach, deployed, functions, verifyProof, and 3 more.
58 return new Contract(address, _abi, signerOrProvider) as IVerifier2;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVerifier.sol/IVerifier2__factory.ts:58:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
58 return new Contract(address, _abi, signerOrProvider) as IVerifier2;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVerifier.sol/IVerifier3__factory.ts:5:28 - error TS2305: Module '"../../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVerifier.sol/IVerifier3__factory.ts:58:12 - error TS2352: Conversion of type 'Contract' to type 'IVerifier3' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IVerifier3': attach, deployed, functions, verifyProof, and 3 more.
58 return new Contract(address, _abi, signerOrProvider) as IVerifier3;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVerifier.sol/IVerifier3__factory.ts:58:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
58 return new Contract(address, _abi, signerOrProvider) as IVerifier3;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVerifier.sol/IVerifier4__factory.ts:5:28 - error TS2305: Module '"../../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVerifier.sol/IVerifier4__factory.ts:58:12 - error TS2352: Conversion of type 'Contract' to type 'IVerifier4' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IVerifier4': attach, deployed, functions, verifyProof, and 3 more.
58 return new Contract(address, _abi, signerOrProvider) as IVerifier4;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVerifier.sol/IVerifier4__factory.ts:58:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
58 return new Contract(address, _abi, signerOrProvider) as IVerifier4;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVerifier.sol/IVerifier5__factory.ts:5:28 - error TS2305: Module '"../../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVerifier.sol/IVerifier5__factory.ts:58:12 - error TS2352: Conversion of type 'Contract' to type 'IVerifier5' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IVerifier5': attach, deployed, functions, verifyProof, and 3 more.
58 return new Contract(address, _abi, signerOrProvider) as IVerifier5;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVerifier.sol/IVerifier5__factory.ts:58:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
58 return new Contract(address, _abi, signerOrProvider) as IVerifier5;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVerifier.sol/IVerifier6__factory.ts:5:28 - error TS2305: Module '"../../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVerifier.sol/IVerifier6__factory.ts:58:12 - error TS2352: Conversion of type 'Contract' to type 'IVerifier6' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'IVerifier6': attach, deployed, functions, verifyProof, and 3 more.
58 return new Contract(address, _abi, signerOrProvider) as IVerifier6;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/interfaces/verifiers/IVerifier.sol/IVerifier6__factory.ts:58:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
58 return new Contract(address, _abi, signerOrProvider) as IVerifier6;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/libs/MASPVAnchorEncodeInputs__factory.ts:4:18 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/libs/MASPVAnchorEncodeInputs__factory.ts:190:6 - error TS2304: Cannot find name 'signer'.
190 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/libs/MASPVAnchorEncodeInputs__factory.ts:190:13 - error TS1005: ',' expected.
190 | [signer?: Signer]
~
typechain-types/factories/contracts/libs/MASPVAnchorEncodeInputs__factory.ts:206:12 - error TS1005: ';' expected.
206 override deploy(
~~~~~~
typechain-types/factories/contracts/libs/MASPVAnchorEncodeInputs__factory.ts:206:12 - error TS2416: Property 'deploy' in type 'MASPVAnchorEncodeInputs__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<MASPVAnchorEncodeInputs>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<MASPVAnchorEncodeInputs>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'MASPVAnchorEncodeInputs' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'MASPVAnchorEncodeInputs' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'MASPVAnchorEncodeInputsInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
206 override deploy(
~~~~~~
typechain-types/factories/contracts/libs/MASPVAnchorEncodeInputs__factory.ts:209:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<MASPVAnchorEncodeInputs>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'MASPVAnchorEncodeInputs': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 7 more.
209 return super.deploy(overrides || {}) as Promise<MASPVAnchorEncodeInputs>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/libs/MASPVAnchorEncodeInputs__factory.ts:211:3 - error TS2300: Duplicate identifier 'override'.
211 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/libs/MASPVAnchorEncodeInputs__factory.ts:211:12 - error TS1005: ';' expected.
211 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/libs/MASPVAnchorEncodeInputs__factory.ts:211:12 - error TS2416: Property 'getDeployTransaction' in type 'MASPVAnchorEncodeInputs__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
211 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/libs/MASPVAnchorEncodeInputs__factory.ts:214:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
214 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/libs/MASPVAnchorEncodeInputs__factory.ts:216:3 - error TS2300: Duplicate identifier 'override'.
216 override attach(address: string): MASPVAnchorEncodeInputs {
~~~~~~~~
typechain-types/factories/contracts/libs/MASPVAnchorEncodeInputs__factory.ts:216:12 - error TS1005: ';' expected.
216 override attach(address: string): MASPVAnchorEncodeInputs {
~~~~~~
typechain-types/factories/contracts/libs/MASPVAnchorEncodeInputs__factory.ts:217:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
217 return super.attach(address) as MASPVAnchorEncodeInputs;
~~~~~~
typechain-types/factories/contracts/libs/MASPVAnchorEncodeInputs__factory.ts:219:3 - error TS2300: Duplicate identifier 'override'.
219 override connect(signer: Signer): MASPVAnchorEncodeInputs__factory {
~~~~~~~~
typechain-types/factories/contracts/libs/MASPVAnchorEncodeInputs__factory.ts:219:12 - error TS1005: ';' expected.
219 override connect(signer: Signer): MASPVAnchorEncodeInputs__factory {
~~~~~~~
typechain-types/factories/contracts/libs/MASPVAnchorEncodeInputs__factory.ts:219:12 - error TS2416: Property 'connect' in type 'MASPVAnchorEncodeInputs__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => MASPVAnchorEncodeInputs__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'MASPVAnchorEncodeInputs__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
219 override connect(signer: Signer): MASPVAnchorEncodeInputs__factory {
~~~~~~~
typechain-types/factories/contracts/libs/MASPVAnchorEncodeInputs__factory.ts:220:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'MASPVAnchorEncodeInputs__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'MASPVAnchorEncodeInputs__factory': override, attach
220 return super.connect(signer) as MASPVAnchorEncodeInputs__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/libs/MASPVAnchorEncodeInputs__factory.ts:232:12 - error TS2352: Conversion of type 'Contract' to type 'MASPVAnchorEncodeInputs' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'MASPVAnchorEncodeInputs': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 7 more.
232 return new Contract(
~~~~~~~~~~~~~
233 address,
~~~~~~~~~~~~~~
...
235 signerOrProvider
~~~~~~~~~~~~~~~~~~~~~~
236 ) as MASPVAnchorEncodeInputs;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/libs/MASPVAnchorEncodeInputs__factory.ts:235:7 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
235 signerOrProvider
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/libs/VAnchorEncodeInputs__factory.ts:4:18 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/libs/VAnchorEncodeInputs__factory.ts:190:6 - error TS2304: Cannot find name 'signer'.
190 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/libs/VAnchorEncodeInputs__factory.ts:190:13 - error TS1005: ',' expected.
190 | [signer?: Signer]
~
typechain-types/factories/contracts/libs/VAnchorEncodeInputs__factory.ts:206:12 - error TS1005: ';' expected.
206 override deploy(
~~~~~~
typechain-types/factories/contracts/libs/VAnchorEncodeInputs__factory.ts:206:12 - error TS2416: Property 'deploy' in type 'VAnchorEncodeInputs__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<VAnchorEncodeInputs>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<VAnchorEncodeInputs>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'VAnchorEncodeInputs' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'VAnchorEncodeInputs' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'VAnchorEncodeInputsInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
206 override deploy(
~~~~~~
typechain-types/factories/contracts/libs/VAnchorEncodeInputs__factory.ts:209:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<VAnchorEncodeInputs>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'VAnchorEncodeInputs': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 7 more.
209 return super.deploy(overrides || {}) as Promise<VAnchorEncodeInputs>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/libs/VAnchorEncodeInputs__factory.ts:211:3 - error TS2300: Duplicate identifier 'override'.
211 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/libs/VAnchorEncodeInputs__factory.ts:211:12 - error TS1005: ';' expected.
211 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/libs/VAnchorEncodeInputs__factory.ts:211:12 - error TS2416: Property 'getDeployTransaction' in type 'VAnchorEncodeInputs__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
211 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/libs/VAnchorEncodeInputs__factory.ts:214:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
214 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/libs/VAnchorEncodeInputs__factory.ts:216:3 - error TS2300: Duplicate identifier 'override'.
216 override attach(address: string): VAnchorEncodeInputs {
~~~~~~~~
typechain-types/factories/contracts/libs/VAnchorEncodeInputs__factory.ts:216:12 - error TS1005: ';' expected.
216 override attach(address: string): VAnchorEncodeInputs {
~~~~~~
typechain-types/factories/contracts/libs/VAnchorEncodeInputs__factory.ts:217:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
217 return super.attach(address) as VAnchorEncodeInputs;
~~~~~~
typechain-types/factories/contracts/libs/VAnchorEncodeInputs__factory.ts:219:3 - error TS2300: Duplicate identifier 'override'.
219 override connect(signer: Signer): VAnchorEncodeInputs__factory {
~~~~~~~~
typechain-types/factories/contracts/libs/VAnchorEncodeInputs__factory.ts:219:12 - error TS1005: ';' expected.
219 override connect(signer: Signer): VAnchorEncodeInputs__factory {
~~~~~~~
typechain-types/factories/contracts/libs/VAnchorEncodeInputs__factory.ts:219:12 - error TS2416: Property 'connect' in type 'VAnchorEncodeInputs__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => VAnchorEncodeInputs__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'VAnchorEncodeInputs__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
219 override connect(signer: Signer): VAnchorEncodeInputs__factory {
~~~~~~~
typechain-types/factories/contracts/libs/VAnchorEncodeInputs__factory.ts:220:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'VAnchorEncodeInputs__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'VAnchorEncodeInputs__factory': override, attach
220 return super.connect(signer) as VAnchorEncodeInputs__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/libs/VAnchorEncodeInputs__factory.ts:232:12 - error TS2352: Conversion of type 'Contract' to type 'VAnchorEncodeInputs' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'VAnchorEncodeInputs': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 7 more.
232 return new Contract(address, _abi, signerOrProvider) as VAnchorEncodeInputs;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/libs/VAnchorEncodeInputs__factory.ts:232:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
232 return new Contract(address, _abi, signerOrProvider) as VAnchorEncodeInputs;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/BatchTreeMock.sol/BatchMerkleTreeMock__factory.ts:6:3 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
6 utils,
~~~~~
typechain-types/factories/contracts/mocks/BatchTreeMock.sol/BatchMerkleTreeMock__factory.ts:628:6 - error TS2304: Cannot find name 'signer'.
628 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/mocks/BatchTreeMock.sol/BatchMerkleTreeMock__factory.ts:628:13 - error TS1005: ',' expected.
628 | [signer?: Signer]
~
typechain-types/factories/contracts/mocks/BatchTreeMock.sol/BatchMerkleTreeMock__factory.ts:644:12 - error TS1005: ';' expected.
644 override deploy(
~~~~~~
typechain-types/factories/contracts/mocks/BatchTreeMock.sol/BatchMerkleTreeMock__factory.ts:644:12 - error TS2416: Property 'deploy' in type 'BatchMerkleTreeMock__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_levels: PromiseOrValue<BigNumberish>, _hasher: PromiseOrValue<string>, _treeUpdateVerifier: PromiseOrValue<string>, overrides?: Overrides & { ...; }) => Promise<...>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<BatchMerkleTreeMock>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'BatchMerkleTreeMock' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'BatchMerkleTreeMock' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'BatchMerkleTreeMockInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
644 override deploy(
~~~~~~
typechain-types/factories/contracts/mocks/BatchTreeMock.sol/BatchMerkleTreeMock__factory.ts:650:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<BatchMerkleTreeMock>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'BatchMerkleTreeMock': attach, deployed, functions, FIELD_SIZE, and 34 more.
650 return super.deploy(
~~~~~~~~~~~~~
651 _levels,
~~~~~~~~~~~~~~
...
654 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
655 ) as Promise<BatchMerkleTreeMock>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/BatchTreeMock.sol/BatchMerkleTreeMock__factory.ts:657:3 - error TS2300: Duplicate identifier 'override'.
657 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/mocks/BatchTreeMock.sol/BatchMerkleTreeMock__factory.ts:657:12 - error TS1005: ';' expected.
657 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/BatchTreeMock.sol/BatchMerkleTreeMock__factory.ts:657:12 - error TS2416: Property 'getDeployTransaction' in type 'BatchMerkleTreeMock__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_levels: PromiseOrValue<BigNumberish>, _hasher: PromiseOrValue<string>, _treeUpdateVerifier: PromiseOrValue<string>, overrides?: Overrides & { ...; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
657 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/BatchTreeMock.sol/BatchMerkleTreeMock__factory.ts:663:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
663 return super.getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
664 _levels,
~~~~~~~~~~~~~~
...
667 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
668 );
~~~~~~
typechain-types/factories/contracts/mocks/BatchTreeMock.sol/BatchMerkleTreeMock__factory.ts:670:3 - error TS2300: Duplicate identifier 'override'.
670 override attach(address: string): BatchMerkleTreeMock {
~~~~~~~~
typechain-types/factories/contracts/mocks/BatchTreeMock.sol/BatchMerkleTreeMock__factory.ts:670:12 - error TS1005: ';' expected.
670 override attach(address: string): BatchMerkleTreeMock {
~~~~~~
typechain-types/factories/contracts/mocks/BatchTreeMock.sol/BatchMerkleTreeMock__factory.ts:671:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
671 return super.attach(address) as BatchMerkleTreeMock;
~~~~~~
typechain-types/factories/contracts/mocks/BatchTreeMock.sol/BatchMerkleTreeMock__factory.ts:673:3 - error TS2300: Duplicate identifier 'override'.
673 override connect(signer: Signer): BatchMerkleTreeMock__factory {
~~~~~~~~
typechain-types/factories/contracts/mocks/BatchTreeMock.sol/BatchMerkleTreeMock__factory.ts:673:12 - error TS1005: ';' expected.
673 override connect(signer: Signer): BatchMerkleTreeMock__factory {
~~~~~~~
typechain-types/factories/contracts/mocks/BatchTreeMock.sol/BatchMerkleTreeMock__factory.ts:673:12 - error TS2416: Property 'connect' in type 'BatchMerkleTreeMock__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => BatchMerkleTreeMock__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'BatchMerkleTreeMock__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
673 override connect(signer: Signer): BatchMerkleTreeMock__factory {
~~~~~~~
typechain-types/factories/contracts/mocks/BatchTreeMock.sol/BatchMerkleTreeMock__factory.ts:674:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'BatchMerkleTreeMock__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'BatchMerkleTreeMock__factory': override, attach
674 return super.connect(signer) as BatchMerkleTreeMock__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/BatchTreeMock.sol/BatchMerkleTreeMock__factory.ts:686:12 - error TS2352: Conversion of type 'Contract' to type 'BatchMerkleTreeMock' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'BatchMerkleTreeMock': attach, deployed, functions, FIELD_SIZE, and 34 more.
686 return new Contract(address, _abi, signerOrProvider) as BatchMerkleTreeMock;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/BatchTreeMock.sol/BatchMerkleTreeMock__factory.ts:686:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
686 return new Contract(address, _abi, signerOrProvider) as BatchMerkleTreeMock;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/ERC1155Mock__factory.ts:4:18 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/mocks/ERC1155Mock__factory.ts:359:6 - error TS2304: Cannot find name 'signer'.
359 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/mocks/ERC1155Mock__factory.ts:359:13 - error TS1005: ',' expected.
359 | [signer?: Signer]
~
typechain-types/factories/contracts/mocks/ERC1155Mock__factory.ts:375:12 - error TS1005: ';' expected.
375 override deploy(
~~~~~~
typechain-types/factories/contracts/mocks/ERC1155Mock__factory.ts:375:12 - error TS2416: Property 'deploy' in type 'ERC1155Mock__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<ERC1155Mock>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<ERC1155Mock>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'ERC1155Mock' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'ERC1155Mock' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'ERC1155MockInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
375 override deploy(
~~~~~~
typechain-types/factories/contracts/mocks/ERC1155Mock__factory.ts:378:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<ERC1155Mock>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'ERC1155Mock': attach, deployed, functions, balanceOf, and 11 more.
378 return super.deploy(overrides || {}) as Promise<ERC1155Mock>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/ERC1155Mock__factory.ts:380:3 - error TS2300: Duplicate identifier 'override'.
380 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/mocks/ERC1155Mock__factory.ts:380:12 - error TS1005: ';' expected.
380 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/ERC1155Mock__factory.ts:380:12 - error TS2416: Property 'getDeployTransaction' in type 'ERC1155Mock__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
380 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/ERC1155Mock__factory.ts:383:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
383 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/ERC1155Mock__factory.ts:385:3 - error TS2300: Duplicate identifier 'override'.
385 override attach(address: string): ERC1155Mock {
~~~~~~~~
typechain-types/factories/contracts/mocks/ERC1155Mock__factory.ts:385:12 - error TS1005: ';' expected.
385 override attach(address: string): ERC1155Mock {
~~~~~~
typechain-types/factories/contracts/mocks/ERC1155Mock__factory.ts:386:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
386 return super.attach(address) as ERC1155Mock;
~~~~~~
typechain-types/factories/contracts/mocks/ERC1155Mock__factory.ts:388:3 - error TS2300: Duplicate identifier 'override'.
388 override connect(signer: Signer): ERC1155Mock__factory {
~~~~~~~~
typechain-types/factories/contracts/mocks/ERC1155Mock__factory.ts:388:12 - error TS1005: ';' expected.
388 override connect(signer: Signer): ERC1155Mock__factory {
~~~~~~~
typechain-types/factories/contracts/mocks/ERC1155Mock__factory.ts:388:12 - error TS2416: Property 'connect' in type 'ERC1155Mock__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => ERC1155Mock__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'ERC1155Mock__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
388 override connect(signer: Signer): ERC1155Mock__factory {
~~~~~~~
typechain-types/factories/contracts/mocks/ERC1155Mock__factory.ts:389:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'ERC1155Mock__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'ERC1155Mock__factory': override, attach
389 return super.connect(signer) as ERC1155Mock__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/ERC1155Mock__factory.ts:401:12 - error TS2352: Conversion of type 'Contract' to type 'ERC1155Mock' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'ERC1155Mock': attach, deployed, functions, balanceOf, and 11 more.
401 return new Contract(address, _abi, signerOrProvider) as ERC1155Mock;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/ERC1155Mock__factory.ts:401:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
401 return new Contract(address, _abi, signerOrProvider) as ERC1155Mock;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/ERC20Mock__factory.ts:4:18 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/mocks/ERC20Mock__factory.ts:307:6 - error TS2304: Cannot find name 'signer'.
307 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/mocks/ERC20Mock__factory.ts:307:13 - error TS1005: ',' expected.
307 | [signer?: Signer]
~
typechain-types/factories/contracts/mocks/ERC20Mock__factory.ts:323:12 - error TS1005: ';' expected.
323 override deploy(
~~~~~~
typechain-types/factories/contracts/mocks/ERC20Mock__factory.ts:323:12 - error TS2416: Property 'deploy' in type 'ERC20Mock__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<ERC20Mock>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<ERC20Mock>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'ERC20Mock' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'ERC20Mock' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'ERC20MockInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
323 override deploy(
~~~~~~
typechain-types/factories/contracts/mocks/ERC20Mock__factory.ts:326:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<ERC20Mock>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'ERC20Mock': attach, deployed, functions, allowance, and 14 more.
326 return super.deploy(overrides || {}) as Promise<ERC20Mock>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/ERC20Mock__factory.ts:328:3 - error TS2300: Duplicate identifier 'override'.
328 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/mocks/ERC20Mock__factory.ts:328:12 - error TS1005: ';' expected.
328 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/ERC20Mock__factory.ts:328:12 - error TS2416: Property 'getDeployTransaction' in type 'ERC20Mock__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
328 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/ERC20Mock__factory.ts:331:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
331 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/ERC20Mock__factory.ts:333:3 - error TS2300: Duplicate identifier 'override'.
333 override attach(address: string): ERC20Mock {
~~~~~~~~
typechain-types/factories/contracts/mocks/ERC20Mock__factory.ts:333:12 - error TS1005: ';' expected.
333 override attach(address: string): ERC20Mock {
~~~~~~
typechain-types/factories/contracts/mocks/ERC20Mock__factory.ts:334:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
334 return super.attach(address) as ERC20Mock;
~~~~~~
typechain-types/factories/contracts/mocks/ERC20Mock__factory.ts:336:3 - error TS2300: Duplicate identifier 'override'.
336 override connect(signer: Signer): ERC20Mock__factory {
~~~~~~~~
typechain-types/factories/contracts/mocks/ERC20Mock__factory.ts:336:12 - error TS1005: ';' expected.
336 override connect(signer: Signer): ERC20Mock__factory {
~~~~~~~
typechain-types/factories/contracts/mocks/ERC20Mock__factory.ts:336:12 - error TS2416: Property 'connect' in type 'ERC20Mock__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => ERC20Mock__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'ERC20Mock__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
336 override connect(signer: Signer): ERC20Mock__factory {
~~~~~~~
typechain-types/factories/contracts/mocks/ERC20Mock__factory.ts:337:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'ERC20Mock__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'ERC20Mock__factory': override, attach
337 return super.connect(signer) as ERC20Mock__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/ERC20Mock__factory.ts:349:12 - error TS2352: Conversion of type 'Contract' to type 'ERC20Mock' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'ERC20Mock': attach, deployed, functions, allowance, and 14 more.
349 return new Contract(address, _abi, signerOrProvider) as ERC20Mock;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/ERC20Mock__factory.ts:349:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
349 return new Contract(address, _abi, signerOrProvider) as ERC20Mock;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/ERC721Mock.sol/ERC721Mintable__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/mocks/ERC721Mock.sol/ERC721Mintable__factory.ts:378:6 - error TS2304: Cannot find name 'signer'.
378 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/mocks/ERC721Mock.sol/ERC721Mintable__factory.ts:378:13 - error TS1005: ',' expected.
378 | [signer?: Signer]
~
typechain-types/factories/contracts/mocks/ERC721Mock.sol/ERC721Mintable__factory.ts:394:12 - error TS1005: ';' expected.
394 override deploy(
~~~~~~
typechain-types/factories/contracts/mocks/ERC721Mock.sol/ERC721Mintable__factory.ts:394:12 - error TS2416: Property 'deploy' in type 'ERC721Mintable__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(name: PromiseOrValue<string>, symbol: PromiseOrValue<string>, overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<...>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<ERC721Mintable>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'ERC721Mintable' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'ERC721Mintable' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'ERC721MintableInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
394 override deploy(
~~~~~~
typechain-types/factories/contracts/mocks/ERC721Mock.sol/ERC721Mintable__factory.ts:399:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<ERC721Mintable>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'ERC721Mintable': attach, deployed, functions, approve, and 16 more.
399 return super.deploy(
~~~~~~~~~~~~~
400 name,
~~~~~~~~~~~
...
402 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
403 ) as Promise<ERC721Mintable>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/ERC721Mock.sol/ERC721Mintable__factory.ts:405:3 - error TS2300: Duplicate identifier 'override'.
405 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/mocks/ERC721Mock.sol/ERC721Mintable__factory.ts:405:12 - error TS1005: ';' expected.
405 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/ERC721Mock.sol/ERC721Mintable__factory.ts:405:12 - error TS2416: Property 'getDeployTransaction' in type 'ERC721Mintable__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(name: PromiseOrValue<string>, symbol: PromiseOrValue<string>, overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
405 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/ERC721Mock.sol/ERC721Mintable__factory.ts:410:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
410 return super.getDeployTransaction(name, symbol, overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/ERC721Mock.sol/ERC721Mintable__factory.ts:412:3 - error TS2300: Duplicate identifier 'override'.
412 override attach(address: string): ERC721Mintable {
~~~~~~~~
typechain-types/factories/contracts/mocks/ERC721Mock.sol/ERC721Mintable__factory.ts:412:12 - error TS1005: ';' expected.
412 override attach(address: string): ERC721Mintable {
~~~~~~
typechain-types/factories/contracts/mocks/ERC721Mock.sol/ERC721Mintable__factory.ts:413:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
413 return super.attach(address) as ERC721Mintable;
~~~~~~
typechain-types/factories/contracts/mocks/ERC721Mock.sol/ERC721Mintable__factory.ts:415:3 - error TS2300: Duplicate identifier 'override'.
415 override connect(signer: Signer): ERC721Mintable__factory {
~~~~~~~~
typechain-types/factories/contracts/mocks/ERC721Mock.sol/ERC721Mintable__factory.ts:415:12 - error TS1005: ';' expected.
415 override connect(signer: Signer): ERC721Mintable__factory {
~~~~~~~
typechain-types/factories/contracts/mocks/ERC721Mock.sol/ERC721Mintable__factory.ts:415:12 - error TS2416: Property 'connect' in type 'ERC721Mintable__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => ERC721Mintable__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'ERC721Mintable__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
415 override connect(signer: Signer): ERC721Mintable__factory {
~~~~~~~
typechain-types/factories/contracts/mocks/ERC721Mock.sol/ERC721Mintable__factory.ts:416:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'ERC721Mintable__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'ERC721Mintable__factory': override, attach
416 return super.connect(signer) as ERC721Mintable__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/ERC721Mock.sol/ERC721Mintable__factory.ts:428:12 - error TS2352: Conversion of type 'Contract' to type 'ERC721Mintable' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'ERC721Mintable': attach, deployed, functions, approve, and 16 more.
428 return new Contract(address, _abi, signerOrProvider) as ERC721Mintable;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/ERC721Mock.sol/ERC721Mintable__factory.ts:428:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
428 return new Contract(address, _abi, signerOrProvider) as ERC721Mintable;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/LinkableAnchorMock__factory.ts:6:3 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
6 utils,
~~~~~
typechain-types/factories/contracts/mocks/LinkableAnchorMock__factory.ts:919:6 - error TS2304: Cannot find name 'signer'.
919 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/mocks/LinkableAnchorMock__factory.ts:919:13 - error TS1005: ',' expected.
919 | [signer?: Signer]
~
typechain-types/factories/contracts/mocks/LinkableAnchorMock__factory.ts:935:12 - error TS1005: ';' expected.
935 override deploy(
~~~~~~
typechain-types/factories/contracts/mocks/LinkableAnchorMock__factory.ts:935:12 - error TS2416: Property 'deploy' in type 'LinkableAnchorMock__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_handler: PromiseOrValue<string>, _verifier: PromiseOrValue<string>, _hasher: PromiseOrValue<string>, _merkleTreeHeight: PromiseOrValue<BigNumberish>, _maxEdges: PromiseOrValue<...>, overrides?: Overrides & { ...; }) => Promise<...>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<LinkableAnchorMock>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'LinkableAnchorMock' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'LinkableAnchorMock' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'LinkableAnchorMockInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
935 override deploy(
~~~~~~
typechain-types/factories/contracts/mocks/LinkableAnchorMock__factory.ts:943:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<LinkableAnchorMock>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'LinkableAnchorMock': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 48 more.
943 return super.deploy(
~~~~~~~~~~~~~
944 _handler,
~~~~~~~~~~~~~~~
...
949 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
950 ) as Promise<LinkableAnchorMock>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/LinkableAnchorMock__factory.ts:952:3 - error TS2300: Duplicate identifier 'override'.
952 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/mocks/LinkableAnchorMock__factory.ts:952:12 - error TS1005: ';' expected.
952 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/LinkableAnchorMock__factory.ts:952:12 - error TS2416: Property 'getDeployTransaction' in type 'LinkableAnchorMock__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_handler: PromiseOrValue<string>, _verifier: PromiseOrValue<string>, _hasher: PromiseOrValue<string>, _merkleTreeHeight: PromiseOrValue<BigNumberish>, _maxEdges: PromiseOrValue<...>, overrides?: Overrides & { ...; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
952 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/LinkableAnchorMock__factory.ts:960:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
960 return super.getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
961 _handler,
~~~~~~~~~~~~~~~
...
966 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
967 );
~~~~~~
typechain-types/factories/contracts/mocks/LinkableAnchorMock__factory.ts:969:3 - error TS2300: Duplicate identifier 'override'.
969 override attach(address: string): LinkableAnchorMock {
~~~~~~~~
typechain-types/factories/contracts/mocks/LinkableAnchorMock__factory.ts:969:12 - error TS1005: ';' expected.
969 override attach(address: string): LinkableAnchorMock {
~~~~~~
typechain-types/factories/contracts/mocks/LinkableAnchorMock__factory.ts:970:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
970 return super.attach(address) as LinkableAnchorMock;
~~~~~~
typechain-types/factories/contracts/mocks/LinkableAnchorMock__factory.ts:972:3 - error TS2300: Duplicate identifier 'override'.
972 override connect(signer: Signer): LinkableAnchorMock__factory {
~~~~~~~~
typechain-types/factories/contracts/mocks/LinkableAnchorMock__factory.ts:972:12 - error TS1005: ';' expected.
972 override connect(signer: Signer): LinkableAnchorMock__factory {
~~~~~~~
typechain-types/factories/contracts/mocks/LinkableAnchorMock__factory.ts:972:12 - error TS2416: Property 'connect' in type 'LinkableAnchorMock__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => LinkableAnchorMock__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'LinkableAnchorMock__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
972 override connect(signer: Signer): LinkableAnchorMock__factory {
~~~~~~~
typechain-types/factories/contracts/mocks/LinkableAnchorMock__factory.ts:973:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'LinkableAnchorMock__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'LinkableAnchorMock__factory': override, attach
973 return super.connect(signer) as LinkableAnchorMock__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/LinkableAnchorMock__factory.ts:985:12 - error TS2352: Conversion of type 'Contract' to type 'LinkableAnchorMock' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'LinkableAnchorMock': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 48 more.
985 return new Contract(address, _abi, signerOrProvider) as LinkableAnchorMock;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/LinkableAnchorMock__factory.ts:985:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
985 return new Contract(address, _abi, signerOrProvider) as LinkableAnchorMock;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/MerkleForestMock__factory.ts:6:3 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
6 utils,
~~~~~
typechain-types/factories/contracts/mocks/MerkleForestMock__factory.ts:551:6 - error TS2304: Cannot find name 'linkLibraryAddresses'.
551 | [linkLibraryAddresses: MerkleForestMockLibraryAddresses, signer?: Signer]
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/MerkleForestMock__factory.ts:551:26 - error TS1005: ',' expected.
551 | [linkLibraryAddresses: MerkleForestMockLibraryAddresses, signer?: Signer]
~
typechain-types/factories/contracts/mocks/MerkleForestMock__factory.ts:551:62 - error TS2304: Cannot find name 'signer'.
551 | [linkLibraryAddresses: MerkleForestMockLibraryAddresses, signer?: Signer]
~~~~~~
typechain-types/factories/contracts/mocks/MerkleForestMock__factory.ts:551:69 - error TS1005: ',' expected.
551 | [linkLibraryAddresses: MerkleForestMockLibraryAddresses, signer?: Signer]
~
typechain-types/factories/contracts/mocks/MerkleForestMock__factory.ts:573:9 - error TS2345: Argument of type 'MerkleForestMockLibraryAddresses' is not assignable to parameter of type 'ContractRunner'.
Property 'provider' is missing in type 'MerkleForestMockLibraryAddresses' but required in type 'ContractRunner'.
573 signer
~~~~~~
node_modules/ethers/types/providers/contracts.d.ts:3:5
3 provider: null | Provider;
~~~~~~~~
'provider' is declared here.
typechain-types/factories/contracts/mocks/MerkleForestMock__factory.ts:602:12 - error TS1005: ';' expected.
602 override deploy(
~~~~~~
typechain-types/factories/contracts/mocks/MerkleForestMock__factory.ts:602:12 - error TS2416: Property 'deploy' in type 'MerkleForestMock__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_forestLevels: PromiseOrValue<BigNumberish>, _subtreeLevels: PromiseOrValue<BigNumberish>, _hasher: PromiseOrValue<string>, overrides?: Overrides & { ...; }) => Promise<...>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<MerkleForestMock>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'MerkleForestMock' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'MerkleForestMock' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'MerkleForestMockInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
602 override deploy(
~~~~~~
typechain-types/factories/contracts/mocks/MerkleForestMock__factory.ts:608:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<MerkleForestMock>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'MerkleForestMock': attach, deployed, functions, FIELD_SIZE, and 30 more.
608 return super.deploy(
~~~~~~~~~~~~~
609 _forestLevels,
~~~~~~~~~~~~~~~~~~~~
...
612 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
613 ) as Promise<MerkleForestMock>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/MerkleForestMock__factory.ts:615:3 - error TS2300: Duplicate identifier 'override'.
615 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/mocks/MerkleForestMock__factory.ts:615:12 - error TS1005: ';' expected.
615 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/MerkleForestMock__factory.ts:615:12 - error TS2416: Property 'getDeployTransaction' in type 'MerkleForestMock__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_forestLevels: PromiseOrValue<BigNumberish>, _subtreeLevels: PromiseOrValue<BigNumberish>, _hasher: PromiseOrValue<string>, overrides?: Overrides & { ...; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
615 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/MerkleForestMock__factory.ts:621:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
621 return super.getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
622 _forestLevels,
~~~~~~~~~~~~~~~~~~~~
...
625 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
626 );
~~~~~~
typechain-types/factories/contracts/mocks/MerkleForestMock__factory.ts:628:3 - error TS2300: Duplicate identifier 'override'.
628 override attach(address: string): MerkleForestMock {
~~~~~~~~
typechain-types/factories/contracts/mocks/MerkleForestMock__factory.ts:628:12 - error TS1005: ';' expected.
628 override attach(address: string): MerkleForestMock {
~~~~~~
typechain-types/factories/contracts/mocks/MerkleForestMock__factory.ts:629:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
629 return super.attach(address) as MerkleForestMock;
~~~~~~
typechain-types/factories/contracts/mocks/MerkleForestMock__factory.ts:631:3 - error TS2300: Duplicate identifier 'override'.
631 override connect(signer: Signer): MerkleForestMock__factory {
~~~~~~~~
typechain-types/factories/contracts/mocks/MerkleForestMock__factory.ts:631:12 - error TS1005: ';' expected.
631 override connect(signer: Signer): MerkleForestMock__factory {
~~~~~~~
typechain-types/factories/contracts/mocks/MerkleForestMock__factory.ts:631:12 - error TS2416: Property 'connect' in type 'MerkleForestMock__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => MerkleForestMock__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'MerkleForestMock__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
631 override connect(signer: Signer): MerkleForestMock__factory {
~~~~~~~
typechain-types/factories/contracts/mocks/MerkleForestMock__factory.ts:632:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'MerkleForestMock__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'MerkleForestMock__factory': override, attach
632 return super.connect(signer) as MerkleForestMock__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/MerkleForestMock__factory.ts:644:12 - error TS2352: Conversion of type 'Contract' to type 'MerkleForestMock' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'MerkleForestMock': attach, deployed, functions, FIELD_SIZE, and 30 more.
644 return new Contract(address, _abi, signerOrProvider) as MerkleForestMock;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/MerkleForestMock__factory.ts:644:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
644 return new Contract(address, _abi, signerOrProvider) as MerkleForestMock;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/MerkleTreePoseidonMock__factory.ts:6:3 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
6 utils,
~~~~~
typechain-types/factories/contracts/mocks/MerkleTreePoseidonMock__factory.ts:379:6 - error TS2304: Cannot find name 'signer'.
379 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/mocks/MerkleTreePoseidonMock__factory.ts:379:13 - error TS1005: ',' expected.
379 | [signer?: Signer]
~
typechain-types/factories/contracts/mocks/MerkleTreePoseidonMock__factory.ts:395:12 - error TS1005: ';' expected.
395 override deploy(
~~~~~~
typechain-types/factories/contracts/mocks/MerkleTreePoseidonMock__factory.ts:395:12 - error TS2416: Property 'deploy' in type 'MerkleTreePoseidonMock__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_treeLevels: PromiseOrValue<BigNumberish>, _hasher: PromiseOrValue<string>, overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<...>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<MerkleTreePoseidonMock>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'MerkleTreePoseidonMock' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'MerkleTreePoseidonMock' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'MerkleTreePoseidonMockInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
395 override deploy(
~~~~~~
typechain-types/factories/contracts/mocks/MerkleTreePoseidonMock__factory.ts:400:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<MerkleTreePoseidonMock>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'MerkleTreePoseidonMock': attach, deployed, functions, FIELD_SIZE, and 22 more.
400 return super.deploy(
~~~~~~~~~~~~~
401 _treeLevels,
~~~~~~~~~~~~~~~~~~
...
403 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
404 ) as Promise<MerkleTreePoseidonMock>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/MerkleTreePoseidonMock__factory.ts:406:3 - error TS2300: Duplicate identifier 'override'.
406 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/mocks/MerkleTreePoseidonMock__factory.ts:406:12 - error TS1005: ';' expected.
406 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/MerkleTreePoseidonMock__factory.ts:406:12 - error TS2416: Property 'getDeployTransaction' in type 'MerkleTreePoseidonMock__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_treeLevels: PromiseOrValue<BigNumberish>, _hasher: PromiseOrValue<string>, overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
406 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/MerkleTreePoseidonMock__factory.ts:411:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
411 return super.getDeployTransaction(_treeLevels, _hasher, overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/MerkleTreePoseidonMock__factory.ts:413:3 - error TS2300: Duplicate identifier 'override'.
413 override attach(address: string): MerkleTreePoseidonMock {
~~~~~~~~
typechain-types/factories/contracts/mocks/MerkleTreePoseidonMock__factory.ts:413:12 - error TS1005: ';' expected.
413 override attach(address: string): MerkleTreePoseidonMock {
~~~~~~
typechain-types/factories/contracts/mocks/MerkleTreePoseidonMock__factory.ts:414:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
414 return super.attach(address) as MerkleTreePoseidonMock;
~~~~~~
typechain-types/factories/contracts/mocks/MerkleTreePoseidonMock__factory.ts:416:3 - error TS2300: Duplicate identifier 'override'.
416 override connect(signer: Signer): MerkleTreePoseidonMock__factory {
~~~~~~~~
typechain-types/factories/contracts/mocks/MerkleTreePoseidonMock__factory.ts:416:12 - error TS1005: ';' expected.
416 override connect(signer: Signer): MerkleTreePoseidonMock__factory {
~~~~~~~
typechain-types/factories/contracts/mocks/MerkleTreePoseidonMock__factory.ts:416:12 - error TS2416: Property 'connect' in type 'MerkleTreePoseidonMock__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => MerkleTreePoseidonMock__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'MerkleTreePoseidonMock__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
416 override connect(signer: Signer): MerkleTreePoseidonMock__factory {
~~~~~~~
typechain-types/factories/contracts/mocks/MerkleTreePoseidonMock__factory.ts:417:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'MerkleTreePoseidonMock__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'MerkleTreePoseidonMock__factory': override, attach
417 return super.connect(signer) as MerkleTreePoseidonMock__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/MerkleTreePoseidonMock__factory.ts:429:12 - error TS2352: Conversion of type 'Contract' to type 'MerkleTreePoseidonMock' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'MerkleTreePoseidonMock': attach, deployed, functions, FIELD_SIZE, and 22 more.
429 return new Contract(
~~~~~~~~~~~~~
430 address,
~~~~~~~~~~~~~~
...
432 signerOrProvider
~~~~~~~~~~~~~~~~~~~~~~
433 ) as MerkleTreePoseidonMock;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/mocks/MerkleTreePoseidonMock__factory.ts:432:7 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
432 signerOrProvider
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/SignatureBridge__factory.ts:6:3 - error TS2305: Module '"../../../node_modules/ethers/types"' has no exported member 'utils'.
6 utils,
~~~~~
typechain-types/factories/contracts/SignatureBridge__factory.ts:578:6 - error TS2304: Cannot find name 'signer'.
578 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/SignatureBridge__factory.ts:578:13 - error TS1005: ',' expected.
578 | [signer?: Signer]
~
typechain-types/factories/contracts/SignatureBridge__factory.ts:594:12 - error TS1005: ';' expected.
594 override deploy(
~~~~~~
typechain-types/factories/contracts/SignatureBridge__factory.ts:594:12 - error TS2416: Property 'deploy' in type 'SignatureBridge__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(initialGovernor: PromiseOrValue<string>, nonce: PromiseOrValue<BigNumberish>, overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<...>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<SignatureBridge>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'SignatureBridge' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'SignatureBridge' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'SignatureBridgeInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
594 override deploy(
~~~~~~
typechain-types/factories/contracts/SignatureBridge__factory.ts:599:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<SignatureBridge>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'SignatureBridge': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 31 more.
599 return super.deploy(
~~~~~~~~~~~~~
600 initialGovernor,
~~~~~~~~~~~~~~~~~~~~~~
...
602 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
603 ) as Promise<SignatureBridge>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/SignatureBridge__factory.ts:605:3 - error TS2300: Duplicate identifier 'override'.
605 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/SignatureBridge__factory.ts:605:12 - error TS1005: ';' expected.
605 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/SignatureBridge__factory.ts:605:12 - error TS2416: Property 'getDeployTransaction' in type 'SignatureBridge__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(initialGovernor: PromiseOrValue<string>, nonce: PromiseOrValue<BigNumberish>, overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
605 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/SignatureBridge__factory.ts:610:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
610 return super.getDeployTransaction(initialGovernor, nonce, overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/SignatureBridge__factory.ts:612:3 - error TS2300: Duplicate identifier 'override'.
612 override attach(address: string): SignatureBridge {
~~~~~~~~
typechain-types/factories/contracts/SignatureBridge__factory.ts:612:12 - error TS1005: ';' expected.
612 override attach(address: string): SignatureBridge {
~~~~~~
typechain-types/factories/contracts/SignatureBridge__factory.ts:613:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
613 return super.attach(address) as SignatureBridge;
~~~~~~
typechain-types/factories/contracts/SignatureBridge__factory.ts:615:3 - error TS2300: Duplicate identifier 'override'.
615 override connect(signer: Signer): SignatureBridge__factory {
~~~~~~~~
typechain-types/factories/contracts/SignatureBridge__factory.ts:615:12 - error TS1005: ';' expected.
615 override connect(signer: Signer): SignatureBridge__factory {
~~~~~~~
typechain-types/factories/contracts/SignatureBridge__factory.ts:615:12 - error TS2416: Property 'connect' in type 'SignatureBridge__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => SignatureBridge__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'SignatureBridge__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
615 override connect(signer: Signer): SignatureBridge__factory {
~~~~~~~
typechain-types/factories/contracts/SignatureBridge__factory.ts:616:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'SignatureBridge__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'SignatureBridge__factory': override, attach
616 return super.connect(signer) as SignatureBridge__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/SignatureBridge__factory.ts:628:12 - error TS2352: Conversion of type 'Contract' to type 'SignatureBridge' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'SignatureBridge': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 31 more.
628 return new Contract(address, _abi, signerOrProvider) as SignatureBridge;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/SignatureBridge__factory.ts:628:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
628 return new Contract(address, _abi, signerOrProvider) as SignatureBridge;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/AaveTokenWrapper__factory.ts:4:18 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/tokens/AaveTokenWrapper__factory.ts:1335:6 - error TS2304: Cannot find name 'signer'.
1335 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/tokens/AaveTokenWrapper__factory.ts:1335:13 - error TS1005: ',' expected.
1335 | [signer?: Signer]
~
typechain-types/factories/contracts/tokens/AaveTokenWrapper__factory.ts:1351:12 - error TS1005: ';' expected.
1351 override deploy(
~~~~~~
typechain-types/factories/contracts/tokens/AaveTokenWrapper__factory.ts:1351:12 - error TS2416: Property 'deploy' in type 'AaveTokenWrapper__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_name: PromiseOrValue<string>, _symbol: PromiseOrValue<string>, _aaveLendingPool: PromiseOrValue<string>, overrides?: Overrides & { ...; }) => Promise<...>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<AaveTokenWrapper>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'AaveTokenWrapper' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'AaveTokenWrapper' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'AaveTokenWrapperInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
1351 override deploy(
~~~~~~
typechain-types/factories/contracts/tokens/AaveTokenWrapper__factory.ts:1357:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<AaveTokenWrapper>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'AaveTokenWrapper': attach, deployed, functions, DEFAULT_ADMIN_ROLE, and 65 more.
1357 return super.deploy(
~~~~~~~~~~~~~
1358 _name,
~~~~~~~~~~~~
...
1361 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
1362 ) as Promise<AaveTokenWrapper>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/AaveTokenWrapper__factory.ts:1364:3 - error TS2300: Duplicate identifier 'override'.
1364 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/tokens/AaveTokenWrapper__factory.ts:1364:12 - error TS1005: ';' expected.
1364 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/AaveTokenWrapper__factory.ts:1364:12 - error TS2416: Property 'getDeployTransaction' in type 'AaveTokenWrapper__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_name: PromiseOrValue<string>, _symbol: PromiseOrValue<string>, _aaveLendingPool: PromiseOrValue<string>, overrides?: Overrides & { ...; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
1364 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/AaveTokenWrapper__factory.ts:1370:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
1370 return super.getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1371 _name,
~~~~~~~~~~~~
...
1374 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
1375 );
~~~~~~
typechain-types/factories/contracts/tokens/AaveTokenWrapper__factory.ts:1377:3 - error TS2300: Duplicate identifier 'override'.
1377 override attach(address: string): AaveTokenWrapper {
~~~~~~~~
typechain-types/factories/contracts/tokens/AaveTokenWrapper__factory.ts:1377:12 - error TS1005: ';' expected.
1377 override attach(address: string): AaveTokenWrapper {
~~~~~~
typechain-types/factories/contracts/tokens/AaveTokenWrapper__factory.ts:1378:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
1378 return super.attach(address) as AaveTokenWrapper;
~~~~~~
typechain-types/factories/contracts/tokens/AaveTokenWrapper__factory.ts:1380:3 - error TS2300: Duplicate identifier 'override'.
1380 override connect(signer: Signer): AaveTokenWrapper__factory {
~~~~~~~~
typechain-types/factories/contracts/tokens/AaveTokenWrapper__factory.ts:1380:12 - error TS1005: ';' expected.
1380 override connect(signer: Signer): AaveTokenWrapper__factory {
~~~~~~~
typechain-types/factories/contracts/tokens/AaveTokenWrapper__factory.ts:1380:12 - error TS2416: Property 'connect' in type 'AaveTokenWrapper__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => AaveTokenWrapper__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'AaveTokenWrapper__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
1380 override connect(signer: Signer): AaveTokenWrapper__factory {
~~~~~~~
typechain-types/factories/contracts/tokens/AaveTokenWrapper__factory.ts:1381:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'AaveTokenWrapper__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'AaveTokenWrapper__factory': override, attach
1381 return super.connect(signer) as AaveTokenWrapper__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/AaveTokenWrapper__factory.ts:1393:12 - error TS2352: Conversion of type 'Contract' to type 'AaveTokenWrapper' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'AaveTokenWrapper': attach, deployed, functions, DEFAULT_ADMIN_ROLE, and 65 more.
1393 return new Contract(address, _abi, signerOrProvider) as AaveTokenWrapper;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/AaveTokenWrapper__factory.ts:1393:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
1393 return new Contract(address, _abi, signerOrProvider) as AaveTokenWrapper;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/FungibleTokenWrapper__factory.ts:4:18 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/tokens/FungibleTokenWrapper__factory.ts:1238:6 - error TS2304: Cannot find name 'signer'.
1238 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/tokens/FungibleTokenWrapper__factory.ts:1238:13 - error TS1005: ',' expected.
1238 | [signer?: Signer]
~
typechain-types/factories/contracts/tokens/FungibleTokenWrapper__factory.ts:1254:12 - error TS1005: ';' expected.
1254 override deploy(
~~~~~~
typechain-types/factories/contracts/tokens/FungibleTokenWrapper__factory.ts:1254:12 - error TS2416: Property 'deploy' in type 'FungibleTokenWrapper__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_name: PromiseOrValue<string>, _symbol: PromiseOrValue<string>, overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<...>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<FungibleTokenWrapper>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'FungibleTokenWrapper' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'FungibleTokenWrapper' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'FungibleTokenWrapperInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
1254 override deploy(
~~~~~~
typechain-types/factories/contracts/tokens/FungibleTokenWrapper__factory.ts:1259:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<FungibleTokenWrapper>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'FungibleTokenWrapper': attach, deployed, functions, DEFAULT_ADMIN_ROLE, and 61 more.
1259 return super.deploy(
~~~~~~~~~~~~~
1260 _name,
~~~~~~~~~~~~
...
1262 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
1263 ) as Promise<FungibleTokenWrapper>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/FungibleTokenWrapper__factory.ts:1265:3 - error TS2300: Duplicate identifier 'override'.
1265 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/tokens/FungibleTokenWrapper__factory.ts:1265:12 - error TS1005: ';' expected.
1265 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/FungibleTokenWrapper__factory.ts:1265:12 - error TS2416: Property 'getDeployTransaction' in type 'FungibleTokenWrapper__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_name: PromiseOrValue<string>, _symbol: PromiseOrValue<string>, overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
1265 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/FungibleTokenWrapper__factory.ts:1270:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
1270 return super.getDeployTransaction(_name, _symbol, overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/FungibleTokenWrapper__factory.ts:1272:3 - error TS2300: Duplicate identifier 'override'.
1272 override attach(address: string): FungibleTokenWrapper {
~~~~~~~~
typechain-types/factories/contracts/tokens/FungibleTokenWrapper__factory.ts:1272:12 - error TS1005: ';' expected.
1272 override attach(address: string): FungibleTokenWrapper {
~~~~~~
typechain-types/factories/contracts/tokens/FungibleTokenWrapper__factory.ts:1273:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
1273 return super.attach(address) as FungibleTokenWrapper;
~~~~~~
typechain-types/factories/contracts/tokens/FungibleTokenWrapper__factory.ts:1275:3 - error TS2300: Duplicate identifier 'override'.
1275 override connect(signer: Signer): FungibleTokenWrapper__factory {
~~~~~~~~
typechain-types/factories/contracts/tokens/FungibleTokenWrapper__factory.ts:1275:12 - error TS1005: ';' expected.
1275 override connect(signer: Signer): FungibleTokenWrapper__factory {
~~~~~~~
typechain-types/factories/contracts/tokens/FungibleTokenWrapper__factory.ts:1275:12 - error TS2416: Property 'connect' in type 'FungibleTokenWrapper__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => FungibleTokenWrapper__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'FungibleTokenWrapper__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
1275 override connect(signer: Signer): FungibleTokenWrapper__factory {
~~~~~~~
typechain-types/factories/contracts/tokens/FungibleTokenWrapper__factory.ts:1276:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'FungibleTokenWrapper__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'FungibleTokenWrapper__factory': override, attach
1276 return super.connect(signer) as FungibleTokenWrapper__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/FungibleTokenWrapper__factory.ts:1288:12 - error TS2352: Conversion of type 'Contract' to type 'FungibleTokenWrapper' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'FungibleTokenWrapper': attach, deployed, functions, DEFAULT_ADMIN_ROLE, and 61 more.
1288 return new Contract(
~~~~~~~~~~~~~
1289 address,
~~~~~~~~~~~~~~
...
1291 signerOrProvider
~~~~~~~~~~~~~~~~~~~~~~
1292 ) as FungibleTokenWrapper;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/FungibleTokenWrapper__factory.ts:1291:7 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
1291 signerOrProvider
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/MultiFungibleTokenManager__factory.ts:4:18 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/tokens/MultiFungibleTokenManager__factory.ts:282:6 - error TS2304: Cannot find name 'signer'.
282 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/tokens/MultiFungibleTokenManager__factory.ts:282:13 - error TS1005: ',' expected.
282 | [signer?: Signer]
~
typechain-types/factories/contracts/tokens/MultiFungibleTokenManager__factory.ts:298:12 - error TS1005: ';' expected.
298 override deploy(
~~~~~~
typechain-types/factories/contracts/tokens/MultiFungibleTokenManager__factory.ts:298:12 - error TS2416: Property 'deploy' in type 'MultiFungibleTokenManager__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<MultiFungibleTokenManager>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<MultiFungibleTokenManager>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'MultiFungibleTokenManager' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'MultiFungibleTokenManager' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'MultiFungibleTokenManagerInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
298 override deploy(
~~~~~~
typechain-types/factories/contracts/tokens/MultiFungibleTokenManager__factory.ts:301:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<MultiFungibleTokenManager>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'MultiFungibleTokenManager': attach, deployed, functions, getProposalNonce, and 15 more.
301 return super.deploy(overrides || {}) as Promise<MultiFungibleTokenManager>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/MultiFungibleTokenManager__factory.ts:303:3 - error TS2300: Duplicate identifier 'override'.
303 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/tokens/MultiFungibleTokenManager__factory.ts:303:12 - error TS1005: ';' expected.
303 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/MultiFungibleTokenManager__factory.ts:303:12 - error TS2416: Property 'getDeployTransaction' in type 'MultiFungibleTokenManager__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
303 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/MultiFungibleTokenManager__factory.ts:306:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
306 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/MultiFungibleTokenManager__factory.ts:308:3 - error TS2300: Duplicate identifier 'override'.
308 override attach(address: string): MultiFungibleTokenManager {
~~~~~~~~
typechain-types/factories/contracts/tokens/MultiFungibleTokenManager__factory.ts:308:12 - error TS1005: ';' expected.
308 override attach(address: string): MultiFungibleTokenManager {
~~~~~~
typechain-types/factories/contracts/tokens/MultiFungibleTokenManager__factory.ts:309:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
309 return super.attach(address) as MultiFungibleTokenManager;
~~~~~~
typechain-types/factories/contracts/tokens/MultiFungibleTokenManager__factory.ts:311:3 - error TS2300: Duplicate identifier 'override'.
311 override connect(signer: Signer): MultiFungibleTokenManager__factory {
~~~~~~~~
typechain-types/factories/contracts/tokens/MultiFungibleTokenManager__factory.ts:311:12 - error TS1005: ';' expected.
311 override connect(signer: Signer): MultiFungibleTokenManager__factory {
~~~~~~~
typechain-types/factories/contracts/tokens/MultiFungibleTokenManager__factory.ts:311:12 - error TS2416: Property 'connect' in type 'MultiFungibleTokenManager__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => MultiFungibleTokenManager__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'MultiFungibleTokenManager__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
311 override connect(signer: Signer): MultiFungibleTokenManager__factory {
~~~~~~~
typechain-types/factories/contracts/tokens/MultiFungibleTokenManager__factory.ts:312:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'MultiFungibleTokenManager__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'MultiFungibleTokenManager__factory': override, attach
312 return super.connect(signer) as MultiFungibleTokenManager__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/MultiFungibleTokenManager__factory.ts:324:12 - error TS2352: Conversion of type 'Contract' to type 'MultiFungibleTokenManager' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'MultiFungibleTokenManager': attach, deployed, functions, getProposalNonce, and 15 more.
324 return new Contract(
~~~~~~~~~~~~~
325 address,
~~~~~~~~~~~~~~
...
327 signerOrProvider
~~~~~~~~~~~~~~~~~~~~~~
328 ) as MultiFungibleTokenManager;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/MultiFungibleTokenManager__factory.ts:327:7 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
327 signerOrProvider
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/MultiNftTokenManager__factory.ts:4:18 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/tokens/MultiNftTokenManager__factory.ts:282:6 - error TS2304: Cannot find name 'signer'.
282 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/tokens/MultiNftTokenManager__factory.ts:282:13 - error TS1005: ',' expected.
282 | [signer?: Signer]
~
typechain-types/factories/contracts/tokens/MultiNftTokenManager__factory.ts:298:12 - error TS1005: ';' expected.
298 override deploy(
~~~~~~
typechain-types/factories/contracts/tokens/MultiNftTokenManager__factory.ts:298:12 - error TS2416: Property 'deploy' in type 'MultiNftTokenManager__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<MultiNftTokenManager>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<MultiNftTokenManager>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'MultiNftTokenManager' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'MultiNftTokenManager' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'MultiNftTokenManagerInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
298 override deploy(
~~~~~~
typechain-types/factories/contracts/tokens/MultiNftTokenManager__factory.ts:301:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<MultiNftTokenManager>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'MultiNftTokenManager': attach, deployed, functions, getProposalNonce, and 15 more.
301 return super.deploy(overrides || {}) as Promise<MultiNftTokenManager>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/MultiNftTokenManager__factory.ts:303:3 - error TS2300: Duplicate identifier 'override'.
303 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/tokens/MultiNftTokenManager__factory.ts:303:12 - error TS1005: ';' expected.
303 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/MultiNftTokenManager__factory.ts:303:12 - error TS2416: Property 'getDeployTransaction' in type 'MultiNftTokenManager__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
303 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/MultiNftTokenManager__factory.ts:306:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
306 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/MultiNftTokenManager__factory.ts:308:3 - error TS2300: Duplicate identifier 'override'.
308 override attach(address: string): MultiNftTokenManager {
~~~~~~~~
typechain-types/factories/contracts/tokens/MultiNftTokenManager__factory.ts:308:12 - error TS1005: ';' expected.
308 override attach(address: string): MultiNftTokenManager {
~~~~~~
typechain-types/factories/contracts/tokens/MultiNftTokenManager__factory.ts:309:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
309 return super.attach(address) as MultiNftTokenManager;
~~~~~~
typechain-types/factories/contracts/tokens/MultiNftTokenManager__factory.ts:311:3 - error TS2300: Duplicate identifier 'override'.
311 override connect(signer: Signer): MultiNftTokenManager__factory {
~~~~~~~~
typechain-types/factories/contracts/tokens/MultiNftTokenManager__factory.ts:311:12 - error TS1005: ';' expected.
311 override connect(signer: Signer): MultiNftTokenManager__factory {
~~~~~~~
typechain-types/factories/contracts/tokens/MultiNftTokenManager__factory.ts:311:12 - error TS2416: Property 'connect' in type 'MultiNftTokenManager__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => MultiNftTokenManager__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'MultiNftTokenManager__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
311 override connect(signer: Signer): MultiNftTokenManager__factory {
~~~~~~~
typechain-types/factories/contracts/tokens/MultiNftTokenManager__factory.ts:312:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'MultiNftTokenManager__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'MultiNftTokenManager__factory': override, attach
312 return super.connect(signer) as MultiNftTokenManager__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/MultiNftTokenManager__factory.ts:324:12 - error TS2352: Conversion of type 'Contract' to type 'MultiNftTokenManager' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'MultiNftTokenManager': attach, deployed, functions, getProposalNonce, and 15 more.
324 return new Contract(
~~~~~~~~~~~~~
325 address,
~~~~~~~~~~~~~~
...
327 signerOrProvider
~~~~~~~~~~~~~~~~~~~~~~
328 ) as MultiNftTokenManager;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/MultiNftTokenManager__factory.ts:327:7 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
327 signerOrProvider
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/MultiTokenManagerBase__factory.ts:5:28 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/tokens/MultiTokenManagerBase__factory.ts:287:12 - error TS2352: Conversion of type 'Contract' to type 'MultiTokenManagerBase' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'MultiTokenManagerBase': attach, deployed, functions, getProposalNonce, and 15 more.
287 return new Contract(
~~~~~~~~~~~~~
288 address,
~~~~~~~~~~~~~~
...
290 signerOrProvider
~~~~~~~~~~~~~~~~~~~~~~
291 ) as MultiTokenManagerBase;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/MultiTokenManagerBase__factory.ts:290:7 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
290 signerOrProvider
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/NftTokenWrapper__factory.ts:4:18 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/tokens/NftTokenWrapper__factory.ts:591:6 - error TS2304: Cannot find name 'signer'.
591 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/tokens/NftTokenWrapper__factory.ts:591:13 - error TS1005: ',' expected.
591 | [signer?: Signer]
~
typechain-types/factories/contracts/tokens/NftTokenWrapper__factory.ts:607:12 - error TS1005: ';' expected.
607 override deploy(
~~~~~~
typechain-types/factories/contracts/tokens/NftTokenWrapper__factory.ts:607:12 - error TS2416: Property 'deploy' in type 'NftTokenWrapper__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_uri: PromiseOrValue<string>, overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<NftTokenWrapper>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<NftTokenWrapper>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'NftTokenWrapper' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'NftTokenWrapper' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'NftTokenWrapperInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
607 override deploy(
~~~~~~
typechain-types/factories/contracts/tokens/NftTokenWrapper__factory.ts:611:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<NftTokenWrapper>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'NftTokenWrapper': attach, deployed, functions, balanceOf, and 22 more.
611 return super.deploy(_uri, overrides || {}) as Promise<NftTokenWrapper>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/NftTokenWrapper__factory.ts:613:3 - error TS2300: Duplicate identifier 'override'.
613 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/tokens/NftTokenWrapper__factory.ts:613:12 - error TS1005: ';' expected.
613 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/NftTokenWrapper__factory.ts:613:12 - error TS2416: Property 'getDeployTransaction' in type 'NftTokenWrapper__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_uri: PromiseOrValue<string>, overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
613 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/NftTokenWrapper__factory.ts:617:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
617 return super.getDeployTransaction(_uri, overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/NftTokenWrapper__factory.ts:619:3 - error TS2300: Duplicate identifier 'override'.
619 override attach(address: string): NftTokenWrapper {
~~~~~~~~
typechain-types/factories/contracts/tokens/NftTokenWrapper__factory.ts:619:12 - error TS1005: ';' expected.
619 override attach(address: string): NftTokenWrapper {
~~~~~~
typechain-types/factories/contracts/tokens/NftTokenWrapper__factory.ts:620:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
620 return super.attach(address) as NftTokenWrapper;
~~~~~~
typechain-types/factories/contracts/tokens/NftTokenWrapper__factory.ts:622:3 - error TS2300: Duplicate identifier 'override'.
622 override connect(signer: Signer): NftTokenWrapper__factory {
~~~~~~~~
typechain-types/factories/contracts/tokens/NftTokenWrapper__factory.ts:622:12 - error TS1005: ';' expected.
622 override connect(signer: Signer): NftTokenWrapper__factory {
~~~~~~~
typechain-types/factories/contracts/tokens/NftTokenWrapper__factory.ts:622:12 - error TS2416: Property 'connect' in type 'NftTokenWrapper__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => NftTokenWrapper__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'NftTokenWrapper__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
622 override connect(signer: Signer): NftTokenWrapper__factory {
~~~~~~~
typechain-types/factories/contracts/tokens/NftTokenWrapper__factory.ts:623:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'NftTokenWrapper__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'NftTokenWrapper__factory': override, attach
623 return super.connect(signer) as NftTokenWrapper__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/NftTokenWrapper__factory.ts:635:12 - error TS2352: Conversion of type 'Contract' to type 'NftTokenWrapper' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'NftTokenWrapper': attach, deployed, functions, balanceOf, and 22 more.
635 return new Contract(address, _abi, signerOrProvider) as NftTokenWrapper;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/NftTokenWrapper__factory.ts:635:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
635 return new Contract(address, _abi, signerOrProvider) as NftTokenWrapper;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/Registry__factory.ts:4:18 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/tokens/Registry__factory.ts:348:6 - error TS2304: Cannot find name 'signer'.
348 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/tokens/Registry__factory.ts:348:13 - error TS1005: ',' expected.
348 | [signer?: Signer]
~
typechain-types/factories/contracts/tokens/Registry__factory.ts:364:12 - error TS1005: ';' expected.
364 override deploy(
~~~~~~
typechain-types/factories/contracts/tokens/Registry__factory.ts:364:12 - error TS2416: Property 'deploy' in type 'Registry__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<Registry>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<Registry>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'Registry' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'Registry' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'RegistryInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
364 override deploy(
~~~~~~
typechain-types/factories/contracts/tokens/Registry__factory.ts:367:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<Registry>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'Registry': attach, deployed, functions, fungibleTokenManager, and 17 more.
367 return super.deploy(overrides || {}) as Promise<Registry>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/Registry__factory.ts:369:3 - error TS2300: Duplicate identifier 'override'.
369 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/tokens/Registry__factory.ts:369:12 - error TS1005: ';' expected.
369 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/Registry__factory.ts:369:12 - error TS2416: Property 'getDeployTransaction' in type 'Registry__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
369 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/Registry__factory.ts:372:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
372 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/Registry__factory.ts:374:3 - error TS2300: Duplicate identifier 'override'.
374 override attach(address: string): Registry {
~~~~~~~~
typechain-types/factories/contracts/tokens/Registry__factory.ts:374:12 - error TS1005: ';' expected.
374 override attach(address: string): Registry {
~~~~~~
typechain-types/factories/contracts/tokens/Registry__factory.ts:375:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
375 return super.attach(address) as Registry;
~~~~~~
typechain-types/factories/contracts/tokens/Registry__factory.ts:377:3 - error TS2300: Duplicate identifier 'override'.
377 override connect(signer: Signer): Registry__factory {
~~~~~~~~
typechain-types/factories/contracts/tokens/Registry__factory.ts:377:12 - error TS1005: ';' expected.
377 override connect(signer: Signer): Registry__factory {
~~~~~~~
typechain-types/factories/contracts/tokens/Registry__factory.ts:377:12 - error TS2416: Property 'connect' in type 'Registry__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => Registry__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'Registry__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
377 override connect(signer: Signer): Registry__factory {
~~~~~~~
typechain-types/factories/contracts/tokens/Registry__factory.ts:378:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'Registry__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'Registry__factory': override, attach
378 return super.connect(signer) as Registry__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/Registry__factory.ts:390:12 - error TS2352: Conversion of type 'Contract' to type 'Registry' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'Registry': attach, deployed, functions, fungibleTokenManager, and 17 more.
390 return new Contract(address, _abi, signerOrProvider) as Registry;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/Registry__factory.ts:390:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
390 return new Contract(address, _abi, signerOrProvider) as Registry;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/TokenWrapper__factory.ts:5:28 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/tokens/TokenWrapper__factory.ts:885:12 - error TS2352: Conversion of type 'Contract' to type 'TokenWrapper' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'TokenWrapper': attach, deployed, functions, DEFAULT_ADMIN_ROLE, and 41 more.
885 return new Contract(address, _abi, signerOrProvider) as TokenWrapper;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/tokens/TokenWrapper__factory.ts:885:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
885 return new Contract(address, _abi, signerOrProvider) as TokenWrapper;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/Treasury__factory.ts:4:18 - error TS2305: Module '"../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/Treasury__factory.ts:116:6 - error TS2304: Cannot find name 'signer'.
116 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/Treasury__factory.ts:116:13 - error TS1005: ',' expected.
116 | [signer?: Signer]
~
typechain-types/factories/contracts/Treasury__factory.ts:132:12 - error TS1005: ';' expected.
132 override deploy(
~~~~~~
typechain-types/factories/contracts/Treasury__factory.ts:132:12 - error TS2416: Property 'deploy' in type 'Treasury__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_treasuryHandler: PromiseOrValue<string>, overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<Treasury>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<Treasury>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'Treasury' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'Treasury' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'TreasuryInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
132 override deploy(
~~~~~~
typechain-types/factories/contracts/Treasury__factory.ts:136:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<Treasury>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'Treasury': attach, deployed, functions, getProposalNonce, and 6 more.
136 return super.deploy(_treasuryHandler, overrides || {}) as Promise<Treasury>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/Treasury__factory.ts:138:3 - error TS2300: Duplicate identifier 'override'.
138 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/Treasury__factory.ts:138:12 - error TS1005: ';' expected.
138 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/Treasury__factory.ts:138:12 - error TS2416: Property 'getDeployTransaction' in type 'Treasury__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_treasuryHandler: PromiseOrValue<string>, overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
138 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/Treasury__factory.ts:142:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
142 return super.getDeployTransaction(_treasuryHandler, overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/Treasury__factory.ts:144:3 - error TS2300: Duplicate identifier 'override'.
144 override attach(address: string): Treasury {
~~~~~~~~
typechain-types/factories/contracts/Treasury__factory.ts:144:12 - error TS1005: ';' expected.
144 override attach(address: string): Treasury {
~~~~~~
typechain-types/factories/contracts/Treasury__factory.ts:145:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
145 return super.attach(address) as Treasury;
~~~~~~
typechain-types/factories/contracts/Treasury__factory.ts:147:3 - error TS2300: Duplicate identifier 'override'.
147 override connect(signer: Signer): Treasury__factory {
~~~~~~~~
typechain-types/factories/contracts/Treasury__factory.ts:147:12 - error TS1005: ';' expected.
147 override connect(signer: Signer): Treasury__factory {
~~~~~~~
typechain-types/factories/contracts/Treasury__factory.ts:147:12 - error TS2416: Property 'connect' in type 'Treasury__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => Treasury__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'Treasury__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
147 override connect(signer: Signer): Treasury__factory {
~~~~~~~
typechain-types/factories/contracts/Treasury__factory.ts:148:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'Treasury__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'Treasury__factory': override, attach
148 return super.connect(signer) as Treasury__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/Treasury__factory.ts:160:12 - error TS2352: Conversion of type 'Contract' to type 'Treasury' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'Treasury': attach, deployed, functions, getProposalNonce, and 6 more.
160 return new Contract(address, _abi, signerOrProvider) as Treasury;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/Treasury__factory.ts:160:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
160 return new Contract(address, _abi, signerOrProvider) as Treasury;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/BatchUpdatableTree.sol/BatchMerkleTree__factory.ts:6:3 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
6 utils,
~~~~~
typechain-types/factories/contracts/trees/BatchUpdatableTree.sol/BatchMerkleTree__factory.ts:610:6 - error TS2304: Cannot find name 'signer'.
610 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/trees/BatchUpdatableTree.sol/BatchMerkleTree__factory.ts:610:13 - error TS1005: ',' expected.
610 | [signer?: Signer]
~
typechain-types/factories/contracts/trees/BatchUpdatableTree.sol/BatchMerkleTree__factory.ts:626:12 - error TS1005: ';' expected.
626 override deploy(
~~~~~~
typechain-types/factories/contracts/trees/BatchUpdatableTree.sol/BatchMerkleTree__factory.ts:626:12 - error TS2416: Property 'deploy' in type 'BatchMerkleTree__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_levels: PromiseOrValue<BigNumberish>, _hasher: PromiseOrValue<string>, _treeUpdateVerifier: PromiseOrValue<string>, overrides?: Overrides & { ...; }) => Promise<...>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<BatchMerkleTree>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'BatchMerkleTree' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'BatchMerkleTree' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'BatchMerkleTreeInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
626 override deploy(
~~~~~~
typechain-types/factories/contracts/trees/BatchUpdatableTree.sol/BatchMerkleTree__factory.ts:632:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<BatchMerkleTree>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'BatchMerkleTree': attach, deployed, functions, FIELD_SIZE, and 33 more.
632 return super.deploy(
~~~~~~~~~~~~~
633 _levels,
~~~~~~~~~~~~~~
...
636 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
637 ) as Promise<BatchMerkleTree>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/BatchUpdatableTree.sol/BatchMerkleTree__factory.ts:639:3 - error TS2300: Duplicate identifier 'override'.
639 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/trees/BatchUpdatableTree.sol/BatchMerkleTree__factory.ts:639:12 - error TS1005: ';' expected.
639 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/BatchUpdatableTree.sol/BatchMerkleTree__factory.ts:639:12 - error TS2416: Property 'getDeployTransaction' in type 'BatchMerkleTree__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_levels: PromiseOrValue<BigNumberish>, _hasher: PromiseOrValue<string>, _treeUpdateVerifier: PromiseOrValue<string>, overrides?: Overrides & { ...; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
639 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/BatchUpdatableTree.sol/BatchMerkleTree__factory.ts:645:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
645 return super.getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
646 _levels,
~~~~~~~~~~~~~~
...
649 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
650 );
~~~~~~
typechain-types/factories/contracts/trees/BatchUpdatableTree.sol/BatchMerkleTree__factory.ts:652:3 - error TS2300: Duplicate identifier 'override'.
652 override attach(address: string): BatchMerkleTree {
~~~~~~~~
typechain-types/factories/contracts/trees/BatchUpdatableTree.sol/BatchMerkleTree__factory.ts:652:12 - error TS1005: ';' expected.
652 override attach(address: string): BatchMerkleTree {
~~~~~~
typechain-types/factories/contracts/trees/BatchUpdatableTree.sol/BatchMerkleTree__factory.ts:653:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
653 return super.attach(address) as BatchMerkleTree;
~~~~~~
typechain-types/factories/contracts/trees/BatchUpdatableTree.sol/BatchMerkleTree__factory.ts:655:3 - error TS2300: Duplicate identifier 'override'.
655 override connect(signer: Signer): BatchMerkleTree__factory {
~~~~~~~~
typechain-types/factories/contracts/trees/BatchUpdatableTree.sol/BatchMerkleTree__factory.ts:655:12 - error TS1005: ';' expected.
655 override connect(signer: Signer): BatchMerkleTree__factory {
~~~~~~~
typechain-types/factories/contracts/trees/BatchUpdatableTree.sol/BatchMerkleTree__factory.ts:655:12 - error TS2416: Property 'connect' in type 'BatchMerkleTree__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => BatchMerkleTree__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'BatchMerkleTree__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
655 override connect(signer: Signer): BatchMerkleTree__factory {
~~~~~~~
typechain-types/factories/contracts/trees/BatchUpdatableTree.sol/BatchMerkleTree__factory.ts:656:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'BatchMerkleTree__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'BatchMerkleTree__factory': override, attach
656 return super.connect(signer) as BatchMerkleTree__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/BatchUpdatableTree.sol/BatchMerkleTree__factory.ts:668:12 - error TS2352: Conversion of type 'Contract' to type 'BatchMerkleTree' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'BatchMerkleTree': attach, deployed, functions, FIELD_SIZE, and 33 more.
668 return new Contract(address, _abi, signerOrProvider) as BatchMerkleTree;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/BatchUpdatableTree.sol/BatchMerkleTree__factory.ts:668:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
668 return new Contract(address, _abi, signerOrProvider) as BatchMerkleTree;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/LinkableIncrementalBinaryTree__factory.ts:4:18 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/trees/LinkableIncrementalBinaryTree__factory.ts:121:7 - error TS2304: Cannot find name 'linkLibraryAddresses'.
121 linkLibraryAddresses: LinkableIncrementalBinaryTreeLibraryAddresses,
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/LinkableIncrementalBinaryTree__factory.ts:121:27 - error TS1005: ',' expected.
121 linkLibraryAddresses: LinkableIncrementalBinaryTreeLibraryAddresses,
~
typechain-types/factories/contracts/trees/LinkableIncrementalBinaryTree__factory.ts:122:7 - error TS2304: Cannot find name 'signer'.
122 signer?: Signer
~~~~~~
typechain-types/factories/contracts/trees/LinkableIncrementalBinaryTree__factory.ts:122:14 - error TS1005: ',' expected.
122 signer?: Signer
~
typechain-types/factories/contracts/trees/LinkableIncrementalBinaryTree__factory.ts:147:9 - error TS2345: Argument of type 'LinkableIncrementalBinaryTreeLibraryAddresses' is not assignable to parameter of type 'ContractRunner'.
Property 'provider' is missing in type 'LinkableIncrementalBinaryTreeLibraryAddresses' but required in type 'ContractRunner'.
147 signer
~~~~~~
node_modules/ethers/types/providers/contracts.d.ts:3:5
3 provider: null | Provider;
~~~~~~~~
'provider' is declared here.
typechain-types/factories/contracts/trees/LinkableIncrementalBinaryTree__factory.ts:167:12 - error TS1005: ';' expected.
167 override deploy(
~~~~~~
typechain-types/factories/contracts/trees/LinkableIncrementalBinaryTree__factory.ts:167:12 - error TS2416: Property 'deploy' in type 'LinkableIncrementalBinaryTree__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<LinkableIncrementalBinaryTree>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<LinkableIncrementalBinaryTree>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'LinkableIncrementalBinaryTree' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'LinkableIncrementalBinaryTree' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'LinkableIncrementalBinaryTreeInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
167 override deploy(
~~~~~~
typechain-types/factories/contracts/trees/LinkableIncrementalBinaryTree__factory.ts:170:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<LinkableIncrementalBinaryTree>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'LinkableIncrementalBinaryTree': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 5 more.
170 return super.deploy(
~~~~~~~~~~~~~
171 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
172 ) as Promise<LinkableIncrementalBinaryTree>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/LinkableIncrementalBinaryTree__factory.ts:174:3 - error TS2300: Duplicate identifier 'override'.
174 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/trees/LinkableIncrementalBinaryTree__factory.ts:174:12 - error TS1005: ';' expected.
174 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/LinkableIncrementalBinaryTree__factory.ts:174:12 - error TS2416: Property 'getDeployTransaction' in type 'LinkableIncrementalBinaryTree__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
174 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/LinkableIncrementalBinaryTree__factory.ts:177:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
177 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/LinkableIncrementalBinaryTree__factory.ts:179:3 - error TS2300: Duplicate identifier 'override'.
179 override attach(address: string): LinkableIncrementalBinaryTree {
~~~~~~~~
typechain-types/factories/contracts/trees/LinkableIncrementalBinaryTree__factory.ts:179:12 - error TS1005: ';' expected.
179 override attach(address: string): LinkableIncrementalBinaryTree {
~~~~~~
typechain-types/factories/contracts/trees/LinkableIncrementalBinaryTree__factory.ts:180:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
180 return super.attach(address) as LinkableIncrementalBinaryTree;
~~~~~~
typechain-types/factories/contracts/trees/LinkableIncrementalBinaryTree__factory.ts:182:3 - error TS2300: Duplicate identifier 'override'.
182 override connect(signer: Signer): LinkableIncrementalBinaryTree__factory {
~~~~~~~~
typechain-types/factories/contracts/trees/LinkableIncrementalBinaryTree__factory.ts:182:12 - error TS1005: ';' expected.
182 override connect(signer: Signer): LinkableIncrementalBinaryTree__factory {
~~~~~~~
typechain-types/factories/contracts/trees/LinkableIncrementalBinaryTree__factory.ts:182:12 - error TS2416: Property 'connect' in type 'LinkableIncrementalBinaryTree__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => LinkableIncrementalBinaryTree__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'LinkableIncrementalBinaryTree__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
182 override connect(signer: Signer): LinkableIncrementalBinaryTree__factory {
~~~~~~~
typechain-types/factories/contracts/trees/LinkableIncrementalBinaryTree__factory.ts:183:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'LinkableIncrementalBinaryTree__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'LinkableIncrementalBinaryTree__factory': override, attach
183 return super.connect(signer) as LinkableIncrementalBinaryTree__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/LinkableIncrementalBinaryTree__factory.ts:195:12 - error TS2352: Conversion of type 'Contract' to type 'LinkableIncrementalBinaryTree' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'LinkableIncrementalBinaryTree': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 5 more.
195 return new Contract(
~~~~~~~~~~~~~
196 address,
~~~~~~~~~~~~~~
...
198 signerOrProvider
~~~~~~~~~~~~~~~~~~~~~~
199 ) as LinkableIncrementalBinaryTree;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/LinkableIncrementalBinaryTree__factory.ts:198:7 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
198 signerOrProvider
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/MerkleForest__factory.ts:6:3 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
6 utils,
~~~~~
typechain-types/factories/contracts/trees/MerkleForest__factory.ts:489:6 - error TS2304: Cannot find name 'linkLibraryAddresses'.
489 | [linkLibraryAddresses: MerkleForestLibraryAddresses, signer?: Signer]
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/MerkleForest__factory.ts:489:26 - error TS1005: ',' expected.
489 | [linkLibraryAddresses: MerkleForestLibraryAddresses, signer?: Signer]
~
typechain-types/factories/contracts/trees/MerkleForest__factory.ts:489:58 - error TS2304: Cannot find name 'signer'.
489 | [linkLibraryAddresses: MerkleForestLibraryAddresses, signer?: Signer]
~~~~~~
typechain-types/factories/contracts/trees/MerkleForest__factory.ts:489:65 - error TS1005: ',' expected.
489 | [linkLibraryAddresses: MerkleForestLibraryAddresses, signer?: Signer]
~
typechain-types/factories/contracts/trees/MerkleForest__factory.ts:511:9 - error TS2345: Argument of type 'MerkleForestLibraryAddresses' is not assignable to parameter of type 'ContractRunner'.
Property 'provider' is missing in type 'MerkleForestLibraryAddresses' but required in type 'ContractRunner'.
511 signer
~~~~~~
node_modules/ethers/types/providers/contracts.d.ts:3:5
3 provider: null | Provider;
~~~~~~~~
'provider' is declared here.
typechain-types/factories/contracts/trees/MerkleForest__factory.ts:533:12 - error TS1005: ';' expected.
533 override deploy(
~~~~~~
typechain-types/factories/contracts/trees/MerkleForest__factory.ts:533:12 - error TS2416: Property 'deploy' in type 'MerkleForest__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_forestLevels: PromiseOrValue<BigNumberish>, _subtreeLevels: PromiseOrValue<BigNumberish>, _hasher: PromiseOrValue<string>, overrides?: Overrides & { ...; }) => Promise<...>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<MerkleForest>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'MerkleForest' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'MerkleForest' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'MerkleForestInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
533 override deploy(
~~~~~~
typechain-types/factories/contracts/trees/MerkleForest__factory.ts:539:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<MerkleForest>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'MerkleForest': attach, deployed, functions, FIELD_SIZE, and 26 more.
539 return super.deploy(
~~~~~~~~~~~~~
540 _forestLevels,
~~~~~~~~~~~~~~~~~~~~
...
543 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
544 ) as Promise<MerkleForest>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/MerkleForest__factory.ts:546:3 - error TS2300: Duplicate identifier 'override'.
546 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/trees/MerkleForest__factory.ts:546:12 - error TS1005: ';' expected.
546 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/MerkleForest__factory.ts:546:12 - error TS2416: Property 'getDeployTransaction' in type 'MerkleForest__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_forestLevels: PromiseOrValue<BigNumberish>, _subtreeLevels: PromiseOrValue<BigNumberish>, _hasher: PromiseOrValue<string>, overrides?: Overrides & { ...; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
546 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/MerkleForest__factory.ts:552:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
552 return super.getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
553 _forestLevels,
~~~~~~~~~~~~~~~~~~~~
...
556 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
557 );
~~~~~~
typechain-types/factories/contracts/trees/MerkleForest__factory.ts:559:3 - error TS2300: Duplicate identifier 'override'.
559 override attach(address: string): MerkleForest {
~~~~~~~~
typechain-types/factories/contracts/trees/MerkleForest__factory.ts:559:12 - error TS1005: ';' expected.
559 override attach(address: string): MerkleForest {
~~~~~~
typechain-types/factories/contracts/trees/MerkleForest__factory.ts:560:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
560 return super.attach(address) as MerkleForest;
~~~~~~
typechain-types/factories/contracts/trees/MerkleForest__factory.ts:562:3 - error TS2300: Duplicate identifier 'override'.
562 override connect(signer: Signer): MerkleForest__factory {
~~~~~~~~
typechain-types/factories/contracts/trees/MerkleForest__factory.ts:562:12 - error TS1005: ';' expected.
562 override connect(signer: Signer): MerkleForest__factory {
~~~~~~~
typechain-types/factories/contracts/trees/MerkleForest__factory.ts:562:12 - error TS2416: Property 'connect' in type 'MerkleForest__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => MerkleForest__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'MerkleForest__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
562 override connect(signer: Signer): MerkleForest__factory {
~~~~~~~
typechain-types/factories/contracts/trees/MerkleForest__factory.ts:563:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'MerkleForest__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'MerkleForest__factory': override, attach
563 return super.connect(signer) as MerkleForest__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/MerkleForest__factory.ts:575:12 - error TS2352: Conversion of type 'Contract' to type 'MerkleForest' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'MerkleForest': attach, deployed, functions, FIELD_SIZE, and 26 more.
575 return new Contract(address, _abi, signerOrProvider) as MerkleForest;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/MerkleForest__factory.ts:575:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
575 return new Contract(address, _abi, signerOrProvider) as MerkleForest;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/MerkleTree__factory.ts:6:3 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
6 utils,
~~~~~
typechain-types/factories/contracts/trees/MerkleTree__factory.ts:366:6 - error TS2304: Cannot find name 'signer'.
366 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/trees/MerkleTree__factory.ts:366:13 - error TS1005: ',' expected.
366 | [signer?: Signer]
~
typechain-types/factories/contracts/trees/MerkleTree__factory.ts:382:12 - error TS1005: ';' expected.
382 override deploy(
~~~~~~
typechain-types/factories/contracts/trees/MerkleTree__factory.ts:382:12 - error TS2416: Property 'deploy' in type 'MerkleTree__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_levels: PromiseOrValue<BigNumberish>, _hasher: PromiseOrValue<string>, overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<...>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<MerkleTree>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'MerkleTree' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'MerkleTree' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'MerkleTreeInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
382 override deploy(
~~~~~~
typechain-types/factories/contracts/trees/MerkleTree__factory.ts:387:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<MerkleTree>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'MerkleTree': attach, deployed, functions, FIELD_SIZE, and 21 more.
387 return super.deploy(
~~~~~~~~~~~~~
388 _levels,
~~~~~~~~~~~~~~
...
390 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
391 ) as Promise<MerkleTree>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/MerkleTree__factory.ts:393:3 - error TS2300: Duplicate identifier 'override'.
393 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/trees/MerkleTree__factory.ts:393:12 - error TS1005: ';' expected.
393 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/MerkleTree__factory.ts:393:12 - error TS2416: Property 'getDeployTransaction' in type 'MerkleTree__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_levels: PromiseOrValue<BigNumberish>, _hasher: PromiseOrValue<string>, overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
393 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/MerkleTree__factory.ts:398:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
398 return super.getDeployTransaction(_levels, _hasher, overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/MerkleTree__factory.ts:400:3 - error TS2300: Duplicate identifier 'override'.
400 override attach(address: string): MerkleTree {
~~~~~~~~
typechain-types/factories/contracts/trees/MerkleTree__factory.ts:400:12 - error TS1005: ';' expected.
400 override attach(address: string): MerkleTree {
~~~~~~
typechain-types/factories/contracts/trees/MerkleTree__factory.ts:401:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
401 return super.attach(address) as MerkleTree;
~~~~~~
typechain-types/factories/contracts/trees/MerkleTree__factory.ts:403:3 - error TS2300: Duplicate identifier 'override'.
403 override connect(signer: Signer): MerkleTree__factory {
~~~~~~~~
typechain-types/factories/contracts/trees/MerkleTree__factory.ts:403:12 - error TS1005: ';' expected.
403 override connect(signer: Signer): MerkleTree__factory {
~~~~~~~
typechain-types/factories/contracts/trees/MerkleTree__factory.ts:403:12 - error TS2416: Property 'connect' in type 'MerkleTree__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => MerkleTree__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'MerkleTree__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
403 override connect(signer: Signer): MerkleTree__factory {
~~~~~~~
typechain-types/factories/contracts/trees/MerkleTree__factory.ts:404:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'MerkleTree__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'MerkleTree__factory': override, attach
404 return super.connect(signer) as MerkleTree__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/MerkleTree__factory.ts:416:12 - error TS2352: Conversion of type 'Contract' to type 'MerkleTree' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'MerkleTree': attach, deployed, functions, FIELD_SIZE, and 21 more.
416 return new Contract(address, _abi, signerOrProvider) as MerkleTree;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/MerkleTree__factory.ts:416:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
416 return new Contract(address, _abi, signerOrProvider) as MerkleTree;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/MerkleTreeWithHistory__factory.ts:5:28 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/trees/MerkleTreeWithHistory__factory.ts:348:12 - error TS2352: Conversion of type 'Contract' to type 'MerkleTreeWithHistory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'MerkleTreeWithHistory': attach, deployed, functions, FIELD_SIZE, and 21 more.
348 return new Contract(
~~~~~~~~~~~~~
349 address,
~~~~~~~~~~~~~~
...
351 signerOrProvider
~~~~~~~~~~~~~~~~~~~~~~
352 ) as MerkleTreeWithHistory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/trees/MerkleTreeWithHistory__factory.ts:351:7 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
351 signerOrProvider
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/utils/ChainIdWithType__factory.ts:5:28 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/utils/ChainIdWithType__factory.ts:120:12 - error TS2352: Conversion of type 'Contract' to type 'ChainIdWithType' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'ChainIdWithType': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 8 more.
120 return new Contract(address, _abi, signerOrProvider) as ChainIdWithType;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/utils/ChainIdWithType__factory.ts:120:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
120 return new Contract(address, _abi, signerOrProvider) as ChainIdWithType;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/utils/Governable__factory.ts:6:3 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
6 utils,
~~~~~
typechain-types/factories/contracts/utils/Governable__factory.ts:363:6 - error TS2304: Cannot find name 'signer'.
363 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/utils/Governable__factory.ts:363:13 - error TS1005: ',' expected.
363 | [signer?: Signer]
~
typechain-types/factories/contracts/utils/Governable__factory.ts:379:12 - error TS1005: ';' expected.
379 override deploy(
~~~~~~
typechain-types/factories/contracts/utils/Governable__factory.ts:379:12 - error TS2416: Property 'deploy' in type 'Governable__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(gov: PromiseOrValue<string>, nonce: PromiseOrValue<BigNumberish>, overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<...>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<Governable>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'Governable' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'Governable' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'GovernableInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
379 override deploy(
~~~~~~
typechain-types/factories/contracts/utils/Governable__factory.ts:384:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<Governable>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'Governable': attach, deployed, functions, averageSessionLengthInMillisecs, and 19 more.
384 return super.deploy(gov, nonce, overrides || {}) as Promise<Governable>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/utils/Governable__factory.ts:386:3 - error TS2300: Duplicate identifier 'override'.
386 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/utils/Governable__factory.ts:386:12 - error TS1005: ';' expected.
386 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/utils/Governable__factory.ts:386:12 - error TS2416: Property 'getDeployTransaction' in type 'Governable__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(gov: PromiseOrValue<string>, nonce: PromiseOrValue<BigNumberish>, overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
386 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/utils/Governable__factory.ts:391:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
391 return super.getDeployTransaction(gov, nonce, overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/utils/Governable__factory.ts:393:3 - error TS2300: Duplicate identifier 'override'.
393 override attach(address: string): Governable {
~~~~~~~~
typechain-types/factories/contracts/utils/Governable__factory.ts:393:12 - error TS1005: ';' expected.
393 override attach(address: string): Governable {
~~~~~~
typechain-types/factories/contracts/utils/Governable__factory.ts:394:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
394 return super.attach(address) as Governable;
~~~~~~
typechain-types/factories/contracts/utils/Governable__factory.ts:396:3 - error TS2300: Duplicate identifier 'override'.
396 override connect(signer: Signer): Governable__factory {
~~~~~~~~
typechain-types/factories/contracts/utils/Governable__factory.ts:396:12 - error TS1005: ';' expected.
396 override connect(signer: Signer): Governable__factory {
~~~~~~~
typechain-types/factories/contracts/utils/Governable__factory.ts:396:12 - error TS2416: Property 'connect' in type 'Governable__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => Governable__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'Governable__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
396 override connect(signer: Signer): Governable__factory {
~~~~~~~
typechain-types/factories/contracts/utils/Governable__factory.ts:397:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'Governable__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'Governable__factory': override, attach
397 return super.connect(signer) as Governable__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/utils/Governable__factory.ts:409:12 - error TS2352: Conversion of type 'Contract' to type 'Governable' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'Governable': attach, deployed, functions, averageSessionLengthInMillisecs, and 19 more.
409 return new Contract(address, _abi, signerOrProvider) as Governable;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/utils/Governable__factory.ts:409:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
409 return new Contract(address, _abi, signerOrProvider) as Governable;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/utils/Initialized__factory.ts:4:18 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/utils/Initialized__factory.ts:32:6 - error TS2304: Cannot find name 'signer'.
32 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/utils/Initialized__factory.ts:32:13 - error TS1005: ',' expected.
32 | [signer?: Signer]
~
typechain-types/factories/contracts/utils/Initialized__factory.ts:48:12 - error TS1005: ';' expected.
48 override deploy(
~~~~~~
typechain-types/factories/contracts/utils/Initialized__factory.ts:48:12 - error TS2416: Property 'deploy' in type 'Initialized__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<Initialized>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<Initialized>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'Initialized' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'Initialized' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'InitializedInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
48 override deploy(
~~~~~~
typechain-types/factories/contracts/utils/Initialized__factory.ts:51:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<Initialized>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'Initialized': attach, deployed, functions, initialized, and 3 more.
51 return super.deploy(overrides || {}) as Promise<Initialized>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/utils/Initialized__factory.ts:53:3 - error TS2300: Duplicate identifier 'override'.
53 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/utils/Initialized__factory.ts:53:12 - error TS1005: ';' expected.
53 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/utils/Initialized__factory.ts:53:12 - error TS2416: Property 'getDeployTransaction' in type 'Initialized__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
53 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/utils/Initialized__factory.ts:56:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
56 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/utils/Initialized__factory.ts:58:3 - error TS2300: Duplicate identifier 'override'.
58 override attach(address: string): Initialized {
~~~~~~~~
typechain-types/factories/contracts/utils/Initialized__factory.ts:58:12 - error TS1005: ';' expected.
58 override attach(address: string): Initialized {
~~~~~~
typechain-types/factories/contracts/utils/Initialized__factory.ts:59:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
59 return super.attach(address) as Initialized;
~~~~~~
typechain-types/factories/contracts/utils/Initialized__factory.ts:61:3 - error TS2300: Duplicate identifier 'override'.
61 override connect(signer: Signer): Initialized__factory {
~~~~~~~~
typechain-types/factories/contracts/utils/Initialized__factory.ts:61:12 - error TS1005: ';' expected.
61 override connect(signer: Signer): Initialized__factory {
~~~~~~~
typechain-types/factories/contracts/utils/Initialized__factory.ts:61:12 - error TS2416: Property 'connect' in type 'Initialized__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => Initialized__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'Initialized__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
61 override connect(signer: Signer): Initialized__factory {
~~~~~~~
typechain-types/factories/contracts/utils/Initialized__factory.ts:62:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'Initialized__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'Initialized__factory': override, attach
62 return super.connect(signer) as Initialized__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/utils/Initialized__factory.ts:74:12 - error TS2352: Conversion of type 'Contract' to type 'Initialized' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'Initialized': attach, deployed, functions, initialized, and 3 more.
74 return new Contract(address, _abi, signerOrProvider) as Initialized;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/utils/Initialized__factory.ts:74:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
74 return new Contract(address, _abi, signerOrProvider) as Initialized;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/utils/ProposalNonceTracker__factory.ts:4:18 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/utils/ProposalNonceTracker__factory.ts:45:6 - error TS2304: Cannot find name 'signer'.
45 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/utils/ProposalNonceTracker__factory.ts:45:13 - error TS1005: ',' expected.
45 | [signer?: Signer]
~
typechain-types/factories/contracts/utils/ProposalNonceTracker__factory.ts:61:12 - error TS1005: ';' expected.
61 override deploy(
~~~~~~
typechain-types/factories/contracts/utils/ProposalNonceTracker__factory.ts:61:12 - error TS2416: Property 'deploy' in type 'ProposalNonceTracker__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<ProposalNonceTracker>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<ProposalNonceTracker>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'ProposalNonceTracker' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'ProposalNonceTracker' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'ProposalNonceTrackerInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
61 override deploy(
~~~~~~
typechain-types/factories/contracts/utils/ProposalNonceTracker__factory.ts:64:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<ProposalNonceTracker>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'ProposalNonceTracker': attach, deployed, functions, getProposalNonce, and 4 more.
64 return super.deploy(overrides || {}) as Promise<ProposalNonceTracker>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/utils/ProposalNonceTracker__factory.ts:66:3 - error TS2300: Duplicate identifier 'override'.
66 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/utils/ProposalNonceTracker__factory.ts:66:12 - error TS1005: ';' expected.
66 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/utils/ProposalNonceTracker__factory.ts:66:12 - error TS2416: Property 'getDeployTransaction' in type 'ProposalNonceTracker__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
66 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/utils/ProposalNonceTracker__factory.ts:69:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
69 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/utils/ProposalNonceTracker__factory.ts:71:3 - error TS2300: Duplicate identifier 'override'.
71 override attach(address: string): ProposalNonceTracker {
~~~~~~~~
typechain-types/factories/contracts/utils/ProposalNonceTracker__factory.ts:71:12 - error TS1005: ';' expected.
71 override attach(address: string): ProposalNonceTracker {
~~~~~~
typechain-types/factories/contracts/utils/ProposalNonceTracker__factory.ts:72:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
72 return super.attach(address) as ProposalNonceTracker;
~~~~~~
typechain-types/factories/contracts/utils/ProposalNonceTracker__factory.ts:74:3 - error TS2300: Duplicate identifier 'override'.
74 override connect(signer: Signer): ProposalNonceTracker__factory {
~~~~~~~~
typechain-types/factories/contracts/utils/ProposalNonceTracker__factory.ts:74:12 - error TS1005: ';' expected.
74 override connect(signer: Signer): ProposalNonceTracker__factory {
~~~~~~~
typechain-types/factories/contracts/utils/ProposalNonceTracker__factory.ts:74:12 - error TS2416: Property 'connect' in type 'ProposalNonceTracker__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => ProposalNonceTracker__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'ProposalNonceTracker__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
74 override connect(signer: Signer): ProposalNonceTracker__factory {
~~~~~~~
typechain-types/factories/contracts/utils/ProposalNonceTracker__factory.ts:75:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'ProposalNonceTracker__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'ProposalNonceTracker__factory': override, attach
75 return super.connect(signer) as ProposalNonceTracker__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/utils/ProposalNonceTracker__factory.ts:87:12 - error TS2352: Conversion of type 'Contract' to type 'ProposalNonceTracker' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'ProposalNonceTracker': attach, deployed, functions, getProposalNonce, and 4 more.
87 return new Contract(
~~~~~~~~~~~~~
88 address,
~~~~~~~~~~~~~~
...
90 signerOrProvider
~~~~~~~~~~~~~~~~~~~~~~
91 ) as ProposalNonceTracker;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/utils/ProposalNonceTracker__factory.ts:90:7 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
90 signerOrProvider
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/base/LinkableAnchor__factory.ts:5:28 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/vanchors/base/LinkableAnchor__factory.ts:809:12 - error TS2352: Conversion of type 'Contract' to type 'LinkableAnchor' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'LinkableAnchor': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 42 more.
809 return new Contract(address, _abi, signerOrProvider) as LinkableAnchor;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/base/LinkableAnchor__factory.ts:809:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
809 return new Contract(address, _abi, signerOrProvider) as LinkableAnchor;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/base/MultiAssetVAnchor__factory.ts:5:28 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/vanchors/base/MultiAssetVAnchor__factory.ts:1526:12 - error TS2352: Conversion of type 'Contract' to type 'MultiAssetVAnchor' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'MultiAssetVAnchor': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 62 more.
1526 return new Contract(address, _abi, signerOrProvider) as MultiAssetVAnchor;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/base/MultiAssetVAnchor__factory.ts:1526:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
1526 return new Contract(address, _abi, signerOrProvider) as MultiAssetVAnchor;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/base/VAnchor__factory.ts:5:28 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/vanchors/base/VAnchor__factory.ts:1493:12 - error TS2352: Conversion of type 'Contract' to type 'VAnchor' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'VAnchor': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 61 more.
1493 return new Contract(address, _abi, signerOrProvider) as VAnchor;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/base/VAnchor__factory.ts:1493:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
1493 return new Contract(address, _abi, signerOrProvider) as VAnchor;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/base/VAnchorBase__factory.ts:5:28 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/vanchors/base/VAnchorBase__factory.ts:1112:12 - error TS2352: Conversion of type 'Contract' to type 'VAnchorBase' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'VAnchorBase': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 54 more.
1112 return new Contract(address, _abi, signerOrProvider) as VAnchorBase;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/base/VAnchorBase__factory.ts:1112:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
1112 return new Contract(address, _abi, signerOrProvider) as VAnchorBase;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/base/ZKVAnchorBase__factory.ts:5:28 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
5 import { Contract, Signer, utils } from "ethers";
~~~~~
typechain-types/factories/contracts/vanchors/base/ZKVAnchorBase__factory.ts:1480:12 - error TS2352: Conversion of type 'Contract' to type 'ZKVAnchorBase' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'ZKVAnchorBase': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 60 more.
1480 return new Contract(address, _abi, signerOrProvider) as ZKVAnchorBase;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/base/ZKVAnchorBase__factory.ts:1480:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
1480 return new Contract(address, _abi, signerOrProvider) as ZKVAnchorBase;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/ChainalysisVAnchor__factory.ts:6:3 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
6 utils,
~~~~~
typechain-types/factories/contracts/vanchors/extensions/ChainalysisVAnchor__factory.ts:1583:6 - error TS2304: Cannot find name 'linkLibraryAddresses'.
1583 | [linkLibraryAddresses: ChainalysisVAnchorLibraryAddresses, signer?: Signer]
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/ChainalysisVAnchor__factory.ts:1583:26 - error TS1005: ',' expected.
1583 | [linkLibraryAddresses: ChainalysisVAnchorLibraryAddresses, signer?: Signer]
~
typechain-types/factories/contracts/vanchors/extensions/ChainalysisVAnchor__factory.ts:1583:64 - error TS2304: Cannot find name 'signer'.
1583 | [linkLibraryAddresses: ChainalysisVAnchorLibraryAddresses, signer?: Signer]
~~~~~~
typechain-types/factories/contracts/vanchors/extensions/ChainalysisVAnchor__factory.ts:1583:71 - error TS1005: ',' expected.
1583 | [linkLibraryAddresses: ChainalysisVAnchorLibraryAddresses, signer?: Signer]
~
typechain-types/factories/contracts/vanchors/extensions/ChainalysisVAnchor__factory.ts:1605:9 - error TS2345: Argument of type 'ChainalysisVAnchorLibraryAddresses' is not assignable to parameter of type 'ContractRunner'.
Property 'provider' is missing in type 'ChainalysisVAnchorLibraryAddresses' but required in type 'ContractRunner'.
1605 signer
~~~~~~
node_modules/ethers/types/providers/contracts.d.ts:3:5
3 provider: null | Provider;
~~~~~~~~
'provider' is declared here.
typechain-types/factories/contracts/vanchors/extensions/ChainalysisVAnchor__factory.ts:1627:12 - error TS1005: ';' expected.
1627 override deploy(
~~~~~~
typechain-types/factories/contracts/vanchors/extensions/ChainalysisVAnchor__factory.ts:1627:12 - error TS2416: Property 'deploy' in type 'ChainalysisVAnchor__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_verifier: PromiseOrValue<string>, _merkleTreeLevels: PromiseOrValue<BigNumberish>, _hasher: PromiseOrValue<string>, _handler: PromiseOrValue<...>, _token: PromiseOrValue<...>, _maxEdges: PromiseOrValue<...>, overrides?: Overrides & { ...; }) => Promise<...>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<ChainalysisVAnchor>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'ChainalysisVAnchor' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'ChainalysisVAnchor' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'ChainalysisVAnchorInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
1627 override deploy(
~~~~~~
typechain-types/factories/contracts/vanchors/extensions/ChainalysisVAnchor__factory.ts:1636:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<ChainalysisVAnchor>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'ChainalysisVAnchor': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 65 more.
1636 return super.deploy(
~~~~~~~~~~~~~
1637 _verifier,
~~~~~~~~~~~~~~~~
...
1643 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
1644 ) as Promise<ChainalysisVAnchor>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/ChainalysisVAnchor__factory.ts:1646:3 - error TS2300: Duplicate identifier 'override'.
1646 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/ChainalysisVAnchor__factory.ts:1646:12 - error TS1005: ';' expected.
1646 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/ChainalysisVAnchor__factory.ts:1646:12 - error TS2416: Property 'getDeployTransaction' in type 'ChainalysisVAnchor__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_verifier: PromiseOrValue<string>, _merkleTreeLevels: PromiseOrValue<BigNumberish>, _hasher: PromiseOrValue<string>, _handler: PromiseOrValue<...>, _token: PromiseOrValue<...>, _maxEdges: PromiseOrValue<...>, overrides?: Overrides & { ...; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
1646 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/ChainalysisVAnchor__factory.ts:1655:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
1655 return super.getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1656 _verifier,
~~~~~~~~~~~~~~~~
...
1662 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
1663 );
~~~~~~
typechain-types/factories/contracts/vanchors/extensions/ChainalysisVAnchor__factory.ts:1665:3 - error TS2300: Duplicate identifier 'override'.
1665 override attach(address: string): ChainalysisVAnchor {
~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/ChainalysisVAnchor__factory.ts:1665:12 - error TS1005: ';' expected.
1665 override attach(address: string): ChainalysisVAnchor {
~~~~~~
typechain-types/factories/contracts/vanchors/extensions/ChainalysisVAnchor__factory.ts:1666:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
1666 return super.attach(address) as ChainalysisVAnchor;
~~~~~~
typechain-types/factories/contracts/vanchors/extensions/ChainalysisVAnchor__factory.ts:1668:3 - error TS2300: Duplicate identifier 'override'.
1668 override connect(signer: Signer): ChainalysisVAnchor__factory {
~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/ChainalysisVAnchor__factory.ts:1668:12 - error TS1005: ';' expected.
1668 override connect(signer: Signer): ChainalysisVAnchor__factory {
~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/ChainalysisVAnchor__factory.ts:1668:12 - error TS2416: Property 'connect' in type 'ChainalysisVAnchor__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => ChainalysisVAnchor__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'ChainalysisVAnchor__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
1668 override connect(signer: Signer): ChainalysisVAnchor__factory {
~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/ChainalysisVAnchor__factory.ts:1669:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'ChainalysisVAnchor__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'ChainalysisVAnchor__factory': override, attach
1669 return super.connect(signer) as ChainalysisVAnchor__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/ChainalysisVAnchor__factory.ts:1681:12 - error TS2352: Conversion of type 'Contract' to type 'ChainalysisVAnchor' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'ChainalysisVAnchor': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 65 more.
1681 return new Contract(address, _abi, signerOrProvider) as ChainalysisVAnchor;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/ChainalysisVAnchor__factory.ts:1681:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
1681 return new Contract(address, _abi, signerOrProvider) as ChainalysisVAnchor;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/OpenVAnchor__factory.ts:6:3 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
6 utils,
~~~~~
typechain-types/factories/contracts/vanchors/extensions/OpenVAnchor__factory.ts:1387:6 - error TS2304: Cannot find name 'signer'.
1387 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/vanchors/extensions/OpenVAnchor__factory.ts:1387:13 - error TS1005: ',' expected.
1387 | [signer?: Signer]
~
typechain-types/factories/contracts/vanchors/extensions/OpenVAnchor__factory.ts:1403:12 - error TS1005: ';' expected.
1403 override deploy(
~~~~~~
typechain-types/factories/contracts/vanchors/extensions/OpenVAnchor__factory.ts:1403:12 - error TS2416: Property 'deploy' in type 'OpenVAnchor__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_hasher: PromiseOrValue<string>, _levels: PromiseOrValue<BigNumberish>, _handler: PromiseOrValue<string>, _token: PromiseOrValue<...>, overrides?: Overrides & { ...; }) => Promise<...>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<OpenVAnchor>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'OpenVAnchor' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'OpenVAnchor' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'OpenVAnchorInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
1403 override deploy(
~~~~~~
typechain-types/factories/contracts/vanchors/extensions/OpenVAnchor__factory.ts:1410:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<OpenVAnchor>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'OpenVAnchor': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 63 more.
1410 return super.deploy(
~~~~~~~~~~~~~
1411 _hasher,
~~~~~~~~~~~~~~
...
1415 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
1416 ) as Promise<OpenVAnchor>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/OpenVAnchor__factory.ts:1418:3 - error TS2300: Duplicate identifier 'override'.
1418 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/OpenVAnchor__factory.ts:1418:12 - error TS1005: ';' expected.
1418 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/OpenVAnchor__factory.ts:1418:12 - error TS2416: Property 'getDeployTransaction' in type 'OpenVAnchor__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_hasher: PromiseOrValue<string>, _levels: PromiseOrValue<BigNumberish>, _handler: PromiseOrValue<string>, _token: PromiseOrValue<...>, overrides?: Overrides & { ...; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
1418 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/OpenVAnchor__factory.ts:1425:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
1425 return super.getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1426 _hasher,
~~~~~~~~~~~~~~
...
1430 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
1431 );
~~~~~~
typechain-types/factories/contracts/vanchors/extensions/OpenVAnchor__factory.ts:1433:3 - error TS2300: Duplicate identifier 'override'.
1433 override attach(address: string): OpenVAnchor {
~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/OpenVAnchor__factory.ts:1433:12 - error TS1005: ';' expected.
1433 override attach(address: string): OpenVAnchor {
~~~~~~
typechain-types/factories/contracts/vanchors/extensions/OpenVAnchor__factory.ts:1434:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
1434 return super.attach(address) as OpenVAnchor;
~~~~~~
typechain-types/factories/contracts/vanchors/extensions/OpenVAnchor__factory.ts:1436:3 - error TS2300: Duplicate identifier 'override'.
1436 override connect(signer: Signer): OpenVAnchor__factory {
~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/OpenVAnchor__factory.ts:1436:12 - error TS1005: ';' expected.
1436 override connect(signer: Signer): OpenVAnchor__factory {
~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/OpenVAnchor__factory.ts:1436:12 - error TS2416: Property 'connect' in type 'OpenVAnchor__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => OpenVAnchor__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'OpenVAnchor__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
1436 override connect(signer: Signer): OpenVAnchor__factory {
~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/OpenVAnchor__factory.ts:1437:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'OpenVAnchor__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'OpenVAnchor__factory': override, attach
1437 return super.connect(signer) as OpenVAnchor__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/OpenVAnchor__factory.ts:1449:12 - error TS2352: Conversion of type 'Contract' to type 'OpenVAnchor' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'OpenVAnchor': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 63 more.
1449 return new Contract(address, _abi, signerOrProvider) as OpenVAnchor;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/OpenVAnchor__factory.ts:1449:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
1449 return new Contract(address, _abi, signerOrProvider) as OpenVAnchor;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/RateLimitedVAnchor__factory.ts:6:3 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
6 utils,
~~~~~
typechain-types/factories/contracts/vanchors/extensions/RateLimitedVAnchor__factory.ts:1640:6 - error TS2304: Cannot find name 'linkLibraryAddresses'.
1640 | [linkLibraryAddresses: RateLimitedVAnchorLibraryAddresses, signer?: Signer]
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/RateLimitedVAnchor__factory.ts:1640:26 - error TS1005: ',' expected.
1640 | [linkLibraryAddresses: RateLimitedVAnchorLibraryAddresses, signer?: Signer]
~
typechain-types/factories/contracts/vanchors/extensions/RateLimitedVAnchor__factory.ts:1640:64 - error TS2304: Cannot find name 'signer'.
1640 | [linkLibraryAddresses: RateLimitedVAnchorLibraryAddresses, signer?: Signer]
~~~~~~
typechain-types/factories/contracts/vanchors/extensions/RateLimitedVAnchor__factory.ts:1640:71 - error TS1005: ',' expected.
1640 | [linkLibraryAddresses: RateLimitedVAnchorLibraryAddresses, signer?: Signer]
~
typechain-types/factories/contracts/vanchors/extensions/RateLimitedVAnchor__factory.ts:1662:9 - error TS2345: Argument of type 'RateLimitedVAnchorLibraryAddresses' is not assignable to parameter of type 'ContractRunner'.
Property 'provider' is missing in type 'RateLimitedVAnchorLibraryAddresses' but required in type 'ContractRunner'.
1662 signer
~~~~~~
node_modules/ethers/types/providers/contracts.d.ts:3:5
3 provider: null | Provider;
~~~~~~~~
'provider' is declared here.
typechain-types/factories/contracts/vanchors/extensions/RateLimitedVAnchor__factory.ts:1684:12 - error TS1005: ';' expected.
1684 override deploy(
~~~~~~
typechain-types/factories/contracts/vanchors/extensions/RateLimitedVAnchor__factory.ts:1684:12 - error TS2416: Property 'deploy' in type 'RateLimitedVAnchor__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_verifier: PromiseOrValue<string>, _merkleTreeLevels: PromiseOrValue<BigNumberish>, _hasher: PromiseOrValue<string>, _handler: PromiseOrValue<...>, _token: PromiseOrValue<...>, _maxEdges: PromiseOrValue<...>, overrides?: Overrides & { ...; }) => Promise<...>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<RateLimitedVAnchor>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'RateLimitedVAnchor' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'RateLimitedVAnchor' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'RateLimitedVAnchorInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
1684 override deploy(
~~~~~~
typechain-types/factories/contracts/vanchors/extensions/RateLimitedVAnchor__factory.ts:1693:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<RateLimitedVAnchor>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'RateLimitedVAnchor': attach, deployed, functions, DAILY_WITHDRAWAL_LIMIT, and 69 more.
1693 return super.deploy(
~~~~~~~~~~~~~
1694 _verifier,
~~~~~~~~~~~~~~~~
...
1700 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
1701 ) as Promise<RateLimitedVAnchor>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/RateLimitedVAnchor__factory.ts:1703:3 - error TS2300: Duplicate identifier 'override'.
1703 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/RateLimitedVAnchor__factory.ts:1703:12 - error TS1005: ';' expected.
1703 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/RateLimitedVAnchor__factory.ts:1703:12 - error TS2416: Property 'getDeployTransaction' in type 'RateLimitedVAnchor__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_verifier: PromiseOrValue<string>, _merkleTreeLevels: PromiseOrValue<BigNumberish>, _hasher: PromiseOrValue<string>, _handler: PromiseOrValue<...>, _token: PromiseOrValue<...>, _maxEdges: PromiseOrValue<...>, overrides?: Overrides & { ...; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
1703 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/RateLimitedVAnchor__factory.ts:1712:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
1712 return super.getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1713 _verifier,
~~~~~~~~~~~~~~~~
...
1719 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
1720 );
~~~~~~
typechain-types/factories/contracts/vanchors/extensions/RateLimitedVAnchor__factory.ts:1722:3 - error TS2300: Duplicate identifier 'override'.
1722 override attach(address: string): RateLimitedVAnchor {
~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/RateLimitedVAnchor__factory.ts:1722:12 - error TS1005: ';' expected.
1722 override attach(address: string): RateLimitedVAnchor {
~~~~~~
typechain-types/factories/contracts/vanchors/extensions/RateLimitedVAnchor__factory.ts:1723:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
1723 return super.attach(address) as RateLimitedVAnchor;
~~~~~~
typechain-types/factories/contracts/vanchors/extensions/RateLimitedVAnchor__factory.ts:1725:3 - error TS2300: Duplicate identifier 'override'.
1725 override connect(signer: Signer): RateLimitedVAnchor__factory {
~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/RateLimitedVAnchor__factory.ts:1725:12 - error TS1005: ';' expected.
1725 override connect(signer: Signer): RateLimitedVAnchor__factory {
~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/RateLimitedVAnchor__factory.ts:1725:12 - error TS2416: Property 'connect' in type 'RateLimitedVAnchor__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => RateLimitedVAnchor__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'RateLimitedVAnchor__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
1725 override connect(signer: Signer): RateLimitedVAnchor__factory {
~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/RateLimitedVAnchor__factory.ts:1726:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'RateLimitedVAnchor__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'RateLimitedVAnchor__factory': override, attach
1726 return super.connect(signer) as RateLimitedVAnchor__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/RateLimitedVAnchor__factory.ts:1738:12 - error TS2352: Conversion of type 'Contract' to type 'RateLimitedVAnchor' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'RateLimitedVAnchor': attach, deployed, functions, DAILY_WITHDRAWAL_LIMIT, and 69 more.
1738 return new Contract(address, _abi, signerOrProvider) as RateLimitedVAnchor;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/extensions/RateLimitedVAnchor__factory.ts:1738:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
1738 return new Contract(address, _abi, signerOrProvider) as RateLimitedVAnchor;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorForest__factory.ts:6:3 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
6 utils,
~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorForest__factory.ts:1706:6 - error TS2304: Cannot find name 'linkLibraryAddresses'.
1706 | [linkLibraryAddresses: VAnchorForestLibraryAddresses, signer?: Signer]
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorForest__factory.ts:1706:26 - error TS1005: ',' expected.
1706 | [linkLibraryAddresses: VAnchorForestLibraryAddresses, signer?: Signer]
~
typechain-types/factories/contracts/vanchors/instances/VAnchorForest__factory.ts:1706:59 - error TS2304: Cannot find name 'signer'.
1706 | [linkLibraryAddresses: VAnchorForestLibraryAddresses, signer?: Signer]
~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorForest__factory.ts:1706:66 - error TS1005: ',' expected.
1706 | [linkLibraryAddresses: VAnchorForestLibraryAddresses, signer?: Signer]
~
typechain-types/factories/contracts/vanchors/instances/VAnchorForest__factory.ts:1728:9 - error TS2345: Argument of type 'VAnchorForestLibraryAddresses' is not assignable to parameter of type 'ContractRunner'.
Property 'provider' is missing in type 'VAnchorForestLibraryAddresses' but required in type 'ContractRunner'.
1728 signer
~~~~~~
node_modules/ethers/types/providers/contracts.d.ts:3:5
3 provider: null | Provider;
~~~~~~~~
'provider' is declared here.
typechain-types/factories/contracts/vanchors/instances/VAnchorForest__factory.ts:1766:12 - error TS1005: ';' expected.
1766 override deploy(
~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorForest__factory.ts:1766:12 - error TS2416: Property 'deploy' in type 'VAnchorForest__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_verifier: PromiseOrValue<string>, _forestLevels: PromiseOrValue<BigNumberish>, _subtreeLevels: PromiseOrValue<BigNumberish>, _hasher: PromiseOrValue<...>, _handler: PromiseOrValue<...>, _token: PromiseOrValue<...>, _maxEdges: PromiseOrValue<...>, overrides?: Overrides & { ...; }) => Promise<...>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<VAnchorForest>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'VAnchorForest' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'VAnchorForest' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'VAnchorForestInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
1766 override deploy(
~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorForest__factory.ts:1776:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<VAnchorForest>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'VAnchorForest': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 70 more.
1776 return super.deploy(
~~~~~~~~~~~~~
1777 _verifier,
~~~~~~~~~~~~~~~~
...
1784 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
1785 ) as Promise<VAnchorForest>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorForest__factory.ts:1787:3 - error TS2300: Duplicate identifier 'override'.
1787 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorForest__factory.ts:1787:12 - error TS1005: ';' expected.
1787 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorForest__factory.ts:1787:12 - error TS2416: Property 'getDeployTransaction' in type 'VAnchorForest__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_verifier: PromiseOrValue<string>, _forestLevels: PromiseOrValue<BigNumberish>, _subtreeLevels: PromiseOrValue<BigNumberish>, _hasher: PromiseOrValue<...>, _handler: PromiseOrValue<...>, _token: PromiseOrValue<...>, _maxEdges: PromiseOrValue<...>, overrides?: Overrides & { ...; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
1787 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorForest__factory.ts:1797:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
1797 return super.getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1798 _verifier,
~~~~~~~~~~~~~~~~
...
1805 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
1806 );
~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorForest__factory.ts:1808:3 - error TS2300: Duplicate identifier 'override'.
1808 override attach(address: string): VAnchorForest {
~~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorForest__factory.ts:1808:12 - error TS1005: ';' expected.
1808 override attach(address: string): VAnchorForest {
~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorForest__factory.ts:1809:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
1809 return super.attach(address) as VAnchorForest;
~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorForest__factory.ts:1811:3 - error TS2300: Duplicate identifier 'override'.
1811 override connect(signer: Signer): VAnchorForest__factory {
~~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorForest__factory.ts:1811:12 - error TS1005: ';' expected.
1811 override connect(signer: Signer): VAnchorForest__factory {
~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorForest__factory.ts:1811:12 - error TS2416: Property 'connect' in type 'VAnchorForest__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => VAnchorForest__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'VAnchorForest__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
1811 override connect(signer: Signer): VAnchorForest__factory {
~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorForest__factory.ts:1812:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'VAnchorForest__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'VAnchorForest__factory': override, attach
1812 return super.connect(signer) as VAnchorForest__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorForest__factory.ts:1824:12 - error TS2352: Conversion of type 'Contract' to type 'VAnchorForest' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'VAnchorForest': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 70 more.
1824 return new Contract(address, _abi, signerOrProvider) as VAnchorForest;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorForest__factory.ts:1824:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
1824 return new Contract(address, _abi, signerOrProvider) as VAnchorForest;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorTree__factory.ts:6:3 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
6 utils,
~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorTree__factory.ts:1583:6 - error TS2304: Cannot find name 'linkLibraryAddresses'.
1583 | [linkLibraryAddresses: VAnchorTreeLibraryAddresses, signer?: Signer]
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorTree__factory.ts:1583:26 - error TS1005: ',' expected.
1583 | [linkLibraryAddresses: VAnchorTreeLibraryAddresses, signer?: Signer]
~
typechain-types/factories/contracts/vanchors/instances/VAnchorTree__factory.ts:1583:57 - error TS2304: Cannot find name 'signer'.
1583 | [linkLibraryAddresses: VAnchorTreeLibraryAddresses, signer?: Signer]
~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorTree__factory.ts:1583:64 - error TS1005: ',' expected.
1583 | [linkLibraryAddresses: VAnchorTreeLibraryAddresses, signer?: Signer]
~
typechain-types/factories/contracts/vanchors/instances/VAnchorTree__factory.ts:1605:9 - error TS2345: Argument of type 'VAnchorTreeLibraryAddresses' is not assignable to parameter of type 'ContractRunner'.
Property 'provider' is missing in type 'VAnchorTreeLibraryAddresses' but required in type 'ContractRunner'.
1605 signer
~~~~~~
node_modules/ethers/types/providers/contracts.d.ts:3:5
3 provider: null | Provider;
~~~~~~~~
'provider' is declared here.
typechain-types/factories/contracts/vanchors/instances/VAnchorTree__factory.ts:1627:12 - error TS1005: ';' expected.
1627 override deploy(
~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorTree__factory.ts:1627:12 - error TS2416: Property 'deploy' in type 'VAnchorTree__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_verifier: PromiseOrValue<string>, _merkleTreeLevels: PromiseOrValue<BigNumberish>, _hasher: PromiseOrValue<string>, _handler: PromiseOrValue<...>, _token: PromiseOrValue<...>, _maxEdges: PromiseOrValue<...>, overrides?: Overrides & { ...; }) => Promise<...>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<VAnchorTree>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'VAnchorTree' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'VAnchorTree' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'VAnchorTreeInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 27 more.
1627 override deploy(
~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorTree__factory.ts:1636:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<VAnchorTree>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'VAnchorTree': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 65 more.
1636 return super.deploy(
~~~~~~~~~~~~~
1637 _verifier,
~~~~~~~~~~~~~~~~
...
1643 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
1644 ) as Promise<VAnchorTree>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorTree__factory.ts:1646:3 - error TS2300: Duplicate identifier 'override'.
1646 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorTree__factory.ts:1646:12 - error TS1005: ';' expected.
1646 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorTree__factory.ts:1646:12 - error TS2416: Property 'getDeployTransaction' in type 'VAnchorTree__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_verifier: PromiseOrValue<string>, _merkleTreeLevels: PromiseOrValue<BigNumberish>, _hasher: PromiseOrValue<string>, _handler: PromiseOrValue<...>, _token: PromiseOrValue<...>, _maxEdges: PromiseOrValue<...>, overrides?: Overrides & { ...; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
1646 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorTree__factory.ts:1655:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
1655 return super.getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1656 _verifier,
~~~~~~~~~~~~~~~~
...
1662 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
1663 );
~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorTree__factory.ts:1665:3 - error TS2300: Duplicate identifier 'override'.
1665 override attach(address: string): VAnchorTree {
~~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorTree__factory.ts:1665:12 - error TS1005: ';' expected.
1665 override attach(address: string): VAnchorTree {
~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorTree__factory.ts:1666:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
1666 return super.attach(address) as VAnchorTree;
~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorTree__factory.ts:1668:3 - error TS2300: Duplicate identifier 'override'.
1668 override connect(signer: Signer): VAnchorTree__factory {
~~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorTree__factory.ts:1668:12 - error TS1005: ';' expected.
1668 override connect(signer: Signer): VAnchorTree__factory {
~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorTree__factory.ts:1668:12 - error TS2416: Property 'connect' in type 'VAnchorTree__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => VAnchorTree__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'VAnchorTree__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
1668 override connect(signer: Signer): VAnchorTree__factory {
~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorTree__factory.ts:1669:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'VAnchorTree__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'VAnchorTree__factory': override, attach
1669 return super.connect(signer) as VAnchorTree__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorTree__factory.ts:1681:12 - error TS2352: Conversion of type 'Contract' to type 'VAnchorTree' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'VAnchorTree': attach, deployed, functions, EVM_CHAIN_ID_TYPE, and 65 more.
1681 return new Contract(address, _abi, signerOrProvider) as VAnchorTree;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/vanchors/instances/VAnchorTree__factory.ts:1681:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
1681 return new Contract(address, _abi, signerOrProvider) as VAnchorTree;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier2__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier2__factory.ts:53:6 - error TS2304: Cannot find name 'signer'.
53 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier2__factory.ts:53:13 - error TS1005: ',' expected.
53 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/anchor/Verifier2__factory.ts:69:12 - error TS1005: ';' expected.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier2__factory.ts:69:12 - error TS2416: Property 'deploy' in type 'Verifier2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<Verifier2>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<Verifier2>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'Verifier2' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'Verifier2' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'Verifier2Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier2__factory.ts:72:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<Verifier2>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'Verifier2': attach, deployed, functions, verifyProof, and 3 more.
72 return super.deploy(overrides || {}) as Promise<Verifier2>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier2__factory.ts:74:3 - error TS2300: Duplicate identifier 'override'.
74 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier2__factory.ts:74:12 - error TS1005: ';' expected.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier2__factory.ts:74:12 - error TS2416: Property 'getDeployTransaction' in type 'Verifier2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier2__factory.ts:77:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
77 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier2__factory.ts:79:3 - error TS2300: Duplicate identifier 'override'.
79 override attach(address: string): Verifier2 {
~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier2__factory.ts:79:12 - error TS1005: ';' expected.
79 override attach(address: string): Verifier2 {
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier2__factory.ts:80:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
80 return super.attach(address) as Verifier2;
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier2__factory.ts:82:3 - error TS2300: Duplicate identifier 'override'.
82 override connect(signer: Signer): Verifier2__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier2__factory.ts:82:12 - error TS1005: ';' expected.
82 override connect(signer: Signer): Verifier2__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier2__factory.ts:82:12 - error TS2416: Property 'connect' in type 'Verifier2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => Verifier2__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'Verifier2__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
82 override connect(signer: Signer): Verifier2__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier2__factory.ts:83:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'Verifier2__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'Verifier2__factory': override, attach
83 return super.connect(signer) as Verifier2__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier2__factory.ts:95:12 - error TS2352: Conversion of type 'Contract' to type 'Verifier2' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'Verifier2': attach, deployed, functions, verifyProof, and 3 more.
95 return new Contract(address, _abi, signerOrProvider) as Verifier2;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier2__factory.ts:95:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
95 return new Contract(address, _abi, signerOrProvider) as Verifier2;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier3__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier3__factory.ts:53:6 - error TS2304: Cannot find name 'signer'.
53 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier3__factory.ts:53:13 - error TS1005: ',' expected.
53 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/anchor/Verifier3__factory.ts:69:12 - error TS1005: ';' expected.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier3__factory.ts:69:12 - error TS2416: Property 'deploy' in type 'Verifier3__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<Verifier3>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<Verifier3>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'Verifier3' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'Verifier3' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'Verifier3Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier3__factory.ts:72:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<Verifier3>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'Verifier3': attach, deployed, functions, verifyProof, and 3 more.
72 return super.deploy(overrides || {}) as Promise<Verifier3>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier3__factory.ts:74:3 - error TS2300: Duplicate identifier 'override'.
74 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier3__factory.ts:74:12 - error TS1005: ';' expected.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier3__factory.ts:74:12 - error TS2416: Property 'getDeployTransaction' in type 'Verifier3__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier3__factory.ts:77:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
77 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier3__factory.ts:79:3 - error TS2300: Duplicate identifier 'override'.
79 override attach(address: string): Verifier3 {
~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier3__factory.ts:79:12 - error TS1005: ';' expected.
79 override attach(address: string): Verifier3 {
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier3__factory.ts:80:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
80 return super.attach(address) as Verifier3;
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier3__factory.ts:82:3 - error TS2300: Duplicate identifier 'override'.
82 override connect(signer: Signer): Verifier3__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier3__factory.ts:82:12 - error TS1005: ';' expected.
82 override connect(signer: Signer): Verifier3__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier3__factory.ts:82:12 - error TS2416: Property 'connect' in type 'Verifier3__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => Verifier3__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'Verifier3__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
82 override connect(signer: Signer): Verifier3__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier3__factory.ts:83:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'Verifier3__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'Verifier3__factory': override, attach
83 return super.connect(signer) as Verifier3__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier3__factory.ts:95:12 - error TS2352: Conversion of type 'Contract' to type 'Verifier3' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'Verifier3': attach, deployed, functions, verifyProof, and 3 more.
95 return new Contract(address, _abi, signerOrProvider) as Verifier3;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier3__factory.ts:95:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
95 return new Contract(address, _abi, signerOrProvider) as Verifier3;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier4__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier4__factory.ts:53:6 - error TS2304: Cannot find name 'signer'.
53 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier4__factory.ts:53:13 - error TS1005: ',' expected.
53 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/anchor/Verifier4__factory.ts:69:12 - error TS1005: ';' expected.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier4__factory.ts:69:12 - error TS2416: Property 'deploy' in type 'Verifier4__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<Verifier4>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<Verifier4>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'Verifier4' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'Verifier4' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'Verifier4Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier4__factory.ts:72:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<Verifier4>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'Verifier4': attach, deployed, functions, verifyProof, and 3 more.
72 return super.deploy(overrides || {}) as Promise<Verifier4>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier4__factory.ts:74:3 - error TS2300: Duplicate identifier 'override'.
74 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier4__factory.ts:74:12 - error TS1005: ';' expected.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier4__factory.ts:74:12 - error TS2416: Property 'getDeployTransaction' in type 'Verifier4__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier4__factory.ts:77:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
77 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier4__factory.ts:79:3 - error TS2300: Duplicate identifier 'override'.
79 override attach(address: string): Verifier4 {
~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier4__factory.ts:79:12 - error TS1005: ';' expected.
79 override attach(address: string): Verifier4 {
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier4__factory.ts:80:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
80 return super.attach(address) as Verifier4;
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier4__factory.ts:82:3 - error TS2300: Duplicate identifier 'override'.
82 override connect(signer: Signer): Verifier4__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier4__factory.ts:82:12 - error TS1005: ';' expected.
82 override connect(signer: Signer): Verifier4__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier4__factory.ts:82:12 - error TS2416: Property 'connect' in type 'Verifier4__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => Verifier4__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'Verifier4__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
82 override connect(signer: Signer): Verifier4__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier4__factory.ts:83:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'Verifier4__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'Verifier4__factory': override, attach
83 return super.connect(signer) as Verifier4__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier4__factory.ts:95:12 - error TS2352: Conversion of type 'Contract' to type 'Verifier4' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'Verifier4': attach, deployed, functions, verifyProof, and 3 more.
95 return new Contract(address, _abi, signerOrProvider) as Verifier4;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier4__factory.ts:95:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
95 return new Contract(address, _abi, signerOrProvider) as Verifier4;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier5__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier5__factory.ts:53:6 - error TS2304: Cannot find name 'signer'.
53 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier5__factory.ts:53:13 - error TS1005: ',' expected.
53 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/anchor/Verifier5__factory.ts:69:12 - error TS1005: ';' expected.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier5__factory.ts:69:12 - error TS2416: Property 'deploy' in type 'Verifier5__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<Verifier5>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<Verifier5>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'Verifier5' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'Verifier5' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'Verifier5Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier5__factory.ts:72:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<Verifier5>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'Verifier5': attach, deployed, functions, verifyProof, and 3 more.
72 return super.deploy(overrides || {}) as Promise<Verifier5>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier5__factory.ts:74:3 - error TS2300: Duplicate identifier 'override'.
74 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier5__factory.ts:74:12 - error TS1005: ';' expected.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier5__factory.ts:74:12 - error TS2416: Property 'getDeployTransaction' in type 'Verifier5__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier5__factory.ts:77:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
77 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier5__factory.ts:79:3 - error TS2300: Duplicate identifier 'override'.
79 override attach(address: string): Verifier5 {
~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier5__factory.ts:79:12 - error TS1005: ';' expected.
79 override attach(address: string): Verifier5 {
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier5__factory.ts:80:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
80 return super.attach(address) as Verifier5;
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier5__factory.ts:82:3 - error TS2300: Duplicate identifier 'override'.
82 override connect(signer: Signer): Verifier5__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier5__factory.ts:82:12 - error TS1005: ';' expected.
82 override connect(signer: Signer): Verifier5__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier5__factory.ts:82:12 - error TS2416: Property 'connect' in type 'Verifier5__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => Verifier5__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'Verifier5__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
82 override connect(signer: Signer): Verifier5__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier5__factory.ts:83:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'Verifier5__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'Verifier5__factory': override, attach
83 return super.connect(signer) as Verifier5__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier5__factory.ts:95:12 - error TS2352: Conversion of type 'Contract' to type 'Verifier5' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'Verifier5': attach, deployed, functions, verifyProof, and 3 more.
95 return new Contract(address, _abi, signerOrProvider) as Verifier5;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier5__factory.ts:95:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
95 return new Contract(address, _abi, signerOrProvider) as Verifier5;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier6__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier6__factory.ts:53:6 - error TS2304: Cannot find name 'signer'.
53 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier6__factory.ts:53:13 - error TS1005: ',' expected.
53 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/anchor/Verifier6__factory.ts:69:12 - error TS1005: ';' expected.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier6__factory.ts:69:12 - error TS2416: Property 'deploy' in type 'Verifier6__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<Verifier6>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<Verifier6>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'Verifier6' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'Verifier6' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'Verifier6Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier6__factory.ts:72:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<Verifier6>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'Verifier6': attach, deployed, functions, verifyProof, and 3 more.
72 return super.deploy(overrides || {}) as Promise<Verifier6>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier6__factory.ts:74:3 - error TS2300: Duplicate identifier 'override'.
74 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier6__factory.ts:74:12 - error TS1005: ';' expected.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier6__factory.ts:74:12 - error TS2416: Property 'getDeployTransaction' in type 'Verifier6__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier6__factory.ts:77:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
77 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier6__factory.ts:79:3 - error TS2300: Duplicate identifier 'override'.
79 override attach(address: string): Verifier6 {
~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier6__factory.ts:79:12 - error TS1005: ';' expected.
79 override attach(address: string): Verifier6 {
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier6__factory.ts:80:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
80 return super.attach(address) as Verifier6;
~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier6__factory.ts:82:3 - error TS2300: Duplicate identifier 'override'.
82 override connect(signer: Signer): Verifier6__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier6__factory.ts:82:12 - error TS1005: ';' expected.
82 override connect(signer: Signer): Verifier6__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier6__factory.ts:82:12 - error TS2416: Property 'connect' in type 'Verifier6__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => Verifier6__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'Verifier6__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
82 override connect(signer: Signer): Verifier6__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier6__factory.ts:83:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'Verifier6__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'Verifier6__factory': override, attach
83 return super.connect(signer) as Verifier6__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier6__factory.ts:95:12 - error TS2352: Conversion of type 'Contract' to type 'Verifier6' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'Verifier6': attach, deployed, functions, verifyProof, and 3 more.
95 return new Contract(address, _abi, signerOrProvider) as Verifier6;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/anchor/Verifier6__factory.ts:95:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
95 return new Contract(address, _abi, signerOrProvider) as Verifier6;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/AnchorVerifier.sol/Verifier__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/AnchorVerifier.sol/Verifier__factory.ts:159:6 - error TS2304: Cannot find name 'signer'.
159 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/AnchorVerifier.sol/Verifier__factory.ts:159:13 - error TS1005: ',' expected.
159 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/AnchorVerifier.sol/Verifier__factory.ts:175:12 - error TS1005: ';' expected.
175 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/AnchorVerifier.sol/Verifier__factory.ts:175:12 - error TS2416: Property 'deploy' in type 'Verifier__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_verifier2: PromiseOrValue<string>, _verifier3: PromiseOrValue<string>, _verifier4: PromiseOrValue<string>, _verifier5: PromiseOrValue<string>, _verifier6: PromiseOrValue<...>, overrides?: Overrides & { ...; }) => Promise<...>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<Verifier>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'Verifier' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'Verifier' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'VerifierInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
175 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/AnchorVerifier.sol/Verifier__factory.ts:183:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<Verifier>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'Verifier': attach, deployed, functions, v2, and 8 more.
183 return super.deploy(
~~~~~~~~~~~~~
184 _verifier2,
~~~~~~~~~~~~~~~~~
...
189 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
190 ) as Promise<Verifier>;
~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/AnchorVerifier.sol/Verifier__factory.ts:192:3 - error TS2300: Duplicate identifier 'override'.
192 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/AnchorVerifier.sol/Verifier__factory.ts:192:12 - error TS1005: ';' expected.
192 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/AnchorVerifier.sol/Verifier__factory.ts:192:12 - error TS2416: Property 'getDeployTransaction' in type 'Verifier__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_verifier2: PromiseOrValue<string>, _verifier3: PromiseOrValue<string>, _verifier4: PromiseOrValue<string>, _verifier5: PromiseOrValue<string>, _verifier6: PromiseOrValue<...>, overrides?: Overrides & { ...; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
192 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/AnchorVerifier.sol/Verifier__factory.ts:200:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
200 return super.getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
201 _verifier2,
~~~~~~~~~~~~~~~~~
...
206 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
207 );
~~~~~~
typechain-types/factories/contracts/verifiers/AnchorVerifier.sol/Verifier__factory.ts:209:3 - error TS2300: Duplicate identifier 'override'.
209 override attach(address: string): Verifier {
~~~~~~~~
typechain-types/factories/contracts/verifiers/AnchorVerifier.sol/Verifier__factory.ts:209:12 - error TS1005: ';' expected.
209 override attach(address: string): Verifier {
~~~~~~
typechain-types/factories/contracts/verifiers/AnchorVerifier.sol/Verifier__factory.ts:210:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
210 return super.attach(address) as Verifier;
~~~~~~
typechain-types/factories/contracts/verifiers/AnchorVerifier.sol/Verifier__factory.ts:212:3 - error TS2300: Duplicate identifier 'override'.
212 override connect(signer: Signer): Verifier__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/AnchorVerifier.sol/Verifier__factory.ts:212:12 - error TS1005: ';' expected.
212 override connect(signer: Signer): Verifier__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/AnchorVerifier.sol/Verifier__factory.ts:212:12 - error TS2416: Property 'connect' in type 'Verifier__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => Verifier__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'Verifier__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
212 override connect(signer: Signer): Verifier__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/AnchorVerifier.sol/Verifier__factory.ts:213:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'Verifier__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'Verifier__factory': override, attach
213 return super.connect(signer) as Verifier__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/AnchorVerifier.sol/Verifier__factory.ts:225:12 - error TS2352: Conversion of type 'Contract' to type 'Verifier' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'Verifier': attach, deployed, functions, v2, and 8 more.
225 return new Contract(address, _abi, signerOrProvider) as Verifier;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/AnchorVerifier.sol/Verifier__factory.ts:225:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
225 return new Contract(address, _abi, signerOrProvider) as Verifier;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_16/VerifierBatch_16__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_16/VerifierBatch_16__factory.ts:53:6 - error TS2304: Cannot find name 'signer'.
53 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_16/VerifierBatch_16__factory.ts:53:13 - error TS1005: ',' expected.
53 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/batch_tree_16/VerifierBatch_16__factory.ts:69:12 - error TS1005: ';' expected.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_16/VerifierBatch_16__factory.ts:69:12 - error TS2416: Property 'deploy' in type 'VerifierBatch_16__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<VerifierBatch_16>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<VerifierBatch_16>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'VerifierBatch_16' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'VerifierBatch_16' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'VerifierBatch_16Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_16/VerifierBatch_16__factory.ts:72:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<VerifierBatch_16>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'VerifierBatch_16': attach, deployed, functions, verifyProof, and 3 more.
72 return super.deploy(overrides || {}) as Promise<VerifierBatch_16>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_16/VerifierBatch_16__factory.ts:74:3 - error TS2300: Duplicate identifier 'override'.
74 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_16/VerifierBatch_16__factory.ts:74:12 - error TS1005: ';' expected.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_16/VerifierBatch_16__factory.ts:74:12 - error TS2416: Property 'getDeployTransaction' in type 'VerifierBatch_16__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_16/VerifierBatch_16__factory.ts:77:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
77 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_16/VerifierBatch_16__factory.ts:79:3 - error TS2300: Duplicate identifier 'override'.
79 override attach(address: string): VerifierBatch_16 {
~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_16/VerifierBatch_16__factory.ts:79:12 - error TS1005: ';' expected.
79 override attach(address: string): VerifierBatch_16 {
~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_16/VerifierBatch_16__factory.ts:80:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
80 return super.attach(address) as VerifierBatch_16;
~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_16/VerifierBatch_16__factory.ts:82:3 - error TS2300: Duplicate identifier 'override'.
82 override connect(signer: Signer): VerifierBatch_16__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_16/VerifierBatch_16__factory.ts:82:12 - error TS1005: ';' expected.
82 override connect(signer: Signer): VerifierBatch_16__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_16/VerifierBatch_16__factory.ts:82:12 - error TS2416: Property 'connect' in type 'VerifierBatch_16__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => VerifierBatch_16__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'VerifierBatch_16__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
82 override connect(signer: Signer): VerifierBatch_16__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_16/VerifierBatch_16__factory.ts:83:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'VerifierBatch_16__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'VerifierBatch_16__factory': override, attach
83 return super.connect(signer) as VerifierBatch_16__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_16/VerifierBatch_16__factory.ts:95:12 - error TS2352: Conversion of type 'Contract' to type 'VerifierBatch_16' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'VerifierBatch_16': attach, deployed, functions, verifyProof, and 3 more.
95 return new Contract(address, _abi, signerOrProvider) as VerifierBatch_16;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_16/VerifierBatch_16__factory.ts:95:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
95 return new Contract(address, _abi, signerOrProvider) as VerifierBatch_16;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_32/VerifierBatch_32__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_32/VerifierBatch_32__factory.ts:53:6 - error TS2304: Cannot find name 'signer'.
53 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_32/VerifierBatch_32__factory.ts:53:13 - error TS1005: ',' expected.
53 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/batch_tree_32/VerifierBatch_32__factory.ts:69:12 - error TS1005: ';' expected.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_32/VerifierBatch_32__factory.ts:69:12 - error TS2416: Property 'deploy' in type 'VerifierBatch_32__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<VerifierBatch_32>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<VerifierBatch_32>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'VerifierBatch_32' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'VerifierBatch_32' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'VerifierBatch_32Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_32/VerifierBatch_32__factory.ts:72:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<VerifierBatch_32>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'VerifierBatch_32': attach, deployed, functions, verifyProof, and 3 more.
72 return super.deploy(overrides || {}) as Promise<VerifierBatch_32>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_32/VerifierBatch_32__factory.ts:74:3 - error TS2300: Duplicate identifier 'override'.
74 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_32/VerifierBatch_32__factory.ts:74:12 - error TS1005: ';' expected.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_32/VerifierBatch_32__factory.ts:74:12 - error TS2416: Property 'getDeployTransaction' in type 'VerifierBatch_32__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_32/VerifierBatch_32__factory.ts:77:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
77 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_32/VerifierBatch_32__factory.ts:79:3 - error TS2300: Duplicate identifier 'override'.
79 override attach(address: string): VerifierBatch_32 {
~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_32/VerifierBatch_32__factory.ts:79:12 - error TS1005: ';' expected.
79 override attach(address: string): VerifierBatch_32 {
~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_32/VerifierBatch_32__factory.ts:80:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
80 return super.attach(address) as VerifierBatch_32;
~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_32/VerifierBatch_32__factory.ts:82:3 - error TS2300: Duplicate identifier 'override'.
82 override connect(signer: Signer): VerifierBatch_32__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_32/VerifierBatch_32__factory.ts:82:12 - error TS1005: ';' expected.
82 override connect(signer: Signer): VerifierBatch_32__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_32/VerifierBatch_32__factory.ts:82:12 - error TS2416: Property 'connect' in type 'VerifierBatch_32__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => VerifierBatch_32__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'VerifierBatch_32__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
82 override connect(signer: Signer): VerifierBatch_32__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_32/VerifierBatch_32__factory.ts:83:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'VerifierBatch_32__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'VerifierBatch_32__factory': override, attach
83 return super.connect(signer) as VerifierBatch_32__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_32/VerifierBatch_32__factory.ts:95:12 - error TS2352: Conversion of type 'Contract' to type 'VerifierBatch_32' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'VerifierBatch_32': attach, deployed, functions, verifyProof, and 3 more.
95 return new Contract(address, _abi, signerOrProvider) as VerifierBatch_32;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_32/VerifierBatch_32__factory.ts:95:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
95 return new Contract(address, _abi, signerOrProvider) as VerifierBatch_32;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_4/VerifierBatch_4__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_4/VerifierBatch_4__factory.ts:53:6 - error TS2304: Cannot find name 'signer'.
53 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_4/VerifierBatch_4__factory.ts:53:13 - error TS1005: ',' expected.
53 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/batch_tree_4/VerifierBatch_4__factory.ts:69:12 - error TS1005: ';' expected.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_4/VerifierBatch_4__factory.ts:69:12 - error TS2416: Property 'deploy' in type 'VerifierBatch_4__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<VerifierBatch_4>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<VerifierBatch_4>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'VerifierBatch_4' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'VerifierBatch_4' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'VerifierBatch_4Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_4/VerifierBatch_4__factory.ts:72:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<VerifierBatch_4>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'VerifierBatch_4': attach, deployed, functions, verifyProof, and 3 more.
72 return super.deploy(overrides || {}) as Promise<VerifierBatch_4>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_4/VerifierBatch_4__factory.ts:74:3 - error TS2300: Duplicate identifier 'override'.
74 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_4/VerifierBatch_4__factory.ts:74:12 - error TS1005: ';' expected.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_4/VerifierBatch_4__factory.ts:74:12 - error TS2416: Property 'getDeployTransaction' in type 'VerifierBatch_4__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_4/VerifierBatch_4__factory.ts:77:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
77 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_4/VerifierBatch_4__factory.ts:79:3 - error TS2300: Duplicate identifier 'override'.
79 override attach(address: string): VerifierBatch_4 {
~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_4/VerifierBatch_4__factory.ts:79:12 - error TS1005: ';' expected.
79 override attach(address: string): VerifierBatch_4 {
~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_4/VerifierBatch_4__factory.ts:80:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
80 return super.attach(address) as VerifierBatch_4;
~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_4/VerifierBatch_4__factory.ts:82:3 - error TS2300: Duplicate identifier 'override'.
82 override connect(signer: Signer): VerifierBatch_4__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_4/VerifierBatch_4__factory.ts:82:12 - error TS1005: ';' expected.
82 override connect(signer: Signer): VerifierBatch_4__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_4/VerifierBatch_4__factory.ts:82:12 - error TS2416: Property 'connect' in type 'VerifierBatch_4__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => VerifierBatch_4__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'VerifierBatch_4__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
82 override connect(signer: Signer): VerifierBatch_4__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_4/VerifierBatch_4__factory.ts:83:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'VerifierBatch_4__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'VerifierBatch_4__factory': override, attach
83 return super.connect(signer) as VerifierBatch_4__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_4/VerifierBatch_4__factory.ts:95:12 - error TS2352: Conversion of type 'Contract' to type 'VerifierBatch_4' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'VerifierBatch_4': attach, deployed, functions, verifyProof, and 3 more.
95 return new Contract(address, _abi, signerOrProvider) as VerifierBatch_4;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_4/VerifierBatch_4__factory.ts:95:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
95 return new Contract(address, _abi, signerOrProvider) as VerifierBatch_4;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_8/VerifierBatch_8__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_8/VerifierBatch_8__factory.ts:53:6 - error TS2304: Cannot find name 'signer'.
53 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_8/VerifierBatch_8__factory.ts:53:13 - error TS1005: ',' expected.
53 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/batch_tree_8/VerifierBatch_8__factory.ts:69:12 - error TS1005: ';' expected.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_8/VerifierBatch_8__factory.ts:69:12 - error TS2416: Property 'deploy' in type 'VerifierBatch_8__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<VerifierBatch_8>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<VerifierBatch_8>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'VerifierBatch_8' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'VerifierBatch_8' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'VerifierBatch_8Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_8/VerifierBatch_8__factory.ts:72:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<VerifierBatch_8>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'VerifierBatch_8': attach, deployed, functions, verifyProof, and 3 more.
72 return super.deploy(overrides || {}) as Promise<VerifierBatch_8>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_8/VerifierBatch_8__factory.ts:74:3 - error TS2300: Duplicate identifier 'override'.
74 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_8/VerifierBatch_8__factory.ts:74:12 - error TS1005: ';' expected.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_8/VerifierBatch_8__factory.ts:74:12 - error TS2416: Property 'getDeployTransaction' in type 'VerifierBatch_8__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_8/VerifierBatch_8__factory.ts:77:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
77 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_8/VerifierBatch_8__factory.ts:79:3 - error TS2300: Duplicate identifier 'override'.
79 override attach(address: string): VerifierBatch_8 {
~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_8/VerifierBatch_8__factory.ts:79:12 - error TS1005: ';' expected.
79 override attach(address: string): VerifierBatch_8 {
~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_8/VerifierBatch_8__factory.ts:80:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
80 return super.attach(address) as VerifierBatch_8;
~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_8/VerifierBatch_8__factory.ts:82:3 - error TS2300: Duplicate identifier 'override'.
82 override connect(signer: Signer): VerifierBatch_8__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_8/VerifierBatch_8__factory.ts:82:12 - error TS1005: ';' expected.
82 override connect(signer: Signer): VerifierBatch_8__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_8/VerifierBatch_8__factory.ts:82:12 - error TS2416: Property 'connect' in type 'VerifierBatch_8__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => VerifierBatch_8__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'VerifierBatch_8__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
82 override connect(signer: Signer): VerifierBatch_8__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_8/VerifierBatch_8__factory.ts:83:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'VerifierBatch_8__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'VerifierBatch_8__factory': override, attach
83 return super.connect(signer) as VerifierBatch_8__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_8/VerifierBatch_8__factory.ts:95:12 - error TS2352: Conversion of type 'Contract' to type 'VerifierBatch_8' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'VerifierBatch_8': attach, deployed, functions, verifyProof, and 3 more.
95 return new Contract(address, _abi, signerOrProvider) as VerifierBatch_8;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/batch_tree_8/VerifierBatch_8__factory.ts:95:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
95 return new Contract(address, _abi, signerOrProvider) as VerifierBatch_8;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/BatchUpdateVerifier.sol/BatchTreeVerifierSelector__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/BatchUpdateVerifier.sol/BatchTreeVerifierSelector__factory.ts:136:6 - error TS2304: Cannot find name 'signer'.
136 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/BatchUpdateVerifier.sol/BatchTreeVerifierSelector__factory.ts:136:13 - error TS1005: ',' expected.
136 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/BatchUpdateVerifier.sol/BatchTreeVerifierSelector__factory.ts:152:12 - error TS1005: ';' expected.
152 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/BatchUpdateVerifier.sol/BatchTreeVerifierSelector__factory.ts:152:12 - error TS2416: Property 'deploy' in type 'BatchTreeVerifierSelector__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_verifier_4: PromiseOrValue<string>, _verifier_8: PromiseOrValue<string>, _verifier_16: PromiseOrValue<string>, _verifier_32: PromiseOrValue<string>, overrides?: Overrides & { ...; }) => Promise<...>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<BatchTreeVerifierSelector>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'BatchTreeVerifierSelector' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'BatchTreeVerifierSelector' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'BatchTreeVerifierSelectorInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
152 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/BatchUpdateVerifier.sol/BatchTreeVerifierSelector__factory.ts:159:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<BatchTreeVerifierSelector>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'BatchTreeVerifierSelector': attach, deployed, functions, v16, and 7 more.
159 return super.deploy(
~~~~~~~~~~~~~
160 _verifier_4,
~~~~~~~~~~~~~~~~~~
...
164 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
165 ) as Promise<BatchTreeVerifierSelector>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/BatchUpdateVerifier.sol/BatchTreeVerifierSelector__factory.ts:167:3 - error TS2300: Duplicate identifier 'override'.
167 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/BatchUpdateVerifier.sol/BatchTreeVerifierSelector__factory.ts:167:12 - error TS1005: ';' expected.
167 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/BatchUpdateVerifier.sol/BatchTreeVerifierSelector__factory.ts:167:12 - error TS2416: Property 'getDeployTransaction' in type 'BatchTreeVerifierSelector__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_verifier_4: PromiseOrValue<string>, _verifier_8: PromiseOrValue<string>, _verifier_16: PromiseOrValue<string>, _verifier_32: PromiseOrValue<string>, overrides?: Overrides & { ...; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
167 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/BatchUpdateVerifier.sol/BatchTreeVerifierSelector__factory.ts:174:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
174 return super.getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
175 _verifier_4,
~~~~~~~~~~~~~~~~~~
...
179 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
180 );
~~~~~~
typechain-types/factories/contracts/verifiers/BatchUpdateVerifier.sol/BatchTreeVerifierSelector__factory.ts:182:3 - error TS2300: Duplicate identifier 'override'.
182 override attach(address: string): BatchTreeVerifierSelector {
~~~~~~~~
typechain-types/factories/contracts/verifiers/BatchUpdateVerifier.sol/BatchTreeVerifierSelector__factory.ts:182:12 - error TS1005: ';' expected.
182 override attach(address: string): BatchTreeVerifierSelector {
~~~~~~
typechain-types/factories/contracts/verifiers/BatchUpdateVerifier.sol/BatchTreeVerifierSelector__factory.ts:183:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
183 return super.attach(address) as BatchTreeVerifierSelector;
~~~~~~
typechain-types/factories/contracts/verifiers/BatchUpdateVerifier.sol/BatchTreeVerifierSelector__factory.ts:185:3 - error TS2300: Duplicate identifier 'override'.
185 override connect(signer: Signer): BatchTreeVerifierSelector__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/BatchUpdateVerifier.sol/BatchTreeVerifierSelector__factory.ts:185:12 - error TS1005: ';' expected.
185 override connect(signer: Signer): BatchTreeVerifierSelector__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/BatchUpdateVerifier.sol/BatchTreeVerifierSelector__factory.ts:185:12 - error TS2416: Property 'connect' in type 'BatchTreeVerifierSelector__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => BatchTreeVerifierSelector__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'BatchTreeVerifierSelector__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
185 override connect(signer: Signer): BatchTreeVerifierSelector__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/BatchUpdateVerifier.sol/BatchTreeVerifierSelector__factory.ts:186:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'BatchTreeVerifierSelector__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'BatchTreeVerifierSelector__factory': override, attach
186 return super.connect(signer) as BatchTreeVerifierSelector__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/BatchUpdateVerifier.sol/BatchTreeVerifierSelector__factory.ts:198:12 - error TS2352: Conversion of type 'Contract' to type 'BatchTreeVerifierSelector' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'BatchTreeVerifierSelector': attach, deployed, functions, v16, and 7 more.
198 return new Contract(
~~~~~~~~~~~~~
199 address,
~~~~~~~~~~~~~~
...
201 signerOrProvider
~~~~~~~~~~~~~~~~~~~~~~
202 ) as BatchTreeVerifierSelector;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/BatchUpdateVerifier.sol/BatchTreeVerifierSelector__factory.ts:201:7 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
201 signerOrProvider
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP2_16__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP2_16__factory.ts:53:6 - error TS2304: Cannot find name 'signer'.
53 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP2_16__factory.ts:53:13 - error TS1005: ',' expected.
53 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP2_16__factory.ts:69:12 - error TS1005: ';' expected.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP2_16__factory.ts:69:12 - error TS2416: Property 'deploy' in type 'VerifierMASP2_16__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<VerifierMASP2_16>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<VerifierMASP2_16>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'VerifierMASP2_16' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'VerifierMASP2_16' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'VerifierMASP2_16Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP2_16__factory.ts:72:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<VerifierMASP2_16>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'VerifierMASP2_16': attach, deployed, functions, verifyProof, and 3 more.
72 return super.deploy(overrides || {}) as Promise<VerifierMASP2_16>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP2_16__factory.ts:74:3 - error TS2300: Duplicate identifier 'override'.
74 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP2_16__factory.ts:74:12 - error TS1005: ';' expected.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP2_16__factory.ts:74:12 - error TS2416: Property 'getDeployTransaction' in type 'VerifierMASP2_16__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP2_16__factory.ts:77:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
77 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP2_16__factory.ts:79:3 - error TS2300: Duplicate identifier 'override'.
79 override attach(address: string): VerifierMASP2_16 {
~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP2_16__factory.ts:79:12 - error TS1005: ';' expected.
79 override attach(address: string): VerifierMASP2_16 {
~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP2_16__factory.ts:80:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
80 return super.attach(address) as VerifierMASP2_16;
~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP2_16__factory.ts:82:3 - error TS2300: Duplicate identifier 'override'.
82 override connect(signer: Signer): VerifierMASP2_16__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP2_16__factory.ts:82:12 - error TS1005: ';' expected.
82 override connect(signer: Signer): VerifierMASP2_16__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP2_16__factory.ts:82:12 - error TS2416: Property 'connect' in type 'VerifierMASP2_16__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => VerifierMASP2_16__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'VerifierMASP2_16__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
82 override connect(signer: Signer): VerifierMASP2_16__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP2_16__factory.ts:83:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'VerifierMASP2_16__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'VerifierMASP2_16__factory': override, attach
83 return super.connect(signer) as VerifierMASP2_16__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP2_16__factory.ts:95:12 - error TS2352: Conversion of type 'Contract' to type 'VerifierMASP2_16' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'VerifierMASP2_16': attach, deployed, functions, verifyProof, and 3 more.
95 return new Contract(address, _abi, signerOrProvider) as VerifierMASP2_16;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP2_16__factory.ts:95:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
95 return new Contract(address, _abi, signerOrProvider) as VerifierMASP2_16;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP8_16__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP8_16__factory.ts:53:6 - error TS2304: Cannot find name 'signer'.
53 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP8_16__factory.ts:53:13 - error TS1005: ',' expected.
53 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP8_16__factory.ts:69:12 - error TS1005: ';' expected.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP8_16__factory.ts:69:12 - error TS2416: Property 'deploy' in type 'VerifierMASP8_16__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<VerifierMASP8_16>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<VerifierMASP8_16>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'VerifierMASP8_16' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'VerifierMASP8_16' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'VerifierMASP8_16Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP8_16__factory.ts:72:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<VerifierMASP8_16>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'VerifierMASP8_16': attach, deployed, functions, verifyProof, and 3 more.
72 return super.deploy(overrides || {}) as Promise<VerifierMASP8_16>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP8_16__factory.ts:74:3 - error TS2300: Duplicate identifier 'override'.
74 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP8_16__factory.ts:74:12 - error TS1005: ';' expected.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP8_16__factory.ts:74:12 - error TS2416: Property 'getDeployTransaction' in type 'VerifierMASP8_16__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP8_16__factory.ts:77:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
77 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP8_16__factory.ts:79:3 - error TS2300: Duplicate identifier 'override'.
79 override attach(address: string): VerifierMASP8_16 {
~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP8_16__factory.ts:79:12 - error TS1005: ';' expected.
79 override attach(address: string): VerifierMASP8_16 {
~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP8_16__factory.ts:80:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
80 return super.attach(address) as VerifierMASP8_16;
~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP8_16__factory.ts:82:3 - error TS2300: Duplicate identifier 'override'.
82 override connect(signer: Signer): VerifierMASP8_16__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP8_16__factory.ts:82:12 - error TS1005: ';' expected.
82 override connect(signer: Signer): VerifierMASP8_16__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP8_16__factory.ts:82:12 - error TS2416: Property 'connect' in type 'VerifierMASP8_16__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => VerifierMASP8_16__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'VerifierMASP8_16__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
82 override connect(signer: Signer): VerifierMASP8_16__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP8_16__factory.ts:83:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'VerifierMASP8_16__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'VerifierMASP8_16__factory': override, attach
83 return super.connect(signer) as VerifierMASP8_16__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP8_16__factory.ts:95:12 - error TS2352: Conversion of type 'Contract' to type 'VerifierMASP8_16' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'VerifierMASP8_16': attach, deployed, functions, verifyProof, and 3 more.
95 return new Contract(address, _abi, signerOrProvider) as VerifierMASP8_16;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_16/VerifierMASP8_16__factory.ts:95:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
95 return new Contract(address, _abi, signerOrProvider) as VerifierMASP8_16;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP2_2__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP2_2__factory.ts:53:6 - error TS2304: Cannot find name 'signer'.
53 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP2_2__factory.ts:53:13 - error TS1005: ',' expected.
53 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP2_2__factory.ts:69:12 - error TS1005: ';' expected.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP2_2__factory.ts:69:12 - error TS2416: Property 'deploy' in type 'VerifierMASP2_2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<VerifierMASP2_2>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<VerifierMASP2_2>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'VerifierMASP2_2' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'VerifierMASP2_2' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'VerifierMASP2_2Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP2_2__factory.ts:72:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<VerifierMASP2_2>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'VerifierMASP2_2': attach, deployed, functions, verifyProof, and 3 more.
72 return super.deploy(overrides || {}) as Promise<VerifierMASP2_2>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP2_2__factory.ts:74:3 - error TS2300: Duplicate identifier 'override'.
74 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP2_2__factory.ts:74:12 - error TS1005: ';' expected.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP2_2__factory.ts:74:12 - error TS2416: Property 'getDeployTransaction' in type 'VerifierMASP2_2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP2_2__factory.ts:77:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
77 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP2_2__factory.ts:79:3 - error TS2300: Duplicate identifier 'override'.
79 override attach(address: string): VerifierMASP2_2 {
~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP2_2__factory.ts:79:12 - error TS1005: ';' expected.
79 override attach(address: string): VerifierMASP2_2 {
~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP2_2__factory.ts:80:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
80 return super.attach(address) as VerifierMASP2_2;
~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP2_2__factory.ts:82:3 - error TS2300: Duplicate identifier 'override'.
82 override connect(signer: Signer): VerifierMASP2_2__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP2_2__factory.ts:82:12 - error TS1005: ';' expected.
82 override connect(signer: Signer): VerifierMASP2_2__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP2_2__factory.ts:82:12 - error TS2416: Property 'connect' in type 'VerifierMASP2_2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => VerifierMASP2_2__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'VerifierMASP2_2__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
82 override connect(signer: Signer): VerifierMASP2_2__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP2_2__factory.ts:83:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'VerifierMASP2_2__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'VerifierMASP2_2__factory': override, attach
83 return super.connect(signer) as VerifierMASP2_2__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP2_2__factory.ts:95:12 - error TS2352: Conversion of type 'Contract' to type 'VerifierMASP2_2' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'VerifierMASP2_2': attach, deployed, functions, verifyProof, and 3 more.
95 return new Contract(address, _abi, signerOrProvider) as VerifierMASP2_2;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP2_2__factory.ts:95:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
95 return new Contract(address, _abi, signerOrProvider) as VerifierMASP2_2;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP8_2__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP8_2__factory.ts:53:6 - error TS2304: Cannot find name 'signer'.
53 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP8_2__factory.ts:53:13 - error TS1005: ',' expected.
53 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP8_2__factory.ts:69:12 - error TS1005: ';' expected.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP8_2__factory.ts:69:12 - error TS2416: Property 'deploy' in type 'VerifierMASP8_2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<VerifierMASP8_2>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<VerifierMASP8_2>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'VerifierMASP8_2' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'VerifierMASP8_2' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'VerifierMASP8_2Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP8_2__factory.ts:72:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<VerifierMASP8_2>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'VerifierMASP8_2': attach, deployed, functions, verifyProof, and 3 more.
72 return super.deploy(overrides || {}) as Promise<VerifierMASP8_2>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP8_2__factory.ts:74:3 - error TS2300: Duplicate identifier 'override'.
74 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP8_2__factory.ts:74:12 - error TS1005: ';' expected.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP8_2__factory.ts:74:12 - error TS2416: Property 'getDeployTransaction' in type 'VerifierMASP8_2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP8_2__factory.ts:77:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
77 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP8_2__factory.ts:79:3 - error TS2300: Duplicate identifier 'override'.
79 override attach(address: string): VerifierMASP8_2 {
~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP8_2__factory.ts:79:12 - error TS1005: ';' expected.
79 override attach(address: string): VerifierMASP8_2 {
~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP8_2__factory.ts:80:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
80 return super.attach(address) as VerifierMASP8_2;
~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP8_2__factory.ts:82:3 - error TS2300: Duplicate identifier 'override'.
82 override connect(signer: Signer): VerifierMASP8_2__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP8_2__factory.ts:82:12 - error TS1005: ';' expected.
82 override connect(signer: Signer): VerifierMASP8_2__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP8_2__factory.ts:82:12 - error TS2416: Property 'connect' in type 'VerifierMASP8_2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => VerifierMASP8_2__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'VerifierMASP8_2__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
82 override connect(signer: Signer): VerifierMASP8_2__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP8_2__factory.ts:83:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'VerifierMASP8_2__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'VerifierMASP8_2__factory': override, attach
83 return super.connect(signer) as VerifierMASP8_2__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP8_2__factory.ts:95:12 - error TS2352: Conversion of type 'Contract' to type 'VerifierMASP8_2' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'VerifierMASP8_2': attach, deployed, functions, verifyProof, and 3 more.
95 return new Contract(address, _abi, signerOrProvider) as VerifierMASP8_2;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/masp_vanchor_2/VerifierMASP8_2__factory.ts:95:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
95 return new Contract(address, _abi, signerOrProvider) as VerifierMASP8_2;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/MASPVAnchorVerifier__factory.ts:4:18 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/MASPVAnchorVerifier__factory.ts:141:6 - error TS2304: Cannot find name 'signer'.
141 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/MASPVAnchorVerifier__factory.ts:141:13 - error TS1005: ',' expected.
141 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/MASPVAnchorVerifier__factory.ts:157:12 - error TS1005: ';' expected.
157 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/MASPVAnchorVerifier__factory.ts:157:12 - error TS2416: Property 'deploy' in type 'MASPVAnchorVerifier__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_verifier_2_2: PromiseOrValue<string>, _verifier_2_16: PromiseOrValue<string>, _verifier_8_2: PromiseOrValue<string>, _verifier_8_16: PromiseOrValue<...>, overrides?: Overrides & { ...; }) => Promise<...>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<MASPVAnchorVerifier>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'MASPVAnchorVerifier' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'MASPVAnchorVerifier' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'MASPVAnchorVerifierInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
157 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/MASPVAnchorVerifier__factory.ts:164:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<MASPVAnchorVerifier>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'MASPVAnchorVerifier': attach, deployed, functions, v2_16, and 7 more.
164 return super.deploy(
~~~~~~~~~~~~~
165 _verifier_2_2,
~~~~~~~~~~~~~~~~~~~~
...
169 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
170 ) as Promise<MASPVAnchorVerifier>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/MASPVAnchorVerifier__factory.ts:172:3 - error TS2300: Duplicate identifier 'override'.
172 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/MASPVAnchorVerifier__factory.ts:172:12 - error TS1005: ';' expected.
172 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/MASPVAnchorVerifier__factory.ts:172:12 - error TS2416: Property 'getDeployTransaction' in type 'MASPVAnchorVerifier__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_verifier_2_2: PromiseOrValue<string>, _verifier_2_16: PromiseOrValue<string>, _verifier_8_2: PromiseOrValue<string>, _verifier_8_16: PromiseOrValue<...>, overrides?: Overrides & { ...; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
172 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/MASPVAnchorVerifier__factory.ts:179:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
179 return super.getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
180 _verifier_2_2,
~~~~~~~~~~~~~~~~~~~~
...
184 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
185 );
~~~~~~
typechain-types/factories/contracts/verifiers/MASPVAnchorVerifier__factory.ts:187:3 - error TS2300: Duplicate identifier 'override'.
187 override attach(address: string): MASPVAnchorVerifier {
~~~~~~~~
typechain-types/factories/contracts/verifiers/MASPVAnchorVerifier__factory.ts:187:12 - error TS1005: ';' expected.
187 override attach(address: string): MASPVAnchorVerifier {
~~~~~~
typechain-types/factories/contracts/verifiers/MASPVAnchorVerifier__factory.ts:188:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
188 return super.attach(address) as MASPVAnchorVerifier;
~~~~~~
typechain-types/factories/contracts/verifiers/MASPVAnchorVerifier__factory.ts:190:3 - error TS2300: Duplicate identifier 'override'.
190 override connect(signer: Signer): MASPVAnchorVerifier__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/MASPVAnchorVerifier__factory.ts:190:12 - error TS1005: ';' expected.
190 override connect(signer: Signer): MASPVAnchorVerifier__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/MASPVAnchorVerifier__factory.ts:190:12 - error TS2416: Property 'connect' in type 'MASPVAnchorVerifier__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => MASPVAnchorVerifier__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'MASPVAnchorVerifier__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
190 override connect(signer: Signer): MASPVAnchorVerifier__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/MASPVAnchorVerifier__factory.ts:191:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'MASPVAnchorVerifier__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'MASPVAnchorVerifier__factory': override, attach
191 return super.connect(signer) as MASPVAnchorVerifier__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/MASPVAnchorVerifier__factory.ts:203:12 - error TS2352: Conversion of type 'Contract' to type 'MASPVAnchorVerifier' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'MASPVAnchorVerifier': attach, deployed, functions, v2_16, and 7 more.
203 return new Contract(address, _abi, signerOrProvider) as MASPVAnchorVerifier;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/MASPVAnchorVerifier__factory.ts:203:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
203 return new Contract(address, _abi, signerOrProvider) as MASPVAnchorVerifier;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/TxProofVerifier__factory.ts:4:18 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/TxProofVerifier__factory.ts:72:6 - error TS2304: Cannot find name 'signer'.
72 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/TxProofVerifier__factory.ts:72:13 - error TS1005: ',' expected.
72 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/TxProofVerifier__factory.ts:88:12 - error TS1005: ';' expected.
88 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/TxProofVerifier__factory.ts:88:12 - error TS2416: Property 'deploy' in type 'TxProofVerifier__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_verifier: PromiseOrValue<string>, overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<TxProofVerifier>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<TxProofVerifier>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'TxProofVerifier' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'TxProofVerifier' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'TxProofVerifierInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
88 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/TxProofVerifier__factory.ts:92:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<TxProofVerifier>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'TxProofVerifier': attach, deployed, functions, unpackProof, and 4 more.
92 return super.deploy(_verifier, overrides || {}) as Promise<TxProofVerifier>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/TxProofVerifier__factory.ts:94:3 - error TS2300: Duplicate identifier 'override'.
94 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/TxProofVerifier__factory.ts:94:12 - error TS1005: ';' expected.
94 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/TxProofVerifier__factory.ts:94:12 - error TS2416: Property 'getDeployTransaction' in type 'TxProofVerifier__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_verifier: PromiseOrValue<string>, overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
94 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/TxProofVerifier__factory.ts:98:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
98 return super.getDeployTransaction(_verifier, overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/TxProofVerifier__factory.ts:100:3 - error TS2300: Duplicate identifier 'override'.
100 override attach(address: string): TxProofVerifier {
~~~~~~~~
typechain-types/factories/contracts/verifiers/TxProofVerifier__factory.ts:100:12 - error TS1005: ';' expected.
100 override attach(address: string): TxProofVerifier {
~~~~~~
typechain-types/factories/contracts/verifiers/TxProofVerifier__factory.ts:101:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
101 return super.attach(address) as TxProofVerifier;
~~~~~~
typechain-types/factories/contracts/verifiers/TxProofVerifier__factory.ts:103:3 - error TS2300: Duplicate identifier 'override'.
103 override connect(signer: Signer): TxProofVerifier__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/TxProofVerifier__factory.ts:103:12 - error TS1005: ';' expected.
103 override connect(signer: Signer): TxProofVerifier__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/TxProofVerifier__factory.ts:103:12 - error TS2416: Property 'connect' in type 'TxProofVerifier__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => TxProofVerifier__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'TxProofVerifier__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
103 override connect(signer: Signer): TxProofVerifier__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/TxProofVerifier__factory.ts:104:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'TxProofVerifier__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'TxProofVerifier__factory': override, attach
104 return super.connect(signer) as TxProofVerifier__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/TxProofVerifier__factory.ts:116:12 - error TS2352: Conversion of type 'Contract' to type 'TxProofVerifier' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'TxProofVerifier': attach, deployed, functions, unpackProof, and 4 more.
116 return new Contract(address, _abi, signerOrProvider) as TxProofVerifier;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/TxProofVerifier__factory.ts:116:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
116 return new Contract(address, _abi, signerOrProvider) as TxProofVerifier;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier2_16__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier2_16__factory.ts:53:6 - error TS2304: Cannot find name 'signer'.
53 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier2_16__factory.ts:53:13 - error TS1005: ',' expected.
53 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier2_16__factory.ts:69:12 - error TS1005: ';' expected.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier2_16__factory.ts:69:12 - error TS2416: Property 'deploy' in type 'Verifier2_16__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<Verifier2_16>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<Verifier2_16>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'Verifier2_16' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'Verifier2_16' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'Verifier2_16Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier2_16__factory.ts:72:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<Verifier2_16>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'Verifier2_16': attach, deployed, functions, verifyProof, and 3 more.
72 return super.deploy(overrides || {}) as Promise<Verifier2_16>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier2_16__factory.ts:74:3 - error TS2300: Duplicate identifier 'override'.
74 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier2_16__factory.ts:74:12 - error TS1005: ';' expected.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier2_16__factory.ts:74:12 - error TS2416: Property 'getDeployTransaction' in type 'Verifier2_16__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier2_16__factory.ts:77:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
77 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier2_16__factory.ts:79:3 - error TS2300: Duplicate identifier 'override'.
79 override attach(address: string): Verifier2_16 {
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier2_16__factory.ts:79:12 - error TS1005: ';' expected.
79 override attach(address: string): Verifier2_16 {
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier2_16__factory.ts:80:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
80 return super.attach(address) as Verifier2_16;
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier2_16__factory.ts:82:3 - error TS2300: Duplicate identifier 'override'.
82 override connect(signer: Signer): Verifier2_16__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier2_16__factory.ts:82:12 - error TS1005: ';' expected.
82 override connect(signer: Signer): Verifier2_16__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier2_16__factory.ts:82:12 - error TS2416: Property 'connect' in type 'Verifier2_16__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => Verifier2_16__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'Verifier2_16__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
82 override connect(signer: Signer): Verifier2_16__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier2_16__factory.ts:83:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'Verifier2_16__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'Verifier2_16__factory': override, attach
83 return super.connect(signer) as Verifier2_16__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier2_16__factory.ts:95:12 - error TS2352: Conversion of type 'Contract' to type 'Verifier2_16' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'Verifier2_16': attach, deployed, functions, verifyProof, and 3 more.
95 return new Contract(address, _abi, signerOrProvider) as Verifier2_16;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier2_16__factory.ts:95:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
95 return new Contract(address, _abi, signerOrProvider) as Verifier2_16;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier8_16__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier8_16__factory.ts:53:6 - error TS2304: Cannot find name 'signer'.
53 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier8_16__factory.ts:53:13 - error TS1005: ',' expected.
53 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier8_16__factory.ts:69:12 - error TS1005: ';' expected.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier8_16__factory.ts:69:12 - error TS2416: Property 'deploy' in type 'Verifier8_16__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<Verifier8_16>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<Verifier8_16>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'Verifier8_16' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'Verifier8_16' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'Verifier8_16Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier8_16__factory.ts:72:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<Verifier8_16>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'Verifier8_16': attach, deployed, functions, verifyProof, and 3 more.
72 return super.deploy(overrides || {}) as Promise<Verifier8_16>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier8_16__factory.ts:74:3 - error TS2300: Duplicate identifier 'override'.
74 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier8_16__factory.ts:74:12 - error TS1005: ';' expected.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier8_16__factory.ts:74:12 - error TS2416: Property 'getDeployTransaction' in type 'Verifier8_16__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier8_16__factory.ts:77:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
77 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier8_16__factory.ts:79:3 - error TS2300: Duplicate identifier 'override'.
79 override attach(address: string): Verifier8_16 {
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier8_16__factory.ts:79:12 - error TS1005: ';' expected.
79 override attach(address: string): Verifier8_16 {
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier8_16__factory.ts:80:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
80 return super.attach(address) as Verifier8_16;
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier8_16__factory.ts:82:3 - error TS2300: Duplicate identifier 'override'.
82 override connect(signer: Signer): Verifier8_16__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier8_16__factory.ts:82:12 - error TS1005: ';' expected.
82 override connect(signer: Signer): Verifier8_16__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier8_16__factory.ts:82:12 - error TS2416: Property 'connect' in type 'Verifier8_16__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => Verifier8_16__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'Verifier8_16__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
82 override connect(signer: Signer): Verifier8_16__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier8_16__factory.ts:83:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'Verifier8_16__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'Verifier8_16__factory': override, attach
83 return super.connect(signer) as Verifier8_16__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier8_16__factory.ts:95:12 - error TS2352: Conversion of type 'Contract' to type 'Verifier8_16' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'Verifier8_16': attach, deployed, functions, verifyProof, and 3 more.
95 return new Contract(address, _abi, signerOrProvider) as Verifier8_16;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_16/Verifier8_16__factory.ts:95:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
95 return new Contract(address, _abi, signerOrProvider) as Verifier8_16;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier2_2__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier2_2__factory.ts:53:6 - error TS2304: Cannot find name 'signer'.
53 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier2_2__factory.ts:53:13 - error TS1005: ',' expected.
53 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier2_2__factory.ts:69:12 - error TS1005: ';' expected.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier2_2__factory.ts:69:12 - error TS2416: Property 'deploy' in type 'Verifier2_2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<Verifier2_2>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<Verifier2_2>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'Verifier2_2' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'Verifier2_2' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'Verifier2_2Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier2_2__factory.ts:72:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<Verifier2_2>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'Verifier2_2': attach, deployed, functions, verifyProof, and 3 more.
72 return super.deploy(overrides || {}) as Promise<Verifier2_2>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier2_2__factory.ts:74:3 - error TS2300: Duplicate identifier 'override'.
74 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier2_2__factory.ts:74:12 - error TS1005: ';' expected.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier2_2__factory.ts:74:12 - error TS2416: Property 'getDeployTransaction' in type 'Verifier2_2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier2_2__factory.ts:77:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
77 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier2_2__factory.ts:79:3 - error TS2300: Duplicate identifier 'override'.
79 override attach(address: string): Verifier2_2 {
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier2_2__factory.ts:79:12 - error TS1005: ';' expected.
79 override attach(address: string): Verifier2_2 {
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier2_2__factory.ts:80:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
80 return super.attach(address) as Verifier2_2;
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier2_2__factory.ts:82:3 - error TS2300: Duplicate identifier 'override'.
82 override connect(signer: Signer): Verifier2_2__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier2_2__factory.ts:82:12 - error TS1005: ';' expected.
82 override connect(signer: Signer): Verifier2_2__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier2_2__factory.ts:82:12 - error TS2416: Property 'connect' in type 'Verifier2_2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => Verifier2_2__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'Verifier2_2__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
82 override connect(signer: Signer): Verifier2_2__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier2_2__factory.ts:83:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'Verifier2_2__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'Verifier2_2__factory': override, attach
83 return super.connect(signer) as Verifier2_2__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier2_2__factory.ts:95:12 - error TS2352: Conversion of type 'Contract' to type 'Verifier2_2' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'Verifier2_2': attach, deployed, functions, verifyProof, and 3 more.
95 return new Contract(address, _abi, signerOrProvider) as Verifier2_2;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier2_2__factory.ts:95:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
95 return new Contract(address, _abi, signerOrProvider) as Verifier2_2;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier8_2__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier8_2__factory.ts:53:6 - error TS2304: Cannot find name 'signer'.
53 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier8_2__factory.ts:53:13 - error TS1005: ',' expected.
53 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier8_2__factory.ts:69:12 - error TS1005: ';' expected.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier8_2__factory.ts:69:12 - error TS2416: Property 'deploy' in type 'Verifier8_2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<Verifier8_2>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<Verifier8_2>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'Verifier8_2' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'Verifier8_2' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'Verifier8_2Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier8_2__factory.ts:72:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<Verifier8_2>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'Verifier8_2': attach, deployed, functions, verifyProof, and 3 more.
72 return super.deploy(overrides || {}) as Promise<Verifier8_2>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier8_2__factory.ts:74:3 - error TS2300: Duplicate identifier 'override'.
74 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier8_2__factory.ts:74:12 - error TS1005: ';' expected.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier8_2__factory.ts:74:12 - error TS2416: Property 'getDeployTransaction' in type 'Verifier8_2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier8_2__factory.ts:77:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
77 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier8_2__factory.ts:79:3 - error TS2300: Duplicate identifier 'override'.
79 override attach(address: string): Verifier8_2 {
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier8_2__factory.ts:79:12 - error TS1005: ';' expected.
79 override attach(address: string): Verifier8_2 {
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier8_2__factory.ts:80:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
80 return super.attach(address) as Verifier8_2;
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier8_2__factory.ts:82:3 - error TS2300: Duplicate identifier 'override'.
82 override connect(signer: Signer): Verifier8_2__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier8_2__factory.ts:82:12 - error TS1005: ';' expected.
82 override connect(signer: Signer): Verifier8_2__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier8_2__factory.ts:82:12 - error TS2416: Property 'connect' in type 'Verifier8_2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => Verifier8_2__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'Verifier8_2__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
82 override connect(signer: Signer): Verifier8_2__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier8_2__factory.ts:83:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'Verifier8_2__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'Verifier8_2__factory': override, attach
83 return super.connect(signer) as Verifier8_2__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier8_2__factory.ts:95:12 - error TS2352: Conversion of type 'Contract' to type 'Verifier8_2' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'Verifier8_2': attach, deployed, functions, verifyProof, and 3 more.
95 return new Contract(address, _abi, signerOrProvider) as Verifier8_2;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_2/Verifier8_2__factory.ts:95:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
95 return new Contract(address, _abi, signerOrProvider) as Verifier8_2;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF2_16__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF2_16__factory.ts:53:6 - error TS2304: Cannot find name 'signer'.
53 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF2_16__factory.ts:53:13 - error TS1005: ',' expected.
53 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF2_16__factory.ts:69:12 - error TS1005: ';' expected.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF2_16__factory.ts:69:12 - error TS2416: Property 'deploy' in type 'VerifierF2_16__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<VerifierF2_16>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<VerifierF2_16>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'VerifierF2_16' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'VerifierF2_16' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'VerifierF2_16Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF2_16__factory.ts:72:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<VerifierF2_16>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'VerifierF2_16': attach, deployed, functions, verifyProof, and 3 more.
72 return super.deploy(overrides || {}) as Promise<VerifierF2_16>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF2_16__factory.ts:74:3 - error TS2300: Duplicate identifier 'override'.
74 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF2_16__factory.ts:74:12 - error TS1005: ';' expected.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF2_16__factory.ts:74:12 - error TS2416: Property 'getDeployTransaction' in type 'VerifierF2_16__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF2_16__factory.ts:77:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
77 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF2_16__factory.ts:79:3 - error TS2300: Duplicate identifier 'override'.
79 override attach(address: string): VerifierF2_16 {
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF2_16__factory.ts:79:12 - error TS1005: ';' expected.
79 override attach(address: string): VerifierF2_16 {
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF2_16__factory.ts:80:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
80 return super.attach(address) as VerifierF2_16;
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF2_16__factory.ts:82:3 - error TS2300: Duplicate identifier 'override'.
82 override connect(signer: Signer): VerifierF2_16__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF2_16__factory.ts:82:12 - error TS1005: ';' expected.
82 override connect(signer: Signer): VerifierF2_16__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF2_16__factory.ts:82:12 - error TS2416: Property 'connect' in type 'VerifierF2_16__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => VerifierF2_16__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'VerifierF2_16__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
82 override connect(signer: Signer): VerifierF2_16__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF2_16__factory.ts:83:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'VerifierF2_16__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'VerifierF2_16__factory': override, attach
83 return super.connect(signer) as VerifierF2_16__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF2_16__factory.ts:95:12 - error TS2352: Conversion of type 'Contract' to type 'VerifierF2_16' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'VerifierF2_16': attach, deployed, functions, verifyProof, and 3 more.
95 return new Contract(address, _abi, signerOrProvider) as VerifierF2_16;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF2_16__factory.ts:95:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
95 return new Contract(address, _abi, signerOrProvider) as VerifierF2_16;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF8_16__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF8_16__factory.ts:53:6 - error TS2304: Cannot find name 'signer'.
53 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF8_16__factory.ts:53:13 - error TS1005: ',' expected.
53 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF8_16__factory.ts:69:12 - error TS1005: ';' expected.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF8_16__factory.ts:69:12 - error TS2416: Property 'deploy' in type 'VerifierF8_16__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<VerifierF8_16>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<VerifierF8_16>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'VerifierF8_16' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'VerifierF8_16' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'VerifierF8_16Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF8_16__factory.ts:72:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<VerifierF8_16>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'VerifierF8_16': attach, deployed, functions, verifyProof, and 3 more.
72 return super.deploy(overrides || {}) as Promise<VerifierF8_16>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF8_16__factory.ts:74:3 - error TS2300: Duplicate identifier 'override'.
74 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF8_16__factory.ts:74:12 - error TS1005: ';' expected.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF8_16__factory.ts:74:12 - error TS2416: Property 'getDeployTransaction' in type 'VerifierF8_16__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF8_16__factory.ts:77:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
77 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF8_16__factory.ts:79:3 - error TS2300: Duplicate identifier 'override'.
79 override attach(address: string): VerifierF8_16 {
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF8_16__factory.ts:79:12 - error TS1005: ';' expected.
79 override attach(address: string): VerifierF8_16 {
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF8_16__factory.ts:80:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
80 return super.attach(address) as VerifierF8_16;
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF8_16__factory.ts:82:3 - error TS2300: Duplicate identifier 'override'.
82 override connect(signer: Signer): VerifierF8_16__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF8_16__factory.ts:82:12 - error TS1005: ';' expected.
82 override connect(signer: Signer): VerifierF8_16__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF8_16__factory.ts:82:12 - error TS2416: Property 'connect' in type 'VerifierF8_16__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => VerifierF8_16__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'VerifierF8_16__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
82 override connect(signer: Signer): VerifierF8_16__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF8_16__factory.ts:83:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'VerifierF8_16__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'VerifierF8_16__factory': override, attach
83 return super.connect(signer) as VerifierF8_16__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF8_16__factory.ts:95:12 - error TS2352: Conversion of type 'Contract' to type 'VerifierF8_16' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'VerifierF8_16': attach, deployed, functions, verifyProof, and 3 more.
95 return new Contract(address, _abi, signerOrProvider) as VerifierF8_16;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_16/VerifierF8_16__factory.ts:95:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
95 return new Contract(address, _abi, signerOrProvider) as VerifierF8_16;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF2_2__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF2_2__factory.ts:53:6 - error TS2304: Cannot find name 'signer'.
53 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF2_2__factory.ts:53:13 - error TS1005: ',' expected.
53 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF2_2__factory.ts:69:12 - error TS1005: ';' expected.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF2_2__factory.ts:69:12 - error TS2416: Property 'deploy' in type 'VerifierF2_2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<VerifierF2_2>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<VerifierF2_2>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'VerifierF2_2' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'VerifierF2_2' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'VerifierF2_2Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF2_2__factory.ts:72:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<VerifierF2_2>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'VerifierF2_2': attach, deployed, functions, verifyProof, and 3 more.
72 return super.deploy(overrides || {}) as Promise<VerifierF2_2>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF2_2__factory.ts:74:3 - error TS2300: Duplicate identifier 'override'.
74 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF2_2__factory.ts:74:12 - error TS1005: ';' expected.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF2_2__factory.ts:74:12 - error TS2416: Property 'getDeployTransaction' in type 'VerifierF2_2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF2_2__factory.ts:77:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
77 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF2_2__factory.ts:79:3 - error TS2300: Duplicate identifier 'override'.
79 override attach(address: string): VerifierF2_2 {
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF2_2__factory.ts:79:12 - error TS1005: ';' expected.
79 override attach(address: string): VerifierF2_2 {
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF2_2__factory.ts:80:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
80 return super.attach(address) as VerifierF2_2;
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF2_2__factory.ts:82:3 - error TS2300: Duplicate identifier 'override'.
82 override connect(signer: Signer): VerifierF2_2__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF2_2__factory.ts:82:12 - error TS1005: ';' expected.
82 override connect(signer: Signer): VerifierF2_2__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF2_2__factory.ts:82:12 - error TS2416: Property 'connect' in type 'VerifierF2_2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => VerifierF2_2__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'VerifierF2_2__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
82 override connect(signer: Signer): VerifierF2_2__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF2_2__factory.ts:83:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'VerifierF2_2__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'VerifierF2_2__factory': override, attach
83 return super.connect(signer) as VerifierF2_2__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF2_2__factory.ts:95:12 - error TS2352: Conversion of type 'Contract' to type 'VerifierF2_2' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'VerifierF2_2': attach, deployed, functions, verifyProof, and 3 more.
95 return new Contract(address, _abi, signerOrProvider) as VerifierF2_2;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF2_2__factory.ts:95:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
95 return new Contract(address, _abi, signerOrProvider) as VerifierF2_2;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF8_2__factory.ts:4:18 - error TS2305: Module '"../../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF8_2__factory.ts:53:6 - error TS2304: Cannot find name 'signer'.
53 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF8_2__factory.ts:53:13 - error TS1005: ',' expected.
53 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF8_2__factory.ts:69:12 - error TS1005: ';' expected.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF8_2__factory.ts:69:12 - error TS2416: Property 'deploy' in type 'VerifierF8_2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => Promise<VerifierF8_2>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<VerifierF8_2>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'VerifierF8_2' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'VerifierF8_2' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'VerifierF8_2Interface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
69 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF8_2__factory.ts:72:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<VerifierF8_2>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'VerifierF8_2': attach, deployed, functions, verifyProof, and 3 more.
72 return super.deploy(overrides || {}) as Promise<VerifierF8_2>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF8_2__factory.ts:74:3 - error TS2300: Duplicate identifier 'override'.
74 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF8_2__factory.ts:74:12 - error TS1005: ';' expected.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF8_2__factory.ts:74:12 - error TS2416: Property 'getDeployTransaction' in type 'VerifierF8_2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(overrides?: Overrides & { from?: PromiseOrValue<string>; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
74 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF8_2__factory.ts:77:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
77 return super.getDeployTransaction(overrides || {});
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF8_2__factory.ts:79:3 - error TS2300: Duplicate identifier 'override'.
79 override attach(address: string): VerifierF8_2 {
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF8_2__factory.ts:79:12 - error TS1005: ';' expected.
79 override attach(address: string): VerifierF8_2 {
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF8_2__factory.ts:80:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
80 return super.attach(address) as VerifierF8_2;
~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF8_2__factory.ts:82:3 - error TS2300: Duplicate identifier 'override'.
82 override connect(signer: Signer): VerifierF8_2__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF8_2__factory.ts:82:12 - error TS1005: ';' expected.
82 override connect(signer: Signer): VerifierF8_2__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF8_2__factory.ts:82:12 - error TS2416: Property 'connect' in type 'VerifierF8_2__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => VerifierF8_2__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'VerifierF8_2__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
82 override connect(signer: Signer): VerifierF8_2__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF8_2__factory.ts:83:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'VerifierF8_2__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'VerifierF8_2__factory': override, attach
83 return super.connect(signer) as VerifierF8_2__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF8_2__factory.ts:95:12 - error TS2352: Conversion of type 'Contract' to type 'VerifierF8_2' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'VerifierF8_2': attach, deployed, functions, verifyProof, and 3 more.
95 return new Contract(address, _abi, signerOrProvider) as VerifierF8_2;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/vanchor_forest_2/VerifierF8_2__factory.ts:95:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
95 return new Contract(address, _abi, signerOrProvider) as VerifierF8_2;
~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/VAnchorVerifier__factory.ts:4:18 - error TS2305: Module '"../../../../node_modules/ethers/types"' has no exported member 'utils'.
4 import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
~~~~~
typechain-types/factories/contracts/verifiers/VAnchorVerifier__factory.ts:141:6 - error TS2304: Cannot find name 'signer'.
141 | [signer?: Signer]
~~~~~~
typechain-types/factories/contracts/verifiers/VAnchorVerifier__factory.ts:141:13 - error TS1005: ',' expected.
141 | [signer?: Signer]
~
typechain-types/factories/contracts/verifiers/VAnchorVerifier__factory.ts:157:12 - error TS1005: ';' expected.
157 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/VAnchorVerifier__factory.ts:157:12 - error TS2416: Property 'deploy' in type 'VAnchorVerifier__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_verifier_2_2: PromiseOrValue<string>, _verifier_2_16: PromiseOrValue<string>, _verifier_8_2: PromiseOrValue<string>, _verifier_8_16: PromiseOrValue<...>, overrides?: Overrides & { ...; }) => Promise<...>' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<...>>'.
Type 'Promise<VAnchorVerifier>' is not assignable to type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>'.
Type 'VAnchorVerifier' is not assignable to type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>'.
Type 'VAnchorVerifier' is not assignable to type 'BaseContract'.
Types of property 'interface' are incompatible.
Type 'VAnchorVerifierInterface' is missing the following properties from type 'Interface': #private, fragments, deploy, fallback, and 28 more.
157 override deploy(
~~~~~~
typechain-types/factories/contracts/verifiers/VAnchorVerifier__factory.ts:164:12 - error TS2352: Conversion of type 'Promise<BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>>' to type 'Promise<VAnchorVerifier>' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'BaseContract & { deploymentTransaction(): ContractTransactionResponse; } & Pick<BaseContract, never>' is missing the following properties from type 'VAnchorVerifier': attach, deployed, functions, v2_16, and 7 more.
164 return super.deploy(
~~~~~~~~~~~~~
165 _verifier_2_2,
~~~~~~~~~~~~~~~~~~~~
...
169 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
170 ) as Promise<VAnchorVerifier>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/VAnchorVerifier__factory.ts:172:3 - error TS2300: Duplicate identifier 'override'.
172 override getDeployTransaction(
~~~~~~~~
typechain-types/factories/contracts/verifiers/VAnchorVerifier__factory.ts:172:12 - error TS1005: ';' expected.
172 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/VAnchorVerifier__factory.ts:172:12 - error TS2416: Property 'getDeployTransaction' in type 'VAnchorVerifier__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(_verifier_2_2: PromiseOrValue<string>, _verifier_2_16: PromiseOrValue<string>, _verifier_8_2: PromiseOrValue<string>, _verifier_8_16: PromiseOrValue<...>, overrides?: Overrides & { ...; }) => TransactionRequest' is not assignable to type '(...args: PostfixOverrides<any[]>) => Promise<ContractDeployTransaction>'.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
172 override getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/VAnchorVerifier__factory.ts:179:5 - error TS2559: Type 'Promise<ContractDeployTransaction>' has no properties in common with type 'TransactionRequest'.
179 return super.getDeployTransaction(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
180 _verifier_2_2,
~~~~~~~~~~~~~~~~~~~~
...
184 overrides || {}
~~~~~~~~~~~~~~~~~~~~~
185 );
~~~~~~
typechain-types/factories/contracts/verifiers/VAnchorVerifier__factory.ts:187:3 - error TS2300: Duplicate identifier 'override'.
187 override attach(address: string): VAnchorVerifier {
~~~~~~~~
typechain-types/factories/contracts/verifiers/VAnchorVerifier__factory.ts:187:12 - error TS1005: ';' expected.
187 override attach(address: string): VAnchorVerifier {
~~~~~~
typechain-types/factories/contracts/verifiers/VAnchorVerifier__factory.ts:188:18 - error TS2339: Property 'attach' does not exist on type 'ContractFactory<any[], BaseContract>'.
188 return super.attach(address) as VAnchorVerifier;
~~~~~~
typechain-types/factories/contracts/verifiers/VAnchorVerifier__factory.ts:190:3 - error TS2300: Duplicate identifier 'override'.
190 override connect(signer: Signer): VAnchorVerifier__factory {
~~~~~~~~
typechain-types/factories/contracts/verifiers/VAnchorVerifier__factory.ts:190:12 - error TS1005: ';' expected.
190 override connect(signer: Signer): VAnchorVerifier__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/VAnchorVerifier__factory.ts:190:12 - error TS2416: Property 'connect' in type 'VAnchorVerifier__factory' is not assignable to the same property in base type 'ContractFactory<any[], BaseContract>'.
Type '(signer: Signer) => VAnchorVerifier__factory' is not assignable to type '(runner: ContractRunner) => ContractFactory<any[], BaseContract>'.
Call signature return types 'VAnchorVerifier__factory' and 'ContractFactory<any[], BaseContract>' are incompatible.
The types returned by 'getDeployTransaction(...)' are incompatible between these types.
Type 'TransactionRequest' is not assignable to type 'Promise<ContractDeployTransaction>'.
190 override connect(signer: Signer): VAnchorVerifier__factory {
~~~~~~~
typechain-types/factories/contracts/verifiers/VAnchorVerifier__factory.ts:191:12 - error TS2352: Conversion of type 'ContractFactory<any[], BaseContract>' to type 'VAnchorVerifier__factory' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'ContractFactory<any[], BaseContract>' is missing the following properties from type 'VAnchorVerifier__factory': override, attach
191 return super.connect(signer) as VAnchorVerifier__factory;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/VAnchorVerifier__factory.ts:203:12 - error TS2352: Conversion of type 'Contract' to type 'VAnchorVerifier' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Contract' is missing the following properties from type 'VAnchorVerifier': attach, deployed, functions, v2_16, and 7 more.
203 return new Contract(address, _abi, signerOrProvider) as VAnchorVerifier;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
typechain-types/factories/contracts/verifiers/VAnchorVerifier__factory.ts:203:40 - error TS2345: Argument of type 'Signer | Provider' is not assignable to parameter of type 'ContractRunner'.
Type 'Provider' is not assignable to type 'ContractRunner'.
203 return new Contract(address, _abi, signerOrProvider) as VAnchorVerifier;
~~~~~~~~~~~~~~~~
Found 3357 errors.
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment