@nexusmutual/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.
- package/.github/workflows/merge-master.yml +124 -0
- package/.github/workflows/pull_request.yml +62 -0
- package/README.md +32 -0
- package/dist/contracts/abis/Assessment.json +700 -0
- package/dist/contracts/abis/Cover.json +1258 -0
- package/dist/contracts/abis/CoverMigrator.json +189 -0
- package/dist/contracts/abis/CoverNFT.json +498 -0
- package/dist/contracts/abis/CoverNFTDescriptor.json +200 -0
- package/dist/contracts/abis/CoverViewer.json +124 -0
- package/dist/contracts/abis/EACAggregatorProxy.json +58 -0
- package/dist/contracts/abis/ERC20.json +364 -0
- package/dist/contracts/abis/Governance.json +975 -0
- package/dist/contracts/abis/IndividualClaims.json +528 -0
- package/dist/contracts/abis/LegacyClaimProofs.json +64 -0
- package/dist/contracts/abis/LegacyClaimsData.json +1912 -0
- package/dist/contracts/abis/LegacyClaimsReward.json +179 -0
- package/dist/contracts/abis/LegacyGateway.json +542 -0
- package/dist/contracts/abis/LegacyPooledStaking.json +1320 -0
- package/dist/contracts/abis/LegacyQuotationData.json +1121 -0
- package/dist/contracts/abis/MCR.json +326 -0
- package/dist/contracts/abis/MemberRoles.json +681 -0
- package/dist/contracts/abis/NXMToken.json +498 -0
- package/dist/contracts/abis/NXMaster.json +501 -0
- package/dist/contracts/abis/Pool.json +928 -0
- package/dist/contracts/abis/PriceFeedOracle.json +122 -0
- package/dist/contracts/abis/ProductsV1.json +21 -0
- package/dist/contracts/abis/ProposalCategory.json +550 -0
- package/dist/contracts/abis/StakingNFT.json +569 -0
- package/dist/contracts/abis/StakingNFTDescriptor.json +222 -0
- package/dist/contracts/abis/StakingPool.json +1433 -0
- package/dist/contracts/abis/StakingPoolFactory.json +108 -0
- package/dist/contracts/abis/StakingProducts.json +885 -0
- package/dist/contracts/abis/StakingViewer.json +777 -0
- package/dist/contracts/abis/SwapOperator.json +754 -0
- package/dist/contracts/abis/TokenController.json +1024 -0
- package/dist/contracts/abis/YieldTokenIncidents.json +438 -0
- package/dist/contracts/abis/index.js +69 -0
- package/dist/contracts/addresses.json +35 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +13 -0
- package/dist/products/product-logos.json +103 -0
- package/dist/products/product-types.json +58 -0
- package/dist/products/products.json +1414 -0
- package/package.json +50 -0
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "constructor",
|
|
4
|
+
"payable": false,
|
|
5
|
+
"inputs": [
|
|
6
|
+
{
|
|
7
|
+
"type": "address",
|
|
8
|
+
"name": "_operator"
|
|
9
|
+
}
|
|
10
|
+
]
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"type": "event",
|
|
14
|
+
"anonymous": false,
|
|
15
|
+
"name": "StakingPoolCreated",
|
|
16
|
+
"inputs": [
|
|
17
|
+
{
|
|
18
|
+
"type": "uint256",
|
|
19
|
+
"name": "poolId",
|
|
20
|
+
"indexed": true
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"type": "address",
|
|
24
|
+
"name": "stakingPoolAddress",
|
|
25
|
+
"indexed": true
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"type": "function",
|
|
31
|
+
"name": "beacon",
|
|
32
|
+
"constant": true,
|
|
33
|
+
"stateMutability": "view",
|
|
34
|
+
"payable": false,
|
|
35
|
+
|
|
36
|
+
"inputs": [],
|
|
37
|
+
"outputs": [
|
|
38
|
+
{
|
|
39
|
+
"type": "address"
|
|
40
|
+
}
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"type": "function",
|
|
45
|
+
"name": "changeOperator",
|
|
46
|
+
"constant": false,
|
|
47
|
+
"payable": false,
|
|
48
|
+
|
|
49
|
+
"inputs": [
|
|
50
|
+
{
|
|
51
|
+
"type": "address",
|
|
52
|
+
"name": "newOperator"
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"outputs": []
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"type": "function",
|
|
59
|
+
"name": "create",
|
|
60
|
+
"constant": false,
|
|
61
|
+
"payable": false,
|
|
62
|
+
|
|
63
|
+
"inputs": [
|
|
64
|
+
{
|
|
65
|
+
"type": "address",
|
|
66
|
+
"name": "_beacon"
|
|
67
|
+
}
|
|
68
|
+
],
|
|
69
|
+
"outputs": [
|
|
70
|
+
{
|
|
71
|
+
"type": "uint256",
|
|
72
|
+
"name": "poolId"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"type": "address",
|
|
76
|
+
"name": "stakingPoolAddress"
|
|
77
|
+
}
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"type": "function",
|
|
82
|
+
"name": "operator",
|
|
83
|
+
"constant": true,
|
|
84
|
+
"stateMutability": "view",
|
|
85
|
+
"payable": false,
|
|
86
|
+
|
|
87
|
+
"inputs": [],
|
|
88
|
+
"outputs": [
|
|
89
|
+
{
|
|
90
|
+
"type": "address"
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"type": "function",
|
|
96
|
+
"name": "stakingPoolCount",
|
|
97
|
+
"constant": true,
|
|
98
|
+
"stateMutability": "view",
|
|
99
|
+
"payable": false,
|
|
100
|
+
|
|
101
|
+
"inputs": [],
|
|
102
|
+
"outputs": [
|
|
103
|
+
{
|
|
104
|
+
"type": "uint256"
|
|
105
|
+
}
|
|
106
|
+
]
|
|
107
|
+
}
|
|
108
|
+
]
|