@bronlabs/intents-sdk 1.0.51 → 1.0.52

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,492 @@
1
+ [
2
+ {
3
+ "inputs": [],
4
+ "name": "InvalidInitialization",
5
+ "type": "error"
6
+ },
7
+ {
8
+ "inputs": [],
9
+ "name": "NotInitializing",
10
+ "type": "error"
11
+ },
12
+ {
13
+ "inputs": [
14
+ {
15
+ "internalType": "address",
16
+ "name": "owner",
17
+ "type": "address"
18
+ }
19
+ ],
20
+ "name": "OwnableInvalidOwner",
21
+ "type": "error"
22
+ },
23
+ {
24
+ "inputs": [
25
+ {
26
+ "internalType": "address",
27
+ "name": "account",
28
+ "type": "address"
29
+ }
30
+ ],
31
+ "name": "OwnableUnauthorizedAccount",
32
+ "type": "error"
33
+ },
34
+ {
35
+ "anonymous": false,
36
+ "inputs": [
37
+ {
38
+ "indexed": false,
39
+ "internalType": "uint64",
40
+ "name": "version",
41
+ "type": "uint64"
42
+ }
43
+ ],
44
+ "name": "Initialized",
45
+ "type": "event"
46
+ },
47
+ {
48
+ "anonymous": false,
49
+ "inputs": [
50
+ {
51
+ "indexed": true,
52
+ "internalType": "address",
53
+ "name": "previousOwner",
54
+ "type": "address"
55
+ },
56
+ {
57
+ "indexed": true,
58
+ "internalType": "address",
59
+ "name": "newOwner",
60
+ "type": "address"
61
+ }
62
+ ],
63
+ "name": "OwnershipTransferred",
64
+ "type": "event"
65
+ },
66
+ {
67
+ "inputs": [],
68
+ "name": "broadcasterRegister",
69
+ "outputs": [
70
+ {
71
+ "internalType": "contract IBroadcasterRegister",
72
+ "name": "",
73
+ "type": "address"
74
+ }
75
+ ],
76
+ "stateMutability": "view",
77
+ "type": "function"
78
+ },
79
+ {
80
+ "inputs": [],
81
+ "name": "bronToken",
82
+ "outputs": [
83
+ {
84
+ "internalType": "contract IERC20",
85
+ "name": "",
86
+ "type": "address"
87
+ }
88
+ ],
89
+ "stateMutability": "view",
90
+ "type": "function"
91
+ },
92
+ {
93
+ "inputs": [],
94
+ "name": "feeCalculator",
95
+ "outputs": [
96
+ {
97
+ "internalType": "contract IFeeCalculator",
98
+ "name": "",
99
+ "type": "address"
100
+ }
101
+ ],
102
+ "stateMutability": "view",
103
+ "type": "function"
104
+ },
105
+ {
106
+ "inputs": [
107
+ {
108
+ "internalType": "string",
109
+ "name": "_orderId",
110
+ "type": "string"
111
+ }
112
+ ],
113
+ "name": "getOrderFullResponse",
114
+ "outputs": [
115
+ {
116
+ "components": [
117
+ {
118
+ "components": [
119
+ {
120
+ "internalType": "enum IOrderEngine.OrderStatus",
121
+ "name": "status",
122
+ "type": "uint8"
123
+ },
124
+ {
125
+ "internalType": "address",
126
+ "name": "user",
127
+ "type": "address"
128
+ },
129
+ {
130
+ "internalType": "address",
131
+ "name": "solver",
132
+ "type": "address"
133
+ },
134
+ {
135
+ "components": [
136
+ {
137
+ "internalType": "string",
138
+ "name": "networkId",
139
+ "type": "string"
140
+ },
141
+ {
142
+ "internalType": "string",
143
+ "name": "tokenAddress",
144
+ "type": "string"
145
+ },
146
+ {
147
+ "internalType": "string",
148
+ "name": "solverAddress",
149
+ "type": "string"
150
+ },
151
+ {
152
+ "internalType": "string",
153
+ "name": "userTxHash",
154
+ "type": "string"
155
+ }
156
+ ],
157
+ "internalType": "struct IOrderEngine.BaseParams",
158
+ "name": "baseParams",
159
+ "type": "tuple"
160
+ },
161
+ {
162
+ "components": [
163
+ {
164
+ "internalType": "string",
165
+ "name": "networkId",
166
+ "type": "string"
167
+ },
168
+ {
169
+ "internalType": "string",
170
+ "name": "tokenAddress",
171
+ "type": "string"
172
+ },
173
+ {
174
+ "internalType": "string",
175
+ "name": "userAddress",
176
+ "type": "string"
177
+ },
178
+ {
179
+ "internalType": "string",
180
+ "name": "solverTxHash",
181
+ "type": "string"
182
+ }
183
+ ],
184
+ "internalType": "struct IOrderEngine.QuoteParams",
185
+ "name": "quoteParams",
186
+ "type": "tuple"
187
+ },
188
+ {
189
+ "components": [
190
+ {
191
+ "internalType": "uint256",
192
+ "name": "baseAmount",
193
+ "type": "uint256"
194
+ },
195
+ {
196
+ "internalType": "uint256",
197
+ "name": "quoteAmount",
198
+ "type": "uint256"
199
+ },
200
+ {
201
+ "internalType": "uint256",
202
+ "name": "price_e18",
203
+ "type": "uint256"
204
+ },
205
+ {
206
+ "internalType": "uint256",
207
+ "name": "maxPrice_e18",
208
+ "type": "uint256"
209
+ },
210
+ {
211
+ "internalType": "uint256",
212
+ "name": "auctionDuration",
213
+ "type": "uint256"
214
+ },
215
+ {
216
+ "internalType": "uint256",
217
+ "name": "orderValueInUSD_e18",
218
+ "type": "uint256"
219
+ },
220
+ {
221
+ "internalType": "address",
222
+ "name": "liquidationReceiver",
223
+ "type": "address"
224
+ }
225
+ ],
226
+ "internalType": "struct IOrderEngine.PricingParams",
227
+ "name": "pricingParams",
228
+ "type": "tuple"
229
+ },
230
+ {
231
+ "internalType": "uint64",
232
+ "name": "updatedAt",
233
+ "type": "uint64"
234
+ },
235
+ {
236
+ "internalType": "uint64",
237
+ "name": "createdAt",
238
+ "type": "uint64"
239
+ }
240
+ ],
241
+ "internalType": "struct IOrderEngine.Order",
242
+ "name": "order",
243
+ "type": "tuple"
244
+ },
245
+ {
246
+ "internalType": "address",
247
+ "name": "insuranceToken",
248
+ "type": "address"
249
+ },
250
+ {
251
+ "internalType": "uint128",
252
+ "name": "liquidationPremium",
253
+ "type": "uint128"
254
+ },
255
+ {
256
+ "internalType": "uint128",
257
+ "name": "solverFee",
258
+ "type": "uint128"
259
+ },
260
+ {
261
+ "internalType": "uint128",
262
+ "name": "broadcasterFee",
263
+ "type": "uint128"
264
+ },
265
+ {
266
+ "internalType": "uint128",
267
+ "name": "auctionTimeout",
268
+ "type": "uint128"
269
+ },
270
+ {
271
+ "internalType": "uint128",
272
+ "name": "userSettlementTimeout",
273
+ "type": "uint128"
274
+ },
275
+ {
276
+ "internalType": "uint128",
277
+ "name": "userConfirmationTimeout",
278
+ "type": "uint128"
279
+ },
280
+ {
281
+ "internalType": "uint128",
282
+ "name": "solverSettlementTimeout",
283
+ "type": "uint128"
284
+ },
285
+ {
286
+ "internalType": "uint128",
287
+ "name": "solverConfirmationTimeout",
288
+ "type": "uint128"
289
+ }
290
+ ],
291
+ "internalType": "struct IMetadata.OrderFullResponse",
292
+ "name": "response",
293
+ "type": "tuple"
294
+ }
295
+ ],
296
+ "stateMutability": "view",
297
+ "type": "function"
298
+ },
299
+ {
300
+ "inputs": [
301
+ {
302
+ "internalType": "address",
303
+ "name": "_bronToken",
304
+ "type": "address"
305
+ },
306
+ {
307
+ "internalType": "address",
308
+ "name": "_feeCalculator",
309
+ "type": "address"
310
+ },
311
+ {
312
+ "internalType": "address",
313
+ "name": "_orderEngine",
314
+ "type": "address"
315
+ },
316
+ {
317
+ "internalType": "address",
318
+ "name": "_solverRegister",
319
+ "type": "address"
320
+ },
321
+ {
322
+ "internalType": "address",
323
+ "name": "_oracleAggregator",
324
+ "type": "address"
325
+ },
326
+ {
327
+ "internalType": "address",
328
+ "name": "_broadcasterRegister",
329
+ "type": "address"
330
+ },
331
+ {
332
+ "internalType": "address",
333
+ "name": "_owner",
334
+ "type": "address"
335
+ }
336
+ ],
337
+ "name": "initialize",
338
+ "outputs": [],
339
+ "stateMutability": "nonpayable",
340
+ "type": "function"
341
+ },
342
+ {
343
+ "inputs": [],
344
+ "name": "oracleAggregator",
345
+ "outputs": [
346
+ {
347
+ "internalType": "contract IOracleAggregator",
348
+ "name": "",
349
+ "type": "address"
350
+ }
351
+ ],
352
+ "stateMutability": "view",
353
+ "type": "function"
354
+ },
355
+ {
356
+ "inputs": [],
357
+ "name": "orderEngine",
358
+ "outputs": [
359
+ {
360
+ "internalType": "contract IOrderEngine",
361
+ "name": "",
362
+ "type": "address"
363
+ }
364
+ ],
365
+ "stateMutability": "view",
366
+ "type": "function"
367
+ },
368
+ {
369
+ "inputs": [],
370
+ "name": "owner",
371
+ "outputs": [
372
+ {
373
+ "internalType": "address",
374
+ "name": "",
375
+ "type": "address"
376
+ }
377
+ ],
378
+ "stateMutability": "view",
379
+ "type": "function"
380
+ },
381
+ {
382
+ "inputs": [],
383
+ "name": "renounceOwnership",
384
+ "outputs": [],
385
+ "stateMutability": "nonpayable",
386
+ "type": "function"
387
+ },
388
+ {
389
+ "inputs": [
390
+ {
391
+ "internalType": "address",
392
+ "name": "_broadcasterRegister",
393
+ "type": "address"
394
+ }
395
+ ],
396
+ "name": "setBroadcasterRegister",
397
+ "outputs": [],
398
+ "stateMutability": "nonpayable",
399
+ "type": "function"
400
+ },
401
+ {
402
+ "inputs": [
403
+ {
404
+ "internalType": "address",
405
+ "name": "_bronToken",
406
+ "type": "address"
407
+ }
408
+ ],
409
+ "name": "setBronToken",
410
+ "outputs": [],
411
+ "stateMutability": "nonpayable",
412
+ "type": "function"
413
+ },
414
+ {
415
+ "inputs": [
416
+ {
417
+ "internalType": "address",
418
+ "name": "_feeCalculator",
419
+ "type": "address"
420
+ }
421
+ ],
422
+ "name": "setFeeCalculator",
423
+ "outputs": [],
424
+ "stateMutability": "nonpayable",
425
+ "type": "function"
426
+ },
427
+ {
428
+ "inputs": [
429
+ {
430
+ "internalType": "address",
431
+ "name": "_oracleAggregator",
432
+ "type": "address"
433
+ }
434
+ ],
435
+ "name": "setOracleAggregator",
436
+ "outputs": [],
437
+ "stateMutability": "nonpayable",
438
+ "type": "function"
439
+ },
440
+ {
441
+ "inputs": [
442
+ {
443
+ "internalType": "address",
444
+ "name": "_orderEngine",
445
+ "type": "address"
446
+ }
447
+ ],
448
+ "name": "setOrderEngine",
449
+ "outputs": [],
450
+ "stateMutability": "nonpayable",
451
+ "type": "function"
452
+ },
453
+ {
454
+ "inputs": [
455
+ {
456
+ "internalType": "address",
457
+ "name": "_solverRegister",
458
+ "type": "address"
459
+ }
460
+ ],
461
+ "name": "setSolverRegister",
462
+ "outputs": [],
463
+ "stateMutability": "nonpayable",
464
+ "type": "function"
465
+ },
466
+ {
467
+ "inputs": [],
468
+ "name": "solverRegister",
469
+ "outputs": [
470
+ {
471
+ "internalType": "contract ISolverRegister",
472
+ "name": "",
473
+ "type": "address"
474
+ }
475
+ ],
476
+ "stateMutability": "view",
477
+ "type": "function"
478
+ },
479
+ {
480
+ "inputs": [
481
+ {
482
+ "internalType": "address",
483
+ "name": "newOwner",
484
+ "type": "address"
485
+ }
486
+ ],
487
+ "name": "transferOwnership",
488
+ "outputs": [],
489
+ "stateMutability": "nonpayable",
490
+ "type": "function"
491
+ }
492
+ ]
@@ -76,5 +76,6 @@ export interface OracleAggregatorContract {
76
76
  export declare function initOrderEngine(orderEngineAddress: string, provider: ethers.JsonRpcProvider | ethers.Signer): OrderEngineContract & ethers.Contract;
77
77
  export declare function initOracleAggregator(oracleAggregatorAddress: string, provider: ethers.JsonRpcProvider | ethers.Signer): OracleAggregatorContract & ethers.Contract;
78
78
  export declare function initSolverRegister(solverRegisterAddress: string, provider: ethers.JsonRpcProvider | ethers.Signer): ethers.Contract;
79
+ export declare function initMetadata(metadataAddress: string, provider: ethers.JsonRpcProvider | ethers.Signer): ethers.Contract;
79
80
  export declare function printOrder(baseParams: BaseParams, quoteParams: QuoteParams, pricingParams: PricingParams): string;
80
81
  export {};
package/dist/contracts.js CHANGED
@@ -25,6 +25,9 @@ export function initOracleAggregator(oracleAggregatorAddress, provider) {
25
25
  export function initSolverRegister(solverRegisterAddress, provider) {
26
26
  return new ethers.Contract(solverRegisterAddress, JSON.parse(fs.readFileSync(path.join(__dirname, '../abi/SolverRegister.json'), 'utf8')), provider);
27
27
  }
28
+ export function initMetadata(metadataAddress, provider) {
29
+ return new ethers.Contract(metadataAddress, JSON.parse(fs.readFileSync(path.join(__dirname, '../abi/Metadata.json'), 'utf8')), provider);
30
+ }
28
31
  export function printOrder(baseParams, quoteParams, pricingParams) {
29
32
  return JSON.stringify({
30
33
  baseParams: {
@@ -1 +1 @@
1
- {"version":3,"file":"contracts.js","sourceRoot":"","sources":["../src/contracts.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAEhC,OAAO,KAAK,EAAE,MAAM,SAAS,CAAC;AAC9B,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAClC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,MAAM,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;AAE/D,MAAM,CAAN,IAAY,WAWX;AAXD,WAAY,WAAW;IACrB,uDAAS,CAAA;IACT,iEAAc,CAAA;IACd,2EAAmB,CAAA;IACnB,qEAAgB,CAAA;IAChB,mGAA+B,CAAA;IAC/B,yEAAkB,CAAA;IAClB,uGAAiC,CAAA;IACjC,uDAAS,CAAA;IACT,yDAAU,CAAA;IACV,uDAAS,CAAA;AACX,CAAC,EAXW,WAAW,KAAX,WAAW,QAWtB;AAiFD,MAAM,UAAU,eAAe,CAAC,kBAA0B,EAAE,QAAgD;IAC1G,OAAO,IAAI,MAAM,CAAC,QAAQ,CACxB,kBAAkB,EAClB,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,yBAAyB,CAAC,EAAE,MAAM,CAAC,CAAC,EACpF,QAAQ,CACgC,CAAC;AAC7C,CAAC;AAED,MAAM,UAAU,oBAAoB,CAAC,uBAA+B,EAAE,QAAgD;IACpH,OAAO,IAAI,MAAM,CAAC,QAAQ,CACxB,uBAAuB,EACvB,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,8BAA8B,CAAC,EAAE,MAAM,CAAC,CAAC,EACzF,QAAQ,CACqC,CAAC;AAClD,CAAC;AAED,MAAM,UAAU,kBAAkB,CAAC,qBAA6B,EAAE,QAAgD;IAChH,OAAO,IAAI,MAAM,CAAC,QAAQ,CACxB,qBAAqB,EACrB,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,4BAA4B,CAAC,EAAE,MAAM,CAAC,CAAC,EACvF,QAAQ,CACU,CAAC;AACvB,CAAC;AAED,MAAM,UAAU,UAAU,CAAC,UAAsB,EAAE,WAAwB,EAAE,aAA4B;IACvG,OAAO,IAAI,CAAC,SAAS,CAAC;QACpB,UAAU,EAAE;YACV,SAAS,EAAE,UAAU,CAAC,SAAS;YAC/B,YAAY,EAAE,UAAU,CAAC,YAAY;YACrC,aAAa,EAAE,UAAU,CAAC,aAAa;YACvC,UAAU,EAAE,UAAU,CAAC,UAAU;SAClC;QACD,WAAW,EAAE;YACX,SAAS,EAAE,WAAW,CAAC,SAAS;YAChC,YAAY,EAAE,WAAW,CAAC,YAAY;YACtC,WAAW,EAAE,WAAW,CAAC,WAAW;YACpC,YAAY,EAAE,WAAW,CAAC,YAAY;SACvC;QACD,aAAa,EAAE;YACb,UAAU,EAAE,aAAa,CAAC,UAAU,CAAC,QAAQ,EAAE;YAC/C,WAAW,EAAE,aAAa,CAAC,WAAW,CAAC,QAAQ,EAAE;YACjD,SAAS,EAAE,aAAa,CAAC,SAAS,CAAC,QAAQ,EAAE;YAC7C,YAAY,EAAE,aAAa,CAAC,YAAY,CAAC,QAAQ,EAAE;YACnD,eAAe,EAAE,aAAa,CAAC,eAAe,CAAC,QAAQ,EAAE;YACzD,mBAAmB,EAAE,aAAa,CAAC,mBAAmB,CAAC,QAAQ,EAAE;YACjE,mBAAmB,EAAE,aAAa,CAAC,mBAAmB;SACvD;KACF,CAAC,CAAC;AACL,CAAC"}
1
+ {"version":3,"file":"contracts.js","sourceRoot":"","sources":["../src/contracts.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bronlabs/intents-sdk",
3
- "version": "1.0.51",
3
+ "version": "1.0.52",
4
4
  "description": "SDK for Intents DeFi smart contracts",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",