@merkl/contracts 0.1.103 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,173 @@
1
+ import type { BaseContract, BigNumber, BigNumberish, BytesLike, CallOverrides, ContractTransaction, Overrides, PopulatedTransaction, Signer, utils } from "ethers";
2
+ import type { FunctionFragment, Result, EventFragment } from "@ethersproject/abi";
3
+ import type { Listener, Provider } from "@ethersproject/providers";
4
+ import type { TypedEventFilter, TypedEvent, TypedListener, OnEvent, PromiseOrValue } from "./common";
5
+ export type PoolKeyStruct = {
6
+ currency0: PromiseOrValue<string>;
7
+ currency1: PromiseOrValue<string>;
8
+ fee: PromiseOrValue<BigNumberish>;
9
+ tickSpacing: PromiseOrValue<BigNumberish>;
10
+ hooks: PromiseOrValue<string>;
11
+ };
12
+ export type PoolKeyStructOutput = [string, string, number, number, string] & {
13
+ currency0: string;
14
+ currency1: string;
15
+ fee: number;
16
+ tickSpacing: number;
17
+ hooks: string;
18
+ };
19
+ export interface VIIUniswapV4WrapperFactoryInterface extends utils.Interface {
20
+ functions: {
21
+ "createUniswapV4Wrapper(address,address,(address,address,uint24,int24,address))": FunctionFragment;
22
+ "evc()": FunctionFragment;
23
+ "getFixedRateOracleAddress(address,address)": FunctionFragment;
24
+ "getFixedRateOracleAddress(address)": FunctionFragment;
25
+ "getFixedRateOracleBytecode(address,address)": FunctionFragment;
26
+ "getUniswapV4WrapperAddress(address,address,(address,address,uint24,int24,address))": FunctionFragment;
27
+ "getUniswapV4WrapperBytecode(address,address,(address,address,uint24,int24,address))": FunctionFragment;
28
+ "isFixedRateOracleValid(address)": FunctionFragment;
29
+ "isUniswapV4WrapperValid(address)": FunctionFragment;
30
+ "positionManager()": FunctionFragment;
31
+ "weth()": FunctionFragment;
32
+ };
33
+ getFunction(nameOrSignatureOrTopic: "createUniswapV4Wrapper" | "evc" | "getFixedRateOracleAddress(address,address)" | "getFixedRateOracleAddress(address)" | "getFixedRateOracleBytecode" | "getUniswapV4WrapperAddress" | "getUniswapV4WrapperBytecode" | "isFixedRateOracleValid" | "isUniswapV4WrapperValid" | "positionManager" | "weth"): FunctionFragment;
34
+ encodeFunctionData(functionFragment: "createUniswapV4Wrapper", values: [PromiseOrValue<string>, PromiseOrValue<string>, PoolKeyStruct]): string;
35
+ encodeFunctionData(functionFragment: "evc", values?: undefined): string;
36
+ encodeFunctionData(functionFragment: "getFixedRateOracleAddress(address,address)", values: [PromiseOrValue<string>, PromiseOrValue<string>]): string;
37
+ encodeFunctionData(functionFragment: "getFixedRateOracleAddress(address)", values: [PromiseOrValue<string>]): string;
38
+ encodeFunctionData(functionFragment: "getFixedRateOracleBytecode", values: [PromiseOrValue<string>, PromiseOrValue<string>]): string;
39
+ encodeFunctionData(functionFragment: "getUniswapV4WrapperAddress", values: [PromiseOrValue<string>, PromiseOrValue<string>, PoolKeyStruct]): string;
40
+ encodeFunctionData(functionFragment: "getUniswapV4WrapperBytecode", values: [PromiseOrValue<string>, PromiseOrValue<string>, PoolKeyStruct]): string;
41
+ encodeFunctionData(functionFragment: "isFixedRateOracleValid", values: [PromiseOrValue<string>]): string;
42
+ encodeFunctionData(functionFragment: "isUniswapV4WrapperValid", values: [PromiseOrValue<string>]): string;
43
+ encodeFunctionData(functionFragment: "positionManager", values?: undefined): string;
44
+ encodeFunctionData(functionFragment: "weth", values?: undefined): string;
45
+ decodeFunctionResult(functionFragment: "createUniswapV4Wrapper", data: BytesLike): Result;
46
+ decodeFunctionResult(functionFragment: "evc", data: BytesLike): Result;
47
+ decodeFunctionResult(functionFragment: "getFixedRateOracleAddress(address,address)", data: BytesLike): Result;
48
+ decodeFunctionResult(functionFragment: "getFixedRateOracleAddress(address)", data: BytesLike): Result;
49
+ decodeFunctionResult(functionFragment: "getFixedRateOracleBytecode", data: BytesLike): Result;
50
+ decodeFunctionResult(functionFragment: "getUniswapV4WrapperAddress", data: BytesLike): Result;
51
+ decodeFunctionResult(functionFragment: "getUniswapV4WrapperBytecode", data: BytesLike): Result;
52
+ decodeFunctionResult(functionFragment: "isFixedRateOracleValid", data: BytesLike): Result;
53
+ decodeFunctionResult(functionFragment: "isUniswapV4WrapperValid", data: BytesLike): Result;
54
+ decodeFunctionResult(functionFragment: "positionManager", data: BytesLike): Result;
55
+ decodeFunctionResult(functionFragment: "weth", data: BytesLike): Result;
56
+ events: {
57
+ "UniswapV4WrapperCreated(address,address,bytes32,address,address,tuple)": EventFragment;
58
+ };
59
+ getEvent(nameOrSignatureOrTopic: "UniswapV4WrapperCreated"): EventFragment;
60
+ }
61
+ export interface UniswapV4WrapperCreatedEventObject {
62
+ uniswapV4Wrapper: string;
63
+ fixedRateOracle: string;
64
+ poolId: string;
65
+ oracle: string;
66
+ unitOfAccount: string;
67
+ poolKey: PoolKeyStructOutput;
68
+ }
69
+ export type UniswapV4WrapperCreatedEvent = TypedEvent<[
70
+ string,
71
+ string,
72
+ string,
73
+ string,
74
+ string,
75
+ PoolKeyStructOutput
76
+ ], UniswapV4WrapperCreatedEventObject>;
77
+ export type UniswapV4WrapperCreatedEventFilter = TypedEventFilter<UniswapV4WrapperCreatedEvent>;
78
+ export interface VIIUniswapV4WrapperFactory extends BaseContract {
79
+ connect(signerOrProvider: Signer | Provider | string): this;
80
+ attach(addressOrName: string): this;
81
+ deployed(): Promise<this>;
82
+ interface: VIIUniswapV4WrapperFactoryInterface;
83
+ queryFilter<TEvent extends TypedEvent>(event: TypedEventFilter<TEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TEvent>>;
84
+ listeners<TEvent extends TypedEvent>(eventFilter?: TypedEventFilter<TEvent>): Array<TypedListener<TEvent>>;
85
+ listeners(eventName?: string): Array<Listener>;
86
+ removeAllListeners<TEvent extends TypedEvent>(eventFilter: TypedEventFilter<TEvent>): this;
87
+ removeAllListeners(eventName?: string): this;
88
+ off: OnEvent<this>;
89
+ on: OnEvent<this>;
90
+ once: OnEvent<this>;
91
+ removeListener: OnEvent<this>;
92
+ functions: {
93
+ createUniswapV4Wrapper(oracle: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, poolKey: PoolKeyStruct, overrides?: Overrides & {
94
+ from?: PromiseOrValue<string>;
95
+ }): Promise<ContractTransaction>;
96
+ evc(overrides?: CallOverrides): Promise<[string]>;
97
+ "getFixedRateOracleAddress(address,address)"(uniswapWrapper: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, overrides?: CallOverrides): Promise<[string]>;
98
+ "getFixedRateOracleAddress(address)"(uniswapWrapper: PromiseOrValue<string>, overrides?: CallOverrides): Promise<[string]>;
99
+ getFixedRateOracleBytecode(uniswapWrapper: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, overrides?: CallOverrides): Promise<[string]>;
100
+ getUniswapV4WrapperAddress(oracle: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, poolKey: PoolKeyStruct, overrides?: CallOverrides): Promise<[string]>;
101
+ getUniswapV4WrapperBytecode(oracle: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, poolKey: PoolKeyStruct, overrides?: CallOverrides): Promise<[string]>;
102
+ isFixedRateOracleValid(fixedRateOracleToCheck: PromiseOrValue<string>, overrides?: CallOverrides): Promise<[boolean]>;
103
+ isUniswapV4WrapperValid(uniswapV4WrapperToCheck: PromiseOrValue<string>, overrides?: CallOverrides): Promise<[boolean]>;
104
+ positionManager(overrides?: CallOverrides): Promise<[string]>;
105
+ weth(overrides?: CallOverrides): Promise<[string]>;
106
+ };
107
+ createUniswapV4Wrapper(oracle: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, poolKey: PoolKeyStruct, overrides?: Overrides & {
108
+ from?: PromiseOrValue<string>;
109
+ }): Promise<ContractTransaction>;
110
+ evc(overrides?: CallOverrides): Promise<string>;
111
+ "getFixedRateOracleAddress(address,address)"(uniswapWrapper: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, overrides?: CallOverrides): Promise<string>;
112
+ "getFixedRateOracleAddress(address)"(uniswapWrapper: PromiseOrValue<string>, overrides?: CallOverrides): Promise<string>;
113
+ getFixedRateOracleBytecode(uniswapWrapper: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, overrides?: CallOverrides): Promise<string>;
114
+ getUniswapV4WrapperAddress(oracle: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, poolKey: PoolKeyStruct, overrides?: CallOverrides): Promise<string>;
115
+ getUniswapV4WrapperBytecode(oracle: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, poolKey: PoolKeyStruct, overrides?: CallOverrides): Promise<string>;
116
+ isFixedRateOracleValid(fixedRateOracleToCheck: PromiseOrValue<string>, overrides?: CallOverrides): Promise<boolean>;
117
+ isUniswapV4WrapperValid(uniswapV4WrapperToCheck: PromiseOrValue<string>, overrides?: CallOverrides): Promise<boolean>;
118
+ positionManager(overrides?: CallOverrides): Promise<string>;
119
+ weth(overrides?: CallOverrides): Promise<string>;
120
+ callStatic: {
121
+ createUniswapV4Wrapper(oracle: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, poolKey: PoolKeyStruct, overrides?: CallOverrides): Promise<[
122
+ string,
123
+ string
124
+ ] & {
125
+ uniswapV4Wrapper: string;
126
+ fixedRateOracle: string;
127
+ }>;
128
+ evc(overrides?: CallOverrides): Promise<string>;
129
+ "getFixedRateOracleAddress(address,address)"(uniswapWrapper: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, overrides?: CallOverrides): Promise<string>;
130
+ "getFixedRateOracleAddress(address)"(uniswapWrapper: PromiseOrValue<string>, overrides?: CallOverrides): Promise<string>;
131
+ getFixedRateOracleBytecode(uniswapWrapper: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, overrides?: CallOverrides): Promise<string>;
132
+ getUniswapV4WrapperAddress(oracle: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, poolKey: PoolKeyStruct, overrides?: CallOverrides): Promise<string>;
133
+ getUniswapV4WrapperBytecode(oracle: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, poolKey: PoolKeyStruct, overrides?: CallOverrides): Promise<string>;
134
+ isFixedRateOracleValid(fixedRateOracleToCheck: PromiseOrValue<string>, overrides?: CallOverrides): Promise<boolean>;
135
+ isUniswapV4WrapperValid(uniswapV4WrapperToCheck: PromiseOrValue<string>, overrides?: CallOverrides): Promise<boolean>;
136
+ positionManager(overrides?: CallOverrides): Promise<string>;
137
+ weth(overrides?: CallOverrides): Promise<string>;
138
+ };
139
+ filters: {
140
+ "UniswapV4WrapperCreated(address,address,bytes32,address,address,tuple)"(uniswapV4Wrapper?: PromiseOrValue<string> | null, fixedRateOracle?: PromiseOrValue<string> | null, poolId?: PromiseOrValue<BytesLike> | null, oracle?: null, unitOfAccount?: null, poolKey?: null): UniswapV4WrapperCreatedEventFilter;
141
+ UniswapV4WrapperCreated(uniswapV4Wrapper?: PromiseOrValue<string> | null, fixedRateOracle?: PromiseOrValue<string> | null, poolId?: PromiseOrValue<BytesLike> | null, oracle?: null, unitOfAccount?: null, poolKey?: null): UniswapV4WrapperCreatedEventFilter;
142
+ };
143
+ estimateGas: {
144
+ createUniswapV4Wrapper(oracle: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, poolKey: PoolKeyStruct, overrides?: Overrides & {
145
+ from?: PromiseOrValue<string>;
146
+ }): Promise<BigNumber>;
147
+ evc(overrides?: CallOverrides): Promise<BigNumber>;
148
+ "getFixedRateOracleAddress(address,address)"(uniswapWrapper: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
149
+ "getFixedRateOracleAddress(address)"(uniswapWrapper: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
150
+ getFixedRateOracleBytecode(uniswapWrapper: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
151
+ getUniswapV4WrapperAddress(oracle: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, poolKey: PoolKeyStruct, overrides?: CallOverrides): Promise<BigNumber>;
152
+ getUniswapV4WrapperBytecode(oracle: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, poolKey: PoolKeyStruct, overrides?: CallOverrides): Promise<BigNumber>;
153
+ isFixedRateOracleValid(fixedRateOracleToCheck: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
154
+ isUniswapV4WrapperValid(uniswapV4WrapperToCheck: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
155
+ positionManager(overrides?: CallOverrides): Promise<BigNumber>;
156
+ weth(overrides?: CallOverrides): Promise<BigNumber>;
157
+ };
158
+ populateTransaction: {
159
+ createUniswapV4Wrapper(oracle: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, poolKey: PoolKeyStruct, overrides?: Overrides & {
160
+ from?: PromiseOrValue<string>;
161
+ }): Promise<PopulatedTransaction>;
162
+ evc(overrides?: CallOverrides): Promise<PopulatedTransaction>;
163
+ "getFixedRateOracleAddress(address,address)"(uniswapWrapper: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, overrides?: CallOverrides): Promise<PopulatedTransaction>;
164
+ "getFixedRateOracleAddress(address)"(uniswapWrapper: PromiseOrValue<string>, overrides?: CallOverrides): Promise<PopulatedTransaction>;
165
+ getFixedRateOracleBytecode(uniswapWrapper: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, overrides?: CallOverrides): Promise<PopulatedTransaction>;
166
+ getUniswapV4WrapperAddress(oracle: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, poolKey: PoolKeyStruct, overrides?: CallOverrides): Promise<PopulatedTransaction>;
167
+ getUniswapV4WrapperBytecode(oracle: PromiseOrValue<string>, unitOfAccount: PromiseOrValue<string>, poolKey: PoolKeyStruct, overrides?: CallOverrides): Promise<PopulatedTransaction>;
168
+ isFixedRateOracleValid(fixedRateOracleToCheck: PromiseOrValue<string>, overrides?: CallOverrides): Promise<PopulatedTransaction>;
169
+ isUniswapV4WrapperValid(uniswapV4WrapperToCheck: PromiseOrValue<string>, overrides?: CallOverrides): Promise<PopulatedTransaction>;
170
+ positionManager(overrides?: CallOverrides): Promise<PopulatedTransaction>;
171
+ weth(overrides?: CallOverrides): Promise<PopulatedTransaction>;
172
+ };
173
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,218 @@
1
+ import { Signer } from "ethers";
2
+ import type { Provider } from "@ethersproject/providers";
3
+ import type { VIIUniswapV3WrapperFactory, VIIUniswapV3WrapperFactoryInterface } from "../VIIUniswapV3WrapperFactory";
4
+ export declare class VIIUniswapV3WrapperFactory__factory {
5
+ static readonly abi: readonly [{
6
+ readonly inputs: readonly [{
7
+ readonly internalType: "address";
8
+ readonly name: "_evc";
9
+ readonly type: "address";
10
+ }, {
11
+ readonly internalType: "address";
12
+ readonly name: "_nonFungiblePositionManager";
13
+ readonly type: "address";
14
+ }];
15
+ readonly stateMutability: "nonpayable";
16
+ readonly type: "constructor";
17
+ }, {
18
+ readonly anonymous: false;
19
+ readonly inputs: readonly [{
20
+ readonly indexed: true;
21
+ readonly internalType: "address";
22
+ readonly name: "uniswapV3Wrapper";
23
+ readonly type: "address";
24
+ }, {
25
+ readonly indexed: true;
26
+ readonly internalType: "address";
27
+ readonly name: "fixedRateOracle";
28
+ readonly type: "address";
29
+ }, {
30
+ readonly indexed: true;
31
+ readonly internalType: "address";
32
+ readonly name: "poolAddress";
33
+ readonly type: "address";
34
+ }, {
35
+ readonly indexed: false;
36
+ readonly internalType: "address";
37
+ readonly name: "oracle";
38
+ readonly type: "address";
39
+ }, {
40
+ readonly indexed: false;
41
+ readonly internalType: "address";
42
+ readonly name: "unitOfAccount";
43
+ readonly type: "address";
44
+ }];
45
+ readonly name: "UniswapV3WrapperCreated";
46
+ readonly type: "event";
47
+ }, {
48
+ readonly inputs: readonly [{
49
+ readonly internalType: "address";
50
+ readonly name: "oracle";
51
+ readonly type: "address";
52
+ }, {
53
+ readonly internalType: "address";
54
+ readonly name: "unitOfAccount";
55
+ readonly type: "address";
56
+ }, {
57
+ readonly internalType: "address";
58
+ readonly name: "poolAddress";
59
+ readonly type: "address";
60
+ }];
61
+ readonly name: "createUniswapV3Wrapper";
62
+ readonly outputs: readonly [{
63
+ readonly internalType: "address";
64
+ readonly name: "uniswapV3Wrapper";
65
+ readonly type: "address";
66
+ }, {
67
+ readonly internalType: "address";
68
+ readonly name: "fixedRateOracle";
69
+ readonly type: "address";
70
+ }];
71
+ readonly stateMutability: "nonpayable";
72
+ readonly type: "function";
73
+ }, {
74
+ readonly inputs: readonly [];
75
+ readonly name: "evc";
76
+ readonly outputs: readonly [{
77
+ readonly internalType: "address";
78
+ readonly name: "";
79
+ readonly type: "address";
80
+ }];
81
+ readonly stateMutability: "view";
82
+ readonly type: "function";
83
+ }, {
84
+ readonly inputs: readonly [{
85
+ readonly internalType: "address";
86
+ readonly name: "uniswapWrapper";
87
+ readonly type: "address";
88
+ }, {
89
+ readonly internalType: "address";
90
+ readonly name: "unitOfAccount";
91
+ readonly type: "address";
92
+ }];
93
+ readonly name: "getFixedRateOracleAddress";
94
+ readonly outputs: readonly [{
95
+ readonly internalType: "address";
96
+ readonly name: "";
97
+ readonly type: "address";
98
+ }];
99
+ readonly stateMutability: "view";
100
+ readonly type: "function";
101
+ }, {
102
+ readonly inputs: readonly [{
103
+ readonly internalType: "address";
104
+ readonly name: "uniswapWrapper";
105
+ readonly type: "address";
106
+ }];
107
+ readonly name: "getFixedRateOracleAddress";
108
+ readonly outputs: readonly [{
109
+ readonly internalType: "address";
110
+ readonly name: "";
111
+ readonly type: "address";
112
+ }];
113
+ readonly stateMutability: "view";
114
+ readonly type: "function";
115
+ }, {
116
+ readonly inputs: readonly [{
117
+ readonly internalType: "address";
118
+ readonly name: "uniswapWrapper";
119
+ readonly type: "address";
120
+ }, {
121
+ readonly internalType: "address";
122
+ readonly name: "unitOfAccount";
123
+ readonly type: "address";
124
+ }];
125
+ readonly name: "getFixedRateOracleBytecode";
126
+ readonly outputs: readonly [{
127
+ readonly internalType: "bytes";
128
+ readonly name: "";
129
+ readonly type: "bytes";
130
+ }];
131
+ readonly stateMutability: "view";
132
+ readonly type: "function";
133
+ }, {
134
+ readonly inputs: readonly [{
135
+ readonly internalType: "address";
136
+ readonly name: "oracle";
137
+ readonly type: "address";
138
+ }, {
139
+ readonly internalType: "address";
140
+ readonly name: "unitOfAccount";
141
+ readonly type: "address";
142
+ }, {
143
+ readonly internalType: "address";
144
+ readonly name: "poolAddress";
145
+ readonly type: "address";
146
+ }];
147
+ readonly name: "getUniswapV3WrapperAddress";
148
+ readonly outputs: readonly [{
149
+ readonly internalType: "address";
150
+ readonly name: "";
151
+ readonly type: "address";
152
+ }];
153
+ readonly stateMutability: "view";
154
+ readonly type: "function";
155
+ }, {
156
+ readonly inputs: readonly [{
157
+ readonly internalType: "address";
158
+ readonly name: "oracle";
159
+ readonly type: "address";
160
+ }, {
161
+ readonly internalType: "address";
162
+ readonly name: "unitOfAccount";
163
+ readonly type: "address";
164
+ }, {
165
+ readonly internalType: "address";
166
+ readonly name: "poolAddress";
167
+ readonly type: "address";
168
+ }];
169
+ readonly name: "getUniswapV3WrapperBytecode";
170
+ readonly outputs: readonly [{
171
+ readonly internalType: "bytes";
172
+ readonly name: "";
173
+ readonly type: "bytes";
174
+ }];
175
+ readonly stateMutability: "view";
176
+ readonly type: "function";
177
+ }, {
178
+ readonly inputs: readonly [{
179
+ readonly internalType: "address";
180
+ readonly name: "fixedRateOracleToCheck";
181
+ readonly type: "address";
182
+ }];
183
+ readonly name: "isFixedRateOracleValid";
184
+ readonly outputs: readonly [{
185
+ readonly internalType: "bool";
186
+ readonly name: "";
187
+ readonly type: "bool";
188
+ }];
189
+ readonly stateMutability: "view";
190
+ readonly type: "function";
191
+ }, {
192
+ readonly inputs: readonly [{
193
+ readonly internalType: "contract UniswapV3Wrapper";
194
+ readonly name: "uniswapV3WrapperToCheck";
195
+ readonly type: "address";
196
+ }];
197
+ readonly name: "isUniswapV3WrapperValid";
198
+ readonly outputs: readonly [{
199
+ readonly internalType: "bool";
200
+ readonly name: "";
201
+ readonly type: "bool";
202
+ }];
203
+ readonly stateMutability: "view";
204
+ readonly type: "function";
205
+ }, {
206
+ readonly inputs: readonly [];
207
+ readonly name: "nonFungiblePositionManager";
208
+ readonly outputs: readonly [{
209
+ readonly internalType: "address";
210
+ readonly name: "";
211
+ readonly type: "address";
212
+ }];
213
+ readonly stateMutability: "view";
214
+ readonly type: "function";
215
+ }];
216
+ static createInterface(): VIIUniswapV3WrapperFactoryInterface;
217
+ static connect(address: string, signerOrProvider: Signer | Provider): VIIUniswapV3WrapperFactory;
218
+ }