@nexusmutual/sdk 0.1.0 → 0.1.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 (2) hide show
  1. package/dist/index.html +1 -1
  2. package/package.json +9 -8
package/dist/index.html CHANGED
@@ -63,7 +63,7 @@
63
63
  const isProxy = proxies.includes(name) ? 'Proxy' : '';
64
64
  return row([
65
65
  linkCell(`${ETHERSCAN}/${address}`, `<strong>${name}</strong>`),
66
- linkCell(`/abis/${name}.json`, 'ABI'),
66
+ linkCell(`/data/abis/${name}.json`, 'ABI'),
67
67
  textCell(`${address}`),
68
68
  linkCell(`${ETHERSCAN}/${address}/advanced#tokentxns`, 'ERC20 transfers'),
69
69
  linkCell(`${ETHERSCAN}/${address}/advanced#read${isProxy}Contract`, `Read ${isProxy}`),
package/package.json CHANGED
@@ -1,12 +1,9 @@
1
1
  {
2
2
  "name": "@nexusmutual/sdk",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Nexus Mutual SDK",
5
5
  "scripts": {
6
- "build": "npm run build-products && npm run build-logos && npm run build-src",
7
- "build-products": "node scripts/build-products.js",
8
- "build-logos": "node scripts/build-logos.js",
9
- "build-src": "node scripts/build-src.js"
6
+ "build": "node scripts/build.js"
10
7
  },
11
8
  "typings": "./dist/index.d.ts",
12
9
  "main": "./dist/index.js",
@@ -25,12 +22,16 @@
25
22
  },
26
23
  "homepage": "https://github.com/NexusMutual/static-data#readme",
27
24
  "dependencies": {
25
+ "@babel/core": "^7.22.1",
26
+ "@babel/plugin-transform-react-jsx": "^7.22.3",
28
27
  "@nexusmutual/deployments": "^2.2.0",
29
- "@nexusmutual/logos": "^0.0.21",
30
- "ethers": "^5.7.2"
28
+ "@svgr/core": "^6.5.1",
29
+ "camelcase": "^6.3.0",
30
+ "ethers": "^5.7.2",
31
+ "rimraf": "^5.0.1",
32
+ "svgo": "^3.0.2"
31
33
  },
32
34
  "devDependencies": {
33
- "camelcase": "^6.3.0",
34
35
  "dotenv": "^16.0.3",
35
36
  "eslint": "^8.33.0",
36
37
  "eslint-config-prettier": "^8.6.0",