@nexusmutual/sdk 0.3.9 → 0.3.10
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/data/abis/PriceFeedOracle.json +18 -0
- package/dist/data/abis/SwapOperator.json +120 -0
- package/dist/data/products.json +12 -12
- package/dist/index.d.mts +226 -12
- package/dist/index.d.ts +226 -12
- package/dist/index.js +12 -12
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -12
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -15,6 +15,11 @@
|
|
|
15
15
|
"internalType": "uint8[]",
|
|
16
16
|
"name": "_assetDecimals",
|
|
17
17
|
"type": "uint8[]"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"internalType": "address",
|
|
21
|
+
"name": "_safeTracker",
|
|
22
|
+
"type": "address"
|
|
18
23
|
}
|
|
19
24
|
],
|
|
20
25
|
"stateMutability": "nonpayable",
|
|
@@ -123,5 +128,18 @@
|
|
|
123
128
|
],
|
|
124
129
|
"stateMutability": "view",
|
|
125
130
|
"type": "function"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"inputs": [],
|
|
134
|
+
"name": "safeTracker",
|
|
135
|
+
"outputs": [
|
|
136
|
+
{
|
|
137
|
+
"internalType": "address",
|
|
138
|
+
"name": "",
|
|
139
|
+
"type": "address"
|
|
140
|
+
}
|
|
141
|
+
],
|
|
142
|
+
"stateMutability": "view",
|
|
143
|
+
"type": "function"
|
|
126
144
|
}
|
|
127
145
|
]
|
|
@@ -26,6 +26,21 @@
|
|
|
26
26
|
"name": "_enzymeV4VaultProxyAddress",
|
|
27
27
|
"type": "address"
|
|
28
28
|
},
|
|
29
|
+
{
|
|
30
|
+
"internalType": "address",
|
|
31
|
+
"name": "_safe",
|
|
32
|
+
"type": "address"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"internalType": "address",
|
|
36
|
+
"name": "_dai",
|
|
37
|
+
"type": "address"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"internalType": "address",
|
|
41
|
+
"name": "_usdc",
|
|
42
|
+
"type": "address"
|
|
43
|
+
},
|
|
29
44
|
{
|
|
30
45
|
"internalType": "contract IEnzymeFundValueCalculatorRouter",
|
|
31
46
|
"name": "_enzymeFundValueCalculatorRouter",
|
|
@@ -442,6 +457,25 @@
|
|
|
442
457
|
"name": "Swapped",
|
|
443
458
|
"type": "event"
|
|
444
459
|
},
|
|
460
|
+
{
|
|
461
|
+
"anonymous": false,
|
|
462
|
+
"inputs": [
|
|
463
|
+
{
|
|
464
|
+
"indexed": false,
|
|
465
|
+
"internalType": "address",
|
|
466
|
+
"name": "asset",
|
|
467
|
+
"type": "address"
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
"indexed": false,
|
|
471
|
+
"internalType": "uint256",
|
|
472
|
+
"name": "amount",
|
|
473
|
+
"type": "uint256"
|
|
474
|
+
}
|
|
475
|
+
],
|
|
476
|
+
"name": "TransferredToSafe",
|
|
477
|
+
"type": "event"
|
|
478
|
+
},
|
|
445
479
|
{
|
|
446
480
|
"inputs": [],
|
|
447
481
|
"name": "ETH",
|
|
@@ -520,6 +554,25 @@
|
|
|
520
554
|
"stateMutability": "view",
|
|
521
555
|
"type": "function"
|
|
522
556
|
},
|
|
557
|
+
{
|
|
558
|
+
"inputs": [
|
|
559
|
+
{
|
|
560
|
+
"internalType": "address",
|
|
561
|
+
"name": "",
|
|
562
|
+
"type": "address"
|
|
563
|
+
}
|
|
564
|
+
],
|
|
565
|
+
"name": "allowedSafeTransferAssets",
|
|
566
|
+
"outputs": [
|
|
567
|
+
{
|
|
568
|
+
"internalType": "bool",
|
|
569
|
+
"name": "",
|
|
570
|
+
"type": "bool"
|
|
571
|
+
}
|
|
572
|
+
],
|
|
573
|
+
"stateMutability": "view",
|
|
574
|
+
"type": "function"
|
|
575
|
+
},
|
|
523
576
|
{
|
|
524
577
|
"inputs": [
|
|
525
578
|
{
|
|
@@ -972,6 +1025,37 @@
|
|
|
972
1025
|
"stateMutability": "nonpayable",
|
|
973
1026
|
"type": "function"
|
|
974
1027
|
},
|
|
1028
|
+
{
|
|
1029
|
+
"inputs": [
|
|
1030
|
+
{
|
|
1031
|
+
"internalType": "address",
|
|
1032
|
+
"name": "asset",
|
|
1033
|
+
"type": "address"
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
"internalType": "uint256",
|
|
1037
|
+
"name": "amount",
|
|
1038
|
+
"type": "uint256"
|
|
1039
|
+
}
|
|
1040
|
+
],
|
|
1041
|
+
"name": "requestAsset",
|
|
1042
|
+
"outputs": [],
|
|
1043
|
+
"stateMutability": "nonpayable",
|
|
1044
|
+
"type": "function"
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
"inputs": [],
|
|
1048
|
+
"name": "safe",
|
|
1049
|
+
"outputs": [
|
|
1050
|
+
{
|
|
1051
|
+
"internalType": "address",
|
|
1052
|
+
"name": "",
|
|
1053
|
+
"type": "address"
|
|
1054
|
+
}
|
|
1055
|
+
],
|
|
1056
|
+
"stateMutability": "view",
|
|
1057
|
+
"type": "function"
|
|
1058
|
+
},
|
|
975
1059
|
{
|
|
976
1060
|
"inputs": [],
|
|
977
1061
|
"name": "swapController",
|
|
@@ -1021,6 +1105,42 @@
|
|
|
1021
1105
|
"stateMutability": "nonpayable",
|
|
1022
1106
|
"type": "function"
|
|
1023
1107
|
},
|
|
1108
|
+
{
|
|
1109
|
+
"inputs": [],
|
|
1110
|
+
"name": "transferRequest",
|
|
1111
|
+
"outputs": [
|
|
1112
|
+
{
|
|
1113
|
+
"internalType": "address",
|
|
1114
|
+
"name": "asset",
|
|
1115
|
+
"type": "address"
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
"internalType": "uint256",
|
|
1119
|
+
"name": "amount",
|
|
1120
|
+
"type": "uint256"
|
|
1121
|
+
}
|
|
1122
|
+
],
|
|
1123
|
+
"stateMutability": "view",
|
|
1124
|
+
"type": "function"
|
|
1125
|
+
},
|
|
1126
|
+
{
|
|
1127
|
+
"inputs": [
|
|
1128
|
+
{
|
|
1129
|
+
"internalType": "address",
|
|
1130
|
+
"name": "requestedAsset",
|
|
1131
|
+
"type": "address"
|
|
1132
|
+
},
|
|
1133
|
+
{
|
|
1134
|
+
"internalType": "uint256",
|
|
1135
|
+
"name": "requestedAmount",
|
|
1136
|
+
"type": "uint256"
|
|
1137
|
+
}
|
|
1138
|
+
],
|
|
1139
|
+
"name": "transferRequestedAsset",
|
|
1140
|
+
"outputs": [],
|
|
1141
|
+
"stateMutability": "nonpayable",
|
|
1142
|
+
"type": "function"
|
|
1143
|
+
},
|
|
1024
1144
|
{
|
|
1025
1145
|
"inputs": [],
|
|
1026
1146
|
"name": "weth",
|
package/dist/data/products.json
CHANGED
|
@@ -1360,7 +1360,7 @@
|
|
|
1360
1360
|
"DAI"
|
|
1361
1361
|
],
|
|
1362
1362
|
"isPrivate": true,
|
|
1363
|
-
"timestamp":
|
|
1363
|
+
"timestamp": 1704980411
|
|
1364
1364
|
},
|
|
1365
1365
|
{
|
|
1366
1366
|
"id": 84,
|
|
@@ -1422,7 +1422,7 @@
|
|
|
1422
1422
|
"DAI"
|
|
1423
1423
|
],
|
|
1424
1424
|
"isPrivate": true,
|
|
1425
|
-
"timestamp":
|
|
1425
|
+
"timestamp": 1704981731
|
|
1426
1426
|
},
|
|
1427
1427
|
{
|
|
1428
1428
|
"id": 88,
|
|
@@ -1439,7 +1439,7 @@
|
|
|
1439
1439
|
"DAI"
|
|
1440
1440
|
],
|
|
1441
1441
|
"isPrivate": true,
|
|
1442
|
-
"timestamp":
|
|
1442
|
+
"timestamp": 1704980411
|
|
1443
1443
|
},
|
|
1444
1444
|
{
|
|
1445
1445
|
"id": 89,
|
|
@@ -1516,7 +1516,7 @@
|
|
|
1516
1516
|
"DAI"
|
|
1517
1517
|
],
|
|
1518
1518
|
"isPrivate": true,
|
|
1519
|
-
"timestamp":
|
|
1519
|
+
"timestamp": 1704980411
|
|
1520
1520
|
},
|
|
1521
1521
|
{
|
|
1522
1522
|
"id": 94,
|
|
@@ -2165,7 +2165,7 @@
|
|
|
2165
2165
|
"ETH"
|
|
2166
2166
|
],
|
|
2167
2167
|
"isPrivate": false,
|
|
2168
|
-
"timestamp":
|
|
2168
|
+
"timestamp": 1709310707
|
|
2169
2169
|
},
|
|
2170
2170
|
{
|
|
2171
2171
|
"id": 137,
|
|
@@ -2273,7 +2273,7 @@
|
|
|
2273
2273
|
"ETH"
|
|
2274
2274
|
],
|
|
2275
2275
|
"isPrivate": false,
|
|
2276
|
-
"timestamp":
|
|
2276
|
+
"timestamp": 1715349875
|
|
2277
2277
|
},
|
|
2278
2278
|
{
|
|
2279
2279
|
"id": 144,
|
|
@@ -2371,7 +2371,7 @@
|
|
|
2371
2371
|
"DAI"
|
|
2372
2372
|
],
|
|
2373
2373
|
"isPrivate": false,
|
|
2374
|
-
"timestamp":
|
|
2374
|
+
"timestamp": 1715349875
|
|
2375
2375
|
},
|
|
2376
2376
|
{
|
|
2377
2377
|
"id": 150,
|
|
@@ -2387,7 +2387,7 @@
|
|
|
2387
2387
|
"ETH"
|
|
2388
2388
|
],
|
|
2389
2389
|
"isPrivate": false,
|
|
2390
|
-
"timestamp":
|
|
2390
|
+
"timestamp": 1711473767
|
|
2391
2391
|
},
|
|
2392
2392
|
{
|
|
2393
2393
|
"id": 151,
|
|
@@ -2468,7 +2468,7 @@
|
|
|
2468
2468
|
"ETH"
|
|
2469
2469
|
],
|
|
2470
2470
|
"isPrivate": false,
|
|
2471
|
-
"timestamp":
|
|
2471
|
+
"timestamp": 1711473767
|
|
2472
2472
|
},
|
|
2473
2473
|
{
|
|
2474
2474
|
"id": 156,
|
|
@@ -2500,7 +2500,7 @@
|
|
|
2500
2500
|
"DAI"
|
|
2501
2501
|
],
|
|
2502
2502
|
"isPrivate": false,
|
|
2503
|
-
"timestamp":
|
|
2503
|
+
"timestamp": 1712244083
|
|
2504
2504
|
},
|
|
2505
2505
|
{
|
|
2506
2506
|
"id": 158,
|
|
@@ -2516,7 +2516,7 @@
|
|
|
2516
2516
|
"ETH"
|
|
2517
2517
|
],
|
|
2518
2518
|
"isPrivate": false,
|
|
2519
|
-
"timestamp":
|
|
2519
|
+
"timestamp": 1712244083
|
|
2520
2520
|
},
|
|
2521
2521
|
{
|
|
2522
2522
|
"id": 159,
|
|
@@ -2565,7 +2565,7 @@
|
|
|
2565
2565
|
"ETH"
|
|
2566
2566
|
],
|
|
2567
2567
|
"isPrivate": false,
|
|
2568
|
-
"timestamp":
|
|
2568
|
+
"timestamp": 1713185771
|
|
2569
2569
|
},
|
|
2570
2570
|
{
|
|
2571
2571
|
"id": 162,
|
package/dist/index.d.mts
CHANGED
|
@@ -1601,7 +1601,7 @@ var products = [
|
|
|
1601
1601
|
"DAI"
|
|
1602
1602
|
],
|
|
1603
1603
|
isPrivate: true,
|
|
1604
|
-
timestamp:
|
|
1604
|
+
timestamp: 1704980411
|
|
1605
1605
|
},
|
|
1606
1606
|
{
|
|
1607
1607
|
id: 84,
|
|
@@ -1666,7 +1666,7 @@ var products = [
|
|
|
1666
1666
|
"DAI"
|
|
1667
1667
|
],
|
|
1668
1668
|
isPrivate: true,
|
|
1669
|
-
timestamp:
|
|
1669
|
+
timestamp: 1704981731
|
|
1670
1670
|
},
|
|
1671
1671
|
{
|
|
1672
1672
|
id: 88,
|
|
@@ -1683,7 +1683,7 @@ var products = [
|
|
|
1683
1683
|
"DAI"
|
|
1684
1684
|
],
|
|
1685
1685
|
isPrivate: true,
|
|
1686
|
-
timestamp:
|
|
1686
|
+
timestamp: 1704980411
|
|
1687
1687
|
},
|
|
1688
1688
|
{
|
|
1689
1689
|
id: 89,
|
|
@@ -1764,7 +1764,7 @@ var products = [
|
|
|
1764
1764
|
"DAI"
|
|
1765
1765
|
],
|
|
1766
1766
|
isPrivate: true,
|
|
1767
|
-
timestamp:
|
|
1767
|
+
timestamp: 1704980411
|
|
1768
1768
|
},
|
|
1769
1769
|
{
|
|
1770
1770
|
id: 94,
|
|
@@ -2450,7 +2450,7 @@ var products = [
|
|
|
2450
2450
|
"ETH"
|
|
2451
2451
|
],
|
|
2452
2452
|
isPrivate: false,
|
|
2453
|
-
timestamp:
|
|
2453
|
+
timestamp: 1709310707
|
|
2454
2454
|
},
|
|
2455
2455
|
{
|
|
2456
2456
|
id: 137,
|
|
@@ -2562,7 +2562,7 @@ var products = [
|
|
|
2562
2562
|
"ETH"
|
|
2563
2563
|
],
|
|
2564
2564
|
isPrivate: false,
|
|
2565
|
-
timestamp:
|
|
2565
|
+
timestamp: 1715349875
|
|
2566
2566
|
},
|
|
2567
2567
|
{
|
|
2568
2568
|
id: 144,
|
|
@@ -2662,7 +2662,7 @@ var products = [
|
|
|
2662
2662
|
"DAI"
|
|
2663
2663
|
],
|
|
2664
2664
|
isPrivate: false,
|
|
2665
|
-
timestamp:
|
|
2665
|
+
timestamp: 1715349875
|
|
2666
2666
|
},
|
|
2667
2667
|
{
|
|
2668
2668
|
id: 150,
|
|
@@ -2678,7 +2678,7 @@ var products = [
|
|
|
2678
2678
|
"ETH"
|
|
2679
2679
|
],
|
|
2680
2680
|
isPrivate: false,
|
|
2681
|
-
timestamp:
|
|
2681
|
+
timestamp: 1711473767
|
|
2682
2682
|
},
|
|
2683
2683
|
{
|
|
2684
2684
|
id: 151,
|
|
@@ -2759,7 +2759,7 @@ var products = [
|
|
|
2759
2759
|
"ETH"
|
|
2760
2760
|
],
|
|
2761
2761
|
isPrivate: false,
|
|
2762
|
-
timestamp:
|
|
2762
|
+
timestamp: 1711473767
|
|
2763
2763
|
},
|
|
2764
2764
|
{
|
|
2765
2765
|
id: 156,
|
|
@@ -2792,7 +2792,7 @@ var products = [
|
|
|
2792
2792
|
"DAI"
|
|
2793
2793
|
],
|
|
2794
2794
|
isPrivate: false,
|
|
2795
|
-
timestamp:
|
|
2795
|
+
timestamp: 1712244083
|
|
2796
2796
|
},
|
|
2797
2797
|
{
|
|
2798
2798
|
id: 158,
|
|
@@ -2808,7 +2808,7 @@ var products = [
|
|
|
2808
2808
|
"ETH"
|
|
2809
2809
|
],
|
|
2810
2810
|
isPrivate: false,
|
|
2811
|
-
timestamp:
|
|
2811
|
+
timestamp: 1712244083
|
|
2812
2812
|
},
|
|
2813
2813
|
{
|
|
2814
2814
|
id: 159,
|
|
@@ -2857,7 +2857,7 @@ var products = [
|
|
|
2857
2857
|
"ETH"
|
|
2858
2858
|
],
|
|
2859
2859
|
isPrivate: false,
|
|
2860
|
-
timestamp:
|
|
2860
|
+
timestamp: 1713185771
|
|
2861
2861
|
},
|
|
2862
2862
|
{
|
|
2863
2863
|
id: 162,
|
|
@@ -13913,6 +13913,10 @@ declare const nexusSdk: {
|
|
|
13913
13913
|
readonly internalType: "uint8[]";
|
|
13914
13914
|
readonly name: "_assetDecimals";
|
|
13915
13915
|
readonly type: "uint8[]";
|
|
13916
|
+
}, {
|
|
13917
|
+
readonly internalType: "address";
|
|
13918
|
+
readonly name: "_safeTracker";
|
|
13919
|
+
readonly type: "address";
|
|
13916
13920
|
}];
|
|
13917
13921
|
readonly stateMutability: "nonpayable";
|
|
13918
13922
|
readonly type: "constructor";
|
|
@@ -13994,6 +13998,16 @@ declare const nexusSdk: {
|
|
|
13994
13998
|
}];
|
|
13995
13999
|
readonly stateMutability: "view";
|
|
13996
14000
|
readonly type: "function";
|
|
14001
|
+
}, {
|
|
14002
|
+
readonly inputs: readonly [];
|
|
14003
|
+
readonly name: "safeTracker";
|
|
14004
|
+
readonly outputs: readonly [{
|
|
14005
|
+
readonly internalType: "address";
|
|
14006
|
+
readonly name: "";
|
|
14007
|
+
readonly type: "address";
|
|
14008
|
+
}];
|
|
14009
|
+
readonly stateMutability: "view";
|
|
14010
|
+
readonly type: "function";
|
|
13997
14011
|
}];
|
|
13998
14012
|
ProductsV1: readonly [{
|
|
13999
14013
|
readonly inputs: readonly [{
|
|
@@ -18812,6 +18826,18 @@ declare const nexusSdk: {
|
|
|
18812
18826
|
readonly internalType: "address";
|
|
18813
18827
|
readonly name: "_enzymeV4VaultProxyAddress";
|
|
18814
18828
|
readonly type: "address";
|
|
18829
|
+
}, {
|
|
18830
|
+
readonly internalType: "address";
|
|
18831
|
+
readonly name: "_safe";
|
|
18832
|
+
readonly type: "address";
|
|
18833
|
+
}, {
|
|
18834
|
+
readonly internalType: "address";
|
|
18835
|
+
readonly name: "_dai";
|
|
18836
|
+
readonly type: "address";
|
|
18837
|
+
}, {
|
|
18838
|
+
readonly internalType: "address";
|
|
18839
|
+
readonly name: "_usdc";
|
|
18840
|
+
readonly type: "address";
|
|
18815
18841
|
}, {
|
|
18816
18842
|
readonly internalType: "contract IEnzymeFundValueCalculatorRouter";
|
|
18817
18843
|
readonly name: "_enzymeFundValueCalculatorRouter";
|
|
@@ -19131,6 +19157,21 @@ declare const nexusSdk: {
|
|
|
19131
19157
|
}];
|
|
19132
19158
|
readonly name: "Swapped";
|
|
19133
19159
|
readonly type: "event";
|
|
19160
|
+
}, {
|
|
19161
|
+
readonly anonymous: false;
|
|
19162
|
+
readonly inputs: readonly [{
|
|
19163
|
+
readonly indexed: false;
|
|
19164
|
+
readonly internalType: "address";
|
|
19165
|
+
readonly name: "asset";
|
|
19166
|
+
readonly type: "address";
|
|
19167
|
+
}, {
|
|
19168
|
+
readonly indexed: false;
|
|
19169
|
+
readonly internalType: "uint256";
|
|
19170
|
+
readonly name: "amount";
|
|
19171
|
+
readonly type: "uint256";
|
|
19172
|
+
}];
|
|
19173
|
+
readonly name: "TransferredToSafe";
|
|
19174
|
+
readonly type: "event";
|
|
19134
19175
|
}, {
|
|
19135
19176
|
readonly inputs: readonly [];
|
|
19136
19177
|
readonly name: "ETH";
|
|
@@ -19191,6 +19232,20 @@ declare const nexusSdk: {
|
|
|
19191
19232
|
}];
|
|
19192
19233
|
readonly stateMutability: "view";
|
|
19193
19234
|
readonly type: "function";
|
|
19235
|
+
}, {
|
|
19236
|
+
readonly inputs: readonly [{
|
|
19237
|
+
readonly internalType: "address";
|
|
19238
|
+
readonly name: "";
|
|
19239
|
+
readonly type: "address";
|
|
19240
|
+
}];
|
|
19241
|
+
readonly name: "allowedSafeTransferAssets";
|
|
19242
|
+
readonly outputs: readonly [{
|
|
19243
|
+
readonly internalType: "bool";
|
|
19244
|
+
readonly name: "";
|
|
19245
|
+
readonly type: "bool";
|
|
19246
|
+
}];
|
|
19247
|
+
readonly stateMutability: "view";
|
|
19248
|
+
readonly type: "function";
|
|
19194
19249
|
}, {
|
|
19195
19250
|
readonly inputs: readonly [{
|
|
19196
19251
|
readonly components: readonly [{
|
|
@@ -19543,6 +19598,30 @@ declare const nexusSdk: {
|
|
|
19543
19598
|
readonly outputs: readonly [];
|
|
19544
19599
|
readonly stateMutability: "nonpayable";
|
|
19545
19600
|
readonly type: "function";
|
|
19601
|
+
}, {
|
|
19602
|
+
readonly inputs: readonly [{
|
|
19603
|
+
readonly internalType: "address";
|
|
19604
|
+
readonly name: "asset";
|
|
19605
|
+
readonly type: "address";
|
|
19606
|
+
}, {
|
|
19607
|
+
readonly internalType: "uint256";
|
|
19608
|
+
readonly name: "amount";
|
|
19609
|
+
readonly type: "uint256";
|
|
19610
|
+
}];
|
|
19611
|
+
readonly name: "requestAsset";
|
|
19612
|
+
readonly outputs: readonly [];
|
|
19613
|
+
readonly stateMutability: "nonpayable";
|
|
19614
|
+
readonly type: "function";
|
|
19615
|
+
}, {
|
|
19616
|
+
readonly inputs: readonly [];
|
|
19617
|
+
readonly name: "safe";
|
|
19618
|
+
readonly outputs: readonly [{
|
|
19619
|
+
readonly internalType: "address";
|
|
19620
|
+
readonly name: "";
|
|
19621
|
+
readonly type: "address";
|
|
19622
|
+
}];
|
|
19623
|
+
readonly stateMutability: "view";
|
|
19624
|
+
readonly type: "function";
|
|
19546
19625
|
}, {
|
|
19547
19626
|
readonly inputs: readonly [];
|
|
19548
19627
|
readonly name: "swapController";
|
|
@@ -19581,6 +19660,34 @@ declare const nexusSdk: {
|
|
|
19581
19660
|
readonly outputs: readonly [];
|
|
19582
19661
|
readonly stateMutability: "nonpayable";
|
|
19583
19662
|
readonly type: "function";
|
|
19663
|
+
}, {
|
|
19664
|
+
readonly inputs: readonly [];
|
|
19665
|
+
readonly name: "transferRequest";
|
|
19666
|
+
readonly outputs: readonly [{
|
|
19667
|
+
readonly internalType: "address";
|
|
19668
|
+
readonly name: "asset";
|
|
19669
|
+
readonly type: "address";
|
|
19670
|
+
}, {
|
|
19671
|
+
readonly internalType: "uint256";
|
|
19672
|
+
readonly name: "amount";
|
|
19673
|
+
readonly type: "uint256";
|
|
19674
|
+
}];
|
|
19675
|
+
readonly stateMutability: "view";
|
|
19676
|
+
readonly type: "function";
|
|
19677
|
+
}, {
|
|
19678
|
+
readonly inputs: readonly [{
|
|
19679
|
+
readonly internalType: "address";
|
|
19680
|
+
readonly name: "requestedAsset";
|
|
19681
|
+
readonly type: "address";
|
|
19682
|
+
}, {
|
|
19683
|
+
readonly internalType: "uint256";
|
|
19684
|
+
readonly name: "requestedAmount";
|
|
19685
|
+
readonly type: "uint256";
|
|
19686
|
+
}];
|
|
19687
|
+
readonly name: "transferRequestedAsset";
|
|
19688
|
+
readonly outputs: readonly [];
|
|
19689
|
+
readonly stateMutability: "nonpayable";
|
|
19690
|
+
readonly type: "function";
|
|
19584
19691
|
}, {
|
|
19585
19692
|
readonly inputs: readonly [];
|
|
19586
19693
|
readonly name: "weth";
|
|
@@ -31217,6 +31324,10 @@ declare const nexusSdk: {
|
|
|
31217
31324
|
readonly internalType: "uint8[]";
|
|
31218
31325
|
readonly name: "_assetDecimals";
|
|
31219
31326
|
readonly type: "uint8[]";
|
|
31327
|
+
}, {
|
|
31328
|
+
readonly internalType: "address";
|
|
31329
|
+
readonly name: "_safeTracker";
|
|
31330
|
+
readonly type: "address";
|
|
31220
31331
|
}];
|
|
31221
31332
|
readonly stateMutability: "nonpayable";
|
|
31222
31333
|
readonly type: "constructor";
|
|
@@ -31298,6 +31409,16 @@ declare const nexusSdk: {
|
|
|
31298
31409
|
}];
|
|
31299
31410
|
readonly stateMutability: "view";
|
|
31300
31411
|
readonly type: "function";
|
|
31412
|
+
}, {
|
|
31413
|
+
readonly inputs: readonly [];
|
|
31414
|
+
readonly name: "safeTracker";
|
|
31415
|
+
readonly outputs: readonly [{
|
|
31416
|
+
readonly internalType: "address";
|
|
31417
|
+
readonly name: "";
|
|
31418
|
+
readonly type: "address";
|
|
31419
|
+
}];
|
|
31420
|
+
readonly stateMutability: "view";
|
|
31421
|
+
readonly type: "function";
|
|
31301
31422
|
}];
|
|
31302
31423
|
readonly ProductsV1: readonly [{
|
|
31303
31424
|
readonly inputs: readonly [{
|
|
@@ -36116,6 +36237,18 @@ declare const nexusSdk: {
|
|
|
36116
36237
|
readonly internalType: "address";
|
|
36117
36238
|
readonly name: "_enzymeV4VaultProxyAddress";
|
|
36118
36239
|
readonly type: "address";
|
|
36240
|
+
}, {
|
|
36241
|
+
readonly internalType: "address";
|
|
36242
|
+
readonly name: "_safe";
|
|
36243
|
+
readonly type: "address";
|
|
36244
|
+
}, {
|
|
36245
|
+
readonly internalType: "address";
|
|
36246
|
+
readonly name: "_dai";
|
|
36247
|
+
readonly type: "address";
|
|
36248
|
+
}, {
|
|
36249
|
+
readonly internalType: "address";
|
|
36250
|
+
readonly name: "_usdc";
|
|
36251
|
+
readonly type: "address";
|
|
36119
36252
|
}, {
|
|
36120
36253
|
readonly internalType: "contract IEnzymeFundValueCalculatorRouter";
|
|
36121
36254
|
readonly name: "_enzymeFundValueCalculatorRouter";
|
|
@@ -36435,6 +36568,21 @@ declare const nexusSdk: {
|
|
|
36435
36568
|
}];
|
|
36436
36569
|
readonly name: "Swapped";
|
|
36437
36570
|
readonly type: "event";
|
|
36571
|
+
}, {
|
|
36572
|
+
readonly anonymous: false;
|
|
36573
|
+
readonly inputs: readonly [{
|
|
36574
|
+
readonly indexed: false;
|
|
36575
|
+
readonly internalType: "address";
|
|
36576
|
+
readonly name: "asset";
|
|
36577
|
+
readonly type: "address";
|
|
36578
|
+
}, {
|
|
36579
|
+
readonly indexed: false;
|
|
36580
|
+
readonly internalType: "uint256";
|
|
36581
|
+
readonly name: "amount";
|
|
36582
|
+
readonly type: "uint256";
|
|
36583
|
+
}];
|
|
36584
|
+
readonly name: "TransferredToSafe";
|
|
36585
|
+
readonly type: "event";
|
|
36438
36586
|
}, {
|
|
36439
36587
|
readonly inputs: readonly [];
|
|
36440
36588
|
readonly name: "ETH";
|
|
@@ -36495,6 +36643,20 @@ declare const nexusSdk: {
|
|
|
36495
36643
|
}];
|
|
36496
36644
|
readonly stateMutability: "view";
|
|
36497
36645
|
readonly type: "function";
|
|
36646
|
+
}, {
|
|
36647
|
+
readonly inputs: readonly [{
|
|
36648
|
+
readonly internalType: "address";
|
|
36649
|
+
readonly name: "";
|
|
36650
|
+
readonly type: "address";
|
|
36651
|
+
}];
|
|
36652
|
+
readonly name: "allowedSafeTransferAssets";
|
|
36653
|
+
readonly outputs: readonly [{
|
|
36654
|
+
readonly internalType: "bool";
|
|
36655
|
+
readonly name: "";
|
|
36656
|
+
readonly type: "bool";
|
|
36657
|
+
}];
|
|
36658
|
+
readonly stateMutability: "view";
|
|
36659
|
+
readonly type: "function";
|
|
36498
36660
|
}, {
|
|
36499
36661
|
readonly inputs: readonly [{
|
|
36500
36662
|
readonly components: readonly [{
|
|
@@ -36847,6 +37009,30 @@ declare const nexusSdk: {
|
|
|
36847
37009
|
readonly outputs: readonly [];
|
|
36848
37010
|
readonly stateMutability: "nonpayable";
|
|
36849
37011
|
readonly type: "function";
|
|
37012
|
+
}, {
|
|
37013
|
+
readonly inputs: readonly [{
|
|
37014
|
+
readonly internalType: "address";
|
|
37015
|
+
readonly name: "asset";
|
|
37016
|
+
readonly type: "address";
|
|
37017
|
+
}, {
|
|
37018
|
+
readonly internalType: "uint256";
|
|
37019
|
+
readonly name: "amount";
|
|
37020
|
+
readonly type: "uint256";
|
|
37021
|
+
}];
|
|
37022
|
+
readonly name: "requestAsset";
|
|
37023
|
+
readonly outputs: readonly [];
|
|
37024
|
+
readonly stateMutability: "nonpayable";
|
|
37025
|
+
readonly type: "function";
|
|
37026
|
+
}, {
|
|
37027
|
+
readonly inputs: readonly [];
|
|
37028
|
+
readonly name: "safe";
|
|
37029
|
+
readonly outputs: readonly [{
|
|
37030
|
+
readonly internalType: "address";
|
|
37031
|
+
readonly name: "";
|
|
37032
|
+
readonly type: "address";
|
|
37033
|
+
}];
|
|
37034
|
+
readonly stateMutability: "view";
|
|
37035
|
+
readonly type: "function";
|
|
36850
37036
|
}, {
|
|
36851
37037
|
readonly inputs: readonly [];
|
|
36852
37038
|
readonly name: "swapController";
|
|
@@ -36885,6 +37071,34 @@ declare const nexusSdk: {
|
|
|
36885
37071
|
readonly outputs: readonly [];
|
|
36886
37072
|
readonly stateMutability: "nonpayable";
|
|
36887
37073
|
readonly type: "function";
|
|
37074
|
+
}, {
|
|
37075
|
+
readonly inputs: readonly [];
|
|
37076
|
+
readonly name: "transferRequest";
|
|
37077
|
+
readonly outputs: readonly [{
|
|
37078
|
+
readonly internalType: "address";
|
|
37079
|
+
readonly name: "asset";
|
|
37080
|
+
readonly type: "address";
|
|
37081
|
+
}, {
|
|
37082
|
+
readonly internalType: "uint256";
|
|
37083
|
+
readonly name: "amount";
|
|
37084
|
+
readonly type: "uint256";
|
|
37085
|
+
}];
|
|
37086
|
+
readonly stateMutability: "view";
|
|
37087
|
+
readonly type: "function";
|
|
37088
|
+
}, {
|
|
37089
|
+
readonly inputs: readonly [{
|
|
37090
|
+
readonly internalType: "address";
|
|
37091
|
+
readonly name: "requestedAsset";
|
|
37092
|
+
readonly type: "address";
|
|
37093
|
+
}, {
|
|
37094
|
+
readonly internalType: "uint256";
|
|
37095
|
+
readonly name: "requestedAmount";
|
|
37096
|
+
readonly type: "uint256";
|
|
37097
|
+
}];
|
|
37098
|
+
readonly name: "transferRequestedAsset";
|
|
37099
|
+
readonly outputs: readonly [];
|
|
37100
|
+
readonly stateMutability: "nonpayable";
|
|
37101
|
+
readonly type: "function";
|
|
36888
37102
|
}, {
|
|
36889
37103
|
readonly inputs: readonly [];
|
|
36890
37104
|
readonly name: "weth";
|