@pioneer-platform/pioneer-discovery 8.15.27 → 8.15.28

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @pioneer-platform/pioneer-discovery
2
2
 
3
+ ## 8.15.28
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: move @types/pdfkit to dependencies for Docker --production build
8
+
3
9
  ## 8.15.27
4
10
 
5
11
  ### Patch Changes
@@ -1,4 +1,43 @@
1
1
  {
2
+ "tron:27lqcw/native:trx": {
3
+ "symbol": "TRX",
4
+ "name": "TRON",
5
+ "chainId": "tron:27Lqcw",
6
+ "icon": "https://assets.coingecko.com/coins/images/1094/small/tron-logo.png?1547035066",
7
+ "assetId": "tron:27lqcw/native:trx",
8
+ "decimals": 6,
9
+ "isNative": true,
10
+ "type": "native",
11
+ "explorer": "https://tronscan.org",
12
+ "explorerAddressLink": "https://tronscan.org/#/address/{{address}}",
13
+ "explorerTxLink": "https://tronscan.org/#/transaction/{{txid}}"
14
+ },
15
+ "ton:-239/native:ton": {
16
+ "symbol": "TON",
17
+ "name": "TON",
18
+ "chainId": "ton:-239",
19
+ "icon": "https://assets.coingecko.com/coins/images/17980/small/ton_symbol.png?1670498136",
20
+ "assetId": "ton:-239/native:ton",
21
+ "decimals": 9,
22
+ "isNative": true,
23
+ "type": "native",
24
+ "explorer": "https://tonscan.org",
25
+ "explorerAddressLink": "https://tonscan.org/address/{{address}}",
26
+ "explorerTxLink": "https://tonscan.org/tx/{{txid}}"
27
+ },
28
+ "solana:5eykt4usfv8p8njdtrepY1vzqKqZKvdp/solana:so11111111111111111111111111111111111111112": {
29
+ "symbol": "SOL",
30
+ "name": "Solana",
31
+ "chainId": "solana:5eykt4usfv8p8njdtrepY1vzqKqZKvdp",
32
+ "icon": "https://assets.coingecko.com/coins/images/4128/small/solana.png?1640133422",
33
+ "assetId": "solana:5eykt4usfv8p8njdtrepY1vzqKqZKvdp/solana:so11111111111111111111111111111111111111112",
34
+ "decimals": 9,
35
+ "isNative": true,
36
+ "type": "native",
37
+ "explorer": "https://explorer.solana.com",
38
+ "explorerAddressLink": "https://explorer.solana.com/address/{{address}}",
39
+ "explorerTxLink": "https://explorer.solana.com/tx/{{txid}}"
40
+ },
2
41
  "bip122:000000000019d6689c085ae165831e93/slip44:0": {
3
42
  "symbol": "BTC",
4
43
  "name": "Bitcoin",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pioneer-platform/pioneer-discovery",
3
- "version": "8.15.27",
3
+ "version": "8.15.28",
4
4
  "main": "./lib/index.js",
5
5
  "types": "./lib/main.d.ts",
6
6
  "_moduleAliases": {
@@ -175,6 +175,36 @@ const NATIVE_GAS_ASSETS = [
175
175
  explorerAddressLink: 'https://basescan.org/address/{{address}}',
176
176
  explorerTxLink: 'https://basescan.org/tx/{{txid}}',
177
177
  },
178
+ {
179
+ symbol: 'SOL',
180
+ name: 'Solana',
181
+ chainId: 'solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp',
182
+ icon: 'https://assets.coingecko.com/coins/images/4128/small/solana.png?1640133422',
183
+ decimals: 9,
184
+ explorer: 'https://explorer.solana.com',
185
+ explorerAddressLink: 'https://explorer.solana.com/address/{{address}}',
186
+ explorerTxLink: 'https://explorer.solana.com/tx/{{txid}}',
187
+ },
188
+ {
189
+ symbol: 'TRX',
190
+ name: 'TRON',
191
+ chainId: 'tron:27Lqcw',
192
+ icon: 'https://assets.coingecko.com/coins/images/1094/small/tron-logo.png?1547035066',
193
+ decimals: 6,
194
+ explorer: 'https://tronscan.org',
195
+ explorerAddressLink: 'https://tronscan.org/#/address/{{address}}',
196
+ explorerTxLink: 'https://tronscan.org/#/transaction/{{txid}}',
197
+ },
198
+ {
199
+ symbol: 'TON',
200
+ name: 'TON',
201
+ chainId: 'ton:-239',
202
+ icon: 'https://assets.coingecko.com/coins/images/17980/small/ton_symbol.png?1670498136',
203
+ decimals: 9,
204
+ explorer: 'https://tonscan.org',
205
+ explorerAddressLink: 'https://tonscan.org/address/{{address}}',
206
+ explorerTxLink: 'https://tonscan.org/tx/{{txid}}',
207
+ },
178
208
  ];
179
209
 
180
210
  // Denom-based tokens (Cosmos SDK chains)
@@ -266,7 +296,10 @@ function getSlip44(symbol) {
266
296
  'OSMO': 118,
267
297
  'BCH': 145,
268
298
  'XRP': 144,
299
+ 'TRX': 195,
269
300
  'EOS': 194,
301
+ 'SOL': 501,
302
+ 'TON': 607,
270
303
  'BNB': 714,
271
304
  'RUNE': 931,
272
305
  'THOR': 931,