@pioneer-platform/pioneer-discovery 0.0.17 → 0.0.18

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.
@@ -39,19 +39,6 @@
39
39
  "explorerXpubLink": "https://zec1.trezor.io/xpub/",
40
40
  "explorerTxLink": "https://blockchair.com/zcash/transaction/"
41
41
  },
42
- "cosmos:kaiyo-1/slip44:118": {
43
- "assetId": "cosmos:kaiyo-1/slip44:118",
44
- "chainId": "cosmos:kaiyo-1",
45
- "symbol": "KUJI",
46
- "name": "KUJI",
47
- "networkName": "Kuji",
48
- "precision": 10,
49
- "color": "#8A1F1F",
50
- "icon": "https://pioneers.dev/coins/kuji.png",
51
- "explorer": "https://finder.kujira.network/",
52
- "explorerAddressLink": "https://finder.kujira.network/address/",
53
- "explorerTxLink": "https://finder.kujira.network/tx/"
54
- },
55
42
  "cosmos:kaiyo-1/slip44:118": {
56
43
  "assetId": "cosmos:kaiyo-1/slip44:118",
57
44
  "chainId": "cosmos:kaiyo-1",
@@ -133561,5 +133548,20 @@
133561
133548
  "explorer": "https://bscscan.com",
133562
133549
  "explorerAddressLink": "https://bscscan.com/address/",
133563
133550
  "explorerTxLink": "https://bscscan.com/tx/"
133551
+ },
133552
+ "cosmos:mayachain-mainnet-v1/slip44:maya": {
133553
+ "assetId": "cosmos:mayachain-mainnet-v1/slip44:maya",
133554
+ "chainId": "cosmos:mayachain-mainnet-v1",
133555
+ "name": "Maya Token",
133556
+ "networkName": "MAYAchain",
133557
+ "symbol": "MAYA",
133558
+ "precision": 4,
133559
+ "decimals": 4,
133560
+ "color": "#00D4AA",
133561
+ "icon": "https://pioneers.dev/coins/maya.png",
133562
+ "explorer": "https://www.explorer.mayachain.info/dashboard",
133563
+ "explorerAddressLink": "https://www.explorer.mayachain.info/address/",
133564
+ "explorerTxLink": "https://www.explorer.mayachain.info/tx/",
133565
+ "type": "token"
133564
133566
  }
133565
133567
  }
package/package.json CHANGED
@@ -1,30 +1,31 @@
1
1
  {
2
2
  "name": "@pioneer-platform/pioneer-discovery",
3
- "version": "0.0.17",
3
+ "version": "0.0.18",
4
4
  "main": "./lib/index.js",
5
5
  "types": "./lib/main.d.ts",
6
6
  "_moduleAliases": {
7
7
  "@coins": "lib/coins"
8
8
  },
9
9
  "scripts": {
10
- "npm": "npm i",
10
+ "npm": "pnpm i",
11
11
  "build": "tsc -p .",
12
- "test": "npm run build && node __tests__/test-module.js",
13
- "test-suite": "npm run build && node __tests__/tests-common.js",
14
- "build:watch": "npm run build && onchange 'src/**/*.ts' -- npm run build",
15
- "prepublish": "npm run build"
12
+ "test": "pnpm run build && node __tests__/test-module.js",
13
+ "test-suite": "pnpm run build && node __tests__/tests-common.js",
14
+ "build:watch": "pnpm run build && onchange 'src/**/*.ts' -- pnpm run build",
15
+ "prepublish": "pnpm run build"
16
16
  },
17
17
  "devDependencies": {
18
18
  "@types/express": "^4.17.6",
19
- "@types/node": "^13.13.50",
19
+ "@types/node": "^18.16.0",
20
20
  "nodemon": "^2.0.3",
21
- "typescript": "^5.0.2"
21
+ "typescript": "^5.0.4"
22
22
  },
23
23
  "gitHead": "a76012f6693a12181c4744e53e977a9eaeef0ed3",
24
24
  "dependencies": {
25
25
  "@coinmasters/tokens": "^3.7.33",
26
26
  "@coinmasters/types": "^4.7.33",
27
27
  "@pioneer-platform/loggerdog": "^8.3.1",
28
- "@pioneer-platform/pioneer-caip": "^9.2.34"
28
+ "@pioneer-platform/pioneer-caip": "^9.2.34",
29
+ "ethers": "5.7.2"
29
30
  }
30
- }
31
+ }