@liquid-af/sdk 0.10.4 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +2 -5
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +3 -3
- package/dist/client.js.map +1 -1
- package/dist/idl/liquid.d.ts +2490 -2490
- package/dist/idl/liquid.d.ts.map +1 -1
- package/dist/idl/liquid.json +2490 -2490
- package/dist/idl/liquid_events.d.ts +5 -12
- package/dist/idl/liquid_events.d.ts.map +1 -1
- package/dist/idl/liquid_events.json +5 -12
- package/dist/idl/liquid_fees.d.ts +8 -30
- package/dist/idl/liquid_fees.d.ts.map +1 -1
- package/dist/idl/liquid_fees.json +8 -30
- package/dist/idl/liquid_state.d.ts +72 -72
- package/dist/idl/liquid_state.d.ts.map +1 -1
- package/dist/idl/liquid_state.json +72 -72
- package/dist/idl/liquid_swap.d.ts +998 -998
- package/dist/idl/liquid_swap.d.ts.map +1 -1
- package/dist/idl/liquid_swap.json +998 -998
- package/dist/instructions/liquid-fees.d.ts +3 -6
- package/dist/instructions/liquid-fees.d.ts.map +1 -1
- package/dist/instructions/liquid-fees.js +6 -11
- package/dist/instructions/liquid-fees.js.map +1 -1
- package/dist/math/bonding-curve.d.ts.map +1 -1
- package/dist/math/bonding-curve.js +6 -4
- package/dist/math/bonding-curve.js.map +1 -1
- package/dist/math/fees.d.ts +5 -2
- package/dist/math/fees.d.ts.map +1 -1
- package/dist/math/fees.js +32 -13
- package/dist/math/fees.js.map +1 -1
- package/dist/pda/liquid-fees.d.ts +3 -3
- package/dist/pda/liquid-fees.d.ts.map +1 -1
- package/dist/pda/liquid-fees.js +4 -4
- package/dist/pda/liquid-fees.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +2 -9
- package/src/idl/liquid.json +2490 -2490
- package/src/idl/liquid.ts +2490 -2490
- package/src/idl/liquid_events.json +5 -12
- package/src/idl/liquid_events.ts +5 -12
- package/src/idl/liquid_fees.json +8 -30
- package/src/idl/liquid_fees.ts +8 -30
- package/src/idl/liquid_state.json +72 -72
- package/src/idl/liquid_state.ts +72 -72
- package/src/idl/liquid_swap.json +998 -998
- package/src/idl/liquid_swap.ts +998 -998
- package/src/instructions/liquid-fees.ts +4 -27
- package/src/math/bonding-curve.ts +6 -4
- package/src/math/fees.ts +33 -15
- package/src/pda/liquid-fees.ts +3 -4
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
2
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG",
|
|
3
3
|
"metadata": {
|
|
4
4
|
"name": "liquid_events",
|
|
5
5
|
"version": "0.1.0",
|
|
@@ -1740,13 +1740,6 @@
|
|
|
1740
1740
|
"type": {
|
|
1741
1741
|
"kind": "struct",
|
|
1742
1742
|
"fields": [
|
|
1743
|
-
{
|
|
1744
|
-
"name": "fee_config",
|
|
1745
|
-
"docs": [
|
|
1746
|
-
"The fee configuration PDA."
|
|
1747
|
-
],
|
|
1748
|
-
"type": "pubkey"
|
|
1749
|
-
},
|
|
1750
1743
|
{
|
|
1751
1744
|
"name": "mint",
|
|
1752
1745
|
"docs": [
|
|
@@ -2395,9 +2388,9 @@
|
|
|
2395
2388
|
{
|
|
2396
2389
|
"name": "cashback",
|
|
2397
2390
|
"docs": [
|
|
2398
|
-
"Cashback
|
|
2391
|
+
"Cashback earned (positive) or spent (negative) by the user."
|
|
2399
2392
|
],
|
|
2400
|
-
"type": "
|
|
2393
|
+
"type": "i64"
|
|
2401
2394
|
},
|
|
2402
2395
|
{
|
|
2403
2396
|
"name": "cashback_bps",
|
|
@@ -2688,9 +2681,9 @@
|
|
|
2688
2681
|
{
|
|
2689
2682
|
"name": "cashback",
|
|
2690
2683
|
"docs": [
|
|
2691
|
-
"Cashback
|
|
2684
|
+
"Cashback earned (positive) or spent (negative) by the user."
|
|
2692
2685
|
],
|
|
2693
|
-
"type": "
|
|
2686
|
+
"type": "i64"
|
|
2694
2687
|
},
|
|
2695
2688
|
{
|
|
2696
2689
|
"name": "cashback_bps",
|
package/src/idl/liquid_events.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* IDL can be found at `target/idl/liquid_events.json`.
|
|
6
6
|
*/
|
|
7
7
|
export type LiquidEvents = {
|
|
8
|
-
"address": "
|
|
8
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG",
|
|
9
9
|
"metadata": {
|
|
10
10
|
"name": "liquidEvents",
|
|
11
11
|
"version": "0.1.0",
|
|
@@ -1746,13 +1746,6 @@ export type LiquidEvents = {
|
|
|
1746
1746
|
"type": {
|
|
1747
1747
|
"kind": "struct",
|
|
1748
1748
|
"fields": [
|
|
1749
|
-
{
|
|
1750
|
-
"name": "feeConfig",
|
|
1751
|
-
"docs": [
|
|
1752
|
-
"The fee configuration PDA."
|
|
1753
|
-
],
|
|
1754
|
-
"type": "pubkey"
|
|
1755
|
-
},
|
|
1756
1749
|
{
|
|
1757
1750
|
"name": "mint",
|
|
1758
1751
|
"docs": [
|
|
@@ -2401,9 +2394,9 @@ export type LiquidEvents = {
|
|
|
2401
2394
|
{
|
|
2402
2395
|
"name": "cashback",
|
|
2403
2396
|
"docs": [
|
|
2404
|
-
"Cashback
|
|
2397
|
+
"Cashback earned (positive) or spent (negative) by the user."
|
|
2405
2398
|
],
|
|
2406
|
-
"type": "
|
|
2399
|
+
"type": "i64"
|
|
2407
2400
|
},
|
|
2408
2401
|
{
|
|
2409
2402
|
"name": "cashbackBps",
|
|
@@ -2694,9 +2687,9 @@ export type LiquidEvents = {
|
|
|
2694
2687
|
{
|
|
2695
2688
|
"name": "cashback",
|
|
2696
2689
|
"docs": [
|
|
2697
|
-
"Cashback
|
|
2690
|
+
"Cashback earned (positive) or spent (negative) by the user."
|
|
2698
2691
|
],
|
|
2699
|
-
"type": "
|
|
2692
|
+
"type": "i64"
|
|
2700
2693
|
},
|
|
2701
2694
|
{
|
|
2702
2695
|
"name": "cashbackBps",
|
package/src/idl/liquid_fees.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
2
|
+
"address": "FeesZQLb1xTeZbvaFRGnqzrZYzzmQtwhTYKQphbNGQru",
|
|
3
3
|
"metadata": {
|
|
4
4
|
"name": "liquid_fees",
|
|
5
5
|
"version": "0.1.0",
|
|
@@ -115,10 +115,6 @@
|
|
|
115
115
|
116
|
|
116
116
|
]
|
|
117
117
|
},
|
|
118
|
-
{
|
|
119
|
-
"kind": "account",
|
|
120
|
-
"path": "fee_config"
|
|
121
|
-
},
|
|
122
118
|
{
|
|
123
119
|
"kind": "account",
|
|
124
120
|
"path": "recipient"
|
|
@@ -126,13 +122,6 @@
|
|
|
126
122
|
]
|
|
127
123
|
}
|
|
128
124
|
},
|
|
129
|
-
{
|
|
130
|
-
"name": "fee_config",
|
|
131
|
-
"docs": [
|
|
132
|
-
"The fee configuration this vault belongs to.",
|
|
133
|
-
"only the correct fee_config will produce a vault PDA that has funds."
|
|
134
|
-
]
|
|
135
|
-
},
|
|
136
125
|
{
|
|
137
126
|
"name": "system_program",
|
|
138
127
|
"address": "11111111111111111111111111111111"
|
|
@@ -170,7 +159,7 @@
|
|
|
170
159
|
"docs": [
|
|
171
160
|
"Liquid events program for centralized event emission."
|
|
172
161
|
],
|
|
173
|
-
"address": "
|
|
162
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
174
163
|
}
|
|
175
164
|
],
|
|
176
165
|
"args": []
|
|
@@ -299,13 +288,6 @@
|
|
|
299
288
|
],
|
|
300
289
|
"writable": true
|
|
301
290
|
},
|
|
302
|
-
{
|
|
303
|
-
"name": "fee_config",
|
|
304
|
-
"docs": [
|
|
305
|
-
"The fee configuration this vault belongs to.",
|
|
306
|
-
"only the correct fee_config will produce a vault PDA that has funds."
|
|
307
|
-
]
|
|
308
|
-
},
|
|
309
291
|
{
|
|
310
292
|
"name": "quote_mint",
|
|
311
293
|
"docs": [
|
|
@@ -339,10 +321,6 @@
|
|
|
339
321
|
116
|
|
340
322
|
]
|
|
341
323
|
},
|
|
342
|
-
{
|
|
343
|
-
"kind": "account",
|
|
344
|
-
"path": "fee_config"
|
|
345
|
-
},
|
|
346
324
|
{
|
|
347
325
|
"kind": "account",
|
|
348
326
|
"path": "recipient"
|
|
@@ -391,7 +369,7 @@
|
|
|
391
369
|
"docs": [
|
|
392
370
|
"Liquid events program for centralized event emission."
|
|
393
371
|
],
|
|
394
|
-
"address": "
|
|
372
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
395
373
|
}
|
|
396
374
|
],
|
|
397
375
|
"args": []
|
|
@@ -535,7 +513,7 @@
|
|
|
535
513
|
"docs": [
|
|
536
514
|
"Liquid events program for centralized event emission."
|
|
537
515
|
],
|
|
538
|
-
"address": "
|
|
516
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
539
517
|
}
|
|
540
518
|
],
|
|
541
519
|
"args": []
|
|
@@ -782,7 +760,7 @@
|
|
|
782
760
|
"docs": [
|
|
783
761
|
"Liquid events program for centralized event emission."
|
|
784
762
|
],
|
|
785
|
-
"address": "
|
|
763
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
786
764
|
}
|
|
787
765
|
],
|
|
788
766
|
"args": []
|
|
@@ -1106,7 +1084,7 @@
|
|
|
1106
1084
|
"docs": [
|
|
1107
1085
|
"Liquid events program for centralized event emission."
|
|
1108
1086
|
],
|
|
1109
|
-
"address": "
|
|
1087
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
1110
1088
|
}
|
|
1111
1089
|
],
|
|
1112
1090
|
"args": [
|
|
@@ -1259,7 +1237,7 @@
|
|
|
1259
1237
|
"docs": [
|
|
1260
1238
|
"Liquid events program for centralized event emission."
|
|
1261
1239
|
],
|
|
1262
|
-
"address": "
|
|
1240
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
1263
1241
|
}
|
|
1264
1242
|
],
|
|
1265
1243
|
"args": []
|
|
@@ -1473,7 +1451,7 @@
|
|
|
1473
1451
|
"docs": [
|
|
1474
1452
|
"Liquid events program for centralized event emission."
|
|
1475
1453
|
],
|
|
1476
|
-
"address": "
|
|
1454
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
1477
1455
|
}
|
|
1478
1456
|
],
|
|
1479
1457
|
"args": [
|
package/src/idl/liquid_fees.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* IDL can be found at `target/idl/liquid_fees.json`.
|
|
6
6
|
*/
|
|
7
7
|
export type LiquidFees = {
|
|
8
|
-
"address": "
|
|
8
|
+
"address": "FeesZQLb1xTeZbvaFRGnqzrZYzzmQtwhTYKQphbNGQru",
|
|
9
9
|
"metadata": {
|
|
10
10
|
"name": "liquidFees",
|
|
11
11
|
"version": "0.1.0",
|
|
@@ -121,10 +121,6 @@ export type LiquidFees = {
|
|
|
121
121
|
116
|
|
122
122
|
]
|
|
123
123
|
},
|
|
124
|
-
{
|
|
125
|
-
"kind": "account",
|
|
126
|
-
"path": "feeConfig"
|
|
127
|
-
},
|
|
128
124
|
{
|
|
129
125
|
"kind": "account",
|
|
130
126
|
"path": "recipient"
|
|
@@ -132,13 +128,6 @@ export type LiquidFees = {
|
|
|
132
128
|
]
|
|
133
129
|
}
|
|
134
130
|
},
|
|
135
|
-
{
|
|
136
|
-
"name": "feeConfig",
|
|
137
|
-
"docs": [
|
|
138
|
-
"The fee configuration this vault belongs to.",
|
|
139
|
-
"only the correct fee_config will produce a vault PDA that has funds."
|
|
140
|
-
]
|
|
141
|
-
},
|
|
142
131
|
{
|
|
143
132
|
"name": "systemProgram",
|
|
144
133
|
"address": "11111111111111111111111111111111"
|
|
@@ -176,7 +165,7 @@ export type LiquidFees = {
|
|
|
176
165
|
"docs": [
|
|
177
166
|
"Liquid events program for centralized event emission."
|
|
178
167
|
],
|
|
179
|
-
"address": "
|
|
168
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
180
169
|
}
|
|
181
170
|
],
|
|
182
171
|
"args": []
|
|
@@ -305,13 +294,6 @@ export type LiquidFees = {
|
|
|
305
294
|
],
|
|
306
295
|
"writable": true
|
|
307
296
|
},
|
|
308
|
-
{
|
|
309
|
-
"name": "feeConfig",
|
|
310
|
-
"docs": [
|
|
311
|
-
"The fee configuration this vault belongs to.",
|
|
312
|
-
"only the correct fee_config will produce a vault PDA that has funds."
|
|
313
|
-
]
|
|
314
|
-
},
|
|
315
297
|
{
|
|
316
298
|
"name": "quoteMint",
|
|
317
299
|
"docs": [
|
|
@@ -345,10 +327,6 @@ export type LiquidFees = {
|
|
|
345
327
|
116
|
|
346
328
|
]
|
|
347
329
|
},
|
|
348
|
-
{
|
|
349
|
-
"kind": "account",
|
|
350
|
-
"path": "feeConfig"
|
|
351
|
-
},
|
|
352
330
|
{
|
|
353
331
|
"kind": "account",
|
|
354
332
|
"path": "recipient"
|
|
@@ -397,7 +375,7 @@ export type LiquidFees = {
|
|
|
397
375
|
"docs": [
|
|
398
376
|
"Liquid events program for centralized event emission."
|
|
399
377
|
],
|
|
400
|
-
"address": "
|
|
378
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
401
379
|
}
|
|
402
380
|
],
|
|
403
381
|
"args": []
|
|
@@ -541,7 +519,7 @@ export type LiquidFees = {
|
|
|
541
519
|
"docs": [
|
|
542
520
|
"Liquid events program for centralized event emission."
|
|
543
521
|
],
|
|
544
|
-
"address": "
|
|
522
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
545
523
|
}
|
|
546
524
|
],
|
|
547
525
|
"args": []
|
|
@@ -788,7 +766,7 @@ export type LiquidFees = {
|
|
|
788
766
|
"docs": [
|
|
789
767
|
"Liquid events program for centralized event emission."
|
|
790
768
|
],
|
|
791
|
-
"address": "
|
|
769
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
792
770
|
}
|
|
793
771
|
],
|
|
794
772
|
"args": []
|
|
@@ -1112,7 +1090,7 @@ export type LiquidFees = {
|
|
|
1112
1090
|
"docs": [
|
|
1113
1091
|
"Liquid events program for centralized event emission."
|
|
1114
1092
|
],
|
|
1115
|
-
"address": "
|
|
1093
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
1116
1094
|
}
|
|
1117
1095
|
],
|
|
1118
1096
|
"args": [
|
|
@@ -1265,7 +1243,7 @@ export type LiquidFees = {
|
|
|
1265
1243
|
"docs": [
|
|
1266
1244
|
"Liquid events program for centralized event emission."
|
|
1267
1245
|
],
|
|
1268
|
-
"address": "
|
|
1246
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
1269
1247
|
}
|
|
1270
1248
|
],
|
|
1271
1249
|
"args": []
|
|
@@ -1479,7 +1457,7 @@ export type LiquidFees = {
|
|
|
1479
1457
|
"docs": [
|
|
1480
1458
|
"Liquid events program for centralized event emission."
|
|
1481
1459
|
],
|
|
1482
|
-
"address": "
|
|
1460
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
1483
1461
|
}
|
|
1484
1462
|
],
|
|
1485
1463
|
"args": [
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
2
|
+
"address": "State3HtEfi7cXdsTpAtRoBvrij8zSFCiGTAVWmYH2d",
|
|
3
3
|
"metadata": {
|
|
4
4
|
"name": "liquid_state",
|
|
5
5
|
"version": "0.1.0",
|
|
@@ -241,7 +241,7 @@
|
|
|
241
241
|
"docs": [
|
|
242
242
|
"Liquid events program for centralized event emission."
|
|
243
243
|
],
|
|
244
|
-
"address": "
|
|
244
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
245
245
|
},
|
|
246
246
|
{
|
|
247
247
|
"name": "system_program",
|
|
@@ -429,7 +429,7 @@
|
|
|
429
429
|
"docs": [
|
|
430
430
|
"Liquid events program for centralized event emission."
|
|
431
431
|
],
|
|
432
|
-
"address": "
|
|
432
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
433
433
|
}
|
|
434
434
|
],
|
|
435
435
|
"args": []
|
|
@@ -556,7 +556,7 @@
|
|
|
556
556
|
"docs": [
|
|
557
557
|
"Liquid events program for centralized event emission."
|
|
558
558
|
],
|
|
559
|
-
"address": "
|
|
559
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
560
560
|
},
|
|
561
561
|
{
|
|
562
562
|
"name": "system_program",
|
|
@@ -672,7 +672,7 @@
|
|
|
672
672
|
"docs": [
|
|
673
673
|
"Liquid events program for centralized event emission."
|
|
674
674
|
],
|
|
675
|
-
"address": "
|
|
675
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
676
676
|
},
|
|
677
677
|
{
|
|
678
678
|
"name": "cashback_config",
|
|
@@ -1099,7 +1099,7 @@
|
|
|
1099
1099
|
"docs": [
|
|
1100
1100
|
"Liquid events program for centralized event emission."
|
|
1101
1101
|
],
|
|
1102
|
-
"address": "
|
|
1102
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
1103
1103
|
}
|
|
1104
1104
|
],
|
|
1105
1105
|
"args": []
|
|
@@ -1190,7 +1190,7 @@
|
|
|
1190
1190
|
"docs": [
|
|
1191
1191
|
"Liquid events program for centralized event emission."
|
|
1192
1192
|
],
|
|
1193
|
-
"address": "
|
|
1193
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
1194
1194
|
}
|
|
1195
1195
|
],
|
|
1196
1196
|
"args": []
|
|
@@ -1291,7 +1291,7 @@
|
|
|
1291
1291
|
"docs": [
|
|
1292
1292
|
"Liquid events program for centralized event emission."
|
|
1293
1293
|
],
|
|
1294
|
-
"address": "
|
|
1294
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
1295
1295
|
}
|
|
1296
1296
|
],
|
|
1297
1297
|
"args": [
|
|
@@ -1402,7 +1402,7 @@
|
|
|
1402
1402
|
"docs": [
|
|
1403
1403
|
"Liquid events program for centralized event emission."
|
|
1404
1404
|
],
|
|
1405
|
-
"address": "
|
|
1405
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
1406
1406
|
}
|
|
1407
1407
|
],
|
|
1408
1408
|
"args": [
|
|
@@ -1590,7 +1590,7 @@
|
|
|
1590
1590
|
"docs": [
|
|
1591
1591
|
"Liquid events program for centralized event emission."
|
|
1592
1592
|
],
|
|
1593
|
-
"address": "
|
|
1593
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
1594
1594
|
},
|
|
1595
1595
|
{
|
|
1596
1596
|
"name": "system_program",
|
|
@@ -1721,38 +1721,38 @@
|
|
|
1721
1721
|
"program": {
|
|
1722
1722
|
"kind": "const",
|
|
1723
1723
|
"value": [
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
24,
|
|
1737
|
-
28,
|
|
1738
|
-
56,
|
|
1739
|
-
136,
|
|
1740
|
-
88,
|
|
1724
|
+
6,
|
|
1725
|
+
165,
|
|
1726
|
+
60,
|
|
1727
|
+
202,
|
|
1728
|
+
204,
|
|
1729
|
+
17,
|
|
1730
|
+
4,
|
|
1731
|
+
104,
|
|
1732
|
+
249,
|
|
1733
|
+
125,
|
|
1734
|
+
214,
|
|
1735
|
+
143,
|
|
1741
1736
|
2,
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1737
|
+
99,
|
|
1738
|
+
165,
|
|
1739
|
+
89,
|
|
1740
|
+
177,
|
|
1741
|
+
218,
|
|
1742
|
+
121,
|
|
1743
|
+
12,
|
|
1744
|
+
23,
|
|
1745
|
+
196,
|
|
1746
|
+
207,
|
|
1747
|
+
105,
|
|
1748
|
+
96,
|
|
1749
|
+
207,
|
|
1752
1750
|
2,
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1751
|
+
136,
|
|
1752
|
+
202,
|
|
1753
|
+
45,
|
|
1754
|
+
209,
|
|
1755
|
+
225
|
|
1756
1756
|
]
|
|
1757
1757
|
}
|
|
1758
1758
|
}
|
|
@@ -2002,38 +2002,38 @@
|
|
|
2002
2002
|
"program": {
|
|
2003
2003
|
"kind": "const",
|
|
2004
2004
|
"value": [
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2005
|
+
5,
|
|
2006
|
+
13,
|
|
2007
|
+
89,
|
|
2008
|
+
2,
|
|
2009
|
+
127,
|
|
2010
|
+
227,
|
|
2011
|
+
146,
|
|
2012
|
+
196,
|
|
2013
|
+
34,
|
|
2014
|
+
13,
|
|
2015
|
+
249,
|
|
2016
2016
|
181,
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2017
|
+
167,
|
|
2018
|
+
33,
|
|
2019
|
+
126,
|
|
2020
|
+
56,
|
|
2021
|
+
182,
|
|
2022
|
+
105,
|
|
2023
|
+
148,
|
|
2024
|
+
219,
|
|
2025
|
+
33,
|
|
2026
|
+
200,
|
|
2027
|
+
131,
|
|
2028
|
+
117,
|
|
2029
|
+
84,
|
|
2030
|
+
120,
|
|
2031
|
+
212,
|
|
2032
|
+
68,
|
|
2033
|
+
166,
|
|
2034
|
+
219,
|
|
2035
|
+
24,
|
|
2036
|
+
119
|
|
2037
2037
|
]
|
|
2038
2038
|
}
|
|
2039
2039
|
}
|
|
@@ -2273,7 +2273,7 @@
|
|
|
2273
2273
|
"docs": [
|
|
2274
2274
|
"Liquid events program for centralized event emission."
|
|
2275
2275
|
],
|
|
2276
|
-
"address": "
|
|
2276
|
+
"address": "EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"
|
|
2277
2277
|
}
|
|
2278
2278
|
],
|
|
2279
2279
|
"args": [
|