@metamask/slip44 3.1.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 +7 -1
- package/README.md +1 -1
- package/package.json +11 -10
- package/slip44.json +430 -16
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,11 @@ 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
|
+
|
|
9
14
|
## [3.1.0]
|
|
10
15
|
### Changed
|
|
11
16
|
- Update with latest data as of 2023-10-09 ([#101](https://github.com/MetaMask/slip44/pull/101))
|
|
@@ -42,7 +47,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
42
47
|
### Changed
|
|
43
48
|
- Initial release.
|
|
44
49
|
|
|
45
|
-
[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
|
|
46
52
|
[3.1.0]: https://github.com/MetaMask/slip44/compare/v3.0.0...v3.1.0
|
|
47
53
|
[3.0.0]: https://github.com/MetaMask/slip44/compare/v2.2.0...v3.0.0
|
|
48
54
|
[2.2.0]: https://github.com/MetaMask/slip44/compare/v2.1.0...v2.2.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",
|
|
@@ -39,20 +39,21 @@
|
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@lavamoat/allow-scripts": "^2.3.1",
|
|
41
41
|
"@metamask/auto-changelog": "^3.1.0",
|
|
42
|
-
"@metamask/eslint-config": "^
|
|
43
|
-
"@metamask/eslint-config-jest": "^
|
|
44
|
-
"@metamask/eslint-config-nodejs": "^
|
|
45
|
-
"@metamask/eslint-config-typescript": "^
|
|
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",
|
|
@@ -62,7 +63,7 @@
|
|
|
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",
|
|
@@ -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": {
|
|
@@ -3947,6 +3947,12 @@
|
|
|
3947
3947
|
"symbol": "YDA",
|
|
3948
3948
|
"name": "YadaCoin"
|
|
3949
3949
|
},
|
|
3950
|
+
"658": {
|
|
3951
|
+
"index": "658",
|
|
3952
|
+
"hex": "0x80000292",
|
|
3953
|
+
"symbol": "WHIVE",
|
|
3954
|
+
"name": "Whive"
|
|
3955
|
+
},
|
|
3950
3956
|
"659": {
|
|
3951
3957
|
"index": "659",
|
|
3952
3958
|
"hex": "0x80000293",
|
|
@@ -3965,12 +3971,30 @@
|
|
|
3965
3971
|
"symbol": "UNQ",
|
|
3966
3972
|
"name": "Unique"
|
|
3967
3973
|
},
|
|
3974
|
+
"662": {
|
|
3975
|
+
"index": "662",
|
|
3976
|
+
"hex": "0x80000296",
|
|
3977
|
+
"symbol": "ULM",
|
|
3978
|
+
"name": "UltonSmartchain"
|
|
3979
|
+
},
|
|
3968
3980
|
"663": {
|
|
3969
3981
|
"index": "663",
|
|
3970
3982
|
"hex": "0x80000297",
|
|
3971
3983
|
"symbol": "SFRX",
|
|
3972
3984
|
"name": "EtherGem Sapphire"
|
|
3973
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
|
+
},
|
|
3974
3998
|
"666": {
|
|
3975
3999
|
"index": "666",
|
|
3976
4000
|
"hex": "0x8000029a",
|
|
@@ -4079,6 +4103,12 @@
|
|
|
4079
4103
|
"symbol": "ALEO",
|
|
4080
4104
|
"name": "Aleo Network"
|
|
4081
4105
|
},
|
|
4106
|
+
"684": {
|
|
4107
|
+
"index": "684",
|
|
4108
|
+
"hex": "0x800002ac",
|
|
4109
|
+
"symbol": "HMS",
|
|
4110
|
+
"name": "Hemis"
|
|
4111
|
+
},
|
|
4082
4112
|
"685": {
|
|
4083
4113
|
"index": "685",
|
|
4084
4114
|
"hex": "0x800002ad",
|
|
@@ -4091,12 +4121,24 @@
|
|
|
4091
4121
|
"symbol": "KAR",
|
|
4092
4122
|
"name": "Karura Network"
|
|
4093
4123
|
},
|
|
4124
|
+
"687": {
|
|
4125
|
+
"index": "687",
|
|
4126
|
+
"hex": "0x800002af",
|
|
4127
|
+
"symbol": "FLON",
|
|
4128
|
+
"name": "FullOn Network"
|
|
4129
|
+
},
|
|
4094
4130
|
"688": {
|
|
4095
4131
|
"index": "688",
|
|
4096
4132
|
"hex": "0x800002b0",
|
|
4097
4133
|
"symbol": "CET",
|
|
4098
4134
|
"name": "CoinEx Chain"
|
|
4099
4135
|
},
|
|
4136
|
+
"689": {
|
|
4137
|
+
"index": "689",
|
|
4138
|
+
"hex": "0x800002b1",
|
|
4139
|
+
"symbol": "XLINK",
|
|
4140
|
+
"name": "XLink Chain"
|
|
4141
|
+
},
|
|
4100
4142
|
"690": {
|
|
4101
4143
|
"index": "690",
|
|
4102
4144
|
"hex": "0x800002b2",
|
|
@@ -4139,12 +4181,42 @@
|
|
|
4139
4181
|
"symbol": "CCC",
|
|
4140
4182
|
"name": "Commercio Cash Credit"
|
|
4141
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
|
+
},
|
|
4142
4208
|
"707": {
|
|
4143
4209
|
"index": "707",
|
|
4144
4210
|
"hex": "0x800002c3",
|
|
4145
4211
|
"symbol": "MCOIN",
|
|
4146
4212
|
"name": "Moneta Coin"
|
|
4147
4213
|
},
|
|
4214
|
+
"709": {
|
|
4215
|
+
"index": "709",
|
|
4216
|
+
"hex": "0x800002c5",
|
|
4217
|
+
"symbol": "AVAIL",
|
|
4218
|
+
"name": "Avail"
|
|
4219
|
+
},
|
|
4148
4220
|
"710": {
|
|
4149
4221
|
"index": "710",
|
|
4150
4222
|
"hex": "0x800002c6",
|
|
@@ -4211,12 +4283,24 @@
|
|
|
4211
4283
|
"symbol": "ABY",
|
|
4212
4284
|
"name": "Artbyte"
|
|
4213
4285
|
},
|
|
4286
|
+
"721": {
|
|
4287
|
+
"index": "721",
|
|
4288
|
+
"hex": "0x800002d1",
|
|
4289
|
+
"symbol": "PGX",
|
|
4290
|
+
"name": "Mirai Chain"
|
|
4291
|
+
},
|
|
4214
4292
|
"722": {
|
|
4215
4293
|
"index": "722",
|
|
4216
4294
|
"hex": "0x800002d2",
|
|
4217
4295
|
"symbol": "IL8P",
|
|
4218
4296
|
"name": "InfiniLooP"
|
|
4219
4297
|
},
|
|
4298
|
+
"723": {
|
|
4299
|
+
"index": "723",
|
|
4300
|
+
"hex": "0x800002d3",
|
|
4301
|
+
"symbol": "VOI",
|
|
4302
|
+
"name": "Voi"
|
|
4303
|
+
},
|
|
4220
4304
|
"724": {
|
|
4221
4305
|
"index": "724",
|
|
4222
4306
|
"hex": "0x800002d4",
|
|
@@ -4229,6 +4313,18 @@
|
|
|
4229
4313
|
"symbol": "MCX",
|
|
4230
4314
|
"name": "MultiCash"
|
|
4231
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
|
+
},
|
|
4232
4328
|
"730": {
|
|
4233
4329
|
"index": "730",
|
|
4234
4330
|
"hex": "0x800002da",
|
|
@@ -4301,6 +4397,12 @@
|
|
|
4301
4397
|
"symbol": "BR",
|
|
4302
4398
|
"name": "BR"
|
|
4303
4399
|
},
|
|
4400
|
+
"773": {
|
|
4401
|
+
"index": "773",
|
|
4402
|
+
"hex": "0x80000305",
|
|
4403
|
+
"symbol": "CSB",
|
|
4404
|
+
"name": "CosmoBliss"
|
|
4405
|
+
},
|
|
4304
4406
|
"775": {
|
|
4305
4407
|
"index": "775",
|
|
4306
4408
|
"hex": "0x80000307",
|
|
@@ -4373,6 +4475,18 @@
|
|
|
4373
4475
|
"symbol": "TAU",
|
|
4374
4476
|
"name": "Lamden"
|
|
4375
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
|
+
},
|
|
4376
4490
|
"799": {
|
|
4377
4491
|
"index": "799",
|
|
4378
4492
|
"hex": "0x8000031f",
|
|
@@ -4397,6 +4511,12 @@
|
|
|
4397
4511
|
"symbol": "CY",
|
|
4398
4512
|
"name": "Cyberyen"
|
|
4399
4513
|
},
|
|
4514
|
+
"803": {
|
|
4515
|
+
"index": "803",
|
|
4516
|
+
"hex": "0x80000323",
|
|
4517
|
+
"symbol": "RYME",
|
|
4518
|
+
"name": "Ryme Network"
|
|
4519
|
+
},
|
|
4400
4520
|
"804": {
|
|
4401
4521
|
"index": "804",
|
|
4402
4522
|
"hex": "0x80000324",
|
|
@@ -4433,6 +4553,12 @@
|
|
|
4433
4553
|
"symbol": "MEER",
|
|
4434
4554
|
"name": "Qitmeer"
|
|
4435
4555
|
},
|
|
4556
|
+
"816": {
|
|
4557
|
+
"index": "816",
|
|
4558
|
+
"hex": "0x80000330",
|
|
4559
|
+
"symbol": "FSC",
|
|
4560
|
+
"name": "FSC"
|
|
4561
|
+
},
|
|
4436
4562
|
"818": {
|
|
4437
4563
|
"index": "818",
|
|
4438
4564
|
"hex": "0x80000332",
|
|
@@ -4457,6 +4583,12 @@
|
|
|
4457
4583
|
"symbol": "BDB",
|
|
4458
4584
|
"name": "BigchainDB"
|
|
4459
4585
|
},
|
|
4586
|
+
"824": {
|
|
4587
|
+
"index": "824",
|
|
4588
|
+
"hex": "0x80000338",
|
|
4589
|
+
"symbol": "RBNT",
|
|
4590
|
+
"name": "Redbelly Network"
|
|
4591
|
+
},
|
|
4460
4592
|
"827": {
|
|
4461
4593
|
"index": "827",
|
|
4462
4594
|
"hex": "0x8000033b",
|
|
@@ -4595,6 +4727,12 @@
|
|
|
4595
4727
|
"symbol": "FLS",
|
|
4596
4728
|
"name": "Flits"
|
|
4597
4729
|
},
|
|
4730
|
+
"851": {
|
|
4731
|
+
"index": "851",
|
|
4732
|
+
"hex": "0x80000353",
|
|
4733
|
+
"symbol": "FRECO",
|
|
4734
|
+
"name": "Freco"
|
|
4735
|
+
},
|
|
4598
4736
|
"852": {
|
|
4599
4737
|
"index": "852",
|
|
4600
4738
|
"hex": "0x80000354",
|
|
@@ -4775,12 +4913,36 @@
|
|
|
4775
4913
|
"symbol": "RUNE",
|
|
4776
4914
|
"name": "THORChain (RUNE)"
|
|
4777
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
|
+
},
|
|
4778
4928
|
"941": {
|
|
4779
4929
|
"index": "941",
|
|
4780
4930
|
"hex": "0x800003ad",
|
|
4781
4931
|
"symbol": "---",
|
|
4782
4932
|
"name": "reserved"
|
|
4783
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
|
+
},
|
|
4784
4946
|
"945": {
|
|
4785
4947
|
"index": "945",
|
|
4786
4948
|
"hex": "0x800003b1",
|
|
@@ -4817,6 +4979,12 @@
|
|
|
4817
4979
|
"symbol": "UNW",
|
|
4818
4980
|
"name": "UNW"
|
|
4819
4981
|
},
|
|
4982
|
+
"969": {
|
|
4983
|
+
"index": "969",
|
|
4984
|
+
"hex": "0x800003c9",
|
|
4985
|
+
"symbol": "QI",
|
|
4986
|
+
"name": "Quai Network"
|
|
4987
|
+
},
|
|
4820
4988
|
"970": {
|
|
4821
4989
|
"index": "970",
|
|
4822
4990
|
"hex": "0x800003ca",
|
|
@@ -4991,12 +5159,30 @@
|
|
|
4991
5159
|
"symbol": "ELV",
|
|
4992
5160
|
"name": "Eluvio"
|
|
4993
5161
|
},
|
|
5162
|
+
"1012": {
|
|
5163
|
+
"index": "1012",
|
|
5164
|
+
"hex": "0x800003f4",
|
|
5165
|
+
"symbol": "JOC",
|
|
5166
|
+
"name": "Japan Open Chain"
|
|
5167
|
+
},
|
|
4994
5168
|
"1013": {
|
|
4995
5169
|
"index": "1013",
|
|
4996
5170
|
"hex": "0x800003f5",
|
|
4997
5171
|
"symbol": "BIC",
|
|
4998
5172
|
"name": "Beincrypto"
|
|
4999
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
|
+
},
|
|
5000
5186
|
"1020": {
|
|
5001
5187
|
"index": "1020",
|
|
5002
5188
|
"hex": "0x800003fc",
|
|
@@ -5063,6 +5249,12 @@
|
|
|
5063
5249
|
"symbol": "BBC",
|
|
5064
5250
|
"name": "Big Bitcoin"
|
|
5065
5251
|
},
|
|
5252
|
+
"1116": {
|
|
5253
|
+
"index": "1116",
|
|
5254
|
+
"hex": "0x8000045c",
|
|
5255
|
+
"symbol": "CORE",
|
|
5256
|
+
"name": "Core"
|
|
5257
|
+
},
|
|
5066
5258
|
"1120": {
|
|
5067
5259
|
"index": "1120",
|
|
5068
5260
|
"hex": "0x80000460",
|
|
@@ -5165,12 +5357,24 @@
|
|
|
5165
5357
|
"symbol": "WEI",
|
|
5166
5358
|
"name": "WEI"
|
|
5167
5359
|
},
|
|
5360
|
+
"1312": {
|
|
5361
|
+
"index": "1312",
|
|
5362
|
+
"hex": "0x80000520",
|
|
5363
|
+
"symbol": "BITS",
|
|
5364
|
+
"name": "Entropy"
|
|
5365
|
+
},
|
|
5168
5366
|
"1337": {
|
|
5169
5367
|
"index": "1337",
|
|
5170
5368
|
"hex": "0x80000539",
|
|
5171
5369
|
"symbol": "DFC",
|
|
5172
5370
|
"name": "Defcoin"
|
|
5173
5371
|
},
|
|
5372
|
+
"1338": {
|
|
5373
|
+
"index": "1338",
|
|
5374
|
+
"hex": "0x8000053a",
|
|
5375
|
+
"symbol": "IRON",
|
|
5376
|
+
"name": "Iron Fish"
|
|
5377
|
+
},
|
|
5174
5378
|
"1348": {
|
|
5175
5379
|
"index": "1348",
|
|
5176
5380
|
"hex": "0x80000544",
|
|
@@ -5213,6 +5417,12 @@
|
|
|
5213
5417
|
"symbol": "BEAM",
|
|
5214
5418
|
"name": "Beam"
|
|
5215
5419
|
},
|
|
5420
|
+
"1551": {
|
|
5421
|
+
"index": "1551",
|
|
5422
|
+
"hex": "0x8000060f",
|
|
5423
|
+
"symbol": "SDK",
|
|
5424
|
+
"name": "Sovereign SDK"
|
|
5425
|
+
},
|
|
5216
5426
|
"1555": {
|
|
5217
5427
|
"index": "1555",
|
|
5218
5428
|
"hex": "0x80000613",
|
|
@@ -5333,12 +5543,24 @@
|
|
|
5333
5543
|
"symbol": "XEC",
|
|
5334
5544
|
"name": "eCash token"
|
|
5335
5545
|
},
|
|
5546
|
+
"1900": {
|
|
5547
|
+
"index": "1900",
|
|
5548
|
+
"hex": "0x8000076c",
|
|
5549
|
+
"symbol": "XNA",
|
|
5550
|
+
"name": "Neurai"
|
|
5551
|
+
},
|
|
5336
5552
|
"1901": {
|
|
5337
5553
|
"index": "1901",
|
|
5338
5554
|
"hex": "0x8000076d",
|
|
5339
5555
|
"symbol": "CLC",
|
|
5340
5556
|
"name": "Classica"
|
|
5341
5557
|
},
|
|
5558
|
+
"1907": {
|
|
5559
|
+
"index": "1907",
|
|
5560
|
+
"hex": "0x80000773",
|
|
5561
|
+
"symbol": "BITCI",
|
|
5562
|
+
"name": "Bitcicoin"
|
|
5563
|
+
},
|
|
5342
5564
|
"1919": {
|
|
5343
5565
|
"index": "1919",
|
|
5344
5566
|
"hex": "0x8000077f",
|
|
@@ -5489,12 +5711,24 @@
|
|
|
5489
5711
|
"symbol": "XHT",
|
|
5490
5712
|
"name": "Xinghuo Token"
|
|
5491
5713
|
},
|
|
5714
|
+
"2023": {
|
|
5715
|
+
"index": "2023",
|
|
5716
|
+
"hex": "0x800007e7",
|
|
5717
|
+
"symbol": "COC",
|
|
5718
|
+
"name": "Chat On Chain"
|
|
5719
|
+
},
|
|
5492
5720
|
"2024": {
|
|
5493
5721
|
"index": "2024",
|
|
5494
5722
|
"hex": "0x800007e8",
|
|
5495
5723
|
"symbol": "USBC",
|
|
5496
5724
|
"name": "Universal Ledger USBC"
|
|
5497
5725
|
},
|
|
5726
|
+
"2025": {
|
|
5727
|
+
"index": "2025",
|
|
5728
|
+
"hex": "0x800007e9",
|
|
5729
|
+
"symbol": "ROCK",
|
|
5730
|
+
"name": "Zenrock Labs"
|
|
5731
|
+
},
|
|
5498
5732
|
"2046": {
|
|
5499
5733
|
"index": "2046",
|
|
5500
5734
|
"hex": "0x800007fe",
|
|
@@ -5549,12 +5783,6 @@
|
|
|
5549
5783
|
"symbol": "XRG",
|
|
5550
5784
|
"name": "Ergon"
|
|
5551
5785
|
},
|
|
5552
|
-
"2182": {
|
|
5553
|
-
"index": "2182",
|
|
5554
|
-
"hex": "0x80000888",
|
|
5555
|
-
"symbol": "CHZ",
|
|
5556
|
-
"name": "Chiliz"
|
|
5557
|
-
},
|
|
5558
5786
|
"2199": {
|
|
5559
5787
|
"index": "2199",
|
|
5560
5788
|
"hex": "0x80000897",
|
|
@@ -5633,6 +5861,12 @@
|
|
|
5633
5861
|
"symbol": "AOA",
|
|
5634
5862
|
"name": "Aurora"
|
|
5635
5863
|
},
|
|
5864
|
+
"2686": {
|
|
5865
|
+
"index": "2686",
|
|
5866
|
+
"hex": "0x80000a7e",
|
|
5867
|
+
"symbol": "AIPG",
|
|
5868
|
+
"name": "AIPowerGrid"
|
|
5869
|
+
},
|
|
5636
5870
|
"2718": {
|
|
5637
5871
|
"index": "2718",
|
|
5638
5872
|
"hex": "0x80000a9e",
|
|
@@ -5651,6 +5885,12 @@
|
|
|
5651
5885
|
"symbol": "BND",
|
|
5652
5886
|
"name": "Blocknode"
|
|
5653
5887
|
},
|
|
5888
|
+
"3000": {
|
|
5889
|
+
"index": "3000",
|
|
5890
|
+
"hex": "0x80000bb8",
|
|
5891
|
+
"symbol": "SM",
|
|
5892
|
+
"name": "Stealth Message"
|
|
5893
|
+
},
|
|
5654
5894
|
"3003": {
|
|
5655
5895
|
"index": "3003",
|
|
5656
5896
|
"hex": "0x80000bbb",
|
|
@@ -5681,6 +5921,12 @@
|
|
|
5681
5921
|
"symbol": "SXP",
|
|
5682
5922
|
"name": "Solar"
|
|
5683
5923
|
},
|
|
5924
|
+
"3338": {
|
|
5925
|
+
"index": "3338",
|
|
5926
|
+
"hex": "0x80000d0a",
|
|
5927
|
+
"symbol": "PEAQ",
|
|
5928
|
+
"name": "peaq"
|
|
5929
|
+
},
|
|
5684
5930
|
"3377": {
|
|
5685
5931
|
"index": "3377",
|
|
5686
5932
|
"hex": "0x80000d31",
|
|
@@ -5699,6 +5945,18 @@
|
|
|
5699
5945
|
"symbol": "SEQ",
|
|
5700
5946
|
"name": "Sequence"
|
|
5701
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
|
+
},
|
|
5702
5960
|
"3552": {
|
|
5703
5961
|
"index": "3552",
|
|
5704
5962
|
"hex": "0x80000de0",
|
|
@@ -5723,6 +5981,12 @@
|
|
|
5723
5981
|
"symbol": "MPC",
|
|
5724
5982
|
"name": "Partisia Blockchain"
|
|
5725
5983
|
},
|
|
5984
|
+
"3840": {
|
|
5985
|
+
"index": "3840",
|
|
5986
|
+
"hex": "0x80000f00",
|
|
5987
|
+
"symbol": "RED",
|
|
5988
|
+
"name": "ReDeFi RED"
|
|
5989
|
+
},
|
|
5726
5990
|
"4040": {
|
|
5727
5991
|
"index": "4040",
|
|
5728
5992
|
"hex": "0x80000fc8",
|
|
@@ -5771,6 +6035,18 @@
|
|
|
5771
6035
|
"symbol": "XVM",
|
|
5772
6036
|
"name": "Venidium"
|
|
5773
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
|
+
},
|
|
5774
6050
|
"5006": {
|
|
5775
6051
|
"index": "5006",
|
|
5776
6052
|
"hex": "0x8000138e",
|
|
@@ -5825,18 +6101,36 @@
|
|
|
5825
6101
|
"symbol": "SLU",
|
|
5826
6102
|
"name": "SILUBIUM"
|
|
5827
6103
|
},
|
|
6104
|
+
"5995": {
|
|
6105
|
+
"index": "5995",
|
|
6106
|
+
"hex": "0x8000176B",
|
|
6107
|
+
"symbol": "DUSK",
|
|
6108
|
+
"name": "Dusk Network"
|
|
6109
|
+
},
|
|
5828
6110
|
"6060": {
|
|
5829
6111
|
"index": "6060",
|
|
5830
6112
|
"hex": "0x800017ac",
|
|
5831
6113
|
"symbol": "GO",
|
|
5832
6114
|
"name": "GoChain GO"
|
|
5833
6115
|
},
|
|
6116
|
+
"6144": {
|
|
6117
|
+
"index": "6144",
|
|
6118
|
+
"hex": "0x80001800",
|
|
6119
|
+
"symbol": "DTS",
|
|
6120
|
+
"name": "Datos"
|
|
6121
|
+
},
|
|
5834
6122
|
"6174": {
|
|
5835
6123
|
"index": "6174",
|
|
5836
6124
|
"hex": "0x8000181e",
|
|
5837
6125
|
"symbol": "MOI",
|
|
5838
6126
|
"name": "My Own Internet"
|
|
5839
6127
|
},
|
|
6128
|
+
"6278": {
|
|
6129
|
+
"index": "6278",
|
|
6130
|
+
"hex": "0x80001886",
|
|
6131
|
+
"symbol": "STEAMX",
|
|
6132
|
+
"name": "Rails Network Mainnet"
|
|
6133
|
+
},
|
|
5840
6134
|
"6532": {
|
|
5841
6135
|
"index": "6532",
|
|
5842
6136
|
"hex": "0x80001984",
|
|
@@ -5873,6 +6167,12 @@
|
|
|
5873
6167
|
"symbol": "ROGER",
|
|
5874
6168
|
"name": "TheHolyrogerCoin"
|
|
5875
6169
|
},
|
|
6170
|
+
"7000": {
|
|
6171
|
+
"index": "7000",
|
|
6172
|
+
"hex": "0x80001b58",
|
|
6173
|
+
"symbol": "ZETA",
|
|
6174
|
+
"name": "ZetaChain"
|
|
6175
|
+
},
|
|
5876
6176
|
"7027": {
|
|
5877
6177
|
"index": "7027",
|
|
5878
6178
|
"hex": "0x80001b73",
|
|
@@ -5921,6 +6221,12 @@
|
|
|
5921
6221
|
"symbol": "BTV",
|
|
5922
6222
|
"name": "Bitvote"
|
|
5923
6223
|
},
|
|
6224
|
+
"7779": {
|
|
6225
|
+
"index": "7779",
|
|
6226
|
+
"hex": "0x80001e63",
|
|
6227
|
+
"symbol": "CPV",
|
|
6228
|
+
"name": "Compverse"
|
|
6229
|
+
},
|
|
5924
6230
|
"8000": {
|
|
5925
6231
|
"index": "8000",
|
|
5926
6232
|
"hex": "0x80001f40",
|
|
@@ -5975,6 +6281,12 @@
|
|
|
5975
6281
|
"symbol": "PLMNT",
|
|
5976
6282
|
"name": "Planetmint"
|
|
5977
6283
|
},
|
|
6284
|
+
"8732": {
|
|
6285
|
+
"index": "8732",
|
|
6286
|
+
"hex": "0x8000221c",
|
|
6287
|
+
"symbol": "BLN",
|
|
6288
|
+
"name": "Bullions"
|
|
6289
|
+
},
|
|
5978
6290
|
"8866": {
|
|
5979
6291
|
"index": "8866",
|
|
5980
6292
|
"hex": "0x800022a2",
|
|
@@ -6083,6 +6395,12 @@
|
|
|
6083
6395
|
"symbol": "FO",
|
|
6084
6396
|
"name": "FIBOS"
|
|
6085
6397
|
},
|
|
6398
|
+
"10001": {
|
|
6399
|
+
"index": "10001",
|
|
6400
|
+
"hex": "0x80002711",
|
|
6401
|
+
"symbol": "SPACE",
|
|
6402
|
+
"name": "Space"
|
|
6403
|
+
},
|
|
6086
6404
|
"10111": {
|
|
6087
6405
|
"index": "10111",
|
|
6088
6406
|
"hex": "0x8000277f",
|
|
@@ -6095,6 +6413,12 @@
|
|
|
6095
6413
|
"symbol": "RTM",
|
|
6096
6414
|
"name": "Raptoreum"
|
|
6097
6415
|
},
|
|
6416
|
+
"10242": {
|
|
6417
|
+
"index": "10242",
|
|
6418
|
+
"hex": "0x80002802",
|
|
6419
|
+
"symbol": "AA",
|
|
6420
|
+
"name": "Arthera"
|
|
6421
|
+
},
|
|
6098
6422
|
"10291": {
|
|
6099
6423
|
"index": "10291",
|
|
6100
6424
|
"hex": "0x80002833",
|
|
@@ -6155,6 +6479,12 @@
|
|
|
6155
6479
|
"symbol": "YCC",
|
|
6156
6480
|
"name": "Yuan Chain Coin"
|
|
6157
6481
|
},
|
|
6482
|
+
"13381": {
|
|
6483
|
+
"index": "13381",
|
|
6484
|
+
"hex": "0x80003445",
|
|
6485
|
+
"symbol": "PHX",
|
|
6486
|
+
"name": "Phoenix"
|
|
6487
|
+
},
|
|
6158
6488
|
"14001": {
|
|
6159
6489
|
"index": "14001",
|
|
6160
6490
|
"hex": "0x800036b1",
|
|
@@ -6203,6 +6533,12 @@
|
|
|
6203
6533
|
"symbol": "RITO",
|
|
6204
6534
|
"name": "Ritocoin"
|
|
6205
6535
|
},
|
|
6536
|
+
"19788": {
|
|
6537
|
+
"index": "19788",
|
|
6538
|
+
"hex": "0x80004d4c",
|
|
6539
|
+
"symbol": "ML",
|
|
6540
|
+
"name": "Mintlayer"
|
|
6541
|
+
},
|
|
6206
6542
|
"20036": {
|
|
6207
6543
|
"index": "20036",
|
|
6208
6544
|
"hex": "0x80004e44",
|
|
@@ -6215,6 +6551,12 @@
|
|
|
6215
6551
|
"symbol": "C4EI",
|
|
6216
6552
|
"name": "c4ei"
|
|
6217
6553
|
},
|
|
6554
|
+
"21337": {
|
|
6555
|
+
"index": "21337",
|
|
6556
|
+
"hex": "0x80005359",
|
|
6557
|
+
"symbol": "XAH",
|
|
6558
|
+
"name": "Xahau"
|
|
6559
|
+
},
|
|
6218
6560
|
"21888": {
|
|
6219
6561
|
"index": "21888",
|
|
6220
6562
|
"hex": "0x80005580",
|
|
@@ -6245,6 +6587,12 @@
|
|
|
6245
6587
|
"symbol": "CHX",
|
|
6246
6588
|
"name": "Own"
|
|
6247
6589
|
},
|
|
6590
|
+
"26417": {
|
|
6591
|
+
"index": "26417",
|
|
6592
|
+
"hex": "0x80006731",
|
|
6593
|
+
"symbol": "G1",
|
|
6594
|
+
"name": "Ğ1"
|
|
6595
|
+
},
|
|
6248
6596
|
"29223": {
|
|
6249
6597
|
"index": "29223",
|
|
6250
6598
|
"hex": "0x80007227",
|
|
@@ -6311,6 +6659,12 @@
|
|
|
6311
6659
|
"symbol": "AXIV",
|
|
6312
6660
|
"name": "AXIV"
|
|
6313
6661
|
},
|
|
6662
|
+
"47803": {
|
|
6663
|
+
"index": "47803",
|
|
6664
|
+
"hex": "0x8000babb",
|
|
6665
|
+
"symbol": "BAX",
|
|
6666
|
+
"name": "BAX"
|
|
6667
|
+
},
|
|
6314
6668
|
"49262": {
|
|
6315
6669
|
"index": "49262",
|
|
6316
6670
|
"hex": "0x8000c06e",
|
|
@@ -6359,6 +6713,12 @@
|
|
|
6359
6713
|
"symbol": "ZYN",
|
|
6360
6714
|
"name": "Wethio"
|
|
6361
6715
|
},
|
|
6716
|
+
"83293": {
|
|
6717
|
+
"index": "83293",
|
|
6718
|
+
"hex": "0x8001455d",
|
|
6719
|
+
"symbol": "QUBIC",
|
|
6720
|
+
"name": "Qubic"
|
|
6721
|
+
},
|
|
6362
6722
|
"88888": {
|
|
6363
6723
|
"index": "88888",
|
|
6364
6724
|
"hex": "0x80015b38",
|
|
@@ -6383,6 +6743,12 @@
|
|
|
6383
6743
|
"symbol": "STC",
|
|
6384
6744
|
"name": "Starcoin"
|
|
6385
6745
|
},
|
|
6746
|
+
"104109": {
|
|
6747
|
+
"index": "104109",
|
|
6748
|
+
"hex": "0x800196ad",
|
|
6749
|
+
"symbol": "",
|
|
6750
|
+
"name": "Seed Hypermedia"
|
|
6751
|
+
},
|
|
6386
6752
|
"105105": {
|
|
6387
6753
|
"index": "105105",
|
|
6388
6754
|
"hex": "0x80019a91",
|
|
@@ -6395,6 +6761,12 @@
|
|
|
6395
6761
|
"symbol": "KAS",
|
|
6396
6762
|
"name": "Kaspa"
|
|
6397
6763
|
},
|
|
6764
|
+
"121337": {
|
|
6765
|
+
"index": "121337",
|
|
6766
|
+
"hex": "0x8001d9f9",
|
|
6767
|
+
"symbol": "KLS",
|
|
6768
|
+
"name": "Karlsen"
|
|
6769
|
+
},
|
|
6398
6770
|
"161803": {
|
|
6399
6771
|
"index": "161803",
|
|
6400
6772
|
"hex": "0x8002780b",
|
|
@@ -6407,11 +6779,11 @@
|
|
|
6407
6779
|
"symbol": "AKA",
|
|
6408
6780
|
"name": "Akroma"
|
|
6409
6781
|
},
|
|
6410
|
-
"
|
|
6411
|
-
"index": "
|
|
6412
|
-
"hex": "
|
|
6413
|
-
"symbol": "
|
|
6414
|
-
"name": "
|
|
6782
|
+
"224433": {
|
|
6783
|
+
"index": "224433",
|
|
6784
|
+
"hex": "0x80036cb1",
|
|
6785
|
+
"symbol": "CONET",
|
|
6786
|
+
"name": "CONET Holesky Network"
|
|
6415
6787
|
},
|
|
6416
6788
|
"246529": {
|
|
6417
6789
|
"index": "246529",
|
|
@@ -6461,6 +6833,12 @@
|
|
|
6461
6833
|
"symbol": "VITE",
|
|
6462
6834
|
"name": "Vite"
|
|
6463
6835
|
},
|
|
6836
|
+
"696365": {
|
|
6837
|
+
"index": "696365",
|
|
6838
|
+
"hex": "0x800b3206",
|
|
6839
|
+
"symbol": "ICE",
|
|
6840
|
+
"name": "Ice Network"
|
|
6841
|
+
},
|
|
6464
6842
|
"888888": {
|
|
6465
6843
|
"index": "888888",
|
|
6466
6844
|
"hex": "0x800d9038",
|
|
@@ -6569,6 +6947,12 @@
|
|
|
6569
6947
|
"symbol": "CRM",
|
|
6570
6948
|
"name": "Creamcoin"
|
|
6571
6949
|
},
|
|
6950
|
+
"7171666": {
|
|
6951
|
+
"index": "7171666",
|
|
6952
|
+
"hex": "0x806d6e52",
|
|
6953
|
+
"symbol": "BROCK",
|
|
6954
|
+
"name": "Bitrock"
|
|
6955
|
+
},
|
|
6572
6956
|
"7562605": {
|
|
6573
6957
|
"index": "7562605",
|
|
6574
6958
|
"hex": "0x8073656d",
|
|
@@ -6617,6 +7001,18 @@
|
|
|
6617
7001
|
"symbol": "XDS",
|
|
6618
7002
|
"name": "XDS"
|
|
6619
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
|
+
},
|
|
6620
7016
|
"61717561": {
|
|
6621
7017
|
"index": "61717561",
|
|
6622
7018
|
"hex": "0x83adbc39",
|
|
@@ -6670,5 +7066,23 @@
|
|
|
6670
7066
|
"hex": "0xc655454c",
|
|
6671
7067
|
"symbol": "",
|
|
6672
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"
|
|
6673
7087
|
}
|
|
6674
7088
|
}
|