@nexusmutual/sdk 0.0.1 → 0.0.3

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.
@@ -8,6 +8,8 @@ on:
8
8
  env:
9
9
  NODE_VERSION: '18'
10
10
  CACHE_KEY: ${{ secrets.CACHE_KEY }} # Change to bust caches
11
+ PROVIDER_URL: https://eth-mainnet.g.alchemy.com/v2/${{ secrets.ALCHEMY_API_KEY }}
12
+ IPFS_GATEWAY_URL: https://api.nexusmutual.io
11
13
 
12
14
  jobs:
13
15
  version:
@@ -82,7 +84,7 @@ jobs:
82
84
 
83
85
  - uses: actions/upload-artifact@v3
84
86
  with:
85
- name: logos-${{ needs.version.outputs.local_version }}
87
+ name: sdk-${{ needs.version.outputs.local_version }}
86
88
  path: dist
87
89
 
88
90
  publish:
@@ -98,7 +100,7 @@ jobs:
98
100
 
99
101
  - uses: actions/download-artifact@v3
100
102
  with:
101
- name: logos-${{ needs.version.outputs.local_version }}
103
+ name: sdk-${{ needs.version.outputs.local_version }}
102
104
  path: dist
103
105
 
104
106
  - name: Publish
@@ -1,36 +1,36 @@
1
- const Assessment = require('./abis/Assessment.json');
2
- const Cover = require('./abis/Cover.json');
3
- const CoverMigrator = require('./abis/CoverMigrator.json');
4
- const CoverNFT = require('./abis/CoverNFT.json');
5
- const CoverNFTDescriptor = require('./abis/CoverNFTDescriptor.json');
6
- const CoverViewer = require('./abis/CoverViewer.json');
7
- const EACAggregatorProxy = require('./abis/EACAggregatorProxy.json');
8
- const ERC20 = require('./abis/ERC20.json');
9
- const Governance = require('./abis/Governance.json');
10
- const IndividualClaims = require('./abis/IndividualClaims.json');
11
- const LegacyClaimProofs = require('./abis/LegacyClaimProofs.json');
12
- const LegacyClaimsData = require('./abis/LegacyClaimsData.json');
13
- const LegacyClaimsReward = require('./abis/LegacyClaimsReward.json');
14
- const LegacyGateway = require('./abis/LegacyGateway.json');
15
- const LegacyPooledStaking = require('./abis/LegacyPooledStaking.json');
16
- const LegacyQuotationData = require('./abis/LegacyQuotationData.json');
17
- const MCR = require('./abis/MCR.json');
18
- const MemberRoles = require('./abis/MemberRoles.json');
19
- const NXMToken = require('./abis/NXMToken.json');
20
- const NXMaster = require('./abis/NXMaster.json');
21
- const Pool = require('./abis/Pool.json');
22
- const PriceFeedOracle = require('./abis/PriceFeedOracle.json');
23
- const ProductsV1 = require('./abis/ProductsV1.json');
24
- const ProposalCategory = require('./abis/ProposalCategory.json');
25
- const StakingNFT = require('./abis/StakingNFT.json');
26
- const StakingNFTDescriptor = require('./abis/StakingNFTDescriptor.json');
27
- const StakingPool = require('./abis/StakingPool.json');
28
- const StakingPoolFactory = require('./abis/StakingPoolFactory.json');
29
- const StakingProducts = require('./abis/StakingProducts.json');
30
- const StakingViewer = require('./abis/StakingViewer.json');
31
- const SwapOperator = require('./abis/SwapOperator.json');
32
- const TokenController = require('./abis/TokenController.json');
33
- const YieldTokenIncidents = require('./abis/YieldTokenIncidents.json');
1
+ const Assessment = require('./Assessment.json');
2
+ const Cover = require('./Cover.json');
3
+ const CoverMigrator = require('./CoverMigrator.json');
4
+ const CoverNFT = require('./CoverNFT.json');
5
+ const CoverNFTDescriptor = require('./CoverNFTDescriptor.json');
6
+ const CoverViewer = require('./CoverViewer.json');
7
+ const EACAggregatorProxy = require('./EACAggregatorProxy.json');
8
+ const ERC20 = require('./ERC20.json');
9
+ const Governance = require('./Governance.json');
10
+ const IndividualClaims = require('./IndividualClaims.json');
11
+ const LegacyClaimProofs = require('./LegacyClaimProofs.json');
12
+ const LegacyClaimsData = require('./LegacyClaimsData.json');
13
+ const LegacyClaimsReward = require('./LegacyClaimsReward.json');
14
+ const LegacyGateway = require('./LegacyGateway.json');
15
+ const LegacyPooledStaking = require('./LegacyPooledStaking.json');
16
+ const LegacyQuotationData = require('./LegacyQuotationData.json');
17
+ const MCR = require('./MCR.json');
18
+ const MemberRoles = require('./MemberRoles.json');
19
+ const NXMToken = require('./NXMToken.json');
20
+ const NXMaster = require('./NXMaster.json');
21
+ const Pool = require('./Pool.json');
22
+ const PriceFeedOracle = require('./PriceFeedOracle.json');
23
+ const ProductsV1 = require('./ProductsV1.json');
24
+ const ProposalCategory = require('./ProposalCategory.json');
25
+ const StakingNFT = require('./StakingNFT.json');
26
+ const StakingNFTDescriptor = require('./StakingNFTDescriptor.json');
27
+ const StakingPool = require('./StakingPool.json');
28
+ const StakingPoolFactory = require('./StakingPoolFactory.json');
29
+ const StakingProducts = require('./StakingProducts.json');
30
+ const StakingViewer = require('./StakingViewer.json');
31
+ const SwapOperator = require('./SwapOperator.json');
32
+ const TokenController = require('./TokenController.json');
33
+ const YieldTokenIncidents = require('./YieldTokenIncidents.json');
34
34
 
35
35
  module.exports = {
36
36
  Assessment,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexusmutual/sdk",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "Nexus Mutual SDK",
5
5
  "scripts": {
6
6
  "build": "node scripts/build.js",