lynx-client 0.0.3 → 0.0.5

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.
Files changed (131) hide show
  1. package/dist/cjs/index.js +19 -0
  2. package/dist/cjs/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.js +91 -0
  3. package/dist/cjs/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.js +2 -0
  4. package/dist/cjs/lib/contractsIntegration/ChipsIntentsVerifierService/index.js +5 -0
  5. package/dist/cjs/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.js +2 -0
  6. package/dist/cjs/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.js +70 -0
  7. package/dist/cjs/lib/contractsIntegration/LiquidityIntentsVerifierService/index.js +5 -0
  8. package/dist/cjs/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.js +2 -0
  9. package/dist/cjs/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.js +99 -0
  10. package/dist/cjs/lib/contractsIntegration/TradeIntentsVerifierService/index.js +5 -0
  11. package/dist/cjs/lib/contractsIntegration/deployedContractsConnector.js +45 -0
  12. package/dist/cjs/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.js +2 -0
  13. package/dist/cjs/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.js +2 -0
  14. package/dist/cjs/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.js +2 -0
  15. package/dist/cjs/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.js +1129 -0
  16. package/dist/cjs/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.js +870 -0
  17. package/dist/cjs/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.js +1561 -0
  18. package/dist/cjs/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.js +1 -1
  19. package/dist/cjs/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.js +1 -1
  20. package/dist/cjs/lib/typechain/lynxSystem/intentsVerifiers/chipsIntentsVerifier/chipsIntentsVerifierPayloadTypes.js +37 -0
  21. package/dist/cjs/lib/typechain/lynxSystem/intentsVerifiers/liquidityIntentsVerifier/liquidityIntentsVerifierPayloadTypes.js +39 -0
  22. package/dist/cjs/lib/typechain/lynxSystem/intentsVerifiers/tradeIntentsVerifier/tradeIntentsVerifierPayloadTypes.js +152 -0
  23. package/dist/esm/index.d.ts +23 -0
  24. package/dist/esm/index.d.ts.map +1 -1
  25. package/dist/esm/index.js +19 -0
  26. package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.d.ts +29 -0
  27. package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.d.ts.map +1 -0
  28. package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.js +91 -0
  29. package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.d.ts +24 -0
  30. package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.d.ts.map +1 -0
  31. package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.js +2 -0
  32. package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/index.d.ts +4 -0
  33. package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/index.d.ts.map +1 -0
  34. package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/index.js +5 -0
  35. package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.d.ts +17 -0
  36. package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.d.ts.map +1 -0
  37. package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.js +2 -0
  38. package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.d.ts +22 -0
  39. package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.d.ts.map +1 -0
  40. package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.js +70 -0
  41. package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/index.d.ts +4 -0
  42. package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/index.d.ts.map +1 -0
  43. package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/index.js +5 -0
  44. package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.d.ts +24 -0
  45. package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.d.ts.map +1 -0
  46. package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.js +2 -0
  47. package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.d.ts +29 -0
  48. package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.d.ts.map +1 -0
  49. package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.js +99 -0
  50. package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/index.d.ts +4 -0
  51. package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/index.d.ts.map +1 -0
  52. package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/index.js +5 -0
  53. package/dist/esm/lib/contractsIntegration/deployedContractsConnector.d.ts +15 -0
  54. package/dist/esm/lib/contractsIntegration/deployedContractsConnector.d.ts.map +1 -1
  55. package/dist/esm/lib/contractsIntegration/deployedContractsConnector.js +45 -0
  56. package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.d.ts +643 -0
  57. package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.d.ts.map +1 -0
  58. package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.js +2 -0
  59. package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.d.ts +508 -0
  60. package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.d.ts.map +1 -0
  61. package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.js +2 -0
  62. package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.d.ts +832 -0
  63. package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.d.ts.map +1 -0
  64. package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.js +2 -0
  65. package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.d.ts +866 -0
  66. package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.d.ts.map +1 -0
  67. package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.js +1129 -0
  68. package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.d.ts +670 -0
  69. package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.d.ts.map +1 -0
  70. package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.js +870 -0
  71. package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.d.ts +1201 -0
  72. package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.d.ts.map +1 -0
  73. package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.js +1561 -0
  74. package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts +1 -1
  75. package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts.map +1 -1
  76. package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.js +1 -1
  77. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts +1 -1
  78. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.js +1 -1
  79. package/dist/esm/lib/typechain/lynxSystem/intentsVerifiers/chipsIntentsVerifier/chipsIntentsVerifierPayloadTypes.d.ts +9 -0
  80. package/dist/esm/lib/typechain/lynxSystem/intentsVerifiers/chipsIntentsVerifier/chipsIntentsVerifierPayloadTypes.d.ts.map +1 -0
  81. package/dist/esm/lib/typechain/lynxSystem/intentsVerifiers/chipsIntentsVerifier/chipsIntentsVerifierPayloadTypes.js +37 -0
  82. package/dist/esm/lib/typechain/lynxSystem/intentsVerifiers/liquidityIntentsVerifier/liquidityIntentsVerifierPayloadTypes.d.ts +9 -0
  83. package/dist/esm/lib/typechain/lynxSystem/intentsVerifiers/liquidityIntentsVerifier/liquidityIntentsVerifierPayloadTypes.d.ts.map +1 -0
  84. package/dist/esm/lib/typechain/lynxSystem/intentsVerifiers/liquidityIntentsVerifier/liquidityIntentsVerifierPayloadTypes.js +39 -0
  85. package/dist/esm/lib/typechain/lynxSystem/intentsVerifiers/tradeIntentsVerifier/tradeIntentsVerifierPayloadTypes.d.ts +13 -0
  86. package/dist/esm/lib/typechain/lynxSystem/intentsVerifiers/tradeIntentsVerifier/tradeIntentsVerifierPayloadTypes.d.ts.map +1 -0
  87. package/dist/esm/lib/typechain/lynxSystem/intentsVerifiers/tradeIntentsVerifier/tradeIntentsVerifierPayloadTypes.js +152 -0
  88. package/dist/types/index.d.ts +23 -0
  89. package/dist/types/index.d.ts.map +1 -1
  90. package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.d.ts +29 -0
  91. package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.d.ts.map +1 -0
  92. package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.d.ts +24 -0
  93. package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.d.ts.map +1 -0
  94. package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/index.d.ts +4 -0
  95. package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/index.d.ts.map +1 -0
  96. package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.d.ts +17 -0
  97. package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.d.ts.map +1 -0
  98. package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.d.ts +22 -0
  99. package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.d.ts.map +1 -0
  100. package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/index.d.ts +4 -0
  101. package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/index.d.ts.map +1 -0
  102. package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.d.ts +24 -0
  103. package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.d.ts.map +1 -0
  104. package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.d.ts +29 -0
  105. package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.d.ts.map +1 -0
  106. package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/index.d.ts +4 -0
  107. package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/index.d.ts.map +1 -0
  108. package/dist/types/lib/contractsIntegration/deployedContractsConnector.d.ts +15 -0
  109. package/dist/types/lib/contractsIntegration/deployedContractsConnector.d.ts.map +1 -1
  110. package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.d.ts +643 -0
  111. package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.d.ts.map +1 -0
  112. package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.d.ts +508 -0
  113. package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.d.ts.map +1 -0
  114. package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.d.ts +832 -0
  115. package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.d.ts.map +1 -0
  116. package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.d.ts +866 -0
  117. package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.d.ts.map +1 -0
  118. package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.d.ts +670 -0
  119. package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.d.ts.map +1 -0
  120. package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.d.ts +1201 -0
  121. package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.d.ts.map +1 -0
  122. package/dist/types/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts +1 -1
  123. package/dist/types/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts.map +1 -1
  124. package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts +1 -1
  125. package/dist/types/lib/typechain/lynxSystem/intentsVerifiers/chipsIntentsVerifier/chipsIntentsVerifierPayloadTypes.d.ts +9 -0
  126. package/dist/types/lib/typechain/lynxSystem/intentsVerifiers/chipsIntentsVerifier/chipsIntentsVerifierPayloadTypes.d.ts.map +1 -0
  127. package/dist/types/lib/typechain/lynxSystem/intentsVerifiers/liquidityIntentsVerifier/liquidityIntentsVerifierPayloadTypes.d.ts +9 -0
  128. package/dist/types/lib/typechain/lynxSystem/intentsVerifiers/liquidityIntentsVerifier/liquidityIntentsVerifierPayloadTypes.d.ts.map +1 -0
  129. package/dist/types/lib/typechain/lynxSystem/intentsVerifiers/tradeIntentsVerifier/tradeIntentsVerifierPayloadTypes.d.ts +13 -0
  130. package/dist/types/lib/typechain/lynxSystem/intentsVerifiers/tradeIntentsVerifier/tradeIntentsVerifierPayloadTypes.d.ts.map +1 -0
  131. package/package.json +1 -1
@@ -0,0 +1,870 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LiquidityIntentsVerifierV1__factory = void 0;
4
+ /* Autogenerated file. Do not edit manually. */
5
+ /* tslint:disable */
6
+ /* eslint-disable */
7
+ const ethers_1 = require("ethers");
8
+ const _abi = [
9
+ {
10
+ inputs: [
11
+ {
12
+ internalType: "contract IRegistryV1",
13
+ name: "_registry",
14
+ type: "address",
15
+ },
16
+ ],
17
+ stateMutability: "nonpayable",
18
+ type: "constructor",
19
+ },
20
+ {
21
+ anonymous: false,
22
+ inputs: [
23
+ {
24
+ indexed: true,
25
+ internalType: "uint256",
26
+ name: "chainId",
27
+ type: "uint256",
28
+ },
29
+ {
30
+ indexed: false,
31
+ internalType: "bytes32",
32
+ name: "domainSeparator",
33
+ type: "bytes32",
34
+ },
35
+ ],
36
+ name: "DomainSeparatorForChainStored",
37
+ type: "event",
38
+ },
39
+ {
40
+ anonymous: false,
41
+ inputs: [
42
+ {
43
+ indexed: true,
44
+ internalType: "address",
45
+ name: "pool",
46
+ type: "address",
47
+ },
48
+ {
49
+ indexed: true,
50
+ internalType: "address",
51
+ name: "liquidityProvider",
52
+ type: "address",
53
+ },
54
+ {
55
+ indexed: true,
56
+ internalType: "address",
57
+ name: "permissionedAccount",
58
+ type: "address",
59
+ },
60
+ {
61
+ indexed: false,
62
+ internalType: "enum LiquidityIntentsVerifierV1.LiquidityIntentsVerifierActions",
63
+ name: "action",
64
+ type: "uint8",
65
+ },
66
+ ],
67
+ name: "InteractedOnBehalf",
68
+ type: "event",
69
+ },
70
+ {
71
+ anonymous: false,
72
+ inputs: [
73
+ {
74
+ indexed: true,
75
+ internalType: "address",
76
+ name: "sender",
77
+ type: "address",
78
+ },
79
+ {
80
+ indexed: true,
81
+ internalType: "address",
82
+ name: "pool",
83
+ type: "address",
84
+ },
85
+ {
86
+ indexed: true,
87
+ internalType: "address",
88
+ name: "liquidityProvider",
89
+ type: "address",
90
+ },
91
+ {
92
+ indexed: false,
93
+ internalType: "enum LiquidityIntentsVerifierV1.LiquidityIntentsVerifierActions",
94
+ name: "action",
95
+ type: "uint8",
96
+ },
97
+ {
98
+ indexed: false,
99
+ internalType: "uint256",
100
+ name: "nonce",
101
+ type: "uint256",
102
+ },
103
+ ],
104
+ name: "LiquidityIntentVerified",
105
+ type: "event",
106
+ },
107
+ {
108
+ anonymous: false,
109
+ inputs: [
110
+ {
111
+ indexed: true,
112
+ internalType: "address",
113
+ name: "sender",
114
+ type: "address",
115
+ },
116
+ {
117
+ indexed: true,
118
+ internalType: "address",
119
+ name: "pool",
120
+ type: "address",
121
+ },
122
+ {
123
+ indexed: true,
124
+ internalType: "address",
125
+ name: "liquidityProvider",
126
+ type: "address",
127
+ },
128
+ {
129
+ indexed: false,
130
+ internalType: "enum LiquidityIntentsVerifierV1.LiquidityIntentsVerifierActions",
131
+ name: "action",
132
+ type: "uint8",
133
+ },
134
+ {
135
+ indexed: false,
136
+ internalType: "uint256",
137
+ name: "timestamp",
138
+ type: "uint256",
139
+ },
140
+ ],
141
+ name: "LiquidityIntentVerifiedV2",
142
+ type: "event",
143
+ },
144
+ {
145
+ anonymous: false,
146
+ inputs: [
147
+ {
148
+ indexed: false,
149
+ internalType: "address",
150
+ name: "oldAdmin",
151
+ type: "address",
152
+ },
153
+ {
154
+ indexed: false,
155
+ internalType: "address",
156
+ name: "newAdmin",
157
+ type: "address",
158
+ },
159
+ ],
160
+ name: "NewAdmin",
161
+ type: "event",
162
+ },
163
+ {
164
+ anonymous: false,
165
+ inputs: [
166
+ {
167
+ indexed: false,
168
+ internalType: "address",
169
+ name: "oldPendingAdmin",
170
+ type: "address",
171
+ },
172
+ {
173
+ indexed: false,
174
+ internalType: "address",
175
+ name: "newPendingAdmin",
176
+ type: "address",
177
+ },
178
+ ],
179
+ name: "NewPendingAdmin",
180
+ type: "event",
181
+ },
182
+ {
183
+ anonymous: false,
184
+ inputs: [
185
+ {
186
+ indexed: true,
187
+ internalType: "address",
188
+ name: "asset",
189
+ type: "address",
190
+ },
191
+ {
192
+ indexed: true,
193
+ internalType: "uint256",
194
+ name: "chainId",
195
+ type: "uint256",
196
+ },
197
+ ],
198
+ name: "SourceChainIdForAssetStored",
199
+ type: "event",
200
+ },
201
+ {
202
+ inputs: [],
203
+ name: "CONTRACT_DOMAIN_NAME",
204
+ outputs: [
205
+ {
206
+ internalType: "string",
207
+ name: "",
208
+ type: "string",
209
+ },
210
+ ],
211
+ stateMutability: "view",
212
+ type: "function",
213
+ },
214
+ {
215
+ inputs: [],
216
+ name: "CONTRACT_DOMAIN_VERSION",
217
+ outputs: [
218
+ {
219
+ internalType: "string",
220
+ name: "",
221
+ type: "string",
222
+ },
223
+ ],
224
+ stateMutability: "view",
225
+ type: "function",
226
+ },
227
+ {
228
+ inputs: [],
229
+ name: "DYN_ROLE_INTENTS_PERMISSIONS_PREFIX",
230
+ outputs: [
231
+ {
232
+ internalType: "string",
233
+ name: "",
234
+ type: "string",
235
+ },
236
+ ],
237
+ stateMutability: "view",
238
+ type: "function",
239
+ },
240
+ {
241
+ inputs: [],
242
+ name: "EIP712DOMAIN_TYPEHASH",
243
+ outputs: [
244
+ {
245
+ internalType: "bytes32",
246
+ name: "",
247
+ type: "bytes32",
248
+ },
249
+ ],
250
+ stateMutability: "view",
251
+ type: "function",
252
+ },
253
+ {
254
+ inputs: [],
255
+ name: "REQUEST_PAYLOAD_EPOCH_DEPOSIT_TYPE_DESCRIPTOR",
256
+ outputs: [
257
+ {
258
+ internalType: "string",
259
+ name: "",
260
+ type: "string",
261
+ },
262
+ ],
263
+ stateMutability: "view",
264
+ type: "function",
265
+ },
266
+ {
267
+ inputs: [],
268
+ name: "REQUEST_PAYLOAD_EPOCH_REDEEM_TYPE_DESCRIPTOR",
269
+ outputs: [
270
+ {
271
+ internalType: "string",
272
+ name: "",
273
+ type: "string",
274
+ },
275
+ ],
276
+ stateMutability: "view",
277
+ type: "function",
278
+ },
279
+ {
280
+ inputs: [],
281
+ name: "_acceptAdmin",
282
+ outputs: [],
283
+ stateMutability: "nonpayable",
284
+ type: "function",
285
+ },
286
+ {
287
+ inputs: [],
288
+ name: "_msgSender",
289
+ outputs: [
290
+ {
291
+ internalType: "address",
292
+ name: "",
293
+ type: "address",
294
+ },
295
+ ],
296
+ stateMutability: "view",
297
+ type: "function",
298
+ },
299
+ {
300
+ inputs: [
301
+ {
302
+ internalType: "address",
303
+ name: "newPendingAdmin",
304
+ type: "address",
305
+ },
306
+ ],
307
+ name: "_setPendingAdmin",
308
+ outputs: [],
309
+ stateMutability: "nonpayable",
310
+ type: "function",
311
+ },
312
+ {
313
+ inputs: [],
314
+ name: "admin",
315
+ outputs: [
316
+ {
317
+ internalType: "address",
318
+ name: "",
319
+ type: "address",
320
+ },
321
+ ],
322
+ stateMutability: "view",
323
+ type: "function",
324
+ },
325
+ {
326
+ inputs: [
327
+ {
328
+ internalType: "address",
329
+ name: "asset",
330
+ type: "address",
331
+ },
332
+ ],
333
+ name: "domainSeparatorForAsset",
334
+ outputs: [
335
+ {
336
+ internalType: "bytes32",
337
+ name: "",
338
+ type: "bytes32",
339
+ },
340
+ ],
341
+ stateMutability: "view",
342
+ type: "function",
343
+ },
344
+ {
345
+ inputs: [
346
+ {
347
+ internalType: "uint256",
348
+ name: "",
349
+ type: "uint256",
350
+ },
351
+ ],
352
+ name: "domainSeparatorForChain",
353
+ outputs: [
354
+ {
355
+ internalType: "bytes32",
356
+ name: "",
357
+ type: "bytes32",
358
+ },
359
+ ],
360
+ stateMutability: "view",
361
+ type: "function",
362
+ },
363
+ {
364
+ inputs: [
365
+ {
366
+ internalType: "contract OFTChip",
367
+ name: "",
368
+ type: "address",
369
+ },
370
+ ],
371
+ name: "intentsPermissions",
372
+ outputs: [
373
+ {
374
+ internalType: "string",
375
+ name: "",
376
+ type: "string",
377
+ },
378
+ ],
379
+ stateMutability: "view",
380
+ type: "function",
381
+ },
382
+ {
383
+ inputs: [
384
+ {
385
+ internalType: "address",
386
+ name: "pool",
387
+ type: "address",
388
+ },
389
+ {
390
+ internalType: "address",
391
+ name: "liquidityProvider",
392
+ type: "address",
393
+ },
394
+ {
395
+ internalType: "uint256",
396
+ name: "amount",
397
+ type: "uint256",
398
+ },
399
+ {
400
+ internalType: "uint256",
401
+ name: "minAmountOut",
402
+ type: "uint256",
403
+ },
404
+ {
405
+ internalType: "bytes32",
406
+ name: "domain",
407
+ type: "bytes32",
408
+ },
409
+ {
410
+ internalType: "bytes32",
411
+ name: "referralCode",
412
+ type: "bytes32",
413
+ },
414
+ ],
415
+ name: "interactOnBehalf_epochDeposit",
416
+ outputs: [],
417
+ stateMutability: "payable",
418
+ type: "function",
419
+ },
420
+ {
421
+ inputs: [
422
+ {
423
+ internalType: "address",
424
+ name: "pool",
425
+ type: "address",
426
+ },
427
+ {
428
+ internalType: "address",
429
+ name: "liquidityProvider",
430
+ type: "address",
431
+ },
432
+ {
433
+ internalType: "uint256",
434
+ name: "amount",
435
+ type: "uint256",
436
+ },
437
+ {
438
+ internalType: "uint256",
439
+ name: "minAmountOut",
440
+ type: "uint256",
441
+ },
442
+ ],
443
+ name: "interactOnBehalf_epochRedeem",
444
+ outputs: [],
445
+ stateMutability: "payable",
446
+ type: "function",
447
+ },
448
+ {
449
+ inputs: [],
450
+ name: "pendingAdmin",
451
+ outputs: [
452
+ {
453
+ internalType: "address",
454
+ name: "",
455
+ type: "address",
456
+ },
457
+ ],
458
+ stateMutability: "view",
459
+ type: "function",
460
+ },
461
+ {
462
+ inputs: [
463
+ {
464
+ internalType: "bytes32",
465
+ name: "",
466
+ type: "bytes32",
467
+ },
468
+ ],
469
+ name: "processedSignatures",
470
+ outputs: [
471
+ {
472
+ internalType: "bool",
473
+ name: "",
474
+ type: "bool",
475
+ },
476
+ ],
477
+ stateMutability: "view",
478
+ type: "function",
479
+ },
480
+ {
481
+ inputs: [
482
+ {
483
+ components: [
484
+ {
485
+ internalType: "uint256",
486
+ name: "timestamp",
487
+ type: "uint256",
488
+ },
489
+ {
490
+ internalType: "uint256",
491
+ name: "validUntil",
492
+ type: "uint256",
493
+ },
494
+ {
495
+ internalType: "address",
496
+ name: "pool",
497
+ type: "address",
498
+ },
499
+ {
500
+ internalType: "address",
501
+ name: "liquidityProvider",
502
+ type: "address",
503
+ },
504
+ {
505
+ internalType: "uint256",
506
+ name: "epoch",
507
+ type: "uint256",
508
+ },
509
+ {
510
+ internalType: "uint256",
511
+ name: "amount",
512
+ type: "uint256",
513
+ },
514
+ {
515
+ internalType: "uint256",
516
+ name: "minAmountOut",
517
+ type: "uint256",
518
+ },
519
+ ],
520
+ internalType: "struct LiquidityIntentsVerifierV1.LiquidityProviderRequestPayload_EpochDeposit",
521
+ name: "payload",
522
+ type: "tuple",
523
+ },
524
+ {
525
+ internalType: "uint8",
526
+ name: "v",
527
+ type: "uint8",
528
+ },
529
+ {
530
+ internalType: "bytes32",
531
+ name: "r",
532
+ type: "bytes32",
533
+ },
534
+ {
535
+ internalType: "bytes32",
536
+ name: "s",
537
+ type: "bytes32",
538
+ },
539
+ {
540
+ internalType: "bytes32",
541
+ name: "domainSeparator",
542
+ type: "bytes32",
543
+ },
544
+ ],
545
+ name: "recoverEpochDepositPayloadSigner",
546
+ outputs: [
547
+ {
548
+ internalType: "address",
549
+ name: "",
550
+ type: "address",
551
+ },
552
+ ],
553
+ stateMutability: "pure",
554
+ type: "function",
555
+ },
556
+ {
557
+ inputs: [
558
+ {
559
+ components: [
560
+ {
561
+ internalType: "uint256",
562
+ name: "timestamp",
563
+ type: "uint256",
564
+ },
565
+ {
566
+ internalType: "uint256",
567
+ name: "validUntil",
568
+ type: "uint256",
569
+ },
570
+ {
571
+ internalType: "address",
572
+ name: "pool",
573
+ type: "address",
574
+ },
575
+ {
576
+ internalType: "address",
577
+ name: "liquidityProvider",
578
+ type: "address",
579
+ },
580
+ {
581
+ internalType: "uint256",
582
+ name: "epoch",
583
+ type: "uint256",
584
+ },
585
+ {
586
+ internalType: "uint256",
587
+ name: "amount",
588
+ type: "uint256",
589
+ },
590
+ {
591
+ internalType: "uint256",
592
+ name: "minAmountOut",
593
+ type: "uint256",
594
+ },
595
+ ],
596
+ internalType: "struct LiquidityIntentsVerifierV1.LiquidityProviderRequestPayload_EpochRedeem",
597
+ name: "payload",
598
+ type: "tuple",
599
+ },
600
+ {
601
+ internalType: "uint8",
602
+ name: "v",
603
+ type: "uint8",
604
+ },
605
+ {
606
+ internalType: "bytes32",
607
+ name: "r",
608
+ type: "bytes32",
609
+ },
610
+ {
611
+ internalType: "bytes32",
612
+ name: "s",
613
+ type: "bytes32",
614
+ },
615
+ {
616
+ internalType: "bytes32",
617
+ name: "domainSeparator",
618
+ type: "bytes32",
619
+ },
620
+ ],
621
+ name: "recoverEpochRedeemPayloadSigner",
622
+ outputs: [
623
+ {
624
+ internalType: "address",
625
+ name: "",
626
+ type: "address",
627
+ },
628
+ ],
629
+ stateMutability: "pure",
630
+ type: "function",
631
+ },
632
+ {
633
+ inputs: [],
634
+ name: "registry",
635
+ outputs: [
636
+ {
637
+ internalType: "contract IRegistryV1",
638
+ name: "",
639
+ type: "address",
640
+ },
641
+ ],
642
+ stateMutability: "view",
643
+ type: "function",
644
+ },
645
+ {
646
+ inputs: [
647
+ {
648
+ internalType: "contract OFTChip",
649
+ name: "oftChip",
650
+ type: "address",
651
+ },
652
+ {
653
+ internalType: "string",
654
+ name: "dynAddressSuffix",
655
+ type: "string",
656
+ },
657
+ ],
658
+ name: "setIntentsPermissions",
659
+ outputs: [],
660
+ stateMutability: "nonpayable",
661
+ type: "function",
662
+ },
663
+ {
664
+ inputs: [
665
+ {
666
+ internalType: "address",
667
+ name: "",
668
+ type: "address",
669
+ },
670
+ ],
671
+ name: "sourceChainIdForAsset",
672
+ outputs: [
673
+ {
674
+ internalType: "uint256",
675
+ name: "",
676
+ type: "uint256",
677
+ },
678
+ ],
679
+ stateMutability: "view",
680
+ type: "function",
681
+ },
682
+ {
683
+ inputs: [
684
+ {
685
+ internalType: "address",
686
+ name: "asset",
687
+ type: "address",
688
+ },
689
+ {
690
+ internalType: "uint256",
691
+ name: "chainId",
692
+ type: "uint256",
693
+ },
694
+ ],
695
+ name: "storeSourceChainForAsset",
696
+ outputs: [],
697
+ stateMutability: "nonpayable",
698
+ type: "function",
699
+ },
700
+ {
701
+ inputs: [
702
+ {
703
+ components: [
704
+ {
705
+ internalType: "uint256",
706
+ name: "timestamp",
707
+ type: "uint256",
708
+ },
709
+ {
710
+ internalType: "uint256",
711
+ name: "validUntil",
712
+ type: "uint256",
713
+ },
714
+ {
715
+ internalType: "address",
716
+ name: "pool",
717
+ type: "address",
718
+ },
719
+ {
720
+ internalType: "address",
721
+ name: "liquidityProvider",
722
+ type: "address",
723
+ },
724
+ {
725
+ internalType: "uint256",
726
+ name: "epoch",
727
+ type: "uint256",
728
+ },
729
+ {
730
+ internalType: "uint256",
731
+ name: "amount",
732
+ type: "uint256",
733
+ },
734
+ {
735
+ internalType: "uint256",
736
+ name: "minAmountOut",
737
+ type: "uint256",
738
+ },
739
+ ],
740
+ internalType: "struct LiquidityIntentsVerifierV1.LiquidityProviderRequestPayload_EpochDeposit",
741
+ name: "payload",
742
+ type: "tuple",
743
+ },
744
+ {
745
+ internalType: "uint8",
746
+ name: "v",
747
+ type: "uint8",
748
+ },
749
+ {
750
+ internalType: "bytes32",
751
+ name: "r",
752
+ type: "bytes32",
753
+ },
754
+ {
755
+ internalType: "bytes32",
756
+ name: "s",
757
+ type: "bytes32",
758
+ },
759
+ {
760
+ internalType: "bytes32",
761
+ name: "domain",
762
+ type: "bytes32",
763
+ },
764
+ {
765
+ internalType: "bytes32",
766
+ name: "referralCode",
767
+ type: "bytes32",
768
+ },
769
+ ],
770
+ name: "verifyIntent_epochDeposit",
771
+ outputs: [],
772
+ stateMutability: "payable",
773
+ type: "function",
774
+ },
775
+ {
776
+ inputs: [
777
+ {
778
+ components: [
779
+ {
780
+ internalType: "uint256",
781
+ name: "timestamp",
782
+ type: "uint256",
783
+ },
784
+ {
785
+ internalType: "uint256",
786
+ name: "validUntil",
787
+ type: "uint256",
788
+ },
789
+ {
790
+ internalType: "address",
791
+ name: "pool",
792
+ type: "address",
793
+ },
794
+ {
795
+ internalType: "address",
796
+ name: "liquidityProvider",
797
+ type: "address",
798
+ },
799
+ {
800
+ internalType: "uint256",
801
+ name: "epoch",
802
+ type: "uint256",
803
+ },
804
+ {
805
+ internalType: "uint256",
806
+ name: "amount",
807
+ type: "uint256",
808
+ },
809
+ {
810
+ internalType: "uint256",
811
+ name: "minAmountOut",
812
+ type: "uint256",
813
+ },
814
+ ],
815
+ internalType: "struct LiquidityIntentsVerifierV1.LiquidityProviderRequestPayload_EpochRedeem",
816
+ name: "payload",
817
+ type: "tuple",
818
+ },
819
+ {
820
+ internalType: "uint8",
821
+ name: "v",
822
+ type: "uint8",
823
+ },
824
+ {
825
+ internalType: "bytes32",
826
+ name: "r",
827
+ type: "bytes32",
828
+ },
829
+ {
830
+ internalType: "bytes32",
831
+ name: "s",
832
+ type: "bytes32",
833
+ },
834
+ ],
835
+ name: "verifyIntent_epochRedeem",
836
+ outputs: [],
837
+ stateMutability: "payable",
838
+ type: "function",
839
+ },
840
+ ];
841
+ const _bytecode = "0x60a06040523480156200001157600080fd5b506040516200242638038062002426833981016040819052620000349162000115565b604080518082018252601a81527f4c697175696469747920496e74656e7473205665726966696572000000000000602080830191909152825180840190935260018352603160f81b90830152600080546001600160a01b031916331790559081816002620000a38382620001ee565b506003620000b28282620001ee565b5050506001600160a01b03831691506200010390505760405162461bcd60e51b815260206004820152600c60248201526b57524f4e475f504152414d5360a01b604482015260640160405180910390fd5b6001600160a01b0316608052620002ba565b6000602082840312156200012857600080fd5b81516001600160a01b03811681146200014057600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200017257607f821691505b6020821081036200019357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001e9576000816000526020600020601f850160051c81016020861015620001c45750805b601f850160051c820191505b81811015620001e557828155600101620001d0565b5050505b505050565b81516001600160401b038111156200020a576200020a62000147565b62000222816200021b84546200015d565b8462000199565b602080601f8311600181146200025a5760008415620002415750858301515b600019600386901b1c1916600185901b178555620001e5565b600085815260208120601f198616915b828110156200028b578886015182559484019460019091019084016200026a565b5085821015620002aa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b608051612149620002dd60003960008181610377015261130001526121496000f3fe6080604052600436106101665760003560e01c8063751b4f59116100d1578063b71d1a0c1161008a578063cd7d065811610064578063cd7d06581461045d578063e9c714f21461047d578063f773abcd14610492578063f851a440146104d257600080fd5b8063b71d1a0c146103f6578063c3a8f12014610416578063c49f91d31461042957600080fd5b8063751b4f59146103455780637b103999146103655780638714f383146103995780639652a4bd146103ae5780639d443327146103c3578063b6068b30146103e357600080fd5b806312d99fd11161012357806312d99fd114610262578063133692d81461028257806316e27a7c1461029557806326782247146102d857806358659d6e146102f85780636fccbffc1461031857600080fd5b80630518007f1461016b57806306b042b3146101965780630da7fba9146101ab5780630f2a3d47146101c0578063108c66e3146101fb578063119df25f1461023b575b600080fd5b34801561017757600080fd5b506101806104f2565b60405161018d9190611965565b60405180910390f35b6101a96101a43660046119c0565b61050e565b005b3480156101b757600080fd5b506101806106a6565b3480156101cc57600080fd5b506101ed6101db366004611a06565b60066020526000908152604090205481565b60405190815260200161018d565b34801561020757600080fd5b5061018060405180604001604052806014815260200173494e54454e54535f5045524d495353494f4e535f60601b81525081565b34801561024757600080fd5b50335b6040516001600160a01b03909116815260200161018d565b34801561026e57600080fd5b506101a961027d366004611a23565b610734565b6101a9610290366004611a72565b610789565b3480156102a157600080fd5b506101ed6102b0366004611a06565b6001600160a01b03166000908152600660209081526040808320548352600490915290205490565b3480156102e457600080fd5b5060015461024a906001600160a01b031681565b34801561030457600080fd5b506101a9610313366004611ab8565b610a43565b34801561032457600080fd5b506101ed610333366004611b3d565b60046020526000908152604090205481565b34801561035157600080fd5b5061024a610360366004611b56565b610ab3565b34801561037157600080fd5b5061024a7f000000000000000000000000000000000000000000000000000000000000000081565b3480156103a557600080fd5b50610180610bb9565b3480156103ba57600080fd5b50610180610bd5565b3480156103cf57600080fd5b506101806103de366004611a06565b610be2565b6101a96103f1366004611ba8565b610bfb565b34801561040257600080fd5b506101a9610411366004611a06565b610ebf565b6101a9610424366004611c03565b610f67565b34801561043557600080fd5b506101ed7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f81565b34801561046957600080fd5b5061024a610478366004611b56565b61110a565b34801561048957600080fd5b506101a9611125565b34801561049e57600080fd5b506104c26104ad366004611b3d565b60076020526000908152604090205460ff1681565b604051901515815260200161018d565b3480156104de57600080fd5b5060005461024a906001600160a01b031681565b6040518060e0016040528060ab8152602001611fbf60ab913981565b600033905061057f856001600160a01b0316636f307dc36040518163ffffffff1660e01b8152600401602060405180830381865afa158015610554573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105789190611c5c565b8583611243565b6105c05760405162461bcd60e51b815260206004820152600d60248201526c2727afa822a926a4a9a9a4a7a760991b60448201526064015b60405180910390fd5b600083116105e05760405162461bcd60e51b81526004016105b790611c79565b604051639980a5f360e01b81526001600160a01b0385811660048301526024820185905260448201849052861690639980a5f390606401600060405180830381600087803b15801561063157600080fd5b505af1158015610645573d6000803e3d6000fd5b50505050806001600160a01b0316846001600160a01b0316866001600160a01b03167f240672ee6e1a111e985d4a1efb7f4bd13043ce9249564d6dcc96710162bd6e4d60026040516106979190611cc8565b60405180910390a45050505050565b600280546106b390611cd6565b80601f01602080910402602001604051908101604052809291908181526020018280546106df90611cd6565b801561072c5780601f106107015761010080835404028352916020019161072c565b820191906000526020600020905b81548152906001019060200180831161070f57829003601f168201915b505050505081565b6000546001600160a01b0316331461077b5760405162461bcd60e51b815260206004820152600a60248201526927a7262cafa0a226a4a760b11b60448201526064016105b7565b6107858282611471565b5050565b600061079e6102b06060870160408801611a06565b905060006107af8686868686610ab3565b90506107c16080870160608801611a06565b6001600160a01b0316816001600160a01b0316148061086557506108656107ee6060880160408901611a06565b6001600160a01b0316636f307dc36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561082b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084f9190611c5c565b61085f6080890160608a01611a06565b83611243565b6108b15760405162461bcd60e51b815260206004820181905260248201527f4e4f545f5349474e45445f42595f4c49515549444954595f50524f564944455260448201526064016105b7565b60008660a00135116108d55760405162461bcd60e51b81526004016105b790611c79565b856020013542111561091a5760405162461bcd60e51b815260206004820152600e60248201526d12539511539517d156141254915160921b60448201526064016105b7565b610925858585611576565b6109356060870160408801611a06565b6001600160a01b0316639980a5f36109536080890160608a01611a06565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260a0890135602482015260c08901356044820152606401600060405180830381600087803b1580156109a857600080fd5b505af11580156109bc573d6000803e3d6000fd5b506109d1925050506080870160608801611a06565b6001600160a01b03166109ea6060880160408901611a06565b6001600160a01b0316336001600160a01b03167f574296f668708bb2ffd728f1b8b988c4b2d2c3002f933ef77d5d82422984030460028a60000135604051610a33929190611d0a565b60405180910390a4505050505050565b6000546001600160a01b03163314610a8a5760405162461bcd60e51b815260206004820152600a60248201526927a7262cafa0a226a4a760b11b60448201526064016105b7565b6001600160a01b0383166000908152600560205260409020610aad828483611d8c565b50505050565b60008082610ace610ac9368a90038a018a611edf565b611637565b60405161190160f01b60208201526022810192909252604282015260620160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa158015610b57573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610bae5760405162461bcd60e51b8152602060048201526011602482015270494e56414c49445f5349474e415455524560781b60448201526064016105b7565b979650505050505050565b6040518060e0016040528060aa815260200161206a60aa913981565b600380546106b390611cd6565b600560205260009081526040902080546106b390611cd6565b6000610c106102b06060890160408a01611a06565b90506000610c21888888888661110a565b9050610c336080890160608a01611a06565b6001600160a01b0316816001600160a01b03161480610cd15750610cd1610c6060608a0160408b01611a06565b6001600160a01b0316636f307dc36040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc19190611c5c565b61085f60808b0160608c01611a06565b610d1d5760405162461bcd60e51b815260206004820181905260248201527f4e4f545f5349474e45445f42595f4c49515549444954595f50524f564944455260448201526064016105b7565b60008860a0013511610d415760405162461bcd60e51b81526004016105b790611c79565b8760200135421115610d865760405162461bcd60e51b815260206004820152600e60248201526d12539511539517d156141254915160921b60448201526064016105b7565b610d91878787611576565b610da16060890160408a01611a06565b6001600160a01b031663f2fc6e66610dbf60808b0160608c01611a06565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260a08b0135602482015260c08b01356044820152606481018790526084810186905260a401600060405180830381600087803b158015610e2257600080fd5b505af1158015610e36573d6000803e3d6000fd5b50610e4b925050506080890160608a01611a06565b6001600160a01b0316610e6460608a0160408b01611a06565b6001600160a01b0316336001600160a01b03167f574296f668708bb2ffd728f1b8b988c4b2d2c3002f933ef77d5d82422984030460018c60000135604051610ead929190611d0a565b60405180910390a45050505050505050565b6000546001600160a01b03163314610f055760405162461bcd60e51b81526020600482015260096024820152682737ba1020b236b4b760b91b60448201526064016105b7565b600180546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a991015b60405180910390a15050565b6000339050610fd8876001600160a01b0316636f307dc36040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd19190611c5c565b8783611243565b6110145760405162461bcd60e51b815260206004820152600d60248201526c2727afa822a926a4a9a9a4a7a760991b60448201526064016105b7565b600085116110345760405162461bcd60e51b81526004016105b790611c79565b60405163797e373360e11b81526001600160a01b0387811660048301526024820187905260448201869052606482018590526084820184905288169063f2fc6e669060a401600060405180830381600087803b15801561109357600080fd5b505af11580156110a7573d6000803e3d6000fd5b50505050806001600160a01b0316866001600160a01b0316886001600160a01b03167f240672ee6e1a111e985d4a1efb7f4bd13043ce9249564d6dcc96710162bd6e4d60016040516110f99190611cc8565b60405180910390a450505050505050565b60008082610ace611120368a90038a018a611edf565b6116ab565b6001546001600160a01b03163314801561114957506001546001600160a01b031615155b6111955760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420746865204558495354494e472070656e64696e672061646d696e000060448201526064016105b7565b60008054600180546001600160a01b038082166001600160a01b031980861682179096559490911690915560408051919092168082526020820184905292917ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc910160405180910390a1600154604080516001600160a01b03808516825290921660208301527fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99101610f5b565b6001600160a01b0383166000908152600560205260408120805482919061126990611cd6565b80601f016020809104026020016040519081016040528092919081815260200182805461129590611cd6565b80156112e25780601f106112b7576101008083540402835291602001916112e2565b820191906000526020600020905b8154815290600101906020018083116112c557829003601f168201915b5050505050905080516000036112fc57600091505061146a565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166358ca59ce60405180604001604052806014815260200173494e54454e54535f5045524d495353494f4e535f60601b8152508460405160200161136c929190611efb565b6040516020818303038152906040526040518263ffffffff1660e01b81526004016113979190611965565b602060405180830381865afa1580156113b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113d89190611c5c565b90506001600160a01b0381166113f35760009250505061146a565b60405163b0cbc2e160e01b81526001600160a01b0382169063b0cbc2e1906114249060029089908990600401611f2a565b602060405180830381865afa158015611441573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114659190611f5c565b925050505b9392505050565b6001600160a01b038216600090815260066020526040902054156114e55760405162461bcd60e51b815260206004820152602560248201527f434841494e5f49445f464f525f41535345545f414c52454144595f434f4e464960448201526411d554915160da1b60648201526084016105b7565b806000036115255760405162461bcd60e51b815260206004820152600d60248201526c434841494e5f49445f5a45524f60981b60448201526064016105b7565b61152e81611702565b506001600160a01b038216600081815260066020526040808220849055518392917f8983e01eaf5771a114f1aa7f72a023a35642e048180682aa2fb04db0cbd220c291a35050565b6040516001600160f81b031960f885901b166020820152602181018390526041810182905260009060610160408051601f1981840301815291815281516020928301206000818152600790935291205490915060ff16156116195760405162461bcd60e51b815260206004820152601d60248201527f494e54454e54535f5349475f414c52454144595f50524f43455353454400000060448201526064016105b7565b6000908152600760205260409020805460ff19166001179055505050565b60006040518060e0016040528060aa815260200161206a60aa913980516020918201208351848301516040808701516060880151608089015160a08a015160c08b0151945161168e99949593949293919201611f7e565b604051602081830303815290604052805190602001209050919050565b60006040518060e0016040528060ab8152602001611fbf60ab913980516020918201208351848301516040808701516060880151608089015160a08a015160c08b0151945161168e99949593949293919201611f7e565b600081815260046020526040812054806118b557600061185e60405180608001604052806002805461173390611cd6565b80601f016020809104026020016040519081016040528092919081815260200182805461175f90611cd6565b80156117ac5780601f10611781576101008083540402835291602001916117ac565b820191906000526020600020905b81548152906001019060200180831161178f57829003601f168201915b50505050508152602001600380546117c390611cd6565b80601f01602080910402602001604051908101604052809291908181526020018280546117ef90611cd6565b801561183c5780601f106118115761010080835404028352916020019161183c565b820191906000526020600020905b81548152906001019060200180831161181f57829003601f168201915b50505050508152602001868152602001306001600160a01b03168152506118c1565b600085815260046020526040908190208290555190915084907f04df087044a5490c34ea0092af5dbdd1a3a35fefd63f0864c1d05dba3075f165906118a69084815260200190565b60405180910390a29392505050565b92915050565b50919050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8260000151805190602001208360200151805190602001208460400151856060015160405160200161168e9594939291909485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b60005b8381101561195c578181015183820152602001611944565b50506000910152565b6020815260008251806020840152611984816040850160208701611941565b601f01601f19169190910160400192915050565b6001600160a01b03811681146119ad57600080fd5b50565b80356119bb81611998565b919050565b600080600080608085870312156119d657600080fd5b84356119e181611998565b935060208501356119f181611998565b93969395505050506040820135916060013590565b600060208284031215611a1857600080fd5b813561146a81611998565b60008060408385031215611a3657600080fd5b8235611a4181611998565b946020939093013593505050565b600060e082840312156118bb57600080fd5b803560ff811681146119bb57600080fd5b6000806000806101408587031215611a8957600080fd5b611a938686611a4f565b9350611aa160e08601611a61565b939693955050505061010082013591610120013590565b600080600060408486031215611acd57600080fd5b8335611ad881611998565b9250602084013567ffffffffffffffff80821115611af557600080fd5b818601915086601f830112611b0957600080fd5b813581811115611b1857600080fd5b876020828501011115611b2a57600080fd5b6020830194508093505050509250925092565b600060208284031215611b4f57600080fd5b5035919050565b60008060008060006101608688031215611b6f57600080fd5b611b798787611a4f565b9450611b8760e08701611a61565b94979496505050506101008301359261012081013592610140909101359150565b6000806000806000806101808789031215611bc257600080fd5b611bcc8888611a4f565b9550611bda60e08801611a61565b959895975050505061010084013593610120810135936101408201359350610160909101359150565b60008060008060008060c08789031215611c1c57600080fd5b8635611c2781611998565b95506020870135611c3781611998565b95989597505050506040840135936060810135936080820135935060a0909101359150565b600060208284031215611c6e57600080fd5b815161146a81611998565b6020808252600b908201526a414d4f554e545f5a45524f60a81b604082015260600190565b634e487b7160e01b600052602160045260246000fd5b60038110611cc457611cc4611c9e565b9052565b602081016118b58284611cb4565b600181811c90821680611cea57607f821691505b6020821081036118bb57634e487b7160e01b600052602260045260246000fd5b60408101611d188285611cb4565b8260208301529392505050565b634e487b7160e01b600052604160045260246000fd5b601f821115611d87576000816000526020600020601f850160051c81016020861015611d645750805b601f850160051c820191505b81811015611d8357828155600101611d70565b5050505b505050565b67ffffffffffffffff831115611da457611da4611d25565b611db883611db28354611cd6565b83611d3b565b6000601f841160018114611dec5760008515611dd45750838201355b600019600387901b1c1916600186901b178355611e46565b600083815260209020601f19861690835b82811015611e1d5786850135825560209485019460019092019101611dfd565b5086821015611e3a5760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b600060e08284031215611e5f57600080fd5b60405160e0810181811067ffffffffffffffff82111715611e8257611e82611d25565b80604052508091508235815260208301356020820152611ea4604084016119b0565b6040820152611eb5606084016119b0565b60608201526080830135608082015260a083013560a082015260c083013560c08201525092915050565b600060e08284031215611ef157600080fd5b61146a8383611e4d565b60008351611f0d818460208801611941565b835190830190611f21818360208801611941565b01949350505050565b6060810160048510611f3e57611f3e611c9e565b9381526001600160a01b039283166020820152911660409091015290565b600060208284031215611f6e57600080fd5b8151801515811461146a57600080fd5b978852602088019690965260408701949094526001600160a01b0392831660608701529116608085015260a084015260c083015260e0820152610100019056fe4c697175696469747950726f7669646572526571756573745061796c6f61645f45706f63684465706f7369742875696e743235362074696d657374616d702c75696e743235362076616c6964556e74696c2c6164647265737320706f6f6c2c61646472657373206c697175696469747950726f76696465722c75696e743235362065706f63682c75696e7432353620616d6f756e742c75696e74323536206d696e416d6f756e744f7574294c697175696469747950726f7669646572526571756573745061796c6f61645f45706f636852656465656d2875696e743235362074696d657374616d702c75696e743235362076616c6964556e74696c2c6164647265737320706f6f6c2c61646472657373206c697175696469747950726f76696465722c75696e743235362065706f63682c75696e7432353620616d6f756e742c75696e74323536206d696e416d6f756e744f757429a2646970667358221220e1e8b7f5ff284238502db3abe303d0d83571887222c9b854880f88d969ae7e4864736f6c63430008180033";
842
+ const isSuperArgs = (xs) => xs.length > 1;
843
+ class LiquidityIntentsVerifierV1__factory extends ethers_1.ContractFactory {
844
+ constructor(...args) {
845
+ if (isSuperArgs(args)) {
846
+ super(...args);
847
+ }
848
+ else {
849
+ super(_abi, _bytecode, args[0]);
850
+ }
851
+ }
852
+ getDeployTransaction(_registry, overrides) {
853
+ return super.getDeployTransaction(_registry, overrides || {});
854
+ }
855
+ deploy(_registry, overrides) {
856
+ return super.deploy(_registry, overrides || {});
857
+ }
858
+ connect(runner) {
859
+ return super.connect(runner);
860
+ }
861
+ static createInterface() {
862
+ return new ethers_1.Interface(_abi);
863
+ }
864
+ static connect(address, runner) {
865
+ return new ethers_1.Contract(address, _abi, runner);
866
+ }
867
+ }
868
+ exports.LiquidityIntentsVerifierV1__factory = LiquidityIntentsVerifierV1__factory;
869
+ LiquidityIntentsVerifierV1__factory.bytecode = _bytecode;
870
+ LiquidityIntentsVerifierV1__factory.abi = _abi;