@cityofzion/bs-neo-legacy 0.4.2 → 0.7.0

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 (52) hide show
  1. package/.rush/temp/shrinkwrap-deps.json +2 -2
  2. package/bs-neo-legacy.build.error.log +2 -82
  3. package/bs-neo-legacy.build.log +3 -84
  4. package/dist/BSNeoLegacy.d.ts +23 -13
  5. package/dist/BSNeoLegacy.js +98 -69
  6. package/dist/constants.d.ts +5 -2
  7. package/docs/assets/search.js +1 -1
  8. package/docs/classes/BDSNeoLegacy.html +13 -13
  9. package/docs/classes/BSNeoLegacy.html +81 -37
  10. package/docs/interfaces/DoraNeoLegacyAsset.html +7 -7
  11. package/docs/interfaces/DoraNeoLegacyAssetResponse.html +9 -9
  12. package/docs/interfaces/DoraNeoLegacyBalance.html +5 -5
  13. package/docs/interfaces/DoraNeoLegacyConsensusNode.html +3 -3
  14. package/docs/interfaces/DoraNeoLegacyDetails.html +12 -12
  15. package/docs/interfaces/DoraNeoLegacyEntriesEntity.html +8 -8
  16. package/docs/interfaces/DoraNeoLegacyNameEntity.html +3 -3
  17. package/docs/interfaces/DoraNeoLegacyScriptsEntity.html +3 -3
  18. package/docs/interfaces/DoraNeoLegacyTransaction.html +14 -14
  19. package/docs/interfaces/DoraNeoLegacyTransactionsHistory.html +6 -6
  20. package/docs/interfaces/DoraNeoLegacyUnclaimed.html +4 -4
  21. package/docs/interfaces/DoraNeoLegacyVinEntity.html +3 -3
  22. package/docs/interfaces/DoraNeoLegacyVoutEntity.html +5 -5
  23. package/docs/variables/DORA_NEO_LEGACY_ASSET.html +1 -1
  24. package/docs/variables/DORA_NEO_LEGACY_BALANCE.html +1 -1
  25. package/docs/variables/DORA_NEO_LEGACY_CONTRACT.html +1 -1
  26. package/docs/variables/DORA_NEO_LEGACY_HISTORY_TRANSACTIONS.html +1 -1
  27. package/docs/variables/DORA_NEO_LEGACY_NODES.html +1 -1
  28. package/docs/variables/DORA_NEO_LEGACY_TRANSACTION.html +1 -1
  29. package/docs/variables/DORA_NEO_LEGACY_UNCLAIMED.html +1 -1
  30. package/docs/variables/explorerNeoLegacyOption.html +1 -1
  31. package/jest.config.ts +13 -0
  32. package/jest.setup.ts +1 -0
  33. package/package.json +10 -6
  34. package/src/BSNeoLegacy.ts +184 -152
  35. package/src/CryptoCompareEDSNeoLegacy.ts +40 -0
  36. package/src/DoraBDSNeoLegacy.ts +171 -0
  37. package/src/__tests__/BDSNeoLegacy.spec.ts +120 -0
  38. package/src/__tests__/BSNeoLegacy.spec.ts +127 -0
  39. package/src/__tests__/CryptoCompareExchange.spec.ts +46 -0
  40. package/src/assets/tokens/common.json +18 -0
  41. package/src/assets/tokens/mainnet.json +620 -0
  42. package/src/constants.ts +20 -17
  43. package/src/index.ts +3 -2
  44. package/tsconfig.build.json +4 -0
  45. package/tsconfig.json +3 -7
  46. package/src/BDSNeoLegacy.ts +0 -163
  47. package/src/asset/blockchain_icon_neo_legacy.png +0 -0
  48. package/src/asset/blockchain_icon_neo_legacy_white.png +0 -0
  49. package/src/asset/tokens.json +0 -481
  50. package/src/explorer/dora/DoraResponsesNeoLegacy.ts +0 -107
  51. package/src/explorer/dora/DoraRoutesNeoLegacy.ts +0 -7
  52. package/src/explorer/index.ts +0 -8
@@ -1,163 +0,0 @@
1
- import { BalanceResponse, BlockchainNetwork, BlockchainDataService, ConsensusNodeResponse, ContractResponse, TokenInfoResponse, TransactionHistoryResponse, TransactionResponse, TransactionTransfer, BDSClaimable, UnclaimedResponse } from '@cityofzion/blockchain-service'
2
- import axios from 'axios'
3
- import { DoraNeoLegacyEntriesEntity, DoraNeoLegacyTransaction } from './explorer/dora/DoraResponsesNeoLegacy';
4
- import { DORA_NEO_LEGACY_TRANSACTION } from './explorer/dora/DoraRoutesNeoLegacy';
5
- import { api } from '@cityofzion/dora-ts'
6
- export class BDSNeoLegacy implements BlockchainDataService, BDSClaimable {
7
- explorer: string = 'https://dora.coz.io/'
8
- network: BlockchainNetwork = 'mainnet'
9
- private request = axios.create({ baseURL: `https://dora.coz.io/api/v1/neo2/${this.network}` })
10
-
11
- setNetwork(network: BlockchainNetwork): void {
12
- this.network = network
13
- }
14
- async getTransaction(txid: string): Promise<TransactionResponse> {
15
- try {
16
- const { data } = await this.request.get<DoraNeoLegacyTransaction>(`/${DORA_NEO_LEGACY_TRANSACTION}/${txid}`)
17
- const result: TransactionResponse = {
18
- block: data.block,
19
- netfee: data.net_fee,
20
- sysfee: data.sys_fee,
21
- time: data.time,
22
- txid: data.txid,
23
- totfee: (Number(data.sys_fee) + Number(data.net_fee)).toString(),
24
- notifications: [], //neolegacy doesn't have notifications
25
- transfers: data.vout.map<Omit<TransactionTransfer, "txid">>((transfer) => {
26
- return {
27
- amount: transfer.value,
28
- from: data.vout[data.vout.length - 1]?.address,
29
- hash: transfer.asset,
30
- to: transfer.address
31
- }
32
- })
33
- }
34
- return result
35
- } catch (error) {
36
- throw error;
37
- }
38
- }
39
-
40
- async getHistoryTransactions(address: string, page: number = 1): Promise<TransactionHistoryResponse> {
41
- try {
42
- const data = await api.NeoLegacyREST.getAddressAbstracts(address, page, this.network)
43
- const entriesGroupByTxid: { [txid: string]: DoraNeoLegacyEntriesEntity[] } = {}
44
- const transactionsGroupByTxid: TransactionResponse[] = []
45
-
46
- data.entries.forEach((entry) => {
47
- entriesGroupByTxid[entry.txid] = data.entries.filter(it => it.txid === entry.txid)
48
- const haveTransaction = transactionsGroupByTxid.find(it => it.txid === entry.txid)
49
- if (!haveTransaction) {
50
- transactionsGroupByTxid.push({
51
- block: entry.block_height,
52
- netfee: '0',
53
- sysfee: '0',
54
- totfee: '0',
55
- txid: entry.txid,
56
- notifications: [],
57
- time: entry.time.toString(),
58
- transfers: entriesGroupByTxid[entry.txid].map<Omit<TransactionTransfer, "txid">>((entryGrouped) => {
59
- return {
60
- amount: entryGrouped.amount.toString(),
61
- from: entryGrouped.address_from,
62
- to: entryGrouped.address_to,
63
- hash: entryGrouped.asset
64
- }
65
- })
66
- })
67
- } else {
68
- haveTransaction.transfers = entriesGroupByTxid[entry.txid].map<Omit<TransactionTransfer, "txid">>((entryGrouped) => {
69
- return {
70
- amount: entryGrouped.amount.toString(),
71
- from: entryGrouped.address_from,
72
- to: entryGrouped.address_to,
73
- hash: entryGrouped.asset
74
- }
75
- })
76
- transactionsGroupByTxid[transactionsGroupByTxid.indexOf(haveTransaction)] = haveTransaction
77
- }
78
- })
79
-
80
- const result: TransactionHistoryResponse = {
81
- totalCount: data.total_entries,
82
- transactions: transactionsGroupByTxid
83
- }
84
- return result
85
- } catch (error) {
86
- throw error;
87
- }
88
- }
89
- async getContract(contractHash: string): Promise<ContractResponse> {
90
- try {
91
- const response = await api.NeoLegacyREST.contract(contractHash, this.network)
92
- const result: ContractResponse = {
93
- hash: response.hash,
94
- name: response.name,
95
- methods: []
96
- }
97
- return result
98
- } catch (error) {
99
- throw error;
100
- }
101
- }
102
-
103
- async getTokenInfo(tokenHash: string): Promise<TokenInfoResponse> {
104
- try {
105
- const data = await api.NeoLegacyREST.asset(tokenHash)
106
- const result: TokenInfoResponse = {
107
- decimals: data.decimals,
108
- symbol: data.symbol
109
- }
110
- return result
111
- } catch (error) {
112
- throw error;
113
- }
114
- }
115
- async getBalance(address: string): Promise<BalanceResponse[]> {
116
- try {
117
- const data = await api.NeoLegacyREST.balance(address, this.network)
118
- const result: BalanceResponse[] = data.map<BalanceResponse>(balance => {
119
- return {
120
- hash: balance.asset,
121
- amount: Number(balance.balance),
122
- name: balance.asset_name,
123
- symbol: balance.symbol
124
- }
125
- })
126
- return result
127
- } catch (error) {
128
- throw error;
129
- }
130
- }
131
- async getAllNodes(): Promise<ConsensusNodeResponse[]> {
132
- try {
133
- const data = await api.NeoLegacyREST.getAllNodes()
134
- const result: ConsensusNodeResponse[] = data
135
- return result
136
- } catch (error) {
137
- throw error;
138
- }
139
- }
140
- async getHigherNode(): Promise<ConsensusNodeResponse> {
141
- const nodes = await this.getAllNodes()
142
- const node = nodes.reduce((bestNode, node) => {
143
- if (bestNode.height >= node.height) {
144
- return bestNode
145
- }
146
- return node
147
- })
148
- return node
149
- }
150
- //Implementation of BDSClaimable
151
- async getUnclaimed(address: string): Promise<UnclaimedResponse> {
152
- try {
153
- const data = await api.NeoLegacyREST.getUnclaimed(address)
154
- const result: UnclaimedResponse = {
155
- address,
156
- unclaimed: data.unclaimed,
157
- }
158
- return result;
159
- } catch (error) {
160
- throw error;
161
- }
162
- }
163
- }
@@ -1,481 +0,0 @@
1
- [
2
- {
3
- "symbol": "GAS",
4
- "type": "UtilityToken",
5
- "name": "GAS",
6
- "hash": "602c79718b16e442de58778e148d0b1084e3b2dffd5de6b7b16cee7969282de7",
7
- "decimals": 8
8
- },
9
- {
10
- "symbol": "NEO",
11
- "type": "GoverningToken",
12
- "name": "NEO",
13
- "hash": "c56f33fc6ecfcd0c225c4ab356fee59390af8560be0e930faebe74a6daff7c9b",
14
- "decimals": 0
15
- },
16
- {
17
- "symbol": "ACAT",
18
- "name": "ACAT Token",
19
- "hash": "7f86d61ff377f1b12e589a5907152b57e2ad9a7a",
20
- "decimals": 8
21
- },
22
- {
23
- "symbol": "APH",
24
- "name": "Aphelion",
25
- "hash": "a0777c3ce2b169d4a23bcba4565e3225a0122d95",
26
- "decimals": 8
27
- },
28
- {
29
- "symbol": "APT",
30
- "name": "APPOSTOKEN",
31
- "hash": "7cd338644833db2fd8824c410e364890d179e6f8",
32
- "decimals": 8
33
- },
34
- {
35
- "symbol": "ASA",
36
- "name": "Asura World Coin",
37
- "hash": "a58b56b30425d3d1f8902034996fcac4168ef71d",
38
- "decimals": 8
39
- },
40
- {
41
- "symbol": "AVA",
42
- "cryptocompareSymbol": "AVALA",
43
- "name": "Travala",
44
- "hash": "de2ed49b691e76754c20fe619d891b78ef58e537",
45
- "decimals": 8
46
- },
47
- {
48
- "symbol": "BCS",
49
- "name": "Block chain store",
50
- "hash": "546c5872a992b2754ef327154f4c119baabff65f",
51
- "decimals": 8
52
- },
53
- {
54
- "symbol": "BDN",
55
- "name": "Business Data Network",
56
- "hash": "d0394dd3ee1cdd8ae18665a22c7ca3af52aafd7a",
57
- "decimals": 6
58
- },
59
- {
60
- "symbol": "CGAS",
61
- "name": "NEP5 GAS",
62
- "hash": "74f2dc36a68fdc4682034178eb2220729231db76",
63
- "decimals": 8
64
- },
65
- {
66
- "symbol": "CGE",
67
- "name": "Concierge Token",
68
- "hash": "34579e4614ac1a7bd295372d3de8621770c76cdc",
69
- "decimals": 8
70
- },
71
- {
72
- "symbol": "SWTH (OLD)",
73
- "name": "Switcheo Legacy V2",
74
- "hash": "ab38352559b8b203bde5fddfa0b07d8b2525e132",
75
- "decimals": 8
76
- },
77
- {
78
- "symbol": "CGL",
79
- "name": "CrazyGladiator",
80
- "hash": "cbbe4c3c0d2a3622e9e8d65fe9f6240078f356c9",
81
- "decimals": 0
82
- },
83
- {
84
- "symbol": "CNEO",
85
- "name": "NEP5 NEO",
86
- "hash": "c074a05e9dcf0141cbe6b4b3475dd67baf4dcb60",
87
- "decimals": 8
88
- },
89
- {
90
- "symbol": "COUP",
91
- "name": "Coupit",
92
- "hash": "87d6c2ae68d6a6f411eb72232e75133b2ffc7142",
93
- "decimals": 8
94
- },
95
- {
96
- "symbol": "CPX",
97
- "name": "CPX Token",
98
- "hash": "45d493a6f73fa5f404244a5fb8472fc014ca5885",
99
- "decimals": 8
100
- },
101
- {
102
- "symbol": "DAD",
103
- "name": "DAD",
104
- "hash": "bb23c20466c21600b3e38a615c691d15ef251f9c",
105
- "decimals": 8
106
- },
107
- {
108
- "symbol": "DBC",
109
- "name": "DeepBrain Coin",
110
- "hash": "b951ecbbc5fe37a9c280a76cb0ce0014827294cf",
111
- "decimals": 8
112
- },
113
- {
114
- "symbol": "EDS",
115
- "name": "Endorsit Shares",
116
- "hash": "81c089ab996fc89c468a26c0a88d23ae2f34b5c0",
117
- "decimals": 8
118
- },
119
- {
120
- "symbol": "EFX",
121
- "name": "Effect.AI Token",
122
- "hash": "acbc532904b6b51b5ea6d19b803d78af70e7e6f9",
123
- "decimals": 8
124
- },
125
- {
126
- "symbol": "EPN",
127
- "name": "Epiphany",
128
- "hash": "a79cb7b4e85c8b23940d47bb3ddef76a5f13e449",
129
- "decimals": 8
130
- },
131
- {
132
- "symbol": "EXT",
133
- "name": "Experience Token",
134
- "hash": "e8f98440ad0d7a6e76d84fb1c3d3f8a16e162e97",
135
- "decimals": 8
136
- },
137
- {
138
- "symbol": "FLM",
139
- "name": "Flamingo Finance",
140
- "hash": "4d9eab13620fe3569ba3b0e56e2877739e4145e3",
141
- "decimals": 8
142
- },
143
- {
144
- "symbol": "FTW",
145
- "name": "For The Win",
146
- "hash": "11dbc2316f35ea031449387f615d9e4b0cbafe8b",
147
- "decimals": 8
148
- },
149
- {
150
- "symbol": "FTX",
151
- "name": "For The Win X",
152
- "hash": "aac66f9779ca67d819d05492805d251dab02fc7b",
153
- "decimals": 8
154
- },
155
- {
156
- "symbol": "GALA",
157
- "name": "Galaxy Token",
158
- "hash": "9577c3f972d769220d69d1c4ddbd617c44d067aa",
159
- "decimals": 8
160
- },
161
- {
162
- "symbol": "GDM",
163
- "name": "Guardium",
164
- "hash": "d1e37547d88bc9607ff9d73116ebd9381c156f79",
165
- "decimals": 8
166
- },
167
- {
168
- "symbol": "GTA",
169
- "name": "GagaPay network token",
170
- "hash": "06f4b1235f6300477d56b9a1f1de5b0172dfe103",
171
- "decimals": 8
172
- },
173
- {
174
- "symbol": "GUARD",
175
- "name": "Guardium GUARD",
176
- "hash": "591f92493cd6dd003470e41376f79a515abc707f",
177
- "decimals": 8
178
- },
179
- {
180
- "symbol": "IAM",
181
- "name": "Bridge Token",
182
- "hash": "891daf0e1750a1031ebe23030828ad7781d874d6",
183
- "decimals": 8
184
- },
185
- {
186
- "symbol": "JWT",
187
- "name": "Jarvis+ World cup 2018 Token",
188
- "hash": "b4cf9f4af5272d209b80ad1a06885e21568a4bfa",
189
- "decimals": 8
190
- },
191
- {
192
- "symbol": "LRN",
193
- "name": "Loopring Neo Token",
194
- "hash": "06fa8be9b6609d963e8fc63977b9f8dc5f10895f",
195
- "decimals": 8
196
- },
197
- {
198
- "symbol": "LX",
199
- "name": "Moonlight Lux",
200
- "hash": "cea5a3963a5813a26accc6bc67e9be9d14d395f0",
201
- "decimals": 8
202
- },
203
- {
204
- "symbol": "MCT",
205
- "name": "Master Contract Token",
206
- "hash": "a87cc2a513f5d8b4a42432343687c2127c60bc3f",
207
- "decimals": 8
208
- },
209
- {
210
- "symbol": "MRG",
211
- "name": "merge",
212
- "hash": "5a3973149608ddbc9b509fc951b3ff2c47419774",
213
- "decimals": 8
214
- },
215
- {
216
- "symbol": "MRW",
217
- "name": "MirrorRoid World Coin",
218
- "hash": "02f5f3c6e6bd07c8ff07ad779bb4f7bf9dc735e3",
219
- "decimals": 8
220
- },
221
- {
222
- "symbol": "NEX",
223
- "name": "NEX Token",
224
- "hash": "3a4acd3647086e7c44398aac0349802e6a171129",
225
- "decimals": 8
226
- },
227
- {
228
- "symbol": "NKN",
229
- "name": "NKN",
230
- "hash": "c36aee199dbba6c3f439983657558cfb67629599",
231
- "decimals": 8
232
- },
233
- {
234
- "symbol": "NNC",
235
- "name": "NEO Name Credit",
236
- "hash": "fc732edee1efdf968c23c20a9628eaa5a6ccb934",
237
- "decimals": 2
238
- },
239
- {
240
- "symbol": "NNN",
241
- "name": "Novem Gold Token",
242
- "hash": "53b7577befb37d4d3b95a02f60f5da8933ab5f04",
243
- "decimals": 8
244
- },
245
- {
246
- "symbol": "NOS",
247
- "name": "nOS",
248
- "hash": "c9c0fc5a2b66a29d6b14601e752e6e1a445e088d",
249
- "decimals": 8
250
- },
251
- {
252
- "symbol": "NRVE",
253
- "name": "Narrative Token",
254
- "hash": "a721d5893480260bd28ca1f395f2c465d0b5b1c2",
255
- "decimals": 8
256
- },
257
- {
258
- "symbol": "NVL",
259
- "name": "Nevula Token",
260
- "hash": "6c5fa71d1cfb37eb579458af8accd3128e6b1fca",
261
- "decimals": 4
262
- },
263
- {
264
- "symbol": "NVM",
265
- "name": "Novem Token",
266
- "hash": "2077a653306adb450516ea4813aebfbcdf594c97",
267
- "decimals": 8
268
- },
269
- {
270
- "symbol": "OBT",
271
- "name": "Orbis",
272
- "hash": "0e86a40588f715fcaf7acd1812d50af478e6e917",
273
- "decimals": 8
274
- },
275
- {
276
- "symbol": "ONT",
277
- "name": "Ontology Token",
278
- "hash": "ceab719b8baa2310f232ee0d277c061704541cfb",
279
- "decimals": 8
280
- },
281
- {
282
- "symbol": "PEGCNY",
283
- "name": "FiatPeg CNY",
284
- "hash": "dc054310dfdb455e58fea2b05d085924708065b8",
285
- "decimals": 8
286
- },
287
- {
288
- "symbol": "PEGUSD",
289
- "name": "FiatPeg USD",
290
- "hash": "ce150fa3ded336886871664e827f16fb70c45ceb",
291
- "decimals": 8
292
- },
293
- {
294
- "symbol": "PHX",
295
- "name": "Red Pulse Phoenix Token",
296
- "hash": "1578103c13e39df15d0d29826d957e85d770d8c9",
297
- "decimals": 8
298
- },
299
- {
300
- "symbol": "PKC",
301
- "name": "Pikcio Token",
302
- "hash": "af7c7328eee5a275a3bcaee2bf0cf662b5e739be",
303
- "decimals": 8
304
- },
305
- {
306
- "symbol": "PROQ",
307
- "name": "Quarteria Token",
308
- "hash": "2199c8dd506f73afddcbd6146c6271626931f735",
309
- "decimals": 8
310
- },
311
- {
312
- "symbol": "QLC",
313
- "name": "Qlink Token",
314
- "hash": "0d821bd7b6d53f5c2b40e217c6defc8bbe896cf5",
315
- "decimals": 8
316
- },
317
- {
318
- "symbol": "RCPT",
319
- "name": "Recoupit",
320
- "hash": "0dc27e3977160128c0dd6077a4b5a8b088eed151",
321
- "decimals": 8
322
- },
323
- {
324
- "symbol": "RHT",
325
- "name": "Redeemable HashPuppy Token",
326
- "hash": "2328008e6f6c7bd157a342e789389eb034d9cbc4",
327
- "decimals": 0
328
- },
329
- {
330
- "symbol": "RPX",
331
- "name": "Red Pulse Token",
332
- "hash": "ecc6b20d3ccac1ee9ef109af5a7cdb85706b1df9",
333
- "decimals": 8
334
- },
335
- {
336
- "symbol": "SCC",
337
- "name": "Stem Cell Coin",
338
- "hash": "323571cfc42a40d48d64832a7da594039fbac76a",
339
- "decimals": 8
340
- },
341
- {
342
- "symbol": "SDS",
343
- "name": "Standards",
344
- "hash": "6fad54d8cc692fc808fd97a207836a846c217705",
345
- "decimals": 8
346
- },
347
- {
348
- "symbol": "SDT",
349
- "name": "Special Drawing Token",
350
- "hash": "a4f408df2a1ec2a950ec5fd06d7b9dc5f83b9e73",
351
- "decimals": 8
352
- },
353
- {
354
- "symbol": "SENNO",
355
- "name": "The Senno Token",
356
- "hash": "d3526b437d65f8c12c902e14320abd440ad1f726",
357
- "decimals": 8
358
- },
359
- {
360
- "symbol": "SGAS",
361
- "name": "NEP5.5 Coin With GAS 1:1",
362
- "hash": "961e628cc93d61bf636dc0443cf0548947a50dbe",
363
- "decimals": 8
364
- },
365
- {
366
- "symbol": "SGT",
367
- "name": "Safeguard Token",
368
- "hash": "02728be64b898d1af733aa7f3f00f33b1b209dae",
369
- "decimals": 8
370
- },
371
- {
372
- "symbol": "SOUL",
373
- "cryptocompareSymbol": "SOUL*",
374
- "name": "Phantasma",
375
- "hash": "ed07cffad18f1308db51920d99a2af60ac66a7b3",
376
- "decimals": 8
377
- },
378
- {
379
- "symbol": "SPOT",
380
- "name": "Spotcoin",
381
- "hash": "0a91cdc3c5ff89983c79e3c72e1ccd9e5beaa5d5",
382
- "decimals": 8
383
- },
384
- {
385
- "symbol": "SWH",
386
- "name": "Switcheo",
387
- "hash": "78e6d16b914fe15bc16150aeb11d0c2a8e532bdd",
388
- "decimals": 8
389
- },
390
- {
391
- "symbol": "THOR",
392
- "name": "Thor Token",
393
- "hash": "67a5086bac196b67d5fd20745b0dc9db4d2930ed",
394
- "decimals": 8
395
- },
396
- {
397
- "symbol": "TKY",
398
- "name": "THEKEY Token",
399
- "hash": "132947096727c84c7f9e076c90f08fec3bc17f18",
400
- "decimals": 8
401
- },
402
- {
403
- "symbol": "TMN",
404
- "name": "TranslateMe Network Token",
405
- "hash": "d613223fa138a1555ff711581982462acde209c5",
406
- "decimals": 8
407
- },
408
- {
409
- "symbol": "TNC",
410
- "name": "Trinity Network Credit",
411
- "hash": "08e8c4400f1af2c20c28e0018f29535eb85d15b6",
412
- "decimals": 8
413
- },
414
- {
415
- "symbol": "BRDG",
416
- "name": "Bridge Protocol",
417
- "hash": "bac0d143a547dc66a1d6a2b7d66b06de42614971",
418
- "decimals": 8
419
- },
420
- {
421
- "symbol": "UTD",
422
- "name": "AIRDROP UNITED",
423
- "hash": "8399031038683d2867fbe1ba06fb26965ccd1de0",
424
- "decimals": 8
425
- },
426
- {
427
- "symbol": "WANDN",
428
- "name": "WAND NEO",
429
- "hash": "7703bf394b5f884ebf57b9c6d22f106035e2c029",
430
- "decimals": 8
431
- },
432
- {
433
- "symbol": "WHT",
434
- "name": "World Hideout Coin",
435
- "hash": "25bd2b29636fed5945d26e1d03d279e1d9259320",
436
- "decimals": 8
437
- },
438
- {
439
- "symbol": "WWB",
440
- "name": "Wowbit",
441
- "hash": "40bb36a54bf28872b6ffdfa7fbc6480900e58448",
442
- "decimals": 8
443
- },
444
- {
445
- "symbol": "XQT",
446
- "name": "Quarteria Token",
447
- "hash": "7ac4a2bb052a047506f2f2d3d1528b89cc38e8d4",
448
- "decimals": 8
449
- },
450
- {
451
- "symbol": "XQTA",
452
- "name": "Quarteria Token",
453
- "hash": "6eca2c4bd2b3ed97b2aa41b26128a40ce2bd8d1a",
454
- "decimals": 8
455
- },
456
- {
457
- "symbol": "YEZ",
458
- "name": "Yezcoin",
459
- "hash": "b0036a6e8cf172146c7e71a3b53912556d5788e3",
460
- "decimals": 8
461
- },
462
- {
463
- "symbol": "LFX",
464
- "name": "LIFEX",
465
- "hash": "c54fc1e02a674ce2de52493b3138fb80ccff5a6e",
466
- "decimals": 8
467
- },
468
- {
469
- "symbol": "ZPT",
470
- "name": "Zeepin Token",
471
- "hash": "ac116d4b8d4ca55e6b6d4ecce2192039b51cccc5",
472
- "decimals": 8
473
- },
474
- {
475
- "symbol": "SWTH",
476
- "name": "Switcheo V3",
477
- "hash": "3e09e602eeeb401a2fec8e8ea137d59aae54a139",
478
- "decimals": 8
479
- }
480
- ]
481
-