@bronlabs/intents-sdk 1.0.51 → 1.0.53

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,502 @@
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": "uint128",
292
+ "name": "solverFeeBps",
293
+ "type": "uint128"
294
+ },
295
+ {
296
+ "internalType": "uint128",
297
+ "name": "broadcasterFeeBps",
298
+ "type": "uint128"
299
+ }
300
+ ],
301
+ "internalType": "struct IMetadata.OrderFullResponse",
302
+ "name": "response",
303
+ "type": "tuple"
304
+ }
305
+ ],
306
+ "stateMutability": "view",
307
+ "type": "function"
308
+ },
309
+ {
310
+ "inputs": [
311
+ {
312
+ "internalType": "address",
313
+ "name": "_bronToken",
314
+ "type": "address"
315
+ },
316
+ {
317
+ "internalType": "address",
318
+ "name": "_feeCalculator",
319
+ "type": "address"
320
+ },
321
+ {
322
+ "internalType": "address",
323
+ "name": "_orderEngine",
324
+ "type": "address"
325
+ },
326
+ {
327
+ "internalType": "address",
328
+ "name": "_solverRegister",
329
+ "type": "address"
330
+ },
331
+ {
332
+ "internalType": "address",
333
+ "name": "_oracleAggregator",
334
+ "type": "address"
335
+ },
336
+ {
337
+ "internalType": "address",
338
+ "name": "_broadcasterRegister",
339
+ "type": "address"
340
+ },
341
+ {
342
+ "internalType": "address",
343
+ "name": "_owner",
344
+ "type": "address"
345
+ }
346
+ ],
347
+ "name": "initialize",
348
+ "outputs": [],
349
+ "stateMutability": "nonpayable",
350
+ "type": "function"
351
+ },
352
+ {
353
+ "inputs": [],
354
+ "name": "oracleAggregator",
355
+ "outputs": [
356
+ {
357
+ "internalType": "contract IOracleAggregator",
358
+ "name": "",
359
+ "type": "address"
360
+ }
361
+ ],
362
+ "stateMutability": "view",
363
+ "type": "function"
364
+ },
365
+ {
366
+ "inputs": [],
367
+ "name": "orderEngine",
368
+ "outputs": [
369
+ {
370
+ "internalType": "contract IOrderEngine",
371
+ "name": "",
372
+ "type": "address"
373
+ }
374
+ ],
375
+ "stateMutability": "view",
376
+ "type": "function"
377
+ },
378
+ {
379
+ "inputs": [],
380
+ "name": "owner",
381
+ "outputs": [
382
+ {
383
+ "internalType": "address",
384
+ "name": "",
385
+ "type": "address"
386
+ }
387
+ ],
388
+ "stateMutability": "view",
389
+ "type": "function"
390
+ },
391
+ {
392
+ "inputs": [],
393
+ "name": "renounceOwnership",
394
+ "outputs": [],
395
+ "stateMutability": "nonpayable",
396
+ "type": "function"
397
+ },
398
+ {
399
+ "inputs": [
400
+ {
401
+ "internalType": "address",
402
+ "name": "_broadcasterRegister",
403
+ "type": "address"
404
+ }
405
+ ],
406
+ "name": "setBroadcasterRegister",
407
+ "outputs": [],
408
+ "stateMutability": "nonpayable",
409
+ "type": "function"
410
+ },
411
+ {
412
+ "inputs": [
413
+ {
414
+ "internalType": "address",
415
+ "name": "_bronToken",
416
+ "type": "address"
417
+ }
418
+ ],
419
+ "name": "setBronToken",
420
+ "outputs": [],
421
+ "stateMutability": "nonpayable",
422
+ "type": "function"
423
+ },
424
+ {
425
+ "inputs": [
426
+ {
427
+ "internalType": "address",
428
+ "name": "_feeCalculator",
429
+ "type": "address"
430
+ }
431
+ ],
432
+ "name": "setFeeCalculator",
433
+ "outputs": [],
434
+ "stateMutability": "nonpayable",
435
+ "type": "function"
436
+ },
437
+ {
438
+ "inputs": [
439
+ {
440
+ "internalType": "address",
441
+ "name": "_oracleAggregator",
442
+ "type": "address"
443
+ }
444
+ ],
445
+ "name": "setOracleAggregator",
446
+ "outputs": [],
447
+ "stateMutability": "nonpayable",
448
+ "type": "function"
449
+ },
450
+ {
451
+ "inputs": [
452
+ {
453
+ "internalType": "address",
454
+ "name": "_orderEngine",
455
+ "type": "address"
456
+ }
457
+ ],
458
+ "name": "setOrderEngine",
459
+ "outputs": [],
460
+ "stateMutability": "nonpayable",
461
+ "type": "function"
462
+ },
463
+ {
464
+ "inputs": [
465
+ {
466
+ "internalType": "address",
467
+ "name": "_solverRegister",
468
+ "type": "address"
469
+ }
470
+ ],
471
+ "name": "setSolverRegister",
472
+ "outputs": [],
473
+ "stateMutability": "nonpayable",
474
+ "type": "function"
475
+ },
476
+ {
477
+ "inputs": [],
478
+ "name": "solverRegister",
479
+ "outputs": [
480
+ {
481
+ "internalType": "contract ISolverRegister",
482
+ "name": "",
483
+ "type": "address"
484
+ }
485
+ ],
486
+ "stateMutability": "view",
487
+ "type": "function"
488
+ },
489
+ {
490
+ "inputs": [
491
+ {
492
+ "internalType": "address",
493
+ "name": "newOwner",
494
+ "type": "address"
495
+ }
496
+ ],
497
+ "name": "transferOwnership",
498
+ "outputs": [],
499
+ "stateMutability": "nonpayable",
500
+ "type": "function"
501
+ }
502
+ ]
@@ -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.53",
4
4
  "description": "SDK for Intents DeFi smart contracts",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",