@metamask/slip44 3.0.0 → 4.0.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.
- package/CHANGELOG.md +12 -1
- package/README.md +1 -1
- package/package.json +14 -13
- package/slip44.json +646 -22
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [4.0.0]
|
|
10
|
+
### Changed
|
|
11
|
+
- **BREAKING:** Require Node 18.16 or higher ([#111](https://github.com/MetaMask/slip44/pull/111))
|
|
12
|
+
- Update with latest data as of 2024-07-29 ([#156](https://github.com/MetaMask/slip44/pull/156))
|
|
13
|
+
|
|
14
|
+
## [3.1.0]
|
|
15
|
+
### Changed
|
|
16
|
+
- Update with latest data as of 2023-10-09 ([#101](https://github.com/MetaMask/slip44/pull/101))
|
|
17
|
+
|
|
9
18
|
## [3.0.0]
|
|
10
19
|
### Changed
|
|
11
20
|
- **BREAKING:** Require Node 14 or higher ([#28](https://github.com/MetaMask/slip44/pull/28))
|
|
@@ -38,7 +47,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
38
47
|
### Changed
|
|
39
48
|
- Initial release.
|
|
40
49
|
|
|
41
|
-
[Unreleased]: https://github.com/MetaMask/slip44/compare/
|
|
50
|
+
[Unreleased]: https://github.com/MetaMask/slip44/compare/v4.0.0...HEAD
|
|
51
|
+
[4.0.0]: https://github.com/MetaMask/slip44/compare/v3.1.0...v4.0.0
|
|
52
|
+
[3.1.0]: https://github.com/MetaMask/slip44/compare/v3.0.0...v3.1.0
|
|
42
53
|
[3.0.0]: https://github.com/MetaMask/slip44/compare/v2.2.0...v3.0.0
|
|
43
54
|
[2.2.0]: https://github.com/MetaMask/slip44/compare/v2.1.0...v2.2.0
|
|
44
55
|
[2.1.0]: https://github.com/MetaMask/slip44/compare/v2.0.0...v2.1.0
|
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ type Slip44 = {
|
|
|
35
35
|
|
|
36
36
|
### Setup
|
|
37
37
|
|
|
38
|
-
- Install [Node.js](https://nodejs.org) version
|
|
38
|
+
- Install [Node.js](https://nodejs.org) version 18
|
|
39
39
|
- If you are using [nvm](https://github.com/creationix/nvm#installation) (recommended) running `nvm use` will automatically choose the right node version for you.
|
|
40
40
|
- Install [Yarn v3](https://yarnpkg.com/getting-started/install)
|
|
41
41
|
- Run `yarn install` to install dependencies and run any required post-install scripts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/slip44",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "A simple mapping between slip44 IDs and their network metadata.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Blockchain",
|
|
@@ -37,32 +37,33 @@
|
|
|
37
37
|
"test:watch": "jest --watch"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@lavamoat/allow-scripts": "^2.1
|
|
41
|
-
"@metamask/auto-changelog": "^3.
|
|
42
|
-
"@metamask/eslint-config": "^
|
|
43
|
-
"@metamask/eslint-config-jest": "^
|
|
44
|
-
"@metamask/eslint-config-nodejs": "^
|
|
45
|
-
"@metamask/eslint-config-typescript": "^
|
|
40
|
+
"@lavamoat/allow-scripts": "^2.3.1",
|
|
41
|
+
"@metamask/auto-changelog": "^3.1.0",
|
|
42
|
+
"@metamask/eslint-config": "^12.0.0",
|
|
43
|
+
"@metamask/eslint-config-jest": "^12.0.0",
|
|
44
|
+
"@metamask/eslint-config-nodejs": "^12.0.0",
|
|
45
|
+
"@metamask/eslint-config-typescript": "^12.0.0",
|
|
46
46
|
"@types/jest": "^26.0.13",
|
|
47
47
|
"@typescript-eslint/eslint-plugin": "^5.42.1",
|
|
48
48
|
"@typescript-eslint/parser": "^5.42.1",
|
|
49
|
-
"eslint": "^8.
|
|
49
|
+
"eslint": "^8.45.0",
|
|
50
50
|
"eslint-config-prettier": "^8.5.0",
|
|
51
|
-
"eslint-plugin-import": "
|
|
51
|
+
"eslint-plugin-import": "~2.26.0",
|
|
52
52
|
"eslint-plugin-jest": "^27.1.5",
|
|
53
|
-
"eslint-plugin-jsdoc": "^
|
|
54
|
-
"eslint-plugin-
|
|
53
|
+
"eslint-plugin-jsdoc": "^41.1.2",
|
|
54
|
+
"eslint-plugin-n": "^15.7.0",
|
|
55
55
|
"eslint-plugin-prettier": "^4.2.1",
|
|
56
|
+
"eslint-plugin-promise": "^6.1.1",
|
|
56
57
|
"jest": "^28.1.3",
|
|
57
58
|
"prettier": "^2.7.1",
|
|
58
59
|
"prettier-plugin-packagejson": "^2.2.18",
|
|
59
|
-
"rimraf": "^
|
|
60
|
+
"rimraf": "^5.0.0",
|
|
60
61
|
"ts-jest": "^28.0.7",
|
|
61
62
|
"typescript": "~4.8.4"
|
|
62
63
|
},
|
|
63
64
|
"packageManager": "yarn@3.2.4",
|
|
64
65
|
"engines": {
|
|
65
|
-
"node": ">=
|
|
66
|
+
"node": "^18.16 || >=20"
|
|
66
67
|
},
|
|
67
68
|
"publishConfig": {
|
|
68
69
|
"access": "public",
|
package/slip44.json
CHANGED
|
@@ -825,7 +825,7 @@
|
|
|
825
825
|
"index": "137",
|
|
826
826
|
"hex": "0x80000089",
|
|
827
827
|
"symbol": "RBTC",
|
|
828
|
-
"name": "
|
|
828
|
+
"name": "Rootstock"
|
|
829
829
|
},
|
|
830
830
|
"138": {
|
|
831
831
|
"index": "138",
|
|
@@ -867,7 +867,7 @@
|
|
|
867
867
|
"index": "144",
|
|
868
868
|
"hex": "0x80000090",
|
|
869
869
|
"symbol": "XRP",
|
|
870
|
-
"name": "
|
|
870
|
+
"name": "XRP"
|
|
871
871
|
},
|
|
872
872
|
"145": {
|
|
873
873
|
"index": "145",
|
|
@@ -1688,8 +1688,8 @@
|
|
|
1688
1688
|
"281": {
|
|
1689
1689
|
"index": "281",
|
|
1690
1690
|
"hex": "0x80000119",
|
|
1691
|
-
"symbol": "
|
|
1692
|
-
"name": "
|
|
1691
|
+
"symbol": "ACME",
|
|
1692
|
+
"name": "Accumulate"
|
|
1693
1693
|
},
|
|
1694
1694
|
"282": {
|
|
1695
1695
|
"index": "282",
|
|
@@ -2630,8 +2630,8 @@
|
|
|
2630
2630
|
"438": {
|
|
2631
2631
|
"index": "438",
|
|
2632
2632
|
"hex": "0x800001b6",
|
|
2633
|
-
"symbol": "
|
|
2634
|
-
"name": "
|
|
2633
|
+
"symbol": "FNSA",
|
|
2634
|
+
"name": "FINSCHIA"
|
|
2635
2635
|
},
|
|
2636
2636
|
"439": {
|
|
2637
2637
|
"index": "439",
|
|
@@ -3074,7 +3074,7 @@
|
|
|
3074
3074
|
"512": {
|
|
3075
3075
|
"index": "512",
|
|
3076
3076
|
"hex": "0x80000200",
|
|
3077
|
-
"symbol": "
|
|
3077
|
+
"symbol": "RXD",
|
|
3078
3078
|
"name": "Radiant"
|
|
3079
3079
|
},
|
|
3080
3080
|
"513": {
|
|
@@ -3794,7 +3794,7 @@
|
|
|
3794
3794
|
"632": {
|
|
3795
3795
|
"index": "632",
|
|
3796
3796
|
"hex": "0x80000278",
|
|
3797
|
-
"symbol": "
|
|
3797
|
+
"symbol": "MAS",
|
|
3798
3798
|
"name": "Massa"
|
|
3799
3799
|
},
|
|
3800
3800
|
"633": {
|
|
@@ -3935,6 +3935,24 @@
|
|
|
3935
3935
|
"symbol": "WMP",
|
|
3936
3936
|
"name": "WAMP"
|
|
3937
3937
|
},
|
|
3938
|
+
"656": {
|
|
3939
|
+
"index": "656",
|
|
3940
|
+
"hex": "0x80000290",
|
|
3941
|
+
"symbol": "EKTA",
|
|
3942
|
+
"name": "Ekta"
|
|
3943
|
+
},
|
|
3944
|
+
"657": {
|
|
3945
|
+
"index": "657",
|
|
3946
|
+
"hex": "0x80000291",
|
|
3947
|
+
"symbol": "YDA",
|
|
3948
|
+
"name": "YadaCoin"
|
|
3949
|
+
},
|
|
3950
|
+
"658": {
|
|
3951
|
+
"index": "658",
|
|
3952
|
+
"hex": "0x80000292",
|
|
3953
|
+
"symbol": "WHIVE",
|
|
3954
|
+
"name": "Whive"
|
|
3955
|
+
},
|
|
3938
3956
|
"659": {
|
|
3939
3957
|
"index": "659",
|
|
3940
3958
|
"hex": "0x80000293",
|
|
@@ -3947,12 +3965,36 @@
|
|
|
3947
3965
|
"symbol": "PIRATE",
|
|
3948
3966
|
"name": "PirateCash"
|
|
3949
3967
|
},
|
|
3968
|
+
"661": {
|
|
3969
|
+
"index": "661",
|
|
3970
|
+
"hex": "0x80000295",
|
|
3971
|
+
"symbol": "UNQ",
|
|
3972
|
+
"name": "Unique"
|
|
3973
|
+
},
|
|
3974
|
+
"662": {
|
|
3975
|
+
"index": "662",
|
|
3976
|
+
"hex": "0x80000296",
|
|
3977
|
+
"symbol": "ULM",
|
|
3978
|
+
"name": "UltonSmartchain"
|
|
3979
|
+
},
|
|
3950
3980
|
"663": {
|
|
3951
3981
|
"index": "663",
|
|
3952
3982
|
"hex": "0x80000297",
|
|
3953
3983
|
"symbol": "SFRX",
|
|
3954
3984
|
"name": "EtherGem Sapphire"
|
|
3955
3985
|
},
|
|
3986
|
+
"664": {
|
|
3987
|
+
"index": "664",
|
|
3988
|
+
"hex": "0x80000298",
|
|
3989
|
+
"symbol": "BSTY",
|
|
3990
|
+
"name": "GlobalBoost-Y"
|
|
3991
|
+
},
|
|
3992
|
+
"665": {
|
|
3993
|
+
"index": "665",
|
|
3994
|
+
"hex": "0x80000299",
|
|
3995
|
+
"symbol": "IMP",
|
|
3996
|
+
"name": "Impact Protocol"
|
|
3997
|
+
},
|
|
3956
3998
|
"666": {
|
|
3957
3999
|
"index": "666",
|
|
3958
4000
|
"hex": "0x8000029a",
|
|
@@ -4055,6 +4097,18 @@
|
|
|
4055
4097
|
"symbol": "CHTA",
|
|
4056
4098
|
"name": "Cheetahcoin"
|
|
4057
4099
|
},
|
|
4100
|
+
"683": {
|
|
4101
|
+
"index": "683",
|
|
4102
|
+
"hex": "0x800002ab",
|
|
4103
|
+
"symbol": "ALEO",
|
|
4104
|
+
"name": "Aleo Network"
|
|
4105
|
+
},
|
|
4106
|
+
"684": {
|
|
4107
|
+
"index": "684",
|
|
4108
|
+
"hex": "0x800002ac",
|
|
4109
|
+
"symbol": "HMS",
|
|
4110
|
+
"name": "Hemis"
|
|
4111
|
+
},
|
|
4058
4112
|
"685": {
|
|
4059
4113
|
"index": "685",
|
|
4060
4114
|
"hex": "0x800002ad",
|
|
@@ -4067,12 +4121,24 @@
|
|
|
4067
4121
|
"symbol": "KAR",
|
|
4068
4122
|
"name": "Karura Network"
|
|
4069
4123
|
},
|
|
4124
|
+
"687": {
|
|
4125
|
+
"index": "687",
|
|
4126
|
+
"hex": "0x800002af",
|
|
4127
|
+
"symbol": "FLON",
|
|
4128
|
+
"name": "FullOn Network"
|
|
4129
|
+
},
|
|
4070
4130
|
"688": {
|
|
4071
4131
|
"index": "688",
|
|
4072
4132
|
"hex": "0x800002b0",
|
|
4073
4133
|
"symbol": "CET",
|
|
4074
4134
|
"name": "CoinEx Chain"
|
|
4075
4135
|
},
|
|
4136
|
+
"689": {
|
|
4137
|
+
"index": "689",
|
|
4138
|
+
"hex": "0x800002b1",
|
|
4139
|
+
"symbol": "XLINK",
|
|
4140
|
+
"name": "XLink Chain"
|
|
4141
|
+
},
|
|
4076
4142
|
"690": {
|
|
4077
4143
|
"index": "690",
|
|
4078
4144
|
"hex": "0x800002b2",
|
|
@@ -4115,12 +4181,48 @@
|
|
|
4115
4181
|
"symbol": "CCC",
|
|
4116
4182
|
"name": "Commercio Cash Credit"
|
|
4117
4183
|
},
|
|
4184
|
+
"703": {
|
|
4185
|
+
"index": "703",
|
|
4186
|
+
"hex": "0x800002bf",
|
|
4187
|
+
"symbol": "SNR",
|
|
4188
|
+
"name": "Sonr"
|
|
4189
|
+
},
|
|
4190
|
+
"704": {
|
|
4191
|
+
"index": "704",
|
|
4192
|
+
"hex": "0x800002c0",
|
|
4193
|
+
"symbol": "RAQ",
|
|
4194
|
+
"name": "Ra Quantum"
|
|
4195
|
+
},
|
|
4196
|
+
"705": {
|
|
4197
|
+
"index": "705",
|
|
4198
|
+
"hex": "0x800002c1",
|
|
4199
|
+
"symbol": "PEG",
|
|
4200
|
+
"name": "Pegasus Token"
|
|
4201
|
+
},
|
|
4202
|
+
"706": {
|
|
4203
|
+
"index": "706",
|
|
4204
|
+
"hex": "0x800002c2",
|
|
4205
|
+
"symbol": "LKG",
|
|
4206
|
+
"name": "Lionking"
|
|
4207
|
+
},
|
|
4118
4208
|
"707": {
|
|
4119
4209
|
"index": "707",
|
|
4120
4210
|
"hex": "0x800002c3",
|
|
4121
4211
|
"symbol": "MCOIN",
|
|
4122
4212
|
"name": "Moneta Coin"
|
|
4123
4213
|
},
|
|
4214
|
+
"709": {
|
|
4215
|
+
"index": "709",
|
|
4216
|
+
"hex": "0x800002c5",
|
|
4217
|
+
"symbol": "AVAIL",
|
|
4218
|
+
"name": "Avail"
|
|
4219
|
+
},
|
|
4220
|
+
"710": {
|
|
4221
|
+
"index": "710",
|
|
4222
|
+
"hex": "0x800002c6",
|
|
4223
|
+
"symbol": "FURY",
|
|
4224
|
+
"name": "Highbury"
|
|
4225
|
+
},
|
|
4124
4226
|
"711": {
|
|
4125
4227
|
"index": "711",
|
|
4126
4228
|
"hex": "0x800002c7",
|
|
@@ -4169,12 +4271,60 @@
|
|
|
4169
4271
|
"symbol": "PEER",
|
|
4170
4272
|
"name": "Peer"
|
|
4171
4273
|
},
|
|
4274
|
+
"719": {
|
|
4275
|
+
"index": "719",
|
|
4276
|
+
"hex": "0x800002cf",
|
|
4277
|
+
"symbol": "ZET",
|
|
4278
|
+
"name": "Zetacoin"
|
|
4279
|
+
},
|
|
4280
|
+
"720": {
|
|
4281
|
+
"index": "720",
|
|
4282
|
+
"hex": "0x800002d0",
|
|
4283
|
+
"symbol": "ABY",
|
|
4284
|
+
"name": "Artbyte"
|
|
4285
|
+
},
|
|
4286
|
+
"721": {
|
|
4287
|
+
"index": "721",
|
|
4288
|
+
"hex": "0x800002d1",
|
|
4289
|
+
"symbol": "PGX",
|
|
4290
|
+
"name": "Mirai Chain"
|
|
4291
|
+
},
|
|
4292
|
+
"722": {
|
|
4293
|
+
"index": "722",
|
|
4294
|
+
"hex": "0x800002d2",
|
|
4295
|
+
"symbol": "IL8P",
|
|
4296
|
+
"name": "InfiniLooP"
|
|
4297
|
+
},
|
|
4298
|
+
"723": {
|
|
4299
|
+
"index": "723",
|
|
4300
|
+
"hex": "0x800002d3",
|
|
4301
|
+
"symbol": "VOI",
|
|
4302
|
+
"name": "Voi"
|
|
4303
|
+
},
|
|
4304
|
+
"724": {
|
|
4305
|
+
"index": "724",
|
|
4306
|
+
"hex": "0x800002d4",
|
|
4307
|
+
"symbol": "XVC",
|
|
4308
|
+
"name": "Vanillacash"
|
|
4309
|
+
},
|
|
4172
4310
|
"725": {
|
|
4173
4311
|
"index": "725",
|
|
4174
4312
|
"hex": "0x800002d5",
|
|
4175
4313
|
"symbol": "MCX",
|
|
4176
4314
|
"name": "MultiCash"
|
|
4177
4315
|
},
|
|
4316
|
+
"727": {
|
|
4317
|
+
"index": "727",
|
|
4318
|
+
"hex": "0x800002d7",
|
|
4319
|
+
"symbol": "BLU",
|
|
4320
|
+
"name": "BluCrates"
|
|
4321
|
+
},
|
|
4322
|
+
"728": {
|
|
4323
|
+
"index": "728",
|
|
4324
|
+
"hex": "0x800002d8",
|
|
4325
|
+
"symbol": "BFC",
|
|
4326
|
+
"name": "BFC"
|
|
4327
|
+
},
|
|
4178
4328
|
"730": {
|
|
4179
4329
|
"index": "730",
|
|
4180
4330
|
"hex": "0x800002da",
|
|
@@ -4247,6 +4397,12 @@
|
|
|
4247
4397
|
"symbol": "BR",
|
|
4248
4398
|
"name": "BR"
|
|
4249
4399
|
},
|
|
4400
|
+
"773": {
|
|
4401
|
+
"index": "773",
|
|
4402
|
+
"hex": "0x80000305",
|
|
4403
|
+
"symbol": "CSB",
|
|
4404
|
+
"name": "CosmoBliss"
|
|
4405
|
+
},
|
|
4250
4406
|
"775": {
|
|
4251
4407
|
"index": "775",
|
|
4252
4408
|
"hex": "0x80000307",
|
|
@@ -4283,6 +4439,12 @@
|
|
|
4283
4439
|
"symbol": "PLCU",
|
|
4284
4440
|
"name": "PLC Ultima"
|
|
4285
4441
|
},
|
|
4442
|
+
"783": {
|
|
4443
|
+
"index": "783",
|
|
4444
|
+
"hex": "0x8000030f",
|
|
4445
|
+
"symbol": "SMARTBC",
|
|
4446
|
+
"name": "SMART Blockchain"
|
|
4447
|
+
},
|
|
4286
4448
|
"784": {
|
|
4287
4449
|
"index": "784",
|
|
4288
4450
|
"hex": "0x80000310",
|
|
@@ -4313,6 +4475,18 @@
|
|
|
4313
4475
|
"symbol": "TAU",
|
|
4314
4476
|
"name": "Lamden"
|
|
4315
4477
|
},
|
|
4478
|
+
"794": {
|
|
4479
|
+
"index": "794",
|
|
4480
|
+
"hex": "0x8000031a",
|
|
4481
|
+
"symbol": "INTR",
|
|
4482
|
+
"name": "Interlay"
|
|
4483
|
+
},
|
|
4484
|
+
"795": {
|
|
4485
|
+
"index": "795",
|
|
4486
|
+
"hex": "0x8000031b",
|
|
4487
|
+
"symbol": "KINT",
|
|
4488
|
+
"name": "Kintsugi"
|
|
4489
|
+
},
|
|
4316
4490
|
"799": {
|
|
4317
4491
|
"index": "799",
|
|
4318
4492
|
"hex": "0x8000031f",
|
|
@@ -4331,6 +4505,18 @@
|
|
|
4331
4505
|
"symbol": "DST",
|
|
4332
4506
|
"name": "DSTRA"
|
|
4333
4507
|
},
|
|
4508
|
+
"802": {
|
|
4509
|
+
"index": "802",
|
|
4510
|
+
"hex": "0x80000322",
|
|
4511
|
+
"symbol": "CY",
|
|
4512
|
+
"name": "Cyberyen"
|
|
4513
|
+
},
|
|
4514
|
+
"803": {
|
|
4515
|
+
"index": "803",
|
|
4516
|
+
"hex": "0x80000323",
|
|
4517
|
+
"symbol": "RYME",
|
|
4518
|
+
"name": "Ryme Network"
|
|
4519
|
+
},
|
|
4334
4520
|
"804": {
|
|
4335
4521
|
"index": "804",
|
|
4336
4522
|
"hex": "0x80000324",
|
|
@@ -4367,6 +4553,12 @@
|
|
|
4367
4553
|
"symbol": "MEER",
|
|
4368
4554
|
"name": "Qitmeer"
|
|
4369
4555
|
},
|
|
4556
|
+
"816": {
|
|
4557
|
+
"index": "816",
|
|
4558
|
+
"hex": "0x80000330",
|
|
4559
|
+
"symbol": "FSC",
|
|
4560
|
+
"name": "FSC"
|
|
4561
|
+
},
|
|
4370
4562
|
"818": {
|
|
4371
4563
|
"index": "818",
|
|
4372
4564
|
"hex": "0x80000332",
|
|
@@ -4391,6 +4583,12 @@
|
|
|
4391
4583
|
"symbol": "BDB",
|
|
4392
4584
|
"name": "BigchainDB"
|
|
4393
4585
|
},
|
|
4586
|
+
"824": {
|
|
4587
|
+
"index": "824",
|
|
4588
|
+
"hex": "0x80000338",
|
|
4589
|
+
"symbol": "RBNT",
|
|
4590
|
+
"name": "Redbelly Network"
|
|
4591
|
+
},
|
|
4394
4592
|
"827": {
|
|
4395
4593
|
"index": "827",
|
|
4396
4594
|
"hex": "0x8000033b",
|
|
@@ -4529,6 +4727,12 @@
|
|
|
4529
4727
|
"symbol": "FLS",
|
|
4530
4728
|
"name": "Flits"
|
|
4531
4729
|
},
|
|
4730
|
+
"851": {
|
|
4731
|
+
"index": "851",
|
|
4732
|
+
"hex": "0x80000353",
|
|
4733
|
+
"symbol": "FRECO",
|
|
4734
|
+
"name": "Freco"
|
|
4735
|
+
},
|
|
4532
4736
|
"852": {
|
|
4533
4737
|
"index": "852",
|
|
4534
4738
|
"hex": "0x80000354",
|
|
@@ -4565,6 +4769,12 @@
|
|
|
4565
4769
|
"symbol": "NAM",
|
|
4566
4770
|
"name": "Namada"
|
|
4567
4771
|
},
|
|
4772
|
+
"878": {
|
|
4773
|
+
"index": "878",
|
|
4774
|
+
"hex": "0x8000036e",
|
|
4775
|
+
"symbol": "SCR",
|
|
4776
|
+
"name": "Scorum Network"
|
|
4777
|
+
},
|
|
4568
4778
|
"880": {
|
|
4569
4779
|
"index": "880",
|
|
4570
4780
|
"hex": "0x80000370",
|
|
@@ -4655,6 +4865,12 @@
|
|
|
4655
4865
|
"symbol": "GERT",
|
|
4656
4866
|
"name": "Gert"
|
|
4657
4867
|
},
|
|
4868
|
+
"913": {
|
|
4869
|
+
"index": "913",
|
|
4870
|
+
"hex": "0x80000391",
|
|
4871
|
+
"symbol": "VARA",
|
|
4872
|
+
"name": "Vara Network"
|
|
4873
|
+
},
|
|
4658
4874
|
"916": {
|
|
4659
4875
|
"index": "916",
|
|
4660
4876
|
"hex": "0x80000394",
|
|
@@ -4697,12 +4913,36 @@
|
|
|
4697
4913
|
"symbol": "RUNE",
|
|
4698
4914
|
"name": "THORChain (RUNE)"
|
|
4699
4915
|
},
|
|
4916
|
+
"938": {
|
|
4917
|
+
"index": "938",
|
|
4918
|
+
"hex": "0x800003aa",
|
|
4919
|
+
"symbol": "MGO",
|
|
4920
|
+
"name": "Mango Network"
|
|
4921
|
+
},
|
|
4922
|
+
"939": {
|
|
4923
|
+
"index": "939",
|
|
4924
|
+
"hex": "0x800003ab",
|
|
4925
|
+
"symbol": "AB",
|
|
4926
|
+
"name": "Argot Protocol"
|
|
4927
|
+
},
|
|
4700
4928
|
"941": {
|
|
4701
4929
|
"index": "941",
|
|
4702
4930
|
"hex": "0x800003ad",
|
|
4703
4931
|
"symbol": "---",
|
|
4704
4932
|
"name": "reserved"
|
|
4705
4933
|
},
|
|
4934
|
+
"942": {
|
|
4935
|
+
"index": "942",
|
|
4936
|
+
"hex": "0x800003ae",
|
|
4937
|
+
"symbol": "KCN",
|
|
4938
|
+
"name": "Kylacoin"
|
|
4939
|
+
},
|
|
4940
|
+
"943": {
|
|
4941
|
+
"index": "943",
|
|
4942
|
+
"hex": "0x800003af",
|
|
4943
|
+
"symbol": "LCN",
|
|
4944
|
+
"name": "Lyncoin"
|
|
4945
|
+
},
|
|
4706
4946
|
"945": {
|
|
4707
4947
|
"index": "945",
|
|
4708
4948
|
"hex": "0x800003b1",
|
|
@@ -4739,6 +4979,12 @@
|
|
|
4739
4979
|
"symbol": "UNW",
|
|
4740
4980
|
"name": "UNW"
|
|
4741
4981
|
},
|
|
4982
|
+
"969": {
|
|
4983
|
+
"index": "969",
|
|
4984
|
+
"hex": "0x800003c9",
|
|
4985
|
+
"symbol": "QI",
|
|
4986
|
+
"name": "Quai Network"
|
|
4987
|
+
},
|
|
4742
4988
|
"970": {
|
|
4743
4989
|
"index": "970",
|
|
4744
4990
|
"hex": "0x800003ca",
|
|
@@ -4895,6 +5141,12 @@
|
|
|
4895
5141
|
"symbol": "RPG",
|
|
4896
5142
|
"name": "RPG"
|
|
4897
5143
|
},
|
|
5144
|
+
"1009": {
|
|
5145
|
+
"index": "1009",
|
|
5146
|
+
"hex": "0x800003f1",
|
|
5147
|
+
"symbol": "LAKE",
|
|
5148
|
+
"name": "iconLake"
|
|
5149
|
+
},
|
|
4898
5150
|
"1010": {
|
|
4899
5151
|
"index": "1010",
|
|
4900
5152
|
"hex": "0x800003f2",
|
|
@@ -4907,12 +5159,30 @@
|
|
|
4907
5159
|
"symbol": "ELV",
|
|
4908
5160
|
"name": "Eluvio"
|
|
4909
5161
|
},
|
|
5162
|
+
"1012": {
|
|
5163
|
+
"index": "1012",
|
|
5164
|
+
"hex": "0x800003f4",
|
|
5165
|
+
"symbol": "JOC",
|
|
5166
|
+
"name": "Japan Open Chain"
|
|
5167
|
+
},
|
|
4910
5168
|
"1013": {
|
|
4911
5169
|
"index": "1013",
|
|
4912
5170
|
"hex": "0x800003f5",
|
|
4913
5171
|
"symbol": "BIC",
|
|
4914
5172
|
"name": "Beincrypto"
|
|
4915
5173
|
},
|
|
5174
|
+
"1014": {
|
|
5175
|
+
"index": "1014",
|
|
5176
|
+
"hex": "0x800003f6",
|
|
5177
|
+
"symbol": "JOY",
|
|
5178
|
+
"name": "Joystream"
|
|
5179
|
+
},
|
|
5180
|
+
"1016": {
|
|
5181
|
+
"index": "1016",
|
|
5182
|
+
"hex": "0x800003f8",
|
|
5183
|
+
"symbol": "---",
|
|
5184
|
+
"name": "reserved"
|
|
5185
|
+
},
|
|
4916
5186
|
"1020": {
|
|
4917
5187
|
"index": "1020",
|
|
4918
5188
|
"hex": "0x800003fc",
|
|
@@ -4929,7 +5199,7 @@
|
|
|
4929
5199
|
"index": "1023",
|
|
4930
5200
|
"hex": "0x800003ff",
|
|
4931
5201
|
"symbol": "ONE",
|
|
4932
|
-
"name": "HARMONY-ONE"
|
|
5202
|
+
"name": "HARMONY-ONE (Legacy)"
|
|
4933
5203
|
},
|
|
4934
5204
|
"1024": {
|
|
4935
5205
|
"index": "1024",
|
|
@@ -4955,6 +5225,12 @@
|
|
|
4955
5225
|
"symbol": "MCM",
|
|
4956
5226
|
"name": "Mochimo"
|
|
4957
5227
|
},
|
|
5228
|
+
"1028": {
|
|
5229
|
+
"index": "1028",
|
|
5230
|
+
"hex": "0x80000404",
|
|
5231
|
+
"symbol": "PLS",
|
|
5232
|
+
"name": "Pulse Coin"
|
|
5233
|
+
},
|
|
4958
5234
|
"1032": {
|
|
4959
5235
|
"index": "1032",
|
|
4960
5236
|
"hex": "0x80000408",
|
|
@@ -4973,6 +5249,12 @@
|
|
|
4973
5249
|
"symbol": "BBC",
|
|
4974
5250
|
"name": "Big Bitcoin"
|
|
4975
5251
|
},
|
|
5252
|
+
"1116": {
|
|
5253
|
+
"index": "1116",
|
|
5254
|
+
"hex": "0x8000045c",
|
|
5255
|
+
"symbol": "CORE",
|
|
5256
|
+
"name": "Core"
|
|
5257
|
+
},
|
|
4976
5258
|
"1120": {
|
|
4977
5259
|
"index": "1120",
|
|
4978
5260
|
"hex": "0x80000460",
|
|
@@ -5018,8 +5300,8 @@
|
|
|
5018
5300
|
"1155": {
|
|
5019
5301
|
"index": "1155",
|
|
5020
5302
|
"hex": "0x80000483",
|
|
5021
|
-
"symbol": "
|
|
5022
|
-
"name": "
|
|
5303
|
+
"symbol": "ENJ",
|
|
5304
|
+
"name": "Enjin Coin"
|
|
5023
5305
|
},
|
|
5024
5306
|
"1170": {
|
|
5025
5307
|
"index": "1170",
|
|
@@ -5033,12 +5315,24 @@
|
|
|
5033
5315
|
"symbol": "ALPH",
|
|
5034
5316
|
"name": "Alephium"
|
|
5035
5317
|
},
|
|
5318
|
+
"1236": {
|
|
5319
|
+
"index": "1236",
|
|
5320
|
+
"hex": "0x800004d4",
|
|
5321
|
+
"symbol": "",
|
|
5322
|
+
"name": "Masca"
|
|
5323
|
+
},
|
|
5036
5324
|
"1237": {
|
|
5037
5325
|
"index": "1237",
|
|
5038
5326
|
"hex": "0x800004d5",
|
|
5039
5327
|
"symbol": "",
|
|
5040
5328
|
"name": "Nostr"
|
|
5041
5329
|
},
|
|
5330
|
+
"1280": {
|
|
5331
|
+
"index": "1280",
|
|
5332
|
+
"hex": "0x80000500",
|
|
5333
|
+
"symbol": "",
|
|
5334
|
+
"name": "Kudos Setler"
|
|
5335
|
+
},
|
|
5042
5336
|
"1284": {
|
|
5043
5337
|
"index": "1284",
|
|
5044
5338
|
"hex": "0x80000504",
|
|
@@ -5063,12 +5357,30 @@
|
|
|
5063
5357
|
"symbol": "WEI",
|
|
5064
5358
|
"name": "WEI"
|
|
5065
5359
|
},
|
|
5360
|
+
"1312": {
|
|
5361
|
+
"index": "1312",
|
|
5362
|
+
"hex": "0x80000520",
|
|
5363
|
+
"symbol": "BITS",
|
|
5364
|
+
"name": "Entropy"
|
|
5365
|
+
},
|
|
5066
5366
|
"1337": {
|
|
5067
5367
|
"index": "1337",
|
|
5068
5368
|
"hex": "0x80000539",
|
|
5069
5369
|
"symbol": "DFC",
|
|
5070
5370
|
"name": "Defcoin"
|
|
5071
5371
|
},
|
|
5372
|
+
"1338": {
|
|
5373
|
+
"index": "1338",
|
|
5374
|
+
"hex": "0x8000053a",
|
|
5375
|
+
"symbol": "IRON",
|
|
5376
|
+
"name": "Iron Fish"
|
|
5377
|
+
},
|
|
5378
|
+
"1348": {
|
|
5379
|
+
"index": "1348",
|
|
5380
|
+
"hex": "0x80000544",
|
|
5381
|
+
"symbol": "ISLM",
|
|
5382
|
+
"name": "IslamicCoin"
|
|
5383
|
+
},
|
|
5072
5384
|
"1397": {
|
|
5073
5385
|
"index": "1397",
|
|
5074
5386
|
"hex": "0x80000575",
|
|
@@ -5105,6 +5417,12 @@
|
|
|
5105
5417
|
"symbol": "BEAM",
|
|
5106
5418
|
"name": "Beam"
|
|
5107
5419
|
},
|
|
5420
|
+
"1551": {
|
|
5421
|
+
"index": "1551",
|
|
5422
|
+
"hex": "0x8000060f",
|
|
5423
|
+
"symbol": "SDK",
|
|
5424
|
+
"name": "Sovereign SDK"
|
|
5425
|
+
},
|
|
5108
5426
|
"1555": {
|
|
5109
5427
|
"index": "1555",
|
|
5110
5428
|
"hex": "0x80000613",
|
|
@@ -5225,12 +5543,24 @@
|
|
|
5225
5543
|
"symbol": "XEC",
|
|
5226
5544
|
"name": "eCash token"
|
|
5227
5545
|
},
|
|
5546
|
+
"1900": {
|
|
5547
|
+
"index": "1900",
|
|
5548
|
+
"hex": "0x8000076c",
|
|
5549
|
+
"symbol": "XNA",
|
|
5550
|
+
"name": "Neurai"
|
|
5551
|
+
},
|
|
5228
5552
|
"1901": {
|
|
5229
5553
|
"index": "1901",
|
|
5230
5554
|
"hex": "0x8000076d",
|
|
5231
5555
|
"symbol": "CLC",
|
|
5232
5556
|
"name": "Classica"
|
|
5233
5557
|
},
|
|
5558
|
+
"1907": {
|
|
5559
|
+
"index": "1907",
|
|
5560
|
+
"hex": "0x80000773",
|
|
5561
|
+
"symbol": "BITCI",
|
|
5562
|
+
"name": "Bitcicoin"
|
|
5563
|
+
},
|
|
5234
5564
|
"1919": {
|
|
5235
5565
|
"index": "1919",
|
|
5236
5566
|
"hex": "0x8000077f",
|
|
@@ -5381,6 +5711,24 @@
|
|
|
5381
5711
|
"symbol": "XHT",
|
|
5382
5712
|
"name": "Xinghuo Token"
|
|
5383
5713
|
},
|
|
5714
|
+
"2023": {
|
|
5715
|
+
"index": "2023",
|
|
5716
|
+
"hex": "0x800007e7",
|
|
5717
|
+
"symbol": "COC",
|
|
5718
|
+
"name": "Chat On Chain"
|
|
5719
|
+
},
|
|
5720
|
+
"2024": {
|
|
5721
|
+
"index": "2024",
|
|
5722
|
+
"hex": "0x800007e8",
|
|
5723
|
+
"symbol": "USBC",
|
|
5724
|
+
"name": "Universal Ledger USBC"
|
|
5725
|
+
},
|
|
5726
|
+
"2025": {
|
|
5727
|
+
"index": "2025",
|
|
5728
|
+
"hex": "0x800007e9",
|
|
5729
|
+
"symbol": "ROCK",
|
|
5730
|
+
"name": "Zenrock Labs"
|
|
5731
|
+
},
|
|
5384
5732
|
"2046": {
|
|
5385
5733
|
"index": "2046",
|
|
5386
5734
|
"hex": "0x800007fe",
|
|
@@ -5399,6 +5747,12 @@
|
|
|
5399
5747
|
"symbol": "TRUE",
|
|
5400
5748
|
"name": "TrueChain"
|
|
5401
5749
|
},
|
|
5750
|
+
"2050": {
|
|
5751
|
+
"index": "2050",
|
|
5752
|
+
"hex": "0x80000802",
|
|
5753
|
+
"symbol": "MOVO",
|
|
5754
|
+
"name": "Movo Smart Chain"
|
|
5755
|
+
},
|
|
5402
5756
|
"2086": {
|
|
5403
5757
|
"index": "2086",
|
|
5404
5758
|
"hex": "0x80000826",
|
|
@@ -5417,17 +5771,23 @@
|
|
|
5417
5771
|
"symbol": "IoTE",
|
|
5418
5772
|
"name": "IoTE"
|
|
5419
5773
|
},
|
|
5774
|
+
"2125": {
|
|
5775
|
+
"index": "2125",
|
|
5776
|
+
"hex": "0x8000084d",
|
|
5777
|
+
"symbol": "BAY",
|
|
5778
|
+
"name": "BitBay"
|
|
5779
|
+
},
|
|
5420
5780
|
"2137": {
|
|
5421
5781
|
"index": "2137",
|
|
5422
5782
|
"hex": "0x80000859",
|
|
5423
5783
|
"symbol": "XRG",
|
|
5424
5784
|
"name": "Ergon"
|
|
5425
5785
|
},
|
|
5426
|
-
"
|
|
5427
|
-
"index": "
|
|
5428
|
-
"hex": "
|
|
5429
|
-
"symbol": "
|
|
5430
|
-
"name": "
|
|
5786
|
+
"2199": {
|
|
5787
|
+
"index": "2199",
|
|
5788
|
+
"hex": "0x80000897",
|
|
5789
|
+
"symbol": "SAMA",
|
|
5790
|
+
"name": "Moonsama Network"
|
|
5431
5791
|
},
|
|
5432
5792
|
"2221": {
|
|
5433
5793
|
"index": "2221",
|
|
@@ -5435,6 +5795,12 @@
|
|
|
5435
5795
|
"symbol": "ASK",
|
|
5436
5796
|
"name": "ASK"
|
|
5437
5797
|
},
|
|
5798
|
+
"2222": {
|
|
5799
|
+
"index": "2222",
|
|
5800
|
+
"hex": "0x800008ae",
|
|
5801
|
+
"symbol": "CWEB",
|
|
5802
|
+
"name": "Coinweb"
|
|
5803
|
+
},
|
|
5438
5804
|
"2285": {
|
|
5439
5805
|
"index": "2285",
|
|
5440
5806
|
"hex": "0x800008ed",
|
|
@@ -5495,6 +5861,12 @@
|
|
|
5495
5861
|
"symbol": "AOA",
|
|
5496
5862
|
"name": "Aurora"
|
|
5497
5863
|
},
|
|
5864
|
+
"2686": {
|
|
5865
|
+
"index": "2686",
|
|
5866
|
+
"hex": "0x80000a7e",
|
|
5867
|
+
"symbol": "AIPG",
|
|
5868
|
+
"name": "AIPowerGrid"
|
|
5869
|
+
},
|
|
5498
5870
|
"2718": {
|
|
5499
5871
|
"index": "2718",
|
|
5500
5872
|
"hex": "0x80000a9e",
|
|
@@ -5513,6 +5885,12 @@
|
|
|
5513
5885
|
"symbol": "BND",
|
|
5514
5886
|
"name": "Blocknode"
|
|
5515
5887
|
},
|
|
5888
|
+
"3000": {
|
|
5889
|
+
"index": "3000",
|
|
5890
|
+
"hex": "0x80000bb8",
|
|
5891
|
+
"symbol": "SM",
|
|
5892
|
+
"name": "Stealth Message"
|
|
5893
|
+
},
|
|
5516
5894
|
"3003": {
|
|
5517
5895
|
"index": "3003",
|
|
5518
5896
|
"hex": "0x80000bbb",
|
|
@@ -5543,6 +5921,12 @@
|
|
|
5543
5921
|
"symbol": "SXP",
|
|
5544
5922
|
"name": "Solar"
|
|
5545
5923
|
},
|
|
5924
|
+
"3338": {
|
|
5925
|
+
"index": "3338",
|
|
5926
|
+
"hex": "0x80000d0a",
|
|
5927
|
+
"symbol": "PEAQ",
|
|
5928
|
+
"name": "peaq"
|
|
5929
|
+
},
|
|
5546
5930
|
"3377": {
|
|
5547
5931
|
"index": "3377",
|
|
5548
5932
|
"hex": "0x80000d31",
|
|
@@ -5561,6 +5945,18 @@
|
|
|
5561
5945
|
"symbol": "SEQ",
|
|
5562
5946
|
"name": "Sequence"
|
|
5563
5947
|
},
|
|
5948
|
+
"3434": {
|
|
5949
|
+
"index": "3434",
|
|
5950
|
+
"hex": "0x80000d6a",
|
|
5951
|
+
"symbol": "PEPE",
|
|
5952
|
+
"name": "Pepecoin Core"
|
|
5953
|
+
},
|
|
5954
|
+
"3501": {
|
|
5955
|
+
"index": "3501",
|
|
5956
|
+
"hex": "0x80000dad",
|
|
5957
|
+
"symbol": "JFIN",
|
|
5958
|
+
"name": "JFIN Coin"
|
|
5959
|
+
},
|
|
5564
5960
|
"3552": {
|
|
5565
5961
|
"index": "3552",
|
|
5566
5962
|
"hex": "0x80000de0",
|
|
@@ -5579,6 +5975,18 @@
|
|
|
5579
5975
|
"symbol": "CY",
|
|
5580
5976
|
"name": "Cybits"
|
|
5581
5977
|
},
|
|
5978
|
+
"3757": {
|
|
5979
|
+
"index": "3757",
|
|
5980
|
+
"hex": "0x80000ead",
|
|
5981
|
+
"symbol": "MPC",
|
|
5982
|
+
"name": "Partisia Blockchain"
|
|
5983
|
+
},
|
|
5984
|
+
"3840": {
|
|
5985
|
+
"index": "3840",
|
|
5986
|
+
"hex": "0x80000f00",
|
|
5987
|
+
"symbol": "RED",
|
|
5988
|
+
"name": "ReDeFi RED"
|
|
5989
|
+
},
|
|
5582
5990
|
"4040": {
|
|
5583
5991
|
"index": "4040",
|
|
5584
5992
|
"hex": "0x80000fc8",
|
|
@@ -5627,6 +6035,18 @@
|
|
|
5627
6035
|
"symbol": "XVM",
|
|
5628
6036
|
"name": "Venidium"
|
|
5629
6037
|
},
|
|
6038
|
+
"4999": {
|
|
6039
|
+
"index": "4999",
|
|
6040
|
+
"hex": "0x80001387",
|
|
6041
|
+
"symbol": "BXN",
|
|
6042
|
+
"name": "BlackFort Exchange Network"
|
|
6043
|
+
},
|
|
6044
|
+
"5000": {
|
|
6045
|
+
"index": "5000",
|
|
6046
|
+
"hex": "0x80001388",
|
|
6047
|
+
"symbol": "V12",
|
|
6048
|
+
"name": "Vet The Vote"
|
|
6049
|
+
},
|
|
5630
6050
|
"5006": {
|
|
5631
6051
|
"index": "5006",
|
|
5632
6052
|
"hex": "0x8000138e",
|
|
@@ -5681,18 +6101,42 @@
|
|
|
5681
6101
|
"symbol": "SLU",
|
|
5682
6102
|
"name": "SILUBIUM"
|
|
5683
6103
|
},
|
|
6104
|
+
"5995": {
|
|
6105
|
+
"index": "5995",
|
|
6106
|
+
"hex": "0x8000176B",
|
|
6107
|
+
"symbol": "DUSK",
|
|
6108
|
+
"name": "Dusk Network"
|
|
6109
|
+
},
|
|
5684
6110
|
"6060": {
|
|
5685
6111
|
"index": "6060",
|
|
5686
6112
|
"hex": "0x800017ac",
|
|
5687
6113
|
"symbol": "GO",
|
|
5688
6114
|
"name": "GoChain GO"
|
|
5689
6115
|
},
|
|
6116
|
+
"6144": {
|
|
6117
|
+
"index": "6144",
|
|
6118
|
+
"hex": "0x80001800",
|
|
6119
|
+
"symbol": "DTS",
|
|
6120
|
+
"name": "Datos"
|
|
6121
|
+
},
|
|
5690
6122
|
"6174": {
|
|
5691
6123
|
"index": "6174",
|
|
5692
6124
|
"hex": "0x8000181e",
|
|
5693
6125
|
"symbol": "MOI",
|
|
5694
6126
|
"name": "My Own Internet"
|
|
5695
6127
|
},
|
|
6128
|
+
"6278": {
|
|
6129
|
+
"index": "6278",
|
|
6130
|
+
"hex": "0x80001886",
|
|
6131
|
+
"symbol": "STEAMX",
|
|
6132
|
+
"name": "Rails Network Mainnet"
|
|
6133
|
+
},
|
|
6134
|
+
"6532": {
|
|
6135
|
+
"index": "6532",
|
|
6136
|
+
"hex": "0x80001984",
|
|
6137
|
+
"symbol": "UM",
|
|
6138
|
+
"name": "Penumbra"
|
|
6139
|
+
},
|
|
5696
6140
|
"6599": {
|
|
5697
6141
|
"index": "6599",
|
|
5698
6142
|
"hex": "0x800019c7",
|
|
@@ -5723,6 +6167,24 @@
|
|
|
5723
6167
|
"symbol": "ROGER",
|
|
5724
6168
|
"name": "TheHolyrogerCoin"
|
|
5725
6169
|
},
|
|
6170
|
+
"7000": {
|
|
6171
|
+
"index": "7000",
|
|
6172
|
+
"hex": "0x80001b58",
|
|
6173
|
+
"symbol": "ZETA",
|
|
6174
|
+
"name": "ZetaChain"
|
|
6175
|
+
},
|
|
6176
|
+
"7027": {
|
|
6177
|
+
"index": "7027",
|
|
6178
|
+
"hex": "0x80001b73",
|
|
6179
|
+
"symbol": "ELLA",
|
|
6180
|
+
"name": "Ella the heart"
|
|
6181
|
+
},
|
|
6182
|
+
"7028": {
|
|
6183
|
+
"index": "7028",
|
|
6184
|
+
"hex": "0x80001b74",
|
|
6185
|
+
"symbol": "AA",
|
|
6186
|
+
"name": "Arthera"
|
|
6187
|
+
},
|
|
5726
6188
|
"7091": {
|
|
5727
6189
|
"index": "7091",
|
|
5728
6190
|
"hex": "0x80001bb3",
|
|
@@ -5741,12 +6203,30 @@
|
|
|
5741
6203
|
"symbol": "SHFT",
|
|
5742
6204
|
"name": "Shyft"
|
|
5743
6205
|
},
|
|
6206
|
+
"7518": {
|
|
6207
|
+
"index": "7518",
|
|
6208
|
+
"hex": "0x80001d5e",
|
|
6209
|
+
"symbol": "MEV",
|
|
6210
|
+
"name": "MEVerse"
|
|
6211
|
+
},
|
|
6212
|
+
"7576": {
|
|
6213
|
+
"index": "7576",
|
|
6214
|
+
"hex": "0x80001d98",
|
|
6215
|
+
"symbol": "ADIL",
|
|
6216
|
+
"name": "ADIL Chain"
|
|
6217
|
+
},
|
|
5744
6218
|
"7777": {
|
|
5745
6219
|
"index": "7777",
|
|
5746
6220
|
"hex": "0x80001e61",
|
|
5747
6221
|
"symbol": "BTV",
|
|
5748
6222
|
"name": "Bitvote"
|
|
5749
6223
|
},
|
|
6224
|
+
"7779": {
|
|
6225
|
+
"index": "7779",
|
|
6226
|
+
"hex": "0x80001e63",
|
|
6227
|
+
"symbol": "CPV",
|
|
6228
|
+
"name": "Compverse"
|
|
6229
|
+
},
|
|
5750
6230
|
"8000": {
|
|
5751
6231
|
"index": "8000",
|
|
5752
6232
|
"hex": "0x80001f40",
|
|
@@ -5801,12 +6281,24 @@
|
|
|
5801
6281
|
"symbol": "PLMNT",
|
|
5802
6282
|
"name": "Planetmint"
|
|
5803
6283
|
},
|
|
6284
|
+
"8732": {
|
|
6285
|
+
"index": "8732",
|
|
6286
|
+
"hex": "0x8000221c",
|
|
6287
|
+
"symbol": "BLN",
|
|
6288
|
+
"name": "Bullions"
|
|
6289
|
+
},
|
|
5804
6290
|
"8866": {
|
|
5805
6291
|
"index": "8866",
|
|
5806
6292
|
"hex": "0x800022a2",
|
|
5807
6293
|
"symbol": "GGX",
|
|
5808
6294
|
"name": "Golden Gate"
|
|
5809
6295
|
},
|
|
6296
|
+
"8886": {
|
|
6297
|
+
"index": "8886",
|
|
6298
|
+
"hex": "0x800022b6",
|
|
6299
|
+
"symbol": "GGXT",
|
|
6300
|
+
"name": "Golden Gate Sydney"
|
|
6301
|
+
},
|
|
5810
6302
|
"8888": {
|
|
5811
6303
|
"index": "8888",
|
|
5812
6304
|
"hex": "0x800022b8",
|
|
@@ -5903,18 +6395,42 @@
|
|
|
5903
6395
|
"symbol": "FO",
|
|
5904
6396
|
"name": "FIBOS"
|
|
5905
6397
|
},
|
|
6398
|
+
"10001": {
|
|
6399
|
+
"index": "10001",
|
|
6400
|
+
"hex": "0x80002711",
|
|
6401
|
+
"symbol": "SPACE",
|
|
6402
|
+
"name": "Space"
|
|
6403
|
+
},
|
|
6404
|
+
"10111": {
|
|
6405
|
+
"index": "10111",
|
|
6406
|
+
"hex": "0x8000277f",
|
|
6407
|
+
"symbol": "DHP",
|
|
6408
|
+
"name": "dHealth"
|
|
6409
|
+
},
|
|
5906
6410
|
"10226": {
|
|
5907
6411
|
"index": "10226",
|
|
5908
6412
|
"hex": "0x800027f2",
|
|
5909
6413
|
"symbol": "RTM",
|
|
5910
6414
|
"name": "Raptoreum"
|
|
5911
6415
|
},
|
|
6416
|
+
"10242": {
|
|
6417
|
+
"index": "10242",
|
|
6418
|
+
"hex": "0x80002802",
|
|
6419
|
+
"symbol": "AA",
|
|
6420
|
+
"name": "Arthera"
|
|
6421
|
+
},
|
|
5912
6422
|
"10291": {
|
|
5913
6423
|
"index": "10291",
|
|
5914
6424
|
"hex": "0x80002833",
|
|
5915
6425
|
"symbol": "XRC",
|
|
5916
6426
|
"name": "XRhodium"
|
|
5917
6427
|
},
|
|
6428
|
+
"10507": {
|
|
6429
|
+
"index": "10507",
|
|
6430
|
+
"hex": "0x8000290b",
|
|
6431
|
+
"symbol": "NUM",
|
|
6432
|
+
"name": "Numbers Protocol"
|
|
6433
|
+
},
|
|
5918
6434
|
"10605": {
|
|
5919
6435
|
"index": "10605",
|
|
5920
6436
|
"hex": "0x8000296d",
|
|
@@ -5927,6 +6443,18 @@
|
|
|
5927
6443
|
"symbol": "ESS",
|
|
5928
6444
|
"name": "Essentia One"
|
|
5929
6445
|
},
|
|
6446
|
+
"11742": {
|
|
6447
|
+
"index": "11742",
|
|
6448
|
+
"hex": "0x80002dde",
|
|
6449
|
+
"symbol": "VARCH",
|
|
6450
|
+
"name": "InvArch"
|
|
6451
|
+
},
|
|
6452
|
+
"11743": {
|
|
6453
|
+
"index": "11743",
|
|
6454
|
+
"hex": "0x80002ddf",
|
|
6455
|
+
"symbol": "TNKR",
|
|
6456
|
+
"name": "Tinkernet"
|
|
6457
|
+
},
|
|
5930
6458
|
"12345": {
|
|
5931
6459
|
"index": "12345",
|
|
5932
6460
|
"hex": "0x80003039",
|
|
@@ -5951,6 +6479,12 @@
|
|
|
5951
6479
|
"symbol": "YCC",
|
|
5952
6480
|
"name": "Yuan Chain Coin"
|
|
5953
6481
|
},
|
|
6482
|
+
"13381": {
|
|
6483
|
+
"index": "13381",
|
|
6484
|
+
"hex": "0x80003445",
|
|
6485
|
+
"symbol": "PHX",
|
|
6486
|
+
"name": "Phoenix"
|
|
6487
|
+
},
|
|
5954
6488
|
"14001": {
|
|
5955
6489
|
"index": "14001",
|
|
5956
6490
|
"hex": "0x800036b1",
|
|
@@ -5999,6 +6533,12 @@
|
|
|
5999
6533
|
"symbol": "RITO",
|
|
6000
6534
|
"name": "Ritocoin"
|
|
6001
6535
|
},
|
|
6536
|
+
"19788": {
|
|
6537
|
+
"index": "19788",
|
|
6538
|
+
"hex": "0x80004d4c",
|
|
6539
|
+
"symbol": "ML",
|
|
6540
|
+
"name": "Mintlayer"
|
|
6541
|
+
},
|
|
6002
6542
|
"20036": {
|
|
6003
6543
|
"index": "20036",
|
|
6004
6544
|
"hex": "0x80004e44",
|
|
@@ -6011,10 +6551,16 @@
|
|
|
6011
6551
|
"symbol": "C4EI",
|
|
6012
6552
|
"name": "c4ei"
|
|
6013
6553
|
},
|
|
6554
|
+
"21337": {
|
|
6555
|
+
"index": "21337",
|
|
6556
|
+
"hex": "0x80005359",
|
|
6557
|
+
"symbol": "XAH",
|
|
6558
|
+
"name": "Xahau"
|
|
6559
|
+
},
|
|
6014
6560
|
"21888": {
|
|
6015
6561
|
"index": "21888",
|
|
6016
6562
|
"hex": "0x80005580",
|
|
6017
|
-
"symbol": "
|
|
6563
|
+
"symbol": "PAC",
|
|
6018
6564
|
"name": "Pactus"
|
|
6019
6565
|
},
|
|
6020
6566
|
"22504": {
|
|
@@ -6023,6 +6569,12 @@
|
|
|
6023
6569
|
"symbol": "PWR",
|
|
6024
6570
|
"name": "PWRcoin"
|
|
6025
6571
|
},
|
|
6572
|
+
"23000": {
|
|
6573
|
+
"index": "23000",
|
|
6574
|
+
"hex": "0x800059d8",
|
|
6575
|
+
"symbol": "EPIC",
|
|
6576
|
+
"name": "Epic Cash"
|
|
6577
|
+
},
|
|
6026
6578
|
"25252": {
|
|
6027
6579
|
"index": "25252",
|
|
6028
6580
|
"hex": "0x800062a4",
|
|
@@ -6035,6 +6587,12 @@
|
|
|
6035
6587
|
"symbol": "CHX",
|
|
6036
6588
|
"name": "Own"
|
|
6037
6589
|
},
|
|
6590
|
+
"26417": {
|
|
6591
|
+
"index": "26417",
|
|
6592
|
+
"hex": "0x80006731",
|
|
6593
|
+
"symbol": "G1",
|
|
6594
|
+
"name": "Ğ1"
|
|
6595
|
+
},
|
|
6038
6596
|
"29223": {
|
|
6039
6597
|
"index": "29223",
|
|
6040
6598
|
"hex": "0x80007227",
|
|
@@ -6101,6 +6659,12 @@
|
|
|
6101
6659
|
"symbol": "AXIV",
|
|
6102
6660
|
"name": "AXIV"
|
|
6103
6661
|
},
|
|
6662
|
+
"47803": {
|
|
6663
|
+
"index": "47803",
|
|
6664
|
+
"hex": "0x8000babb",
|
|
6665
|
+
"symbol": "BAX",
|
|
6666
|
+
"name": "BAX"
|
|
6667
|
+
},
|
|
6104
6668
|
"49262": {
|
|
6105
6669
|
"index": "49262",
|
|
6106
6670
|
"hex": "0x8000c06e",
|
|
@@ -6149,6 +6713,12 @@
|
|
|
6149
6713
|
"symbol": "ZYN",
|
|
6150
6714
|
"name": "Wethio"
|
|
6151
6715
|
},
|
|
6716
|
+
"83293": {
|
|
6717
|
+
"index": "83293",
|
|
6718
|
+
"hex": "0x8001455d",
|
|
6719
|
+
"symbol": "QUBIC",
|
|
6720
|
+
"name": "Qubic"
|
|
6721
|
+
},
|
|
6152
6722
|
"88888": {
|
|
6153
6723
|
"index": "88888",
|
|
6154
6724
|
"hex": "0x80015b38",
|
|
@@ -6173,6 +6743,12 @@
|
|
|
6173
6743
|
"symbol": "STC",
|
|
6174
6744
|
"name": "Starcoin"
|
|
6175
6745
|
},
|
|
6746
|
+
"104109": {
|
|
6747
|
+
"index": "104109",
|
|
6748
|
+
"hex": "0x800196ad",
|
|
6749
|
+
"symbol": "",
|
|
6750
|
+
"name": "Seed Hypermedia"
|
|
6751
|
+
},
|
|
6176
6752
|
"105105": {
|
|
6177
6753
|
"index": "105105",
|
|
6178
6754
|
"hex": "0x80019a91",
|
|
@@ -6185,6 +6761,12 @@
|
|
|
6185
6761
|
"symbol": "KAS",
|
|
6186
6762
|
"name": "Kaspa"
|
|
6187
6763
|
},
|
|
6764
|
+
"121337": {
|
|
6765
|
+
"index": "121337",
|
|
6766
|
+
"hex": "0x8001d9f9",
|
|
6767
|
+
"symbol": "KLS",
|
|
6768
|
+
"name": "Karlsen"
|
|
6769
|
+
},
|
|
6188
6770
|
"161803": {
|
|
6189
6771
|
"index": "161803",
|
|
6190
6772
|
"hex": "0x8002780b",
|
|
@@ -6197,11 +6779,11 @@
|
|
|
6197
6779
|
"symbol": "AKA",
|
|
6198
6780
|
"name": "Akroma"
|
|
6199
6781
|
},
|
|
6200
|
-
"
|
|
6201
|
-
"index": "
|
|
6202
|
-
"hex": "
|
|
6203
|
-
"symbol": "
|
|
6204
|
-
"name": "
|
|
6782
|
+
"224433": {
|
|
6783
|
+
"index": "224433",
|
|
6784
|
+
"hex": "0x80036cb1",
|
|
6785
|
+
"symbol": "CONET",
|
|
6786
|
+
"name": "CONET Holesky Network"
|
|
6205
6787
|
},
|
|
6206
6788
|
"246529": {
|
|
6207
6789
|
"index": "246529",
|
|
@@ -6251,6 +6833,12 @@
|
|
|
6251
6833
|
"symbol": "VITE",
|
|
6252
6834
|
"name": "Vite"
|
|
6253
6835
|
},
|
|
6836
|
+
"696365": {
|
|
6837
|
+
"index": "696365",
|
|
6838
|
+
"hex": "0x800b3206",
|
|
6839
|
+
"symbol": "ICE",
|
|
6840
|
+
"name": "Ice Network"
|
|
6841
|
+
},
|
|
6254
6842
|
"888888": {
|
|
6255
6843
|
"index": "888888",
|
|
6256
6844
|
"hex": "0x800d9038",
|
|
@@ -6359,6 +6947,12 @@
|
|
|
6359
6947
|
"symbol": "CRM",
|
|
6360
6948
|
"name": "Creamcoin"
|
|
6361
6949
|
},
|
|
6950
|
+
"7171666": {
|
|
6951
|
+
"index": "7171666",
|
|
6952
|
+
"hex": "0x806d6e52",
|
|
6953
|
+
"symbol": "BROCK",
|
|
6954
|
+
"name": "Bitrock"
|
|
6955
|
+
},
|
|
6362
6956
|
"7562605": {
|
|
6363
6957
|
"index": "7562605",
|
|
6364
6958
|
"hex": "0x8073656d",
|
|
@@ -6407,6 +7001,18 @@
|
|
|
6407
7001
|
"symbol": "XDS",
|
|
6408
7002
|
"name": "XDS"
|
|
6409
7003
|
},
|
|
7004
|
+
"20230101": {
|
|
7005
|
+
"index": "20230101",
|
|
7006
|
+
"hex": "0x8134afd5",
|
|
7007
|
+
"symbol": "ROH",
|
|
7008
|
+
"name": "Rooch"
|
|
7009
|
+
},
|
|
7010
|
+
"20240430": {
|
|
7011
|
+
"index": "20240430",
|
|
7012
|
+
"hex": "0x8134d82e",
|
|
7013
|
+
"symbol": "NLK",
|
|
7014
|
+
"name": "NuLinkCoin"
|
|
7015
|
+
},
|
|
6410
7016
|
"61717561": {
|
|
6411
7017
|
"index": "61717561",
|
|
6412
7018
|
"hex": "0x83adbc39",
|
|
@@ -6460,5 +7066,23 @@
|
|
|
6460
7066
|
"hex": "0xc655454c",
|
|
6461
7067
|
"symbol": "",
|
|
6462
7068
|
"name": "Fuel"
|
|
7069
|
+
},
|
|
7070
|
+
"1179993421": {
|
|
7071
|
+
"index": "1179993421",
|
|
7072
|
+
"hex": "0xc655454d",
|
|
7073
|
+
"symbol": "TTNC",
|
|
7074
|
+
"name": "TakeTitan"
|
|
7075
|
+
},
|
|
7076
|
+
"1179993431": {
|
|
7077
|
+
"index": "1179993431",
|
|
7078
|
+
"hex": "0xc6554557",
|
|
7079
|
+
"symbol": "MTGBP",
|
|
7080
|
+
"name": "MTGBP"
|
|
7081
|
+
},
|
|
7082
|
+
"1179993441": {
|
|
7083
|
+
"index": "1179993441",
|
|
7084
|
+
"hex": "0xc6554561",
|
|
7085
|
+
"symbol": "QFS",
|
|
7086
|
+
"name": "Qfs"
|
|
6463
7087
|
}
|
|
6464
7088
|
}
|