@underscore-finance/sdk 0.0.1

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 (84) hide show
  1. package/LICENSE +41 -0
  2. package/README.md +131 -0
  3. package/dist/contracts/AddyRegistry.d.ts +471 -0
  4. package/dist/contracts/AddyRegistry.d.ts.map +1 -0
  5. package/dist/contracts/AddyRegistry.js +592 -0
  6. package/dist/contracts/AgentFactory.d.ts +966 -0
  7. package/dist/contracts/AgentFactory.d.ts.map +1 -0
  8. package/dist/contracts/AgentFactory.js +1227 -0
  9. package/dist/contracts/AgentTemplate.d.ts +2629 -0
  10. package/dist/contracts/AgentTemplate.d.ts.map +1 -0
  11. package/dist/contracts/AgentTemplate.js +3370 -0
  12. package/dist/contracts/ChainlinkFeeds.d.ts +567 -0
  13. package/dist/contracts/ChainlinkFeeds.d.ts.map +1 -0
  14. package/dist/contracts/ChainlinkFeeds.js +735 -0
  15. package/dist/contracts/LegoAaveV3.d.ts +894 -0
  16. package/dist/contracts/LegoAaveV3.d.ts.map +1 -0
  17. package/dist/contracts/LegoAaveV3.js +1165 -0
  18. package/dist/contracts/LegoAeroClassic.d.ts +1065 -0
  19. package/dist/contracts/LegoAeroClassic.d.ts.map +1 -0
  20. package/dist/contracts/LegoAeroClassic.js +1381 -0
  21. package/dist/contracts/LegoAeroSlipstream.d.ts +1161 -0
  22. package/dist/contracts/LegoAeroSlipstream.d.ts.map +1 -0
  23. package/dist/contracts/LegoAeroSlipstream.js +1506 -0
  24. package/dist/contracts/LegoCompoundV3.d.ts +921 -0
  25. package/dist/contracts/LegoCompoundV3.d.ts.map +1 -0
  26. package/dist/contracts/LegoCompoundV3.js +1200 -0
  27. package/dist/contracts/LegoCurve.d.ts +1050 -0
  28. package/dist/contracts/LegoCurve.d.ts.map +1 -0
  29. package/dist/contracts/LegoCurve.js +1354 -0
  30. package/dist/contracts/LegoEuler.d.ts +935 -0
  31. package/dist/contracts/LegoEuler.d.ts.map +1 -0
  32. package/dist/contracts/LegoEuler.js +1218 -0
  33. package/dist/contracts/LegoFluid.d.ts +875 -0
  34. package/dist/contracts/LegoFluid.d.ts.map +1 -0
  35. package/dist/contracts/LegoFluid.js +1141 -0
  36. package/dist/contracts/LegoHelper.d.ts +1555 -0
  37. package/dist/contracts/LegoHelper.d.ts.map +1 -0
  38. package/dist/contracts/LegoHelper.js +1945 -0
  39. package/dist/contracts/LegoMoonwell.d.ts +903 -0
  40. package/dist/contracts/LegoMoonwell.d.ts.map +1 -0
  41. package/dist/contracts/LegoMoonwell.js +1177 -0
  42. package/dist/contracts/LegoMorpho.d.ts +935 -0
  43. package/dist/contracts/LegoMorpho.d.ts.map +1 -0
  44. package/dist/contracts/LegoMorpho.js +1218 -0
  45. package/dist/contracts/LegoRegistry.d.ts +589 -0
  46. package/dist/contracts/LegoRegistry.d.ts.map +1 -0
  47. package/dist/contracts/LegoRegistry.js +746 -0
  48. package/dist/contracts/LegoSky.d.ts +784 -0
  49. package/dist/contracts/LegoSky.d.ts.map +1 -0
  50. package/dist/contracts/LegoSky.js +1015 -0
  51. package/dist/contracts/LegoUniswapV2.d.ts +1065 -0
  52. package/dist/contracts/LegoUniswapV2.d.ts.map +1 -0
  53. package/dist/contracts/LegoUniswapV2.js +1381 -0
  54. package/dist/contracts/LegoUniswapV3.d.ts +1199 -0
  55. package/dist/contracts/LegoUniswapV3.d.ts.map +1 -0
  56. package/dist/contracts/LegoUniswapV3.js +1553 -0
  57. package/dist/contracts/OracleRegistry.d.ts +811 -0
  58. package/dist/contracts/OracleRegistry.d.ts.map +1 -0
  59. package/dist/contracts/OracleRegistry.js +1049 -0
  60. package/dist/contracts/PriceSheets.d.ts +1053 -0
  61. package/dist/contracts/PriceSheets.d.ts.map +1 -0
  62. package/dist/contracts/PriceSheets.js +1296 -0
  63. package/dist/contracts/PythFeeds.d.ts +501 -0
  64. package/dist/contracts/PythFeeds.d.ts.map +1 -0
  65. package/dist/contracts/PythFeeds.js +648 -0
  66. package/dist/contracts/StorkFeeds.d.ts +501 -0
  67. package/dist/contracts/StorkFeeds.d.ts.map +1 -0
  68. package/dist/contracts/StorkFeeds.js +648 -0
  69. package/dist/contracts/WalletConfig.d.ts +1398 -0
  70. package/dist/contracts/WalletConfig.d.ts.map +1 -0
  71. package/dist/contracts/WalletConfig.js +1674 -0
  72. package/dist/contracts/WalletFunds.d.ts +1978 -0
  73. package/dist/contracts/WalletFunds.d.ts.map +1 -0
  74. package/dist/contracts/WalletFunds.js +2579 -0
  75. package/dist/contracts/index.d.ts +25 -0
  76. package/dist/contracts/index.d.ts.map +1 -0
  77. package/dist/contracts/index.js +28 -0
  78. package/dist/contracts/sdk.d.ts +53 -0
  79. package/dist/contracts/sdk.d.ts.map +1 -0
  80. package/dist/contracts/sdk.js +56 -0
  81. package/dist/index.d.ts +15 -0
  82. package/dist/index.d.ts.map +1 -0
  83. package/dist/index.js +16 -0
  84. package/package.json +31 -0
@@ -0,0 +1,648 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /* @ts-nocheck */
5
+ import { singleQuery, mutate } from '@dappql/async';
6
+ export const abi = [
7
+ {
8
+ "anonymous": false,
9
+ "inputs": [
10
+ {
11
+ "indexed": true,
12
+ "name": "asset",
13
+ "type": "address"
14
+ },
15
+ {
16
+ "indexed": true,
17
+ "name": "feedId",
18
+ "type": "bytes32"
19
+ }
20
+ ],
21
+ "name": "PythFeedAdded",
22
+ "type": "event"
23
+ },
24
+ {
25
+ "anonymous": false,
26
+ "inputs": [
27
+ {
28
+ "indexed": true,
29
+ "name": "asset",
30
+ "type": "address"
31
+ }
32
+ ],
33
+ "name": "PythFeedDisabled",
34
+ "type": "event"
35
+ },
36
+ {
37
+ "anonymous": false,
38
+ "inputs": [
39
+ {
40
+ "indexed": false,
41
+ "name": "payload",
42
+ "type": "bytes"
43
+ },
44
+ {
45
+ "indexed": false,
46
+ "name": "feeAmount",
47
+ "type": "uint256"
48
+ },
49
+ {
50
+ "indexed": true,
51
+ "name": "caller",
52
+ "type": "address"
53
+ }
54
+ ],
55
+ "name": "PythPriceUpdated",
56
+ "type": "event"
57
+ },
58
+ {
59
+ "anonymous": false,
60
+ "inputs": [
61
+ {
62
+ "indexed": true,
63
+ "name": "recipient",
64
+ "type": "address"
65
+ },
66
+ {
67
+ "indexed": false,
68
+ "name": "amount",
69
+ "type": "uint256"
70
+ }
71
+ ],
72
+ "name": "EthRecoveredFromPyth",
73
+ "type": "event"
74
+ },
75
+ {
76
+ "anonymous": false,
77
+ "inputs": [
78
+ {
79
+ "indexed": true,
80
+ "name": "addr",
81
+ "type": "address"
82
+ }
83
+ ],
84
+ "name": "LocalGovernorSet",
85
+ "type": "event"
86
+ },
87
+ {
88
+ "inputs": [
89
+ {
90
+ "name": "_address",
91
+ "type": "address"
92
+ }
93
+ ],
94
+ "name": "isGovernor",
95
+ "outputs": [
96
+ {
97
+ "name": "",
98
+ "type": "bool"
99
+ }
100
+ ],
101
+ "stateMutability": "view",
102
+ "type": "function"
103
+ },
104
+ {
105
+ "inputs": [
106
+ {
107
+ "name": "_newGovernor",
108
+ "type": "address"
109
+ }
110
+ ],
111
+ "name": "isValidLocalGovernor",
112
+ "outputs": [
113
+ {
114
+ "name": "",
115
+ "type": "bool"
116
+ }
117
+ ],
118
+ "stateMutability": "view",
119
+ "type": "function"
120
+ },
121
+ {
122
+ "inputs": [
123
+ {
124
+ "name": "_newGovernor",
125
+ "type": "address"
126
+ }
127
+ ],
128
+ "name": "setLocalGovernor",
129
+ "outputs": [
130
+ {
131
+ "name": "",
132
+ "type": "bool"
133
+ }
134
+ ],
135
+ "stateMutability": "nonpayable",
136
+ "type": "function"
137
+ },
138
+ {
139
+ "inputs": [],
140
+ "name": "localGovernor",
141
+ "outputs": [
142
+ {
143
+ "name": "",
144
+ "type": "address"
145
+ }
146
+ ],
147
+ "stateMutability": "view",
148
+ "type": "function"
149
+ },
150
+ {
151
+ "inputs": [],
152
+ "name": "getConfiguredAssets",
153
+ "outputs": [
154
+ {
155
+ "name": "",
156
+ "type": "address[]"
157
+ }
158
+ ],
159
+ "stateMutability": "view",
160
+ "type": "function"
161
+ },
162
+ {
163
+ "inputs": [
164
+ {
165
+ "name": "arg0",
166
+ "type": "uint256"
167
+ }
168
+ ],
169
+ "name": "assets",
170
+ "outputs": [
171
+ {
172
+ "name": "",
173
+ "type": "address"
174
+ }
175
+ ],
176
+ "stateMutability": "view",
177
+ "type": "function"
178
+ },
179
+ {
180
+ "inputs": [
181
+ {
182
+ "name": "arg0",
183
+ "type": "address"
184
+ }
185
+ ],
186
+ "name": "indexOfAsset",
187
+ "outputs": [
188
+ {
189
+ "name": "",
190
+ "type": "uint256"
191
+ }
192
+ ],
193
+ "stateMutability": "view",
194
+ "type": "function"
195
+ },
196
+ {
197
+ "inputs": [],
198
+ "name": "numAssets",
199
+ "outputs": [
200
+ {
201
+ "name": "",
202
+ "type": "uint256"
203
+ }
204
+ ],
205
+ "stateMutability": "view",
206
+ "type": "function"
207
+ },
208
+ {
209
+ "stateMutability": "payable",
210
+ "type": "fallback"
211
+ },
212
+ {
213
+ "inputs": [
214
+ {
215
+ "name": "_asset",
216
+ "type": "address"
217
+ }
218
+ ],
219
+ "name": "getPrice",
220
+ "outputs": [
221
+ {
222
+ "name": "",
223
+ "type": "uint256"
224
+ }
225
+ ],
226
+ "stateMutability": "view",
227
+ "type": "function"
228
+ },
229
+ {
230
+ "inputs": [
231
+ {
232
+ "name": "_asset",
233
+ "type": "address"
234
+ },
235
+ {
236
+ "name": "_staleTime",
237
+ "type": "uint256"
238
+ }
239
+ ],
240
+ "name": "getPrice",
241
+ "outputs": [
242
+ {
243
+ "name": "",
244
+ "type": "uint256"
245
+ }
246
+ ],
247
+ "stateMutability": "view",
248
+ "type": "function"
249
+ },
250
+ {
251
+ "inputs": [
252
+ {
253
+ "name": "_asset",
254
+ "type": "address"
255
+ },
256
+ {
257
+ "name": "_staleTime",
258
+ "type": "uint256"
259
+ },
260
+ {
261
+ "name": "_oracleRegistry",
262
+ "type": "address"
263
+ }
264
+ ],
265
+ "name": "getPrice",
266
+ "outputs": [
267
+ {
268
+ "name": "",
269
+ "type": "uint256"
270
+ }
271
+ ],
272
+ "stateMutability": "view",
273
+ "type": "function"
274
+ },
275
+ {
276
+ "inputs": [
277
+ {
278
+ "name": "_asset",
279
+ "type": "address"
280
+ }
281
+ ],
282
+ "name": "getPriceAndHasFeed",
283
+ "outputs": [
284
+ {
285
+ "name": "",
286
+ "type": "uint256"
287
+ },
288
+ {
289
+ "name": "",
290
+ "type": "bool"
291
+ }
292
+ ],
293
+ "stateMutability": "view",
294
+ "type": "function"
295
+ },
296
+ {
297
+ "inputs": [
298
+ {
299
+ "name": "_asset",
300
+ "type": "address"
301
+ },
302
+ {
303
+ "name": "_staleTime",
304
+ "type": "uint256"
305
+ }
306
+ ],
307
+ "name": "getPriceAndHasFeed",
308
+ "outputs": [
309
+ {
310
+ "name": "",
311
+ "type": "uint256"
312
+ },
313
+ {
314
+ "name": "",
315
+ "type": "bool"
316
+ }
317
+ ],
318
+ "stateMutability": "view",
319
+ "type": "function"
320
+ },
321
+ {
322
+ "inputs": [
323
+ {
324
+ "name": "_asset",
325
+ "type": "address"
326
+ },
327
+ {
328
+ "name": "_staleTime",
329
+ "type": "uint256"
330
+ },
331
+ {
332
+ "name": "_oracleRegistry",
333
+ "type": "address"
334
+ }
335
+ ],
336
+ "name": "getPriceAndHasFeed",
337
+ "outputs": [
338
+ {
339
+ "name": "",
340
+ "type": "uint256"
341
+ },
342
+ {
343
+ "name": "",
344
+ "type": "bool"
345
+ }
346
+ ],
347
+ "stateMutability": "view",
348
+ "type": "function"
349
+ },
350
+ {
351
+ "inputs": [
352
+ {
353
+ "name": "_asset",
354
+ "type": "address"
355
+ }
356
+ ],
357
+ "name": "hasPriceFeed",
358
+ "outputs": [
359
+ {
360
+ "name": "",
361
+ "type": "bool"
362
+ }
363
+ ],
364
+ "stateMutability": "view",
365
+ "type": "function"
366
+ },
367
+ {
368
+ "inputs": [
369
+ {
370
+ "name": "_payloads",
371
+ "type": "bytes[]"
372
+ }
373
+ ],
374
+ "name": "updatePythPrices",
375
+ "outputs": [],
376
+ "stateMutability": "nonpayable",
377
+ "type": "function"
378
+ },
379
+ {
380
+ "inputs": [
381
+ {
382
+ "name": "_asset",
383
+ "type": "address"
384
+ },
385
+ {
386
+ "name": "_feedId",
387
+ "type": "bytes32"
388
+ }
389
+ ],
390
+ "name": "isValidPythFeed",
391
+ "outputs": [
392
+ {
393
+ "name": "",
394
+ "type": "bool"
395
+ }
396
+ ],
397
+ "stateMutability": "view",
398
+ "type": "function"
399
+ },
400
+ {
401
+ "inputs": [
402
+ {
403
+ "name": "_asset",
404
+ "type": "address"
405
+ },
406
+ {
407
+ "name": "_feedId",
408
+ "type": "bytes32"
409
+ }
410
+ ],
411
+ "name": "setPythFeed",
412
+ "outputs": [
413
+ {
414
+ "name": "",
415
+ "type": "bool"
416
+ }
417
+ ],
418
+ "stateMutability": "nonpayable",
419
+ "type": "function"
420
+ },
421
+ {
422
+ "inputs": [
423
+ {
424
+ "name": "_asset",
425
+ "type": "address"
426
+ }
427
+ ],
428
+ "name": "disablePythPriceFeed",
429
+ "outputs": [
430
+ {
431
+ "name": "",
432
+ "type": "bool"
433
+ }
434
+ ],
435
+ "stateMutability": "nonpayable",
436
+ "type": "function"
437
+ },
438
+ {
439
+ "inputs": [
440
+ {
441
+ "name": "_recipient",
442
+ "type": "address"
443
+ }
444
+ ],
445
+ "name": "isValidEthRecovery",
446
+ "outputs": [
447
+ {
448
+ "name": "",
449
+ "type": "bool"
450
+ }
451
+ ],
452
+ "stateMutability": "view",
453
+ "type": "function"
454
+ },
455
+ {
456
+ "inputs": [
457
+ {
458
+ "name": "_recipient",
459
+ "type": "address"
460
+ }
461
+ ],
462
+ "name": "recoverEthBalance",
463
+ "outputs": [
464
+ {
465
+ "name": "",
466
+ "type": "bool"
467
+ }
468
+ ],
469
+ "stateMutability": "nonpayable",
470
+ "type": "function"
471
+ },
472
+ {
473
+ "inputs": [
474
+ {
475
+ "name": "_oracleId",
476
+ "type": "uint256"
477
+ }
478
+ ],
479
+ "name": "setOraclePartnerId",
480
+ "outputs": [
481
+ {
482
+ "name": "",
483
+ "type": "bool"
484
+ }
485
+ ],
486
+ "stateMutability": "nonpayable",
487
+ "type": "function"
488
+ },
489
+ {
490
+ "inputs": [],
491
+ "name": "PYTH",
492
+ "outputs": [
493
+ {
494
+ "name": "",
495
+ "type": "address"
496
+ }
497
+ ],
498
+ "stateMutability": "view",
499
+ "type": "function"
500
+ },
501
+ {
502
+ "inputs": [
503
+ {
504
+ "name": "arg0",
505
+ "type": "address"
506
+ }
507
+ ],
508
+ "name": "feedConfig",
509
+ "outputs": [
510
+ {
511
+ "name": "",
512
+ "type": "bytes32"
513
+ }
514
+ ],
515
+ "stateMutability": "view",
516
+ "type": "function"
517
+ },
518
+ {
519
+ "inputs": [],
520
+ "name": "oraclePartnerId",
521
+ "outputs": [
522
+ {
523
+ "name": "",
524
+ "type": "uint256"
525
+ }
526
+ ],
527
+ "stateMutability": "view",
528
+ "type": "function"
529
+ },
530
+ {
531
+ "inputs": [],
532
+ "name": "ADDY_REGISTRY",
533
+ "outputs": [
534
+ {
535
+ "name": "",
536
+ "type": "address"
537
+ }
538
+ ],
539
+ "stateMutability": "view",
540
+ "type": "function"
541
+ },
542
+ {
543
+ "inputs": [
544
+ {
545
+ "name": "_pyth",
546
+ "type": "address"
547
+ },
548
+ {
549
+ "name": "_addyRegistry",
550
+ "type": "address"
551
+ }
552
+ ],
553
+ "outputs": [],
554
+ "stateMutability": "nonpayable",
555
+ "type": "constructor"
556
+ }
557
+ ];
558
+ export const deployAddress = undefined;
559
+ function getRequest(method, args, contractAddressOrOptions) {
560
+ const address = typeof contractAddressOrOptions === 'string' ? contractAddressOrOptions : contractAddressOrOptions?.contractAddress;
561
+ const defaultValue = typeof contractAddressOrOptions === 'string' ? undefined : contractAddressOrOptions?.defaultValue;
562
+ const call = {
563
+ contractName: 'PythFeeds',
564
+ method,
565
+ args,
566
+ address,
567
+ deployAddress,
568
+ defaultValue,
569
+ getAbi: () => abi,
570
+ with: (options) => {
571
+ call.address = options.contractAddress;
572
+ call.defaultValue = options.defaultValue;
573
+ return call;
574
+ },
575
+ defaultTo: (defaultValue) => {
576
+ call.defaultValue = defaultValue;
577
+ return call;
578
+ },
579
+ at: (address) => {
580
+ call.address = address;
581
+ return call;
582
+ },
583
+ };
584
+ return call;
585
+ }
586
+ export const call = {
587
+ isGovernor: (...args) => getRequest('isGovernor', args),
588
+ isValidLocalGovernor: (...args) => getRequest('isValidLocalGovernor', args),
589
+ localGovernor: (...args) => getRequest('localGovernor', args),
590
+ getConfiguredAssets: (...args) => getRequest('getConfiguredAssets', args),
591
+ assets: (...args) => getRequest('assets', args),
592
+ indexOfAsset: (...args) => getRequest('indexOfAsset', args),
593
+ numAssets: (...args) => getRequest('numAssets', args),
594
+ getPrice: (...args) => getRequest('getPrice', args),
595
+ getPriceAndHasFeed: (...args) => getRequest('getPriceAndHasFeed', args),
596
+ hasPriceFeed: (...args) => getRequest('hasPriceFeed', args),
597
+ isValidPythFeed: (...args) => getRequest('isValidPythFeed', args),
598
+ isValidEthRecovery: (...args) => getRequest('isValidEthRecovery', args),
599
+ PYTH: (...args) => getRequest('PYTH', args),
600
+ feedConfig: (...args) => getRequest('feedConfig', args),
601
+ oraclePartnerId: (...args) => getRequest('oraclePartnerId', args),
602
+ ADDY_REGISTRY: (...args) => getRequest('ADDY_REGISTRY', args),
603
+ };
604
+ function getMutation(functionName) {
605
+ return {
606
+ contractName: 'PythFeeds',
607
+ functionName,
608
+ deployAddress,
609
+ argsType: undefined,
610
+ getAbi: () => abi,
611
+ };
612
+ }
613
+ export const mutation = {
614
+ setLocalGovernor: getMutation('setLocalGovernor'),
615
+ updatePythPrices: getMutation('updatePythPrices'),
616
+ setPythFeed: getMutation('setPythFeed'),
617
+ disablePythPriceFeed: getMutation('disablePythPriceFeed'),
618
+ recoverEthBalance: getMutation('recoverEthBalance'),
619
+ setOraclePartnerId: getMutation('setOraclePartnerId'),
620
+ };
621
+ export function toSdk(publicClient, walletClient) {
622
+ return {
623
+ // Queries
624
+ isGovernor: (...args) => singleQuery(publicClient, call.isGovernor(...args)),
625
+ isValidLocalGovernor: (...args) => singleQuery(publicClient, call.isValidLocalGovernor(...args)),
626
+ localGovernor: (...args) => singleQuery(publicClient, call.localGovernor(...args)),
627
+ getConfiguredAssets: (...args) => singleQuery(publicClient, call.getConfiguredAssets(...args)),
628
+ assets: (...args) => singleQuery(publicClient, call.assets(...args)),
629
+ indexOfAsset: (...args) => singleQuery(publicClient, call.indexOfAsset(...args)),
630
+ numAssets: (...args) => singleQuery(publicClient, call.numAssets(...args)),
631
+ getPrice: (...args) => singleQuery(publicClient, call.getPrice(...args)),
632
+ getPriceAndHasFeed: (...args) => singleQuery(publicClient, call.getPriceAndHasFeed(...args)),
633
+ hasPriceFeed: (...args) => singleQuery(publicClient, call.hasPriceFeed(...args)),
634
+ isValidPythFeed: (...args) => singleQuery(publicClient, call.isValidPythFeed(...args)),
635
+ isValidEthRecovery: (...args) => singleQuery(publicClient, call.isValidEthRecovery(...args)),
636
+ PYTH: (...args) => singleQuery(publicClient, call.PYTH(...args)),
637
+ feedConfig: (...args) => singleQuery(publicClient, call.feedConfig(...args)),
638
+ oraclePartnerId: (...args) => singleQuery(publicClient, call.oraclePartnerId(...args)),
639
+ ADDY_REGISTRY: (...args) => singleQuery(publicClient, call.ADDY_REGISTRY(...args)),
640
+ // Mutations
641
+ setLocalGovernor: (...args) => mutate(walletClient, mutation.setLocalGovernor)(...args),
642
+ updatePythPrices: (...args) => mutate(walletClient, mutation.updatePythPrices)(...args),
643
+ setPythFeed: (...args) => mutate(walletClient, mutation.setPythFeed)(...args),
644
+ disablePythPriceFeed: (...args) => mutate(walletClient, mutation.disablePythPriceFeed)(...args),
645
+ recoverEthBalance: (...args) => mutate(walletClient, mutation.recoverEthBalance)(...args),
646
+ setOraclePartnerId: (...args) => mutate(walletClient, mutation.setOraclePartnerId)(...args),
647
+ };
648
+ }