bip44-ruby 0.1.5 → 0.1.6
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +35 -0
- data/README.md +23 -11
- data/bip44.gemspec +1 -1
- data/lib/bip44/bip44.yml +2059 -0
- data/lib/bip44/constants.rb +2 -1
- data/lib/bip44/version.rb +1 -1
- metadata +10 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ec15dd32d7a640b0fdbfa5484936aee38a5246347dc80fd012288d7c7c1ce63
|
4
|
+
data.tar.gz: 4e20455b55493c75bd44710ef2151bc74823bd554c908e7aec02caa7bd565270
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c4a1688548b740c5e4277369ffe14332f3f9fc5dacf4623857a13665149f37c9a6bfcdbf8a2e8243af56c817fc51fb01aab30a06a9da0675fd7d17e8e946269
|
7
|
+
data.tar.gz: 55f39872efb8b09bdd24cb63de978bd65a4d386096da1c2d700d15fa1b24e4f6b1af1eac81ac5721cabf4b9313dafcf2f47976c7e0bd76d4f971ab26f7dee9ed
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
bip44-ruby (0.1.5)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
diff-lcs (1.3)
|
10
|
+
rake (13.0.1)
|
11
|
+
rspec (3.9.0)
|
12
|
+
rspec-core (~> 3.9.0)
|
13
|
+
rspec-expectations (~> 3.9.0)
|
14
|
+
rspec-mocks (~> 3.9.0)
|
15
|
+
rspec-core (3.9.1)
|
16
|
+
rspec-support (~> 3.9.1)
|
17
|
+
rspec-expectations (3.9.1)
|
18
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
19
|
+
rspec-support (~> 3.9.0)
|
20
|
+
rspec-mocks (3.9.1)
|
21
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
22
|
+
rspec-support (~> 3.9.0)
|
23
|
+
rspec-support (3.9.2)
|
24
|
+
|
25
|
+
PLATFORMS
|
26
|
+
ruby
|
27
|
+
|
28
|
+
DEPENDENCIES
|
29
|
+
bip44-ruby!
|
30
|
+
bundler (~> 1.17)
|
31
|
+
rake (>= 12.3.3)
|
32
|
+
rspec (~> 3.0)
|
33
|
+
|
34
|
+
BUNDLED WITH
|
35
|
+
1.17.2
|
data/README.md
CHANGED
@@ -1,15 +1,9 @@
|
|
1
|
-
# Bip44
|
1
|
+
# Bip44 Ruby
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
6
|
-
|
7
|
-
## Installation
|
8
|
-
|
9
|
-
Add this line to your application's Gemfile:
|
3
|
+
This Ruby gem provides BIP44 coin constants as found here: https://github.com/satoshilabs/slips/blob/master/slip-0044.md
|
10
4
|
|
11
5
|
```ruby
|
12
|
-
gem 'bip44'
|
6
|
+
gem 'bip44-ruby'
|
13
7
|
```
|
14
8
|
|
15
9
|
And then execute:
|
@@ -22,7 +16,25 @@ Or install it yourself as:
|
|
22
16
|
|
23
17
|
## Usage
|
24
18
|
|
25
|
-
|
19
|
+
### Get hexa
|
20
|
+
|
21
|
+
```ruby
|
22
|
+
require "bip44"
|
23
|
+
|
24
|
+
Bip44.get_hexa("btc")
|
25
|
+
|
26
|
+
# => "0x80000000"
|
27
|
+
```
|
28
|
+
|
29
|
+
### Parse hexa
|
30
|
+
|
31
|
+
```ruby
|
32
|
+
require "bip44"
|
33
|
+
|
34
|
+
Bip44.get_currency("0x80000000")
|
35
|
+
|
36
|
+
# => "btc"
|
37
|
+
```
|
26
38
|
|
27
39
|
## Development
|
28
40
|
|
@@ -32,7 +44,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
32
44
|
|
33
45
|
## Contributing
|
34
46
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
47
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/niclin/bip44-ruby.
|
36
48
|
|
37
49
|
## License
|
38
50
|
|
data/bip44.gemspec
CHANGED
@@ -35,6 +35,6 @@ Gem::Specification.new do |spec|
|
|
35
35
|
spec.require_paths = ["lib"]
|
36
36
|
|
37
37
|
spec.add_development_dependency "bundler", "~> 1.17"
|
38
|
-
spec.add_development_dependency "rake", "
|
38
|
+
spec.add_development_dependency "rake", ">= 12.3.3"
|
39
39
|
spec.add_development_dependency "rspec", "~> 3.0"
|
40
40
|
end
|
data/lib/bip44/bip44.yml
ADDED
@@ -0,0 +1,2059 @@
|
|
1
|
+
---
|
2
|
+
- :currency: btc
|
3
|
+
:name: Bitcoin
|
4
|
+
:constant: '0x80000000'
|
5
|
+
- :currency: ltc
|
6
|
+
:name: Litecoin
|
7
|
+
:constant: '0x80000002'
|
8
|
+
- :currency: doge
|
9
|
+
:name: Dogecoin
|
10
|
+
:constant: '0x80000003'
|
11
|
+
- :currency: rdd
|
12
|
+
:name: Reddcoin
|
13
|
+
:constant: '0x80000004'
|
14
|
+
- :currency: dash
|
15
|
+
:name: Dash
|
16
|
+
:constant: '0x80000005'
|
17
|
+
- :currency: ppc
|
18
|
+
:name: Peercoin
|
19
|
+
:constant: '0x80000006'
|
20
|
+
- :currency: nmc
|
21
|
+
:name: Namecoin
|
22
|
+
:constant: '0x80000007'
|
23
|
+
- :currency: ftc
|
24
|
+
:name: Feathercoin
|
25
|
+
:constant: '0x80000008'
|
26
|
+
- :currency: xcp
|
27
|
+
:name: Counterparty
|
28
|
+
:constant: '0x80000009'
|
29
|
+
- :currency: blk
|
30
|
+
:name: Blackcoin
|
31
|
+
:constant: '0x8000000a'
|
32
|
+
- :currency: nsr
|
33
|
+
:name: NuShares
|
34
|
+
:constant: '0x8000000b'
|
35
|
+
- :currency: nbt
|
36
|
+
:name: NuBits
|
37
|
+
:constant: '0x8000000c'
|
38
|
+
- :currency: mzc
|
39
|
+
:name: Mazacoin
|
40
|
+
:constant: '0x8000000d'
|
41
|
+
- :currency: via
|
42
|
+
:name: Viacoin
|
43
|
+
:constant: '0x8000000e'
|
44
|
+
- :currency: xch
|
45
|
+
:name: ClearingHouse
|
46
|
+
:constant: '0x8000000f'
|
47
|
+
- :currency: rby
|
48
|
+
:name: Rubycoin
|
49
|
+
:constant: '0x80000010'
|
50
|
+
- :currency: grs
|
51
|
+
:name: Groestlcoin
|
52
|
+
:constant: '0x80000011'
|
53
|
+
- :currency: dgc
|
54
|
+
:name: Digitalcoin
|
55
|
+
:constant: '0x80000012'
|
56
|
+
- :currency: ccn
|
57
|
+
:name: Cannacoin
|
58
|
+
:constant: '0x80000013'
|
59
|
+
- :currency: dgb
|
60
|
+
:name: DigiByte
|
61
|
+
:constant: '0x80000014'
|
62
|
+
- :currency: mona
|
63
|
+
:name: Monacoin
|
64
|
+
:constant: '0x80000016'
|
65
|
+
- :currency: clam
|
66
|
+
:name: Clams
|
67
|
+
:constant: '0x80000017'
|
68
|
+
- :currency: xpm
|
69
|
+
:name: Primecoin
|
70
|
+
:constant: '0x80000018'
|
71
|
+
- :currency: neos
|
72
|
+
:name: Neoscoin
|
73
|
+
:constant: '0x80000019'
|
74
|
+
- :currency: jbs
|
75
|
+
:name: Jumbucks
|
76
|
+
:constant: '0x8000001a'
|
77
|
+
- :currency: zrc
|
78
|
+
:name: ziftrCOIN
|
79
|
+
:constant: '0x8000001b'
|
80
|
+
- :currency: vtc
|
81
|
+
:name: Vertcoin
|
82
|
+
:constant: '0x8000001c'
|
83
|
+
- :currency: nxt
|
84
|
+
:name: NXT
|
85
|
+
:constant: '0x8000001d'
|
86
|
+
- :currency: burst
|
87
|
+
:name: Burst
|
88
|
+
:constant: '0x8000001e'
|
89
|
+
- :currency: mue
|
90
|
+
:name: MonetaryUnit
|
91
|
+
:constant: '0x8000001f'
|
92
|
+
- :currency: zoom
|
93
|
+
:name: Zoom
|
94
|
+
:constant: '0x80000020'
|
95
|
+
- :currency: vash
|
96
|
+
:name: Virtual Cash
|
97
|
+
:constant: '0x80000021'
|
98
|
+
- :currency: cdn
|
99
|
+
:name: Canada eCoin
|
100
|
+
:constant: '0x80000022'
|
101
|
+
- :currency: sdc
|
102
|
+
:name: ShadowCash
|
103
|
+
:constant: '0x80000023'
|
104
|
+
- :currency: pkb
|
105
|
+
:name: ParkByte
|
106
|
+
:constant: '0x80000024'
|
107
|
+
- :currency: pnd
|
108
|
+
:name: Pandacoin
|
109
|
+
:constant: '0x80000025'
|
110
|
+
- :currency: start
|
111
|
+
:name: StartCOIN
|
112
|
+
:constant: '0x80000026'
|
113
|
+
- :currency: moin
|
114
|
+
:name: MOIN
|
115
|
+
:constant: '0x80000027'
|
116
|
+
- :currency: exp
|
117
|
+
:name: Expanse
|
118
|
+
:constant: '0x80000028'
|
119
|
+
- :currency: emc2
|
120
|
+
:name: Einsteinium
|
121
|
+
:constant: '0x80000029'
|
122
|
+
- :currency: dcr
|
123
|
+
:name: Decred
|
124
|
+
:constant: '0x8000002a'
|
125
|
+
- :currency: xem
|
126
|
+
:name: NEM
|
127
|
+
:constant: '0x8000002b'
|
128
|
+
- :currency: part
|
129
|
+
:name: Particl
|
130
|
+
:constant: '0x8000002c'
|
131
|
+
- :currency: arg
|
132
|
+
:name: Argentum
|
133
|
+
:constant: '0x8000002d'
|
134
|
+
- :currency: shr
|
135
|
+
:name: Shreeji
|
136
|
+
:constant: '0x80000030'
|
137
|
+
- :currency: gcr
|
138
|
+
:name: Global Currency Reserve (GCRcoin)
|
139
|
+
:constant: '0x80000031'
|
140
|
+
- :currency: nvc
|
141
|
+
:name: Novacoin
|
142
|
+
:constant: '0x80000032'
|
143
|
+
- :currency: ac
|
144
|
+
:name: Asiacoin
|
145
|
+
:constant: '0x80000033'
|
146
|
+
- :currency: btcd
|
147
|
+
:name: Bitcoindark
|
148
|
+
:constant: '0x80000034'
|
149
|
+
- :currency: dope
|
150
|
+
:name: Dopecoin
|
151
|
+
:constant: '0x80000035'
|
152
|
+
- :currency: tpc
|
153
|
+
:name: Templecoin
|
154
|
+
:constant: '0x80000036'
|
155
|
+
- :currency: aib
|
156
|
+
:name: AIB
|
157
|
+
:constant: '0x80000037'
|
158
|
+
- :currency: edrc
|
159
|
+
:name: EDRCoin
|
160
|
+
:constant: '0x80000038'
|
161
|
+
- :currency: sys
|
162
|
+
:name: Syscoin
|
163
|
+
:constant: '0x80000039'
|
164
|
+
- :currency: slr
|
165
|
+
:name: Solarcoin
|
166
|
+
:constant: '0x8000003a'
|
167
|
+
- :currency: smly
|
168
|
+
:name: Smileycoin
|
169
|
+
:constant: '0x8000003b'
|
170
|
+
- :currency: eth
|
171
|
+
:name: Ether
|
172
|
+
:constant: '0x8000003c'
|
173
|
+
- :currency: etc
|
174
|
+
:name: Ether Classic
|
175
|
+
:constant: '0x8000003d'
|
176
|
+
- :currency: psb
|
177
|
+
:name: Pesobit
|
178
|
+
:constant: '0x8000003e'
|
179
|
+
- :currency: ldcn
|
180
|
+
:name: Landcoin
|
181
|
+
:constant: '0x8000003f'
|
182
|
+
- :currency: xbc
|
183
|
+
:name: Bitcoinplus
|
184
|
+
:constant: '0x80000041'
|
185
|
+
- :currency: iop
|
186
|
+
:name: Internet of People
|
187
|
+
:constant: '0x80000042'
|
188
|
+
- :currency: nxs
|
189
|
+
:name: Nexus
|
190
|
+
:constant: '0x80000043'
|
191
|
+
- :currency: insn
|
192
|
+
:name: InsaneCoin
|
193
|
+
:constant: '0x80000044'
|
194
|
+
- :currency: ok
|
195
|
+
:name: OKCash
|
196
|
+
:constant: '0x80000045'
|
197
|
+
- :currency: brit
|
198
|
+
:name: BritCoin
|
199
|
+
:constant: '0x80000046'
|
200
|
+
- :currency: cmp
|
201
|
+
:name: Compcoin
|
202
|
+
:constant: '0x80000047'
|
203
|
+
- :currency: crw
|
204
|
+
:name: Crown
|
205
|
+
:constant: '0x80000048'
|
206
|
+
- :currency: bela
|
207
|
+
:name: BelaCoin
|
208
|
+
:constant: '0x80000049'
|
209
|
+
- :currency: icx
|
210
|
+
:name: ICON
|
211
|
+
:constant: '0x8000004a'
|
212
|
+
- :currency: fjc
|
213
|
+
:name: FujiCoin
|
214
|
+
:constant: '0x8000004b'
|
215
|
+
- :currency: mix
|
216
|
+
:name: MIX
|
217
|
+
:constant: '0x8000004c'
|
218
|
+
- :currency: xvg
|
219
|
+
:name: Verge
|
220
|
+
:constant: '0x8000004d'
|
221
|
+
- :currency: efl
|
222
|
+
:name: Electronic Gulden
|
223
|
+
:constant: '0x8000004e'
|
224
|
+
- :currency: club
|
225
|
+
:name: ClubCoin
|
226
|
+
:constant: '0x8000004f'
|
227
|
+
- :currency: richx
|
228
|
+
:name: RichCoin
|
229
|
+
:constant: '0x80000050'
|
230
|
+
- :currency: pot
|
231
|
+
:name: Potcoin
|
232
|
+
:constant: '0x80000051'
|
233
|
+
- :currency: qrk
|
234
|
+
:name: Quarkcoin
|
235
|
+
:constant: '0x80000052'
|
236
|
+
- :currency: trc
|
237
|
+
:name: Terracoin
|
238
|
+
:constant: '0x80000053'
|
239
|
+
- :currency: grc
|
240
|
+
:name: Gridcoin
|
241
|
+
:constant: '0x80000054'
|
242
|
+
- :currency: aur
|
243
|
+
:name: Auroracoin
|
244
|
+
:constant: '0x80000055'
|
245
|
+
- :currency: ixc
|
246
|
+
:name: IXCoin
|
247
|
+
:constant: '0x80000056'
|
248
|
+
- :currency: nlg
|
249
|
+
:name: Gulden
|
250
|
+
:constant: '0x80000057'
|
251
|
+
- :currency: bitb
|
252
|
+
:name: BitBean
|
253
|
+
:constant: '0x80000058'
|
254
|
+
- :currency: bta
|
255
|
+
:name: Bata
|
256
|
+
:constant: '0x80000059'
|
257
|
+
- :currency: xmy
|
258
|
+
:name: Myriadcoin
|
259
|
+
:constant: '0x8000005a'
|
260
|
+
- :currency: bsd
|
261
|
+
:name: BitSend
|
262
|
+
:constant: '0x8000005b'
|
263
|
+
- :currency: uno
|
264
|
+
:name: Unobtanium
|
265
|
+
:constant: '0x8000005c'
|
266
|
+
- :currency: mtr
|
267
|
+
:name: MasterTrader
|
268
|
+
:constant: '0x8000005d'
|
269
|
+
- :currency: gb
|
270
|
+
:name: GoldBlocks
|
271
|
+
:constant: '0x8000005e'
|
272
|
+
- :currency: shm
|
273
|
+
:name: Saham
|
274
|
+
:constant: '0x8000005f'
|
275
|
+
- :currency: crx
|
276
|
+
:name: Chronos
|
277
|
+
:constant: '0x80000060'
|
278
|
+
- :currency: biq
|
279
|
+
:name: Ubiquoin
|
280
|
+
:constant: '0x80000061'
|
281
|
+
- :currency: evo
|
282
|
+
:name: Evotion
|
283
|
+
:constant: '0x80000062'
|
284
|
+
- :currency: sto
|
285
|
+
:name: SaveTheOcean
|
286
|
+
:constant: '0x80000063'
|
287
|
+
- :currency: bigup
|
288
|
+
:name: BigUp
|
289
|
+
:constant: '0x80000064'
|
290
|
+
- :currency: game
|
291
|
+
:name: GameCredits
|
292
|
+
:constant: '0x80000065'
|
293
|
+
- :currency: dlc
|
294
|
+
:name: Dollarcoins
|
295
|
+
:constant: '0x80000066'
|
296
|
+
- :currency: zyd
|
297
|
+
:name: Zayedcoin
|
298
|
+
:constant: '0x80000067'
|
299
|
+
- :currency: dbic
|
300
|
+
:name: Dubaicoin
|
301
|
+
:constant: '0x80000068'
|
302
|
+
- :currency: strat
|
303
|
+
:name: Stratis
|
304
|
+
:constant: '0x80000069'
|
305
|
+
- :currency: sh
|
306
|
+
:name: Shilling
|
307
|
+
:constant: '0x8000006a'
|
308
|
+
- :currency: mars
|
309
|
+
:name: MarsCoin
|
310
|
+
:constant: '0x8000006b'
|
311
|
+
- :currency: ubq
|
312
|
+
:name: Ubiq
|
313
|
+
:constant: '0x8000006c'
|
314
|
+
- :currency: ptc
|
315
|
+
:name: Pesetacoin
|
316
|
+
:constant: '0x8000006d'
|
317
|
+
- :currency: nro
|
318
|
+
:name: Neurocoin
|
319
|
+
:constant: '0x8000006e'
|
320
|
+
- :currency: ark
|
321
|
+
:name: ARK
|
322
|
+
:constant: '0x8000006f'
|
323
|
+
- :currency: usc
|
324
|
+
:name: UltimateSecureCashMain
|
325
|
+
:constant: '0x80000070'
|
326
|
+
- :currency: thc
|
327
|
+
:name: Hempcoin
|
328
|
+
:constant: '0x80000071'
|
329
|
+
- :currency: linx
|
330
|
+
:name: Linx
|
331
|
+
:constant: '0x80000072'
|
332
|
+
- :currency: ecn
|
333
|
+
:name: Ecoin
|
334
|
+
:constant: '0x80000073'
|
335
|
+
- :currency: dnr
|
336
|
+
:name: Denarius
|
337
|
+
:constant: '0x80000074'
|
338
|
+
- :currency: pink
|
339
|
+
:name: Pinkcoin
|
340
|
+
:constant: '0x80000075'
|
341
|
+
- :currency: atom
|
342
|
+
:name: Atom
|
343
|
+
:constant: '0x80000076'
|
344
|
+
- :currency: pivx
|
345
|
+
:name: Pivx
|
346
|
+
:constant: '0x80000077'
|
347
|
+
- :currency: flash
|
348
|
+
:name: Flashcoin
|
349
|
+
:constant: '0x80000078'
|
350
|
+
- :currency: zen
|
351
|
+
:name: Zencash
|
352
|
+
:constant: '0x80000079'
|
353
|
+
- :currency: put
|
354
|
+
:name: Putincoin
|
355
|
+
:constant: '0x8000007a'
|
356
|
+
- :currency: zny
|
357
|
+
:name: BitZeny
|
358
|
+
:constant: '0x8000007b'
|
359
|
+
- :currency: unify
|
360
|
+
:name: Unify
|
361
|
+
:constant: '0x8000007c'
|
362
|
+
- :currency: xst
|
363
|
+
:name: StealthCoin
|
364
|
+
:constant: '0x8000007d'
|
365
|
+
- :currency: brk
|
366
|
+
:name: Breakout Coin
|
367
|
+
:constant: '0x8000007e'
|
368
|
+
- :currency: vc
|
369
|
+
:name: Vcash
|
370
|
+
:constant: '0x8000007f'
|
371
|
+
- :currency: xmr
|
372
|
+
:name: Monero
|
373
|
+
:constant: '0x80000080'
|
374
|
+
- :currency: vox
|
375
|
+
:name: Voxels
|
376
|
+
:constant: '0x80000081'
|
377
|
+
- :currency: nav
|
378
|
+
:name: NavCoin
|
379
|
+
:constant: '0x80000082'
|
380
|
+
- :currency: fct
|
381
|
+
:name: Factom Factoids
|
382
|
+
:constant: '0x80000083'
|
383
|
+
- :currency: ec
|
384
|
+
:name: Factom Entry Credits
|
385
|
+
:constant: '0x80000084'
|
386
|
+
- :currency: zec
|
387
|
+
:name: Zcash
|
388
|
+
:constant: '0x80000085'
|
389
|
+
- :currency: lsk
|
390
|
+
:name: Lisk
|
391
|
+
:constant: '0x80000086'
|
392
|
+
- :currency: steem
|
393
|
+
:name: Steem
|
394
|
+
:constant: '0x80000087'
|
395
|
+
- :currency: xzc
|
396
|
+
:name: ZCoin
|
397
|
+
:constant: '0x80000088'
|
398
|
+
- :currency: rbtc
|
399
|
+
:name: RSK
|
400
|
+
:constant: '0x80000089'
|
401
|
+
- :currency: rpt
|
402
|
+
:name: RealPointCoin
|
403
|
+
:constant: '0x8000008b'
|
404
|
+
- :currency: lbc
|
405
|
+
:name: LBRY Credits
|
406
|
+
:constant: '0x8000008c'
|
407
|
+
- :currency: kmd
|
408
|
+
:name: Komodo
|
409
|
+
:constant: '0x8000008d'
|
410
|
+
- :currency: bsq
|
411
|
+
:name: bisq Token
|
412
|
+
:constant: '0x8000008e'
|
413
|
+
- :currency: ric
|
414
|
+
:name: Riecoin
|
415
|
+
:constant: '0x8000008f'
|
416
|
+
- :currency: xrp
|
417
|
+
:name: Ripple
|
418
|
+
:constant: '0x80000090'
|
419
|
+
- :currency: bch
|
420
|
+
:name: Bitcoin Cash
|
421
|
+
:constant: '0x80000091'
|
422
|
+
- :currency: nebl
|
423
|
+
:name: Neblio
|
424
|
+
:constant: '0x80000092'
|
425
|
+
- :currency: zcl
|
426
|
+
:name: ZClassic
|
427
|
+
:constant: '0x80000093'
|
428
|
+
- :currency: xlm
|
429
|
+
:name: Stellar Lumens
|
430
|
+
:constant: '0x80000094'
|
431
|
+
- :currency: nlc2
|
432
|
+
:name: NoLimitCoin2
|
433
|
+
:constant: '0x80000095'
|
434
|
+
- :currency: whl
|
435
|
+
:name: WhaleCoin
|
436
|
+
:constant: '0x80000096'
|
437
|
+
- :currency: erc
|
438
|
+
:name: EuropeCoin
|
439
|
+
:constant: '0x80000097'
|
440
|
+
- :currency: dmd
|
441
|
+
:name: Diamond
|
442
|
+
:constant: '0x80000098'
|
443
|
+
- :currency: btm
|
444
|
+
:name: Bytom
|
445
|
+
:constant: '0x80000099'
|
446
|
+
- :currency: bio
|
447
|
+
:name: Biocoin
|
448
|
+
:constant: '0x8000009a'
|
449
|
+
- :currency: xwc
|
450
|
+
:name: Whitecoin
|
451
|
+
:constant: '0x8000009b'
|
452
|
+
- :currency: btg
|
453
|
+
:name: Bitcoin Gold
|
454
|
+
:constant: '0x8000009c'
|
455
|
+
- :currency: btc2x
|
456
|
+
:name: Bitcoin 2x
|
457
|
+
:constant: '0x8000009d'
|
458
|
+
- :currency: ssn
|
459
|
+
:name: SuperSkynet
|
460
|
+
:constant: '0x8000009e'
|
461
|
+
- :currency: toa
|
462
|
+
:name: TOACoin
|
463
|
+
:constant: '0x8000009f'
|
464
|
+
- :currency: btx
|
465
|
+
:name: Bitcore
|
466
|
+
:constant: '0x800000a0'
|
467
|
+
- :currency: acc
|
468
|
+
:name: Adcoin
|
469
|
+
:constant: '0x800000a1'
|
470
|
+
- :currency: bco
|
471
|
+
:name: Bridgecoin
|
472
|
+
:constant: '0x800000a2'
|
473
|
+
- :currency: ella
|
474
|
+
:name: Ellaism
|
475
|
+
:constant: '0x800000a3'
|
476
|
+
- :currency: pirl
|
477
|
+
:name: Pirl
|
478
|
+
:constant: '0x800000a4'
|
479
|
+
- :currency: nano
|
480
|
+
:name: Nano
|
481
|
+
:constant: '0x800000a5'
|
482
|
+
- :currency: vivo
|
483
|
+
:name: Vivo
|
484
|
+
:constant: '0x800000a6'
|
485
|
+
- :currency: frst
|
486
|
+
:name: Firstcoin
|
487
|
+
:constant: '0x800000a7'
|
488
|
+
- :currency: hnc
|
489
|
+
:name: Helleniccoin
|
490
|
+
:constant: '0x800000a8'
|
491
|
+
- :currency: buzz
|
492
|
+
:name: BUZZ
|
493
|
+
:constant: '0x800000a9'
|
494
|
+
- :currency: mbrs
|
495
|
+
:name: Ember
|
496
|
+
:constant: '0x800000aa'
|
497
|
+
- :currency: hsr
|
498
|
+
:name: Hcash
|
499
|
+
:constant: '0x800000ab'
|
500
|
+
- :currency: html
|
501
|
+
:name: HTMLCOIN
|
502
|
+
:constant: '0x800000ac'
|
503
|
+
- :currency: odn
|
504
|
+
:name: Obsidian
|
505
|
+
:constant: '0x800000ad'
|
506
|
+
- :currency: onx
|
507
|
+
:name: OnixCoin
|
508
|
+
:constant: '0x800000ae'
|
509
|
+
- :currency: rvn
|
510
|
+
:name: Ravencoin
|
511
|
+
:constant: '0x800000af'
|
512
|
+
- :currency: gbx
|
513
|
+
:name: GoByte
|
514
|
+
:constant: '0x800000b0'
|
515
|
+
- :currency: btcz
|
516
|
+
:name: BitcoinZ
|
517
|
+
:constant: '0x800000b1'
|
518
|
+
- :currency: poa
|
519
|
+
:name: Poa
|
520
|
+
:constant: '0x800000b2'
|
521
|
+
- :currency: nyc
|
522
|
+
:name: NewYorkCoin
|
523
|
+
:constant: '0x800000b3'
|
524
|
+
- :currency: mxt
|
525
|
+
:name: MarteXcoin
|
526
|
+
:constant: '0x800000b4'
|
527
|
+
- :currency: wc
|
528
|
+
:name: Wincoin
|
529
|
+
:constant: '0x800000b5'
|
530
|
+
- :currency: mnx
|
531
|
+
:name: Minexcoin
|
532
|
+
:constant: '0x800000b6'
|
533
|
+
- :currency: btcp
|
534
|
+
:name: Bitcoin Private
|
535
|
+
:constant: '0x800000b7'
|
536
|
+
- :currency: music
|
537
|
+
:name: Musicoin
|
538
|
+
:constant: '0x800000b8'
|
539
|
+
- :currency: bca
|
540
|
+
:name: Bitcoin Atom
|
541
|
+
:constant: '0x800000b9'
|
542
|
+
- :currency: crave
|
543
|
+
:name: Crave
|
544
|
+
:constant: '0x800000ba'
|
545
|
+
- :currency: stak
|
546
|
+
:name: STRAKS
|
547
|
+
:constant: '0x800000bb'
|
548
|
+
- :currency: wbtc
|
549
|
+
:name: World Bitcoin
|
550
|
+
:constant: '0x800000bc'
|
551
|
+
- :currency: lch
|
552
|
+
:name: LiteCash
|
553
|
+
:constant: '0x800000bd'
|
554
|
+
- :currency: excl
|
555
|
+
:name: ExclusiveCoin
|
556
|
+
:constant: '0x800000be'
|
557
|
+
- :currency: lcc
|
558
|
+
:name: LitecoinCash
|
559
|
+
:constant: '0x800000c0'
|
560
|
+
- :currency: xfe
|
561
|
+
:name: Feirm
|
562
|
+
:constant: '0x800000c1'
|
563
|
+
- :currency: eos
|
564
|
+
:name: EOS
|
565
|
+
:constant: '0x800000c2'
|
566
|
+
- :currency: trx
|
567
|
+
:name: Tron
|
568
|
+
:constant: '0x800000c3'
|
569
|
+
- :currency: kobo
|
570
|
+
:name: Kobocoin
|
571
|
+
:constant: '0x800000c4'
|
572
|
+
- :currency: hush
|
573
|
+
:name: HUSH
|
574
|
+
:constant: '0x800000c5'
|
575
|
+
- :currency: banano
|
576
|
+
:name: Bananos
|
577
|
+
:constant: '0x800000c6'
|
578
|
+
- :currency: etf
|
579
|
+
:name: ETF
|
580
|
+
:constant: '0x800000c7'
|
581
|
+
- :currency: omni
|
582
|
+
:name: Omni
|
583
|
+
:constant: '0x800000c8'
|
584
|
+
- :currency: bifi
|
585
|
+
:name: BitcoinFile
|
586
|
+
:constant: '0x800000c9'
|
587
|
+
- :currency: ufo
|
588
|
+
:name: Uniform Fiscal Object
|
589
|
+
:constant: '0x800000ca'
|
590
|
+
- :currency: cnmc
|
591
|
+
:name: Cryptonodes
|
592
|
+
:constant: '0x800000cb'
|
593
|
+
- :currency: bcn
|
594
|
+
:name: Bytecoin
|
595
|
+
:constant: '0x800000cc'
|
596
|
+
- :currency: rin
|
597
|
+
:name: Ringo
|
598
|
+
:constant: '0x800000cd'
|
599
|
+
- :currency: atp
|
600
|
+
:name: PlatON
|
601
|
+
:constant: '0x800000ce'
|
602
|
+
- :currency: evt
|
603
|
+
:name: everiToken
|
604
|
+
:constant: '0x800000cf'
|
605
|
+
- :currency: atn
|
606
|
+
:name: ATN
|
607
|
+
:constant: '0x800000d0'
|
608
|
+
- :currency: bis
|
609
|
+
:name: Bismuth
|
610
|
+
:constant: '0x800000d1'
|
611
|
+
- :currency: neet
|
612
|
+
:name: NEETCOIN
|
613
|
+
:constant: '0x800000d2'
|
614
|
+
- :currency: bopo
|
615
|
+
:name: BopoChain
|
616
|
+
:constant: '0x800000d3'
|
617
|
+
- :currency: oot
|
618
|
+
:name: Utrum
|
619
|
+
:constant: '0x800000d4'
|
620
|
+
- :currency: xspec
|
621
|
+
:name: Spectrecoin
|
622
|
+
:constant: '0x800000d5'
|
623
|
+
- :currency: monk
|
624
|
+
:name: Monkey Project
|
625
|
+
:constant: '0x800000d5'
|
626
|
+
- :currency: boxy
|
627
|
+
:name: BoxyCoin
|
628
|
+
:constant: '0x800000d7'
|
629
|
+
- :currency: flo
|
630
|
+
:name: Flo
|
631
|
+
:constant: '0x800000d8'
|
632
|
+
- :currency: mec
|
633
|
+
:name: Megacoin
|
634
|
+
:constant: '0x800000d9'
|
635
|
+
- :currency: btdx
|
636
|
+
:name: BitCloud
|
637
|
+
:constant: '0x800000da'
|
638
|
+
- :currency: xax
|
639
|
+
:name: Artax
|
640
|
+
:constant: '0x800000db'
|
641
|
+
- :currency: anon
|
642
|
+
:name: ANON
|
643
|
+
:constant: '0x800000dc'
|
644
|
+
- :currency: ltz
|
645
|
+
:name: LitecoinZ
|
646
|
+
:constant: '0x800000dd'
|
647
|
+
- :currency: bitg
|
648
|
+
:name: Bitcoin Green
|
649
|
+
:constant: '0x800000de'
|
650
|
+
- :currency: ask
|
651
|
+
:name: AskCoin
|
652
|
+
:constant: '0x800000df'
|
653
|
+
- :currency: smart
|
654
|
+
:name: Smartcash
|
655
|
+
:constant: '0x800000e0'
|
656
|
+
- :currency: xuez
|
657
|
+
:name: XUEZ
|
658
|
+
:constant: '0x800000e1'
|
659
|
+
- :currency: hlm
|
660
|
+
:name: Helium
|
661
|
+
:constant: '0x800000e2'
|
662
|
+
- :currency: web
|
663
|
+
:name: Webchain
|
664
|
+
:constant: '0x800000e3'
|
665
|
+
- :currency: acm
|
666
|
+
:name: Actinium
|
667
|
+
:constant: '0x800000e4'
|
668
|
+
- :currency: nos
|
669
|
+
:name: NOS Stable Coins
|
670
|
+
:constant: '0x800000e5'
|
671
|
+
- :currency: bitc
|
672
|
+
:name: BitCash
|
673
|
+
:constant: '0x800000e6'
|
674
|
+
- :currency: hth
|
675
|
+
:name: Help The Homeless Coin
|
676
|
+
:constant: '0x800000e7'
|
677
|
+
- :currency: tzc
|
678
|
+
:name: Trezarcoin
|
679
|
+
:constant: '0x800000e8'
|
680
|
+
- :currency: var
|
681
|
+
:name: Varda
|
682
|
+
:constant: '0x800000e9'
|
683
|
+
- :currency: iov
|
684
|
+
:name: IOV
|
685
|
+
:constant: '0x800000ea'
|
686
|
+
- :currency: fio
|
687
|
+
:name: FIO
|
688
|
+
:constant: '0x800000eb'
|
689
|
+
- :currency: bsv
|
690
|
+
:name: BitcoinSV
|
691
|
+
:constant: '0x800000ec'
|
692
|
+
- :currency: dxn
|
693
|
+
:name: DEXON
|
694
|
+
:constant: '0x800000ed'
|
695
|
+
- :currency: qrl
|
696
|
+
:name: Quantum Resistant Ledger
|
697
|
+
:constant: '0x800000ee'
|
698
|
+
- :currency: pcx
|
699
|
+
:name: ChainX
|
700
|
+
:constant: '0x800000ef'
|
701
|
+
- :currency: loki
|
702
|
+
:name: Loki
|
703
|
+
:constant: '0x800000f0'
|
704
|
+
- :currency: nim
|
705
|
+
:name: Nimiq
|
706
|
+
:constant: '0x800000f2'
|
707
|
+
- :currency: sov
|
708
|
+
:name: Sovereign Coin
|
709
|
+
:constant: '0x800000f3'
|
710
|
+
- :currency: jct
|
711
|
+
:name: Jibital Coin
|
712
|
+
:constant: '0x800000f4'
|
713
|
+
- :currency: slp
|
714
|
+
:name: Simple Ledger Protocol
|
715
|
+
:constant: '0x800000f5'
|
716
|
+
- :currency: ewt
|
717
|
+
:name: Energy Web
|
718
|
+
:constant: '0x800000f6'
|
719
|
+
- :currency: uc
|
720
|
+
:name: Ulord
|
721
|
+
:constant: '0x800000f7'
|
722
|
+
- :currency: exos
|
723
|
+
:name: EXOS
|
724
|
+
:constant: '0x800000f8'
|
725
|
+
- :currency: eca
|
726
|
+
:name: Electra
|
727
|
+
:constant: '0x800000f9'
|
728
|
+
- :currency: soom
|
729
|
+
:name: Soom
|
730
|
+
:constant: '0x800000fa'
|
731
|
+
- :currency: xrd
|
732
|
+
:name: Redstone
|
733
|
+
:constant: '0x800000fb'
|
734
|
+
- :currency: free
|
735
|
+
:name: FreeCoin
|
736
|
+
:constant: '0x800000fc'
|
737
|
+
- :currency: npw
|
738
|
+
:name: NewPowerCoin
|
739
|
+
:constant: '0x800000fd'
|
740
|
+
- :currency: bst
|
741
|
+
:name: BlockStamp
|
742
|
+
:constant: '0x800000fe'
|
743
|
+
- :currency: nano
|
744
|
+
:name: Bitcoin Nano
|
745
|
+
:constant: '0x80000100'
|
746
|
+
- :currency: btcc
|
747
|
+
:name: Bitcoin Core
|
748
|
+
:constant: '0x80000101'
|
749
|
+
- :currency: zest
|
750
|
+
:name: Zest
|
751
|
+
:constant: '0x80000103'
|
752
|
+
- :currency: abt
|
753
|
+
:name: ArcBlock
|
754
|
+
:constant: '0x80000104'
|
755
|
+
- :currency: pion
|
756
|
+
:name: Pion
|
757
|
+
:constant: '0x80000105'
|
758
|
+
- :currency: dt3
|
759
|
+
:name: DreamTeam3
|
760
|
+
:constant: '0x80000106'
|
761
|
+
- :currency: zbux
|
762
|
+
:name: Zbux
|
763
|
+
:constant: '0x80000107'
|
764
|
+
- :currency: kpl
|
765
|
+
:name: Kepler
|
766
|
+
:constant: '0x80000108'
|
767
|
+
- :currency: tpay
|
768
|
+
:name: TokenPay
|
769
|
+
:constant: '0x80000109'
|
770
|
+
- :currency: zilla
|
771
|
+
:name: ChainZilla
|
772
|
+
:constant: '0x8000010a'
|
773
|
+
- :currency: ank
|
774
|
+
:name: Anker
|
775
|
+
:constant: '0x8000010b'
|
776
|
+
- :currency: bcc
|
777
|
+
:name: BCChain
|
778
|
+
:constant: '0x8000010c'
|
779
|
+
- :currency: hpb
|
780
|
+
:name: HPB
|
781
|
+
:constant: '0x8000010d'
|
782
|
+
- :currency: one
|
783
|
+
:name: ONE
|
784
|
+
:constant: '0x8000010e'
|
785
|
+
- :currency: sbc
|
786
|
+
:name: SBC
|
787
|
+
:constant: '0x8000010f'
|
788
|
+
- :currency: ipc
|
789
|
+
:name: IPChain
|
790
|
+
:constant: '0x80000110'
|
791
|
+
- :currency: dmtc
|
792
|
+
:name: Dominantchain
|
793
|
+
:constant: '0x80000111'
|
794
|
+
- :currency: ogc
|
795
|
+
:name: Onegram
|
796
|
+
:constant: '0x80000112'
|
797
|
+
- :currency: shit
|
798
|
+
:name: Shitcoin
|
799
|
+
:constant: '0x80000113'
|
800
|
+
- :currency: andes
|
801
|
+
:name: Andescoin
|
802
|
+
:constant: '0x80000114'
|
803
|
+
- :currency: arepa
|
804
|
+
:name: Arepacoin
|
805
|
+
:constant: '0x80000115'
|
806
|
+
- :currency: boli
|
807
|
+
:name: Bolivarcoin
|
808
|
+
:constant: '0x80000116'
|
809
|
+
- :currency: ril
|
810
|
+
:name: Rilcoin
|
811
|
+
:constant: '0x80000117'
|
812
|
+
- :currency: htr
|
813
|
+
:name: Hathor Network
|
814
|
+
:constant: '0x80000118'
|
815
|
+
- :currency: fctid
|
816
|
+
:name: Factom ID
|
817
|
+
:constant: '0x80000119'
|
818
|
+
- :currency: bravo
|
819
|
+
:name: BRAVO
|
820
|
+
:constant: '0x8000011a'
|
821
|
+
- :currency: algo
|
822
|
+
:name: Algorand
|
823
|
+
:constant: '0x8000011b'
|
824
|
+
- :currency: bzx
|
825
|
+
:name: Bitcoinzero
|
826
|
+
:constant: '0x8000011c'
|
827
|
+
- :currency: gxx
|
828
|
+
:name: GravityCoin
|
829
|
+
:constant: '0x8000011d'
|
830
|
+
- :currency: heat
|
831
|
+
:name: HEAT
|
832
|
+
:constant: '0x8000011e'
|
833
|
+
- :currency: xdn
|
834
|
+
:name: DigitalNote
|
835
|
+
:constant: '0x8000011f'
|
836
|
+
- :currency: fsn
|
837
|
+
:name: FUSION
|
838
|
+
:constant: '0x80000120'
|
839
|
+
- :currency: cpc
|
840
|
+
:name: Capricoin
|
841
|
+
:constant: '0x80000121'
|
842
|
+
- :currency: bold
|
843
|
+
:name: Bold
|
844
|
+
:constant: '0x80000122'
|
845
|
+
- :currency: iost
|
846
|
+
:name: IOST
|
847
|
+
:constant: '0x80000123'
|
848
|
+
- :currency: tkey
|
849
|
+
:name: Tkeycoin
|
850
|
+
:constant: '0x80000124'
|
851
|
+
- :currency: use
|
852
|
+
:name: Usechain
|
853
|
+
:constant: '0x80000125'
|
854
|
+
- :currency: bcz
|
855
|
+
:name: BitcoinCZ
|
856
|
+
:constant: '0x80000126'
|
857
|
+
- :currency: ioc
|
858
|
+
:name: Iocoin
|
859
|
+
:constant: '0x80000127'
|
860
|
+
- :currency: asf
|
861
|
+
:name: Asofe
|
862
|
+
:constant: '0x80000128'
|
863
|
+
- :currency: mass
|
864
|
+
:name: MASS
|
865
|
+
:constant: '0x80000129'
|
866
|
+
- :currency: fair
|
867
|
+
:name: FairCoin
|
868
|
+
:constant: '0x8000012a'
|
869
|
+
- :currency: nuko
|
870
|
+
:name: Nekonium
|
871
|
+
:constant: '0x8000012b'
|
872
|
+
- :currency: gnx
|
873
|
+
:name: Genaro Network
|
874
|
+
:constant: '0x8000012c'
|
875
|
+
- :currency: divi
|
876
|
+
:name: Divi Project
|
877
|
+
:constant: '0x8000012d'
|
878
|
+
- :currency: cmt
|
879
|
+
:name: Community
|
880
|
+
:constant: '0x8000012e'
|
881
|
+
- :currency: euno
|
882
|
+
:name: EUNO
|
883
|
+
:constant: '0x8000012f'
|
884
|
+
- :currency: iotx
|
885
|
+
:name: IoTeX
|
886
|
+
:constant: '0x80000130'
|
887
|
+
- :currency: onion
|
888
|
+
:name: DeepOnion
|
889
|
+
:constant: '0x80000131'
|
890
|
+
- :currency: 8bit
|
891
|
+
:name: 8Bit
|
892
|
+
:constant: '0x80000132'
|
893
|
+
- :currency: atc
|
894
|
+
:name: AToken Coin
|
895
|
+
:constant: '0x80000133'
|
896
|
+
- :currency: bts
|
897
|
+
:name: Bitshares
|
898
|
+
:constant: '0x80000134'
|
899
|
+
- :currency: ckb
|
900
|
+
:name: Nervos CKB
|
901
|
+
:constant: '0x80000135'
|
902
|
+
- :currency: ugas
|
903
|
+
:name: Ultrain
|
904
|
+
:constant: '0x80000136'
|
905
|
+
- :currency: ads
|
906
|
+
:name: Adshares
|
907
|
+
:constant: '0x80000137'
|
908
|
+
- :currency: ara
|
909
|
+
:name: Aura
|
910
|
+
:constant: '0x80000138'
|
911
|
+
- :currency: zil
|
912
|
+
:name: Zilliqa
|
913
|
+
:constant: '0x80000139'
|
914
|
+
- :currency: moac
|
915
|
+
:name: MOAC
|
916
|
+
:constant: '0x8000013a'
|
917
|
+
- :currency: swtc
|
918
|
+
:name: SWTC
|
919
|
+
:constant: '0x8000013b'
|
920
|
+
- :currency: vnsc
|
921
|
+
:name: vnscoin
|
922
|
+
:constant: '0x8000013c'
|
923
|
+
- :currency: plug
|
924
|
+
:name: Pl^g
|
925
|
+
:constant: '0x8000013d'
|
926
|
+
- :currency: man
|
927
|
+
:name: Matrix AI Network
|
928
|
+
:constant: '0x8000013e'
|
929
|
+
- :currency: ecc
|
930
|
+
:name: ECCoin
|
931
|
+
:constant: '0x8000013f'
|
932
|
+
- :currency: rpd
|
933
|
+
:name: Rapids
|
934
|
+
:constant: '0x80000140'
|
935
|
+
- :currency: rap
|
936
|
+
:name: Rapture
|
937
|
+
:constant: '0x80000141'
|
938
|
+
- :currency: gard
|
939
|
+
:name: Hashgard
|
940
|
+
:constant: '0x80000142'
|
941
|
+
- :currency: zer
|
942
|
+
:name: Zero
|
943
|
+
:constant: '0x80000143'
|
944
|
+
- :currency: ebst
|
945
|
+
:name: eBoost
|
946
|
+
:constant: '0x80000144'
|
947
|
+
- :currency: shard
|
948
|
+
:name: Shard
|
949
|
+
:constant: '0x80000145'
|
950
|
+
- :currency: linda
|
951
|
+
:name: Linda Coin
|
952
|
+
:constant: '0x80000146'
|
953
|
+
- :currency: cmm
|
954
|
+
:name: Commercium
|
955
|
+
:constant: '0x80000147'
|
956
|
+
- :currency: block
|
957
|
+
:name: Blocknet
|
958
|
+
:constant: '0x80000148'
|
959
|
+
- :currency: audax
|
960
|
+
:name: AUDAX
|
961
|
+
:constant: '0x80000149'
|
962
|
+
- :currency: luna
|
963
|
+
:name: Terra
|
964
|
+
:constant: '0x8000014a'
|
965
|
+
- :currency: zpm
|
966
|
+
:name: zPrime
|
967
|
+
:constant: '0x8000014b'
|
968
|
+
- :currency: kuva
|
969
|
+
:name: Kuva Utility Note
|
970
|
+
:constant: '0x8000014c'
|
971
|
+
- :currency: mem
|
972
|
+
:name: MemCoin
|
973
|
+
:constant: '0x8000014d'
|
974
|
+
- :currency: cs
|
975
|
+
:name: Credits
|
976
|
+
:constant: '0x8000014e'
|
977
|
+
- :currency: swift
|
978
|
+
:name: SwiftCash
|
979
|
+
:constant: '0x8000014f'
|
980
|
+
- :currency: fix
|
981
|
+
:name: FIX
|
982
|
+
:constant: '0x80000150'
|
983
|
+
- :currency: cpc
|
984
|
+
:name: CPChain
|
985
|
+
:constant: '0x80000151'
|
986
|
+
- :currency: vgo
|
987
|
+
:name: VirtualGoodsToken
|
988
|
+
:constant: '0x80000152'
|
989
|
+
- :currency: dvt
|
990
|
+
:name: DeVault
|
991
|
+
:constant: '0x80000153'
|
992
|
+
- :currency: n8v
|
993
|
+
:name: N8VCoin
|
994
|
+
:constant: '0x80000154'
|
995
|
+
- :currency: mtns
|
996
|
+
:name: OmotenashiCoin
|
997
|
+
:constant: '0x80000155'
|
998
|
+
- :currency: blast
|
999
|
+
:name: BLAST
|
1000
|
+
:constant: '0x80000156'
|
1001
|
+
- :currency: dct
|
1002
|
+
:name: DECENT
|
1003
|
+
:constant: '0x80000157'
|
1004
|
+
- :currency: aux
|
1005
|
+
:name: Auxilium
|
1006
|
+
:constant: '0x80000158'
|
1007
|
+
- :currency: usdp
|
1008
|
+
:name: USDP
|
1009
|
+
:constant: '0x80000159'
|
1010
|
+
- :currency: htdf
|
1011
|
+
:name: HTDF
|
1012
|
+
:constant: '0x8000015a'
|
1013
|
+
- :currency: yec
|
1014
|
+
:name: Ycash
|
1015
|
+
:constant: '0x8000015b'
|
1016
|
+
- :currency: qlc
|
1017
|
+
:name: QLC Chain
|
1018
|
+
:constant: '0x8000015c'
|
1019
|
+
- :currency: tea
|
1020
|
+
:name: Icetea Blockchain
|
1021
|
+
:constant: '0x8000015d'
|
1022
|
+
- :currency: arw
|
1023
|
+
:name: ArrowChain
|
1024
|
+
:constant: '0x8000015e'
|
1025
|
+
- :currency: mdm
|
1026
|
+
:name: Medium
|
1027
|
+
:constant: '0x8000015f'
|
1028
|
+
- :currency: cyb
|
1029
|
+
:name: Cybex
|
1030
|
+
:constant: '0x80000160'
|
1031
|
+
- :currency: lto
|
1032
|
+
:name: LTO Network
|
1033
|
+
:constant: '0x80000161'
|
1034
|
+
- :currency: dot
|
1035
|
+
:name: Polkadot
|
1036
|
+
:constant: '0x80000162'
|
1037
|
+
- :currency: aeon
|
1038
|
+
:name: Aeon
|
1039
|
+
:constant: '0x80000163'
|
1040
|
+
- :currency: res
|
1041
|
+
:name: Resistance
|
1042
|
+
:constant: '0x80000164'
|
1043
|
+
- :currency: aya
|
1044
|
+
:name: Aryacoin
|
1045
|
+
:constant: '0x80000165'
|
1046
|
+
- :currency: daps
|
1047
|
+
:name: Dapscoin
|
1048
|
+
:constant: '0x80000166'
|
1049
|
+
- :currency: csc
|
1050
|
+
:name: CasinoCoin
|
1051
|
+
:constant: '0x80000167'
|
1052
|
+
- :currency: vsys
|
1053
|
+
:name: V Systems
|
1054
|
+
:constant: '0x80000168'
|
1055
|
+
- :currency: nollar
|
1056
|
+
:name: Nollar
|
1057
|
+
:constant: '0x80000169'
|
1058
|
+
- :currency: xnos
|
1059
|
+
:name: NOS
|
1060
|
+
:constant: '0x8000016a'
|
1061
|
+
- :currency: cpu
|
1062
|
+
:name: CPUchain
|
1063
|
+
:constant: '0x8000016b'
|
1064
|
+
- :currency: lamb
|
1065
|
+
:name: Lambda Storage Chain
|
1066
|
+
:constant: '0x8000016c'
|
1067
|
+
- :currency: vct
|
1068
|
+
:name: ValueCyber
|
1069
|
+
:constant: '0x8000016d'
|
1070
|
+
- :currency: czr
|
1071
|
+
:name: Canonchain
|
1072
|
+
:constant: '0x8000016e'
|
1073
|
+
- :currency: abbc
|
1074
|
+
:name: ABBC
|
1075
|
+
:constant: '0x8000016f'
|
1076
|
+
- :currency: het
|
1077
|
+
:name: HET
|
1078
|
+
:constant: '0x80000170'
|
1079
|
+
- :currency: xas
|
1080
|
+
:name: Asch
|
1081
|
+
:constant: '0x80000171'
|
1082
|
+
- :currency: vdl
|
1083
|
+
:name: Vidulum
|
1084
|
+
:constant: '0x80000172'
|
1085
|
+
- :currency: med
|
1086
|
+
:name: MediBloc
|
1087
|
+
:constant: '0x80000173'
|
1088
|
+
- :currency: zvc
|
1089
|
+
:name: ZVChain
|
1090
|
+
:constant: '0x80000174'
|
1091
|
+
- :currency: vestx
|
1092
|
+
:name: Vestx
|
1093
|
+
:constant: '0x80000175'
|
1094
|
+
- :currency: dbt
|
1095
|
+
:name: DarkBit
|
1096
|
+
:constant: '0x80000176'
|
1097
|
+
- :currency: seos
|
1098
|
+
:name: SuperEOS
|
1099
|
+
:constant: '0x80000177'
|
1100
|
+
- :currency: mxw
|
1101
|
+
:name: Maxonrow
|
1102
|
+
:constant: '0x80000178'
|
1103
|
+
- :currency: znz
|
1104
|
+
:name: ZENZO
|
1105
|
+
:constant: '0x80000179'
|
1106
|
+
- :currency: xcx
|
1107
|
+
:name: XChain
|
1108
|
+
:constant: '0x8000017a'
|
1109
|
+
- :currency: sox
|
1110
|
+
:name: SonicX
|
1111
|
+
:constant: '0x8000017b'
|
1112
|
+
- :currency: nyzo
|
1113
|
+
:name: Nyzo
|
1114
|
+
:constant: '0x8000017c'
|
1115
|
+
- :currency: ulc
|
1116
|
+
:name: ULCoin
|
1117
|
+
:constant: '0x8000017d'
|
1118
|
+
- :currency: ryo
|
1119
|
+
:name: Ryo Currency
|
1120
|
+
:constant: '0x8000017e'
|
1121
|
+
- :currency: kal
|
1122
|
+
:name: Kaleidochain
|
1123
|
+
:constant: '0x8000017f'
|
1124
|
+
- :currency: xsn
|
1125
|
+
:name: Stakenet
|
1126
|
+
:constant: '0x80000180'
|
1127
|
+
- :currency: dogec
|
1128
|
+
:name: DogeCash
|
1129
|
+
:constant: '0x80000181'
|
1130
|
+
- :currency: bmv
|
1131
|
+
:name: Bitcoin Matteo's Vision
|
1132
|
+
:constant: '0x80000182'
|
1133
|
+
- :currency: qbc
|
1134
|
+
:name: Quebecoin
|
1135
|
+
:constant: '0x80000183'
|
1136
|
+
- :currency: img
|
1137
|
+
:name: ImageCoin
|
1138
|
+
:constant: '0x80000184'
|
1139
|
+
- :currency: qos
|
1140
|
+
:name: QOS
|
1141
|
+
:constant: '0x80000185'
|
1142
|
+
- :currency: pkt
|
1143
|
+
:name: PKT
|
1144
|
+
:constant: '0x80000186'
|
1145
|
+
- :currency: lhd
|
1146
|
+
:name: LitecoinHD
|
1147
|
+
:constant: '0x80000187'
|
1148
|
+
- :currency: cennz
|
1149
|
+
:name: CENNZnet
|
1150
|
+
:constant: '0x80000188'
|
1151
|
+
- :currency: hsn
|
1152
|
+
:name: Hyper Speed Network
|
1153
|
+
:constant: '0x80000189'
|
1154
|
+
- :currency: cro
|
1155
|
+
:name: Crypto.com Chain
|
1156
|
+
:constant: '0x8000018a'
|
1157
|
+
- :currency: umbru
|
1158
|
+
:name: Umbru
|
1159
|
+
:constant: '0x8000018b'
|
1160
|
+
- :currency: ton
|
1161
|
+
:name: Telegram Open Network
|
1162
|
+
:constant: '0x8000018c'
|
1163
|
+
- :currency: near
|
1164
|
+
:name: NEAR Protocol
|
1165
|
+
:constant: '0x8000018d'
|
1166
|
+
- :currency: xpc
|
1167
|
+
:name: XPChain
|
1168
|
+
:constant: '0x8000018e'
|
1169
|
+
- :currency: zoc
|
1170
|
+
:name: 01coin
|
1171
|
+
:constant: '0x8000018f'
|
1172
|
+
- :currency: nix
|
1173
|
+
:name: NIX
|
1174
|
+
:constant: '0x80000190'
|
1175
|
+
- :currency: uc
|
1176
|
+
:name: Utopiacoin
|
1177
|
+
:constant: '0x80000191'
|
1178
|
+
- :currency: gali
|
1179
|
+
:name: Galilel
|
1180
|
+
:constant: '0x80000192'
|
1181
|
+
- :currency: olt
|
1182
|
+
:name: Oneledger
|
1183
|
+
:constant: '0x80000193'
|
1184
|
+
- :currency: xbi
|
1185
|
+
:name: XBI
|
1186
|
+
:constant: '0x80000194'
|
1187
|
+
- :currency: donu
|
1188
|
+
:name: DONU
|
1189
|
+
:constant: '0x80000195'
|
1190
|
+
- :currency: earths
|
1191
|
+
:name: Earths
|
1192
|
+
:constant: '0x80000196'
|
1193
|
+
- :currency: hdd
|
1194
|
+
:name: HDDCash
|
1195
|
+
:constant: '0x80000197'
|
1196
|
+
- :currency: sugar
|
1197
|
+
:name: Sugarchain
|
1198
|
+
:constant: '0x80000198'
|
1199
|
+
- :currency: aile
|
1200
|
+
:name: AileCoin
|
1201
|
+
:constant: '0x80000199'
|
1202
|
+
- :currency: xsg
|
1203
|
+
:name: SnowGem
|
1204
|
+
:constant: '0x8000019a'
|
1205
|
+
- :currency: tan
|
1206
|
+
:name: Tangerine Network
|
1207
|
+
:constant: '0x8000019b'
|
1208
|
+
- :currency: ain
|
1209
|
+
:name: AIN
|
1210
|
+
:constant: '0x8000019c'
|
1211
|
+
- :currency: msr
|
1212
|
+
:name: Masari
|
1213
|
+
:constant: '0x8000019d'
|
1214
|
+
- :currency: sumo
|
1215
|
+
:name: Sumokoin
|
1216
|
+
:constant: '0x8000019e'
|
1217
|
+
- :currency: etn
|
1218
|
+
:name: Electroneum
|
1219
|
+
:constant: '0x8000019f'
|
1220
|
+
- :currency: slx
|
1221
|
+
:name: SLX
|
1222
|
+
:constant: '0x800001a0'
|
1223
|
+
- :currency: wow
|
1224
|
+
:name: Wownero
|
1225
|
+
:constant: '0x800001a1'
|
1226
|
+
- :currency: xtnc
|
1227
|
+
:name: XtendCash
|
1228
|
+
:constant: '0x800001a2'
|
1229
|
+
- :currency: lthn
|
1230
|
+
:name: Lethean
|
1231
|
+
:constant: '0x800001a3'
|
1232
|
+
- :currency: node
|
1233
|
+
:name: NodeHost
|
1234
|
+
:constant: '0x800001a4'
|
1235
|
+
- :currency: agm
|
1236
|
+
:name: Argoneum
|
1237
|
+
:constant: '0x800001a5'
|
1238
|
+
- :currency: ccx
|
1239
|
+
:name: Conceal Network
|
1240
|
+
:constant: '0x800001a6'
|
1241
|
+
- :currency: tnet
|
1242
|
+
:name: Title Network
|
1243
|
+
:constant: '0x800001a7'
|
1244
|
+
- :currency: telos
|
1245
|
+
:name: TelosCoin
|
1246
|
+
:constant: '0x800001a8'
|
1247
|
+
- :currency: aion
|
1248
|
+
:name: Aion
|
1249
|
+
:constant: '0x800001a9'
|
1250
|
+
- :currency: bc
|
1251
|
+
:name: Bitcoin Confidential
|
1252
|
+
:constant: '0x800001aa'
|
1253
|
+
- :currency: ktv
|
1254
|
+
:name: KmushiCoin
|
1255
|
+
:constant: '0x800001ab'
|
1256
|
+
- :currency: zcr
|
1257
|
+
:name: ZCore
|
1258
|
+
:constant: '0x800001ac'
|
1259
|
+
- :currency: erg
|
1260
|
+
:name: Ergo
|
1261
|
+
:constant: '0x800001ad'
|
1262
|
+
- :currency: peso
|
1263
|
+
:name: Criptopeso
|
1264
|
+
:constant: '0x800001ae'
|
1265
|
+
- :currency: btc2
|
1266
|
+
:name: Bitcoin 2
|
1267
|
+
:constant: '0x800001af'
|
1268
|
+
- :currency: xrphd
|
1269
|
+
:name: XRPHD
|
1270
|
+
:constant: '0x800001b0'
|
1271
|
+
- :currency: we
|
1272
|
+
:name: WE Coin
|
1273
|
+
:constant: '0x800001b1'
|
1274
|
+
- :currency: ksm
|
1275
|
+
:name: Kusama
|
1276
|
+
:constant: '0x800001b2'
|
1277
|
+
- :currency: pcn
|
1278
|
+
:name: Peepcoin
|
1279
|
+
:constant: '0x800001b3'
|
1280
|
+
- :currency: nch
|
1281
|
+
:name: NetCloth
|
1282
|
+
:constant: '0x800001b4'
|
1283
|
+
- :currency: icu
|
1284
|
+
:name: CHIPO
|
1285
|
+
:constant: '0x800001b5'
|
1286
|
+
- :currency: ln
|
1287
|
+
:name: LINK
|
1288
|
+
:constant: '0x800001b6'
|
1289
|
+
- :currency: dtp
|
1290
|
+
:name: DeVault Token Protocol
|
1291
|
+
:constant: '0x800001b7'
|
1292
|
+
- :currency: btcr
|
1293
|
+
:name: Bitcoin Royale
|
1294
|
+
:constant: '0x800001b8'
|
1295
|
+
- :currency: aergo
|
1296
|
+
:name: AERGO
|
1297
|
+
:constant: '0x800001b9'
|
1298
|
+
- :currency: xth
|
1299
|
+
:name: Dothereum
|
1300
|
+
:constant: '0x800001ba'
|
1301
|
+
- :currency: lv
|
1302
|
+
:name: Lava
|
1303
|
+
:constant: '0x800001bb'
|
1304
|
+
- :currency: phr
|
1305
|
+
:name: Phore
|
1306
|
+
:constant: '0x800001bc'
|
1307
|
+
- :currency: vitae
|
1308
|
+
:name: Vitae
|
1309
|
+
:constant: '0x800001bd'
|
1310
|
+
- :currency: cocos
|
1311
|
+
:name: Cocos-BCX
|
1312
|
+
:constant: '0x800001be'
|
1313
|
+
- :currency: din
|
1314
|
+
:name: Dinero
|
1315
|
+
:constant: '0x800001bf'
|
1316
|
+
- :currency: spl
|
1317
|
+
:name: Simplicity
|
1318
|
+
:constant: '0x800001c0'
|
1319
|
+
- :currency: yce
|
1320
|
+
:name: MYCE
|
1321
|
+
:constant: '0x800001c1'
|
1322
|
+
- :currency: xlr
|
1323
|
+
:name: Solaris
|
1324
|
+
:constant: '0x800001c2'
|
1325
|
+
- :currency: kts
|
1326
|
+
:name: Klimatas
|
1327
|
+
:constant: '0x800001c3'
|
1328
|
+
- :currency: dgld
|
1329
|
+
:name: DGLD
|
1330
|
+
:constant: '0x800001c4'
|
1331
|
+
- :currency: xns
|
1332
|
+
:name: Insolar
|
1333
|
+
:constant: '0x800001c5'
|
1334
|
+
- :currency: em
|
1335
|
+
:name: EMPOW
|
1336
|
+
:constant: '0x800001c6'
|
1337
|
+
- :currency: shn
|
1338
|
+
:name: ShineBlocks
|
1339
|
+
:constant: '0x800001c7'
|
1340
|
+
- :currency: seele
|
1341
|
+
:name: Seele
|
1342
|
+
:constant: '0x800001c8'
|
1343
|
+
- :currency: ae
|
1344
|
+
:name: æternity
|
1345
|
+
:constant: '0x800001c9'
|
1346
|
+
- :currency: odx
|
1347
|
+
:name: ObsidianX
|
1348
|
+
:constant: '0x800001ca'
|
1349
|
+
- :currency: kava
|
1350
|
+
:name: Kava
|
1351
|
+
:constant: '0x800001cb'
|
1352
|
+
- :currency: gleec
|
1353
|
+
:name: GLEEC
|
1354
|
+
:constant: '0x800001cc'
|
1355
|
+
- :currency: fil
|
1356
|
+
:name: Filecoin
|
1357
|
+
:constant: '0x800001cd'
|
1358
|
+
- :currency: ruta
|
1359
|
+
:name: Rutanio
|
1360
|
+
:constant: '0x800001ce'
|
1361
|
+
- :currency: csdt
|
1362
|
+
:name: CSDT
|
1363
|
+
:constant: '0x800001cf'
|
1364
|
+
- :currency: eti
|
1365
|
+
:name: EtherInc
|
1366
|
+
:constant: '0x800001d0'
|
1367
|
+
- :currency: zslp
|
1368
|
+
:name: Zclassic Simple Ledger Protocol
|
1369
|
+
:constant: '0x800001d1'
|
1370
|
+
- :currency: ere
|
1371
|
+
:name: EtherCore
|
1372
|
+
:constant: '0x800001d2'
|
1373
|
+
- :currency: dx
|
1374
|
+
:name: DxChain Token
|
1375
|
+
:constant: '0x800001d3'
|
1376
|
+
- :currency: cps
|
1377
|
+
:name: Capricoin+
|
1378
|
+
:constant: '0x800001d4'
|
1379
|
+
- :currency: bth
|
1380
|
+
:name: Bithereum
|
1381
|
+
:constant: '0x800001d5'
|
1382
|
+
- :currency: mesg
|
1383
|
+
:name: MESG
|
1384
|
+
:constant: '0x800001d6'
|
1385
|
+
- :currency: fimk
|
1386
|
+
:name: FIMK
|
1387
|
+
:constant: '0x800001d7'
|
1388
|
+
- :currency: ar
|
1389
|
+
:name: Arweave
|
1390
|
+
:constant: '0x800001d8'
|
1391
|
+
- :currency: ogo
|
1392
|
+
:name: Origo
|
1393
|
+
:constant: '0x800001d9'
|
1394
|
+
- :currency: rose
|
1395
|
+
:name: Oasis Network
|
1396
|
+
:constant: '0x800001da'
|
1397
|
+
- :currency: bare
|
1398
|
+
:name: BARE Network
|
1399
|
+
:constant: '0x800001db'
|
1400
|
+
- :currency: gleec
|
1401
|
+
:name: GleecBTC
|
1402
|
+
:constant: '0x800001dc'
|
1403
|
+
- :currency: clr
|
1404
|
+
:name: Color Coin
|
1405
|
+
:constant: '0x800001dd'
|
1406
|
+
- :currency: rng
|
1407
|
+
:name: Ring
|
1408
|
+
:constant: '0x800001de'
|
1409
|
+
- :currency: olo
|
1410
|
+
:name: Tool Global
|
1411
|
+
:constant: '0x800001df'
|
1412
|
+
- :currency: pexa
|
1413
|
+
:name: Pexa
|
1414
|
+
:constant: '0x800001e0'
|
1415
|
+
- :currency: moon
|
1416
|
+
:name: Mooncoin
|
1417
|
+
:constant: '0x800001e1'
|
1418
|
+
- :currency: ocean
|
1419
|
+
:name: Ocean Protocol
|
1420
|
+
:constant: '0x800001e2'
|
1421
|
+
- :currency: bnt
|
1422
|
+
:name: Bluzelle Native
|
1423
|
+
:constant: '0x800001e3'
|
1424
|
+
- :currency: amo
|
1425
|
+
:name: AMO Blockchain
|
1426
|
+
:constant: '0x800001e4'
|
1427
|
+
- :currency: fch
|
1428
|
+
:name: FreeCash
|
1429
|
+
:constant: '0x800001e5'
|
1430
|
+
- :currency: lat
|
1431
|
+
:name: LatticeX
|
1432
|
+
:constant: '0x800001e6'
|
1433
|
+
- :currency: coin
|
1434
|
+
:name: Bitcoin Bank
|
1435
|
+
:constant: '0x800001e7'
|
1436
|
+
- :currency: veo
|
1437
|
+
:name: Amoveo
|
1438
|
+
:constant: '0x800001e8'
|
1439
|
+
- :currency: cca
|
1440
|
+
:name: Counos Coin
|
1441
|
+
:constant: '0x800001e9'
|
1442
|
+
- :currency: gfn
|
1443
|
+
:name: Graphene
|
1444
|
+
:constant: '0x800001ea'
|
1445
|
+
- :currency: bip
|
1446
|
+
:name: Minter Network
|
1447
|
+
:constant: '0x800001eb'
|
1448
|
+
- :currency: kpg
|
1449
|
+
:name: Kunpeng Network
|
1450
|
+
:constant: '0x800001ec'
|
1451
|
+
- :currency: fin
|
1452
|
+
:name: FINL Chain
|
1453
|
+
:constant: '0x800001ed'
|
1454
|
+
- :currency: band
|
1455
|
+
:name: Band
|
1456
|
+
:constant: '0x800001ee'
|
1457
|
+
- :currency: drop
|
1458
|
+
:name: Dropil
|
1459
|
+
:constant: '0x800001ef'
|
1460
|
+
- :currency: bht
|
1461
|
+
:name: Bluehelix Chain
|
1462
|
+
:constant: '0x800001f0'
|
1463
|
+
- :currency: lyra
|
1464
|
+
:name: Scrypta
|
1465
|
+
:constant: '0x800001f1'
|
1466
|
+
- :currency: cs
|
1467
|
+
:name: Credits
|
1468
|
+
:constant: '0x800001f2'
|
1469
|
+
- :currency: rupx
|
1470
|
+
:name: Rupaya
|
1471
|
+
:constant: '0x800001f3'
|
1472
|
+
- :currency: theta
|
1473
|
+
:name: Theta
|
1474
|
+
:constant: '0x800001f4'
|
1475
|
+
- :currency: sol
|
1476
|
+
:name: Solana
|
1477
|
+
:constant: '0x800001f5'
|
1478
|
+
- :currency: tht
|
1479
|
+
:name: ThoughtAI
|
1480
|
+
:constant: '0x800001f6'
|
1481
|
+
- :currency: cfx
|
1482
|
+
:name: Conflux
|
1483
|
+
:constant: '0x800001f7'
|
1484
|
+
- :currency: kuma
|
1485
|
+
:name: Kumacoin
|
1486
|
+
:constant: '0x800001f8'
|
1487
|
+
- :currency: hash
|
1488
|
+
:name: Provenance
|
1489
|
+
:constant: '0x800001f9'
|
1490
|
+
- :currency: clx
|
1491
|
+
:name: CasperLabs
|
1492
|
+
:constant: '0x800001fa'
|
1493
|
+
- :currency: earth
|
1494
|
+
:name: EARTH
|
1495
|
+
:constant: '0x800001fb'
|
1496
|
+
- :currency: koto
|
1497
|
+
:name: Koto
|
1498
|
+
:constant: '0x800001fe'
|
1499
|
+
- :currency: xrd
|
1500
|
+
:name: Radiant
|
1501
|
+
:constant: '0x80000200'
|
1502
|
+
- :currency: dna
|
1503
|
+
:name: Idena
|
1504
|
+
:constant: '0x80000203'
|
1505
|
+
- :currency: vee
|
1506
|
+
:name: Virtual Economy Era
|
1507
|
+
:constant: '0x80000204'
|
1508
|
+
- :currency: let
|
1509
|
+
:name: Linkeye
|
1510
|
+
:constant: '0x80000206'
|
1511
|
+
- :currency: btcv
|
1512
|
+
:name: BitcoinVIP
|
1513
|
+
:constant: '0x80000208'
|
1514
|
+
- :currency: aba
|
1515
|
+
:name: Dabacus
|
1516
|
+
:constant: '0x80000209'
|
1517
|
+
- :currency: ams
|
1518
|
+
:name: AmsterdamCoin
|
1519
|
+
:constant: '0x8000020c'
|
1520
|
+
- :currency: bu
|
1521
|
+
:name: BUMO
|
1522
|
+
:constant: '0x8000020e'
|
1523
|
+
- :currency: yap
|
1524
|
+
:name: Yapstone
|
1525
|
+
:constant: '0x80000210'
|
1526
|
+
- :currency: prj
|
1527
|
+
:name: ProjectCoin
|
1528
|
+
:constant: '0x80000215'
|
1529
|
+
- :currency: bcs
|
1530
|
+
:name: Bitcoin Smart
|
1531
|
+
:constant: '0x8000022b'
|
1532
|
+
- :currency: lkr
|
1533
|
+
:name: Lkrcoin
|
1534
|
+
:constant: '0x8000022d'
|
1535
|
+
- :currency: nty
|
1536
|
+
:name: Nexty
|
1537
|
+
:constant: '0x80000231'
|
1538
|
+
- :currency: ute
|
1539
|
+
:name: Unit-e
|
1540
|
+
:constant: '0x80000258'
|
1541
|
+
- :currency: ssp
|
1542
|
+
:name: SmartShare
|
1543
|
+
:constant: '0x8000026a'
|
1544
|
+
- :currency: east
|
1545
|
+
:name: Eastcoin
|
1546
|
+
:constant: '0x80000271'
|
1547
|
+
- :currency: sfrx
|
1548
|
+
:name: EtherGem Sapphire
|
1549
|
+
:constant: '0x80000297'
|
1550
|
+
- :currency: act
|
1551
|
+
:name: Achain
|
1552
|
+
:constant: '0x8000029a'
|
1553
|
+
- :currency: prkl
|
1554
|
+
:name: Perkle
|
1555
|
+
:constant: '0x8000029b'
|
1556
|
+
- :currency: ssc
|
1557
|
+
:name: SelfSell
|
1558
|
+
:constant: '0x8000029c'
|
1559
|
+
- :currency: gc
|
1560
|
+
:name: GateChain
|
1561
|
+
:constant: '0x8000029d'
|
1562
|
+
- :currency: cet
|
1563
|
+
:name: CoinEx Chain
|
1564
|
+
:constant: '0x800002b0'
|
1565
|
+
- :currency: veil
|
1566
|
+
:name: Veil
|
1567
|
+
:constant: '0x800002ba'
|
1568
|
+
- :currency: xdai
|
1569
|
+
:name: xDai
|
1570
|
+
:constant: '0x800002bc'
|
1571
|
+
- :currency: chc
|
1572
|
+
:name: Chaincoin
|
1573
|
+
:constant: '0x800002c7'
|
1574
|
+
- :currency: xtl
|
1575
|
+
:name: Katal Chain
|
1576
|
+
:constant: '0x800002c9'
|
1577
|
+
- :currency: bnb
|
1578
|
+
:name: Binance
|
1579
|
+
:constant: '0x800002ca'
|
1580
|
+
- :currency: sin
|
1581
|
+
:name: Sinovate
|
1582
|
+
:constant: '0x800002cb'
|
1583
|
+
- :currency: ballz
|
1584
|
+
:name: Ballzcoin
|
1585
|
+
:constant: '0x80000300'
|
1586
|
+
- :currency: btw
|
1587
|
+
:name: Bitcoin World
|
1588
|
+
:constant: '0x80000309'
|
1589
|
+
- :currency: beet
|
1590
|
+
:name: Beetle Coin
|
1591
|
+
:constant: '0x80000320'
|
1592
|
+
- :currency: dst
|
1593
|
+
:name: DSTRA
|
1594
|
+
:constant: '0x80000321'
|
1595
|
+
- :currency: qvt
|
1596
|
+
:name: Qvolta
|
1597
|
+
:constant: '0x80000328'
|
1598
|
+
- :currency: vet
|
1599
|
+
:name: VeChain Token
|
1600
|
+
:constant: '0x80000332'
|
1601
|
+
- :currency: clo
|
1602
|
+
:name: Callisto
|
1603
|
+
:constant: '0x80000334'
|
1604
|
+
- :currency: cruz
|
1605
|
+
:name: cruzbit
|
1606
|
+
:constant: '0x8000033f'
|
1607
|
+
- :currency: dsm
|
1608
|
+
:name: Desmos
|
1609
|
+
:constant: '0x80000354'
|
1610
|
+
- :currency: adf
|
1611
|
+
:name: AD Token
|
1612
|
+
:constant: '0x80000376'
|
1613
|
+
- :currency: neo
|
1614
|
+
:name: NEO
|
1615
|
+
:constant: '0x80000378'
|
1616
|
+
- :currency: tomo
|
1617
|
+
:name: TOMO
|
1618
|
+
:constant: '0x80000379'
|
1619
|
+
- :currency: xsel
|
1620
|
+
:name: Seln
|
1621
|
+
:constant: '0x8000037a'
|
1622
|
+
- :currency: lmo
|
1623
|
+
:name: Lumeneo
|
1624
|
+
:constant: '0x80000384'
|
1625
|
+
- :currency: meta
|
1626
|
+
:name: Metadium
|
1627
|
+
:constant: '0x80000394'
|
1628
|
+
- :currency: twins
|
1629
|
+
:name: TWINS
|
1630
|
+
:constant: '0x800003ca'
|
1631
|
+
- :currency: okp
|
1632
|
+
:name: OK Points
|
1633
|
+
:constant: '0x800003e4'
|
1634
|
+
- :currency: sum
|
1635
|
+
:name: Solidum
|
1636
|
+
:constant: '0x800003e5'
|
1637
|
+
- :currency: lbtc
|
1638
|
+
:name: Lightning Bitcoin
|
1639
|
+
:constant: '0x800003e6'
|
1640
|
+
- :currency: bcd
|
1641
|
+
:name: Bitcoin Diamond
|
1642
|
+
:constant: '0x800003e7'
|
1643
|
+
- :currency: btn
|
1644
|
+
:name: Bitcoin New
|
1645
|
+
:constant: '0x800003e8'
|
1646
|
+
- :currency: tt
|
1647
|
+
:name: ThunderCore
|
1648
|
+
:constant: '0x800003e9'
|
1649
|
+
- :currency: bkt
|
1650
|
+
:name: BanKitt
|
1651
|
+
:constant: '0x800003ea'
|
1652
|
+
- :currency: one
|
1653
|
+
:name: HARMONY-ONE
|
1654
|
+
:constant: '0x800003ff'
|
1655
|
+
- :currency: ont
|
1656
|
+
:name: Ontology
|
1657
|
+
:constant: '0x80000400'
|
1658
|
+
- :currency: kex
|
1659
|
+
:name: Kira Exchange Token
|
1660
|
+
:constant: '0x80000402'
|
1661
|
+
- :currency: mcm
|
1662
|
+
:name: Mochimo
|
1663
|
+
:constant: '0x80000403'
|
1664
|
+
- :currency: btcr
|
1665
|
+
:name: BTCR
|
1666
|
+
:constant: '0x80000408'
|
1667
|
+
- :currency: bbc
|
1668
|
+
:name: Big Bitcoin
|
1669
|
+
:constant: '0x80000457'
|
1670
|
+
- :currency: rise
|
1671
|
+
:name: RISE
|
1672
|
+
:constant: '0x80000460'
|
1673
|
+
- :currency: cmt
|
1674
|
+
:name: CyberMiles Token
|
1675
|
+
:constant: '0x80000462'
|
1676
|
+
- :currency: etsc
|
1677
|
+
:name: Ethereum Social
|
1678
|
+
:constant: '0x80000468'
|
1679
|
+
- :currency: "$dag"
|
1680
|
+
:name: Constellation Labs
|
1681
|
+
:constant: '0x80000471'
|
1682
|
+
- :currency: cdy
|
1683
|
+
:name: Bitcoin Candy
|
1684
|
+
:constant: '0x80000479'
|
1685
|
+
- :currency: dfc
|
1686
|
+
:name: Defcoin
|
1687
|
+
:constant: '0x80000539'
|
1688
|
+
- :currency: hyc
|
1689
|
+
:name: Hycon
|
1690
|
+
:constant: '0x80000575'
|
1691
|
+
- :currency: beam
|
1692
|
+
:name: Beam
|
1693
|
+
:constant: '0x800005fd'
|
1694
|
+
- :currency: elf
|
1695
|
+
:name: AELF
|
1696
|
+
:constant: '0x80000650'
|
1697
|
+
- :currency: ath
|
1698
|
+
:name: Atheios
|
1699
|
+
:constant: '0x80000654'
|
1700
|
+
- :currency: bcx
|
1701
|
+
:name: BitcoinX
|
1702
|
+
:constant: '0x80000698'
|
1703
|
+
- :currency: xtz
|
1704
|
+
:name: Tezos
|
1705
|
+
:constant: '0x800006c1'
|
1706
|
+
- :currency: lbtc
|
1707
|
+
:name: Liquid BTC
|
1708
|
+
:constant: '0x800006f0'
|
1709
|
+
- :currency: ada
|
1710
|
+
:name: Cardano
|
1711
|
+
:constant: '0x80000717'
|
1712
|
+
- :currency: tes
|
1713
|
+
:name: Teslacoin
|
1714
|
+
:constant: '0x80000743'
|
1715
|
+
- :currency: clc
|
1716
|
+
:name: Classica
|
1717
|
+
:constant: '0x8000076d'
|
1718
|
+
- :currency: vips
|
1719
|
+
:name: VIPSTARCOIN
|
1720
|
+
:constant: '0x8000077f'
|
1721
|
+
- :currency: city
|
1722
|
+
:name: City Coin
|
1723
|
+
:constant: '0x80000786'
|
1724
|
+
- :currency: xmx
|
1725
|
+
:name: Xuma
|
1726
|
+
:constant: '0x800007b9'
|
1727
|
+
- :currency: trtl
|
1728
|
+
:name: TurtleCoin
|
1729
|
+
:constant: '0x800007c0'
|
1730
|
+
- :currency: egem
|
1731
|
+
:name: EtherGem
|
1732
|
+
:constant: '0x800007c3'
|
1733
|
+
- :currency: hodl
|
1734
|
+
:name: HOdlcoin
|
1735
|
+
:constant: '0x800007c5'
|
1736
|
+
- :currency: phl
|
1737
|
+
:name: Placeholders
|
1738
|
+
:constant: '0x800007c6'
|
1739
|
+
- :currency: polis
|
1740
|
+
:name: Polis
|
1741
|
+
:constant: '0x800007cd'
|
1742
|
+
- :currency: xmcc
|
1743
|
+
:name: Monoeci
|
1744
|
+
:constant: '0x800007ce'
|
1745
|
+
- :currency: colx
|
1746
|
+
:name: ColossusXT
|
1747
|
+
:constant: '0x800007cf'
|
1748
|
+
- :currency: gin
|
1749
|
+
:name: GinCoin
|
1750
|
+
:constant: '0x800007d0'
|
1751
|
+
- :currency: mnp
|
1752
|
+
:name: MNPCoin
|
1753
|
+
:constant: '0x800007d1'
|
1754
|
+
- :currency: kin
|
1755
|
+
:name: Kin
|
1756
|
+
:constant: '0x800007e1'
|
1757
|
+
- :currency: eosc
|
1758
|
+
:name: EOSClassic
|
1759
|
+
:constant: '0x800007e2'
|
1760
|
+
- :currency: gbt
|
1761
|
+
:name: GoldBean Token
|
1762
|
+
:constant: '0x800007e3'
|
1763
|
+
- :currency: pkc
|
1764
|
+
:name: PKC
|
1765
|
+
:constant: '0x800007e4'
|
1766
|
+
- :currency: mcash
|
1767
|
+
:name: MCashChain
|
1768
|
+
:constant: '0x80000800'
|
1769
|
+
- :currency: 'true'
|
1770
|
+
:name: TrueChain
|
1771
|
+
:constant: '0x80000801'
|
1772
|
+
- :currency: iote
|
1773
|
+
:name: IoTE
|
1774
|
+
:constant: '0x80000840'
|
1775
|
+
- :currency: ask
|
1776
|
+
:name: ASK
|
1777
|
+
:constant: '0x800008ad'
|
1778
|
+
- :currency: qtum
|
1779
|
+
:name: QTUM
|
1780
|
+
:constant: '0x800008fd'
|
1781
|
+
- :currency: etp
|
1782
|
+
:name: Metaverse
|
1783
|
+
:constant: '0x800008fe'
|
1784
|
+
- :currency: gxc
|
1785
|
+
:name: GXChain
|
1786
|
+
:constant: '0x800008ff'
|
1787
|
+
- :currency: crp
|
1788
|
+
:name: CranePay
|
1789
|
+
:constant: '0x80000900'
|
1790
|
+
- :currency: ela
|
1791
|
+
:name: Elastos
|
1792
|
+
:constant: '0x80000901'
|
1793
|
+
- :currency: snow
|
1794
|
+
:name: Snowblossom
|
1795
|
+
:constant: '0x80000922'
|
1796
|
+
- :currency: aoa
|
1797
|
+
:name: Aurora
|
1798
|
+
:constant: '0x80000a0a'
|
1799
|
+
- :currency: reosc
|
1800
|
+
:name: REOSC Ecosystem
|
1801
|
+
:constant: '0x80000b4e'
|
1802
|
+
- :currency: lux
|
1803
|
+
:name: LUX
|
1804
|
+
:constant: '0x80000bbb'
|
1805
|
+
- :currency: xhb
|
1806
|
+
:name: Hedera HBAR
|
1807
|
+
:constant: '0x80000bd6'
|
1808
|
+
- :currency: cos
|
1809
|
+
:name: Contentos
|
1810
|
+
:constant: '0x80000c05'
|
1811
|
+
- :currency: dyn
|
1812
|
+
:name: Dynamic
|
1813
|
+
:constant: '0x80000d35'
|
1814
|
+
- :currency: seq
|
1815
|
+
:name: Sequence
|
1816
|
+
:constant: '0x80000d37'
|
1817
|
+
- :currency: deo
|
1818
|
+
:name: Destocoin
|
1819
|
+
:constant: '0x80000de0'
|
1820
|
+
- :currency: dst
|
1821
|
+
:name: DeStream
|
1822
|
+
:constant: '0x80000dec'
|
1823
|
+
- :currency: nas
|
1824
|
+
:name: Nebulas
|
1825
|
+
:constant: '0x80000a9e'
|
1826
|
+
- :currency: bnd
|
1827
|
+
:name: Blocknode
|
1828
|
+
:constant: '0x80000b7d'
|
1829
|
+
- :currency: ccc
|
1830
|
+
:name: CodeChain
|
1831
|
+
:constant: '0x80000ccc'
|
1832
|
+
- :currency: roi
|
1833
|
+
:name: ROIcoin
|
1834
|
+
:constant: '0x80000d31'
|
1835
|
+
- :currency: fc8
|
1836
|
+
:name: FCH Network
|
1837
|
+
:constant: '0x80000fc8'
|
1838
|
+
- :currency: yee
|
1839
|
+
:name: YeeCo
|
1840
|
+
:constant: '0x80001000'
|
1841
|
+
- :currency: iota
|
1842
|
+
:name: IOTA
|
1843
|
+
:constant: '0x8000107a'
|
1844
|
+
- :currency: axe
|
1845
|
+
:name: Axe
|
1846
|
+
:constant: '0x80001092'
|
1847
|
+
- :currency: xym
|
1848
|
+
:name: Symbol
|
1849
|
+
:constant: '0x000010f7'
|
1850
|
+
- :currency: fic
|
1851
|
+
:name: FIC
|
1852
|
+
:constant: '0x00001480'
|
1853
|
+
- :currency: hns
|
1854
|
+
:name: Handshake
|
1855
|
+
:constant: '0x000014e9'
|
1856
|
+
- :currency: und
|
1857
|
+
:name: Unification
|
1858
|
+
:constant: '0x800015b3'
|
1859
|
+
- :currency: stx
|
1860
|
+
:name: Blockstack
|
1861
|
+
:constant: '0x8000167d'
|
1862
|
+
- :currency: slu
|
1863
|
+
:name: SILUBIUM
|
1864
|
+
:constant: '0x80001720'
|
1865
|
+
- :currency: go
|
1866
|
+
:name: GoChain GO
|
1867
|
+
:constant: '0x800017ac'
|
1868
|
+
- :currency: bpa
|
1869
|
+
:name: Bitcoin Pizza
|
1870
|
+
:constant: '0x80001a0a'
|
1871
|
+
- :currency: safe
|
1872
|
+
:name: SAFE
|
1873
|
+
:constant: '0x80001a20'
|
1874
|
+
- :currency: roger
|
1875
|
+
:name: TheHolyrogerCoin
|
1876
|
+
:constant: '0x80001b39'
|
1877
|
+
- :currency: btv
|
1878
|
+
:name: Bitvote
|
1879
|
+
:constant: '0x80001e61'
|
1880
|
+
- :currency: sky
|
1881
|
+
:name: Skycoin
|
1882
|
+
:constant: '0x80001f40'
|
1883
|
+
- :currency: btq
|
1884
|
+
:name: BitcoinQuark
|
1885
|
+
:constant: '0x80002093'
|
1886
|
+
- :currency: sbtc
|
1887
|
+
:name: Super Bitcoin
|
1888
|
+
:constant: '0x800022b8'
|
1889
|
+
- :currency: nuls
|
1890
|
+
:name: NULS
|
1891
|
+
:constant: '0x80002304'
|
1892
|
+
- :currency: btp
|
1893
|
+
:name: Bitcoin Pay
|
1894
|
+
:constant: '0x80002327'
|
1895
|
+
- :currency: nrg
|
1896
|
+
:name: Energi
|
1897
|
+
:constant: '0x80002645'
|
1898
|
+
- :currency: btf
|
1899
|
+
:name: Bitcoin Faith
|
1900
|
+
:constant: '0x800026a0'
|
1901
|
+
- :currency: god
|
1902
|
+
:name: Bitcoin God
|
1903
|
+
:constant: '0x8000270f'
|
1904
|
+
- :currency: fo
|
1905
|
+
:name: FIBOS
|
1906
|
+
:constant: '0x80002710'
|
1907
|
+
- :currency: btr
|
1908
|
+
:name: Bitcoin Rhodium
|
1909
|
+
:constant: '0x80002833'
|
1910
|
+
- :currency: ess
|
1911
|
+
:name: Essentia One
|
1912
|
+
:constant: '0x80002b67'
|
1913
|
+
- :currency: ipos
|
1914
|
+
:name: IPOS
|
1915
|
+
:constant: '0x80003039'
|
1916
|
+
- :currency: bty
|
1917
|
+
:name: BitYuan
|
1918
|
+
:constant: '0x80003333'
|
1919
|
+
- :currency: ycc
|
1920
|
+
:name: Yuan Chain Coin
|
1921
|
+
:constant: '0x80003334'
|
1922
|
+
- :currency: sdgo
|
1923
|
+
:name: SanDeGo
|
1924
|
+
:constant: '0x80003de5'
|
1925
|
+
- :currency: xtx
|
1926
|
+
:name: Totem Live Network
|
1927
|
+
:constant: '0x80003f35'
|
1928
|
+
- :currency: ardr
|
1929
|
+
:name: Ardor
|
1930
|
+
:constant: '0x80004172'
|
1931
|
+
- :currency: safe
|
1932
|
+
:name: Safecoin
|
1933
|
+
:constant: '0x80004add'
|
1934
|
+
- :currency: zel
|
1935
|
+
:name: ZelCash
|
1936
|
+
:constant: '0x80004adf'
|
1937
|
+
- :currency: rito
|
1938
|
+
:name: Ritocoin
|
1939
|
+
:constant: '0x80004ae1'
|
1940
|
+
- :currency: xnd
|
1941
|
+
:name: ndau
|
1942
|
+
:constant: '0x80004e44'
|
1943
|
+
- :currency: pwr
|
1944
|
+
:name: PWRcoin
|
1945
|
+
:constant: '0x800057e8'
|
1946
|
+
- :currency: bell
|
1947
|
+
:name: Bellcoin
|
1948
|
+
:constant: '0x800062a4'
|
1949
|
+
- :currency: chx
|
1950
|
+
:name: Own
|
1951
|
+
:constant: '0x80006476'
|
1952
|
+
- :currency: esn
|
1953
|
+
:name: EtherSocial Network
|
1954
|
+
:constant: '0x8000797e'
|
1955
|
+
- :currency: teo
|
1956
|
+
:name: Trust Eth reOrigin
|
1957
|
+
:constant: '0x80008288'
|
1958
|
+
- :currency: btcs
|
1959
|
+
:name: Bitcoin Stake
|
1960
|
+
:constant: '0x80008456'
|
1961
|
+
- :currency: btt
|
1962
|
+
:name: ByteTrade
|
1963
|
+
:constant: '0x80008888'
|
1964
|
+
- :currency: fxtc
|
1965
|
+
:name: FixedTradeCoin
|
1966
|
+
:constant: '0x80009468'
|
1967
|
+
- :currency: ama
|
1968
|
+
:name: Amabig
|
1969
|
+
:constant: '0x80009999'
|
1970
|
+
- :currency: eve
|
1971
|
+
:name: evan.network
|
1972
|
+
:constant: '0x8000c06e'
|
1973
|
+
- :currency: stash
|
1974
|
+
:name: STASH
|
1975
|
+
:constant: '0x0000c0c0'
|
1976
|
+
- :currency: cgld
|
1977
|
+
:name: Celo
|
1978
|
+
:constant: '0x8000ce10'
|
1979
|
+
- :currency: keth
|
1980
|
+
:name: Krypton World
|
1981
|
+
:constant: '0x80010000'
|
1982
|
+
- :currency: ryo
|
1983
|
+
:name: c0ban
|
1984
|
+
:constant: '0x80015b38'
|
1985
|
+
- :currency: wicc
|
1986
|
+
:name: Waykichain
|
1987
|
+
:constant: '0x8001869f'
|
1988
|
+
- :currency: aka
|
1989
|
+
:name: Akroma
|
1990
|
+
:constant: '0x80030fb1'
|
1991
|
+
- :currency: genom
|
1992
|
+
:name: GENOM
|
1993
|
+
:constant: '0x80011000'
|
1994
|
+
- :currency: ats
|
1995
|
+
:name: ARTIS sigma1
|
1996
|
+
:constant: '0x8003c301'
|
1997
|
+
- :currency: x42
|
1998
|
+
:name: x42
|
1999
|
+
:constant: '0x80067932'
|
2000
|
+
- :currency: vite
|
2001
|
+
:name: Vite
|
2002
|
+
:constant: '0x800a2c2a'
|
2003
|
+
- :currency: ilt
|
2004
|
+
:name: iOlite
|
2005
|
+
:constant: '0x8011df89'
|
2006
|
+
- :currency: etho
|
2007
|
+
:name: Ether-1
|
2008
|
+
:constant: '0x8014095a'
|
2009
|
+
- :currency: xero
|
2010
|
+
:name: Xerom
|
2011
|
+
:constant: '0x80140adc'
|
2012
|
+
- :currency: lax
|
2013
|
+
:name: LAPO
|
2014
|
+
:constant: '0x801a2010'
|
2015
|
+
- :currency: hyd
|
2016
|
+
:name: Hydra Token
|
2017
|
+
:constant: '0x80485944'
|
2018
|
+
- :currency: bco
|
2019
|
+
:name: BitcoinOre
|
2020
|
+
:constant: '0x80501949'
|
2021
|
+
- :currency: bhd
|
2022
|
+
:name: BitcoinHD
|
2023
|
+
:constant: '0x8050194a'
|
2024
|
+
- :currency: ptn
|
2025
|
+
:name: PalletOne
|
2026
|
+
:constant: '0x8050544e'
|
2027
|
+
- :currency: wan
|
2028
|
+
:name: Wanchain
|
2029
|
+
:constant: '0x8057414e'
|
2030
|
+
- :currency: waves
|
2031
|
+
:name: Waves
|
2032
|
+
:constant: '0x80579bfc'
|
2033
|
+
- :currency: sem
|
2034
|
+
:name: Semux
|
2035
|
+
:constant: '0x8073656d'
|
2036
|
+
- :currency: ion
|
2037
|
+
:name: ION
|
2038
|
+
:constant: '0x80737978'
|
2039
|
+
- :currency: wgr
|
2040
|
+
:name: WGR
|
2041
|
+
:constant: '0x80776772'
|
2042
|
+
- :currency: obsr
|
2043
|
+
:name: OBServer
|
2044
|
+
:constant: '0x80776773'
|
2045
|
+
- :currency: aqua
|
2046
|
+
:name: Aquachain
|
2047
|
+
:constant: '0x83adbc39'
|
2048
|
+
- :currency: hatch
|
2049
|
+
:name: Hatch
|
2050
|
+
:constant: '0x854c5638'
|
2051
|
+
- :currency: kusd
|
2052
|
+
:name: kUSD
|
2053
|
+
:constant: '0x857ab1e1'
|
2054
|
+
- :currency: fluid
|
2055
|
+
:name: Fluid Chains
|
2056
|
+
:constant: '0x85f5e0fe'
|
2057
|
+
- :currency: qkc
|
2058
|
+
:name: QuarkChain
|
2059
|
+
:constant: '0x85f5e0ff'
|