@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.
Files changed (44) hide show
  1. package/.github/workflows/merge-master.yml +124 -0
  2. package/.github/workflows/pull_request.yml +62 -0
  3. package/README.md +32 -0
  4. package/dist/contracts/abis/Assessment.json +700 -0
  5. package/dist/contracts/abis/Cover.json +1258 -0
  6. package/dist/contracts/abis/CoverMigrator.json +189 -0
  7. package/dist/contracts/abis/CoverNFT.json +498 -0
  8. package/dist/contracts/abis/CoverNFTDescriptor.json +200 -0
  9. package/dist/contracts/abis/CoverViewer.json +124 -0
  10. package/dist/contracts/abis/EACAggregatorProxy.json +58 -0
  11. package/dist/contracts/abis/ERC20.json +364 -0
  12. package/dist/contracts/abis/Governance.json +975 -0
  13. package/dist/contracts/abis/IndividualClaims.json +528 -0
  14. package/dist/contracts/abis/LegacyClaimProofs.json +64 -0
  15. package/dist/contracts/abis/LegacyClaimsData.json +1912 -0
  16. package/dist/contracts/abis/LegacyClaimsReward.json +179 -0
  17. package/dist/contracts/abis/LegacyGateway.json +542 -0
  18. package/dist/contracts/abis/LegacyPooledStaking.json +1320 -0
  19. package/dist/contracts/abis/LegacyQuotationData.json +1121 -0
  20. package/dist/contracts/abis/MCR.json +326 -0
  21. package/dist/contracts/abis/MemberRoles.json +681 -0
  22. package/dist/contracts/abis/NXMToken.json +498 -0
  23. package/dist/contracts/abis/NXMaster.json +501 -0
  24. package/dist/contracts/abis/Pool.json +928 -0
  25. package/dist/contracts/abis/PriceFeedOracle.json +122 -0
  26. package/dist/contracts/abis/ProductsV1.json +21 -0
  27. package/dist/contracts/abis/ProposalCategory.json +550 -0
  28. package/dist/contracts/abis/StakingNFT.json +569 -0
  29. package/dist/contracts/abis/StakingNFTDescriptor.json +222 -0
  30. package/dist/contracts/abis/StakingPool.json +1433 -0
  31. package/dist/contracts/abis/StakingPoolFactory.json +108 -0
  32. package/dist/contracts/abis/StakingProducts.json +885 -0
  33. package/dist/contracts/abis/StakingViewer.json +777 -0
  34. package/dist/contracts/abis/SwapOperator.json +754 -0
  35. package/dist/contracts/abis/TokenController.json +1024 -0
  36. package/dist/contracts/abis/YieldTokenIncidents.json +438 -0
  37. package/dist/contracts/abis/index.js +69 -0
  38. package/dist/contracts/addresses.json +35 -0
  39. package/dist/index.d.ts +5 -0
  40. package/dist/index.js +13 -0
  41. package/dist/products/product-logos.json +103 -0
  42. package/dist/products/product-types.json +58 -0
  43. package/dist/products/products.json +1414 -0
  44. 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
+ ]