-
Notifications
You must be signed in to change notification settings - Fork 302
Expand file tree
/
Copy pathbase.ts
More file actions
3947 lines (3788 loc) · 97.6 KB
/
base.ts
File metadata and controls
3947 lines (3788 loc) · 97.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import {
ConflictingCoinFeaturesError,
DisallowedCoinFeatureError,
InvalidIdError,
MissingRequiredCoinFeatureError,
} from './errors';
import { BaseNetwork } from './networks';
export enum CoinKind {
CRYPTO = 'crypto',
FIAT = 'fiat',
}
/**
* The coin family links related variants of a single coin together.
*
* Typically, each coin will have a testnet and mainnet variant,
* and these will both have the same coin family.
*
* For example, the coins `btc` and `tbtc` both belong to the same family, `btc`.
*/
export enum CoinFamily {
ADA = 'ada',
APECHAIN = 'apechain',
ALGO = 'algo',
APT = 'apt',
ARBETH = 'arbeth',
ASI = 'asi',
ATOM = 'atom',
AVAXC = 'avaxc',
AVAXP = 'avaxp',
BASEETH = 'baseeth', // Base Ethereum
BABY = 'baby',
BCH = 'bch',
BCHA = 'bcha',
BERA = 'bera',
BLD = 'bld', // Agoric
BSC = 'bsc',
BSV = 'bsv',
BTC = 'btc',
BTG = 'btg',
CANTON = 'canton',
CELO = 'celo',
CHILIZ = 'chiliz', // Chiliz Chain
CODEXETH = 'codexeth', // Codex Ethereum L2
COREDAO = 'coredao',
COREUM = 'coreum',
CRONOS = 'cronos',
CSPR = 'cspr',
DASH = 'dash',
DOGE = 'doge',
DOGEOS = 'dogeos',
DOT = 'dot',
DYDX = 'dydx',
EOS = 'eos',
ETC = 'etc',
ETH = 'eth',
ETH2 = 'eth2',
ETHW = 'ethw',
FETCHAI = 'fetchai',
FIAT = 'fiat',
FLOW = 'flow',
FANTOM = 'fantom', // Fantom
FLR = 'flr',
FLRP = 'flrp',
H = 'h', // Humanity Protocol
HASH = 'hash', // Provenance
HBAR = 'hbar',
HBAREVM = 'hbarevm', // Hedera EVM coin
HEMIETH = 'hemieth', // Hemi Ethereum L2
HOODETH = 'hoodeth', // Robinhood Chain
HPPETH = 'hppeth', // House Party Protocol
ICP = 'icp',
INITIA = 'initia',
INJECTIVE = 'injective',
IOTA = 'iota',
IRYS = 'irys',
ISLM = 'islm',
JOVAYETH = 'jovayeth',
KAIA = 'kaia',
KAVACOSMOS = 'kavacosmos',
KAVAEVM = 'kavaevm',
LNBTC = 'lnbtc',
LTC = 'ltc',
MANTLE = 'mantle',
MANTRA = 'mantra',
MEGAETH = 'megaeth',
MON = 'mon',
XPL = 'xpl', // Plasma Network
POLYGON = 'polygon',
POLYX = 'polyx',
PHRS = 'phrs',
CTC = 'ctc',
HYPEEVM = 'hypeevm',
HYPERLIQUID = 'hyperliquid', // HyperCore L1
NEAR = 'near',
OAS = 'oas',
OFC = 'ofc',
OG = 'og',
OPBNB = 'opbnb', // opBNB Chain
OKBXLAYER = 'okbxlayer',
OPETH = 'opeth',
OSMO = 'osmo',
PLUME = 'plume',
RBTC = 'rbtc',
SGB = 'sgb',
SEI = 'sei',
SEIEVM = 'seievm',
SOL = 'sol',
SONIC = 'sonic',
SONEIUM = 'soneium',
STT = 'stt',
SUI = 'sui',
STX = 'stx',
SUSD = 'susd',
TAO = 'tao',
THOR = 'thor',
TIA = 'tia', // Celestia
TON = 'ton',
TRX = 'trx',
USDT0 = 'usdt0', // Stable EVM L1
VET = 'vet',
WORLD = 'world',
WEMIX = 'wemix',
XDC = 'xdc',
XLM = 'xlm',
XRP = 'xrp',
XTZ = 'xtz',
XTZEVM = 'xtzevm', // Etherlink (XTZ EVM L2)
ZEC = 'zec',
ZETA = 'zeta',
ZKETH = 'zketh',
ZKSYNCERA = 'zksyncera', // ZkSync Era
LINEAETH = 'lineaeth',
IP = 'ip', // Story Chain
SOMI = 'somi', // Somnia Chain
FLUENTETH = 'fluenteth',
MORPH = 'morph',
MORPHETH = 'morpheth',
ARCUSDC = 'arcusdc', // ARC network
TEMPO = 'tempo', // Tempo Network
UNIETH = 'unieth', // Unichain
}
/**
* Coin features are yes or no questions about what a coin requires or is capable of.
*
* This allows coin-agnostic handling of coin-specific features. This is designed
* to replace checking the coin name against a whitelist of supported coins
* before executing some coin-specific logic, and instead allows one to check if a
* coin supports the coin-specific feature that the logic implements.
*/
export enum CoinFeature {
/*
* This coin supports creating wallets on different networks with the same keys. Only works for TSS account-base coins
*/
EVM_WALLET = 'evm-wallet',
/*
* This coin supports creating an EVM transaction using Metamask Institutional (MMI).
*/
METAMASK_INSTITUTIONAL = 'metamask-institutional',
/*
* The valueless transfer feature indicates that it is valid to send a transaction which moves zero units of the coin.
*
* An example is Ethereum, which uses zero value transactions to trigger contract calls.
*/
VALUELESS_TRANSFER = 'valueless-transfer',
/*
* Transaction data means there can be arbitrary data encoded in a transaction.
*
* Ethereum contract call data is an example.
*/
TRANSACTION_DATA = 'transaction-data',
/*
* Some coins have a higher precision range than IEEE 754 doubles, which are used to represent numbers in javascript.
*
* For these coins, we must use an arbitrary precision arithmetic library, and this feature indicates this requirement.
*/
REQUIRES_BIG_NUMBER = 'requires-big-number',
/*
* RMG requires all wallets to have a backup key held by a BitGo approved Key Recovery Service (KRS)
*/
REQUIRES_KRS_BACKUP_KEY = 'requires-krs-backup-key',
/*
* For customers which are not on a postpaid contract, we add an extra output to transactions which pays BitGo a fee.
*
* This fee is known as the "pay-as-you-go fee", or just "paygo" for short.
*
* Some coins are unable to create transactions with more than one output, so paygo outputs are not possible for these coins.
*/
PAYGO = 'paygo',
/*
* Does this coin align with the unspent model?
*
* These are typically Bitcoin and forks of it, such as Litecoin and Bitcoin Cash.
*/
UNSPENT_MODEL = 'unspent-model',
/*
* Does this coin align with the Lightning Network model?
*
* These are typically Lightning Network on unspent model coins, such as BTC and LBTC.
*/
LIGHTNING_MODEL = 'lightning-model',
/*
* Does this coin align with the account model?
*
* Examples of this coin type are Ethereum, XRP, and Stellar
*/
ACCOUNT_MODEL = 'account-model',
/*
* Does this coin support child-pays-for-parent transactions?
*
* These are special types of transactions which can accelerate the confirmation time
* of another transaction which is stuck in the mempool due to low fees.
*
* This is only possible for coins which follow the unspent model (UTXO coins).
*/
CHILD_PAYS_FOR_PARENT = 'cpfp',
/*
* Does this coin support tokens? These are distinct assets from the underlying coin, but run on the same network.
*
* For example, Ethereum's ERC 20 token standard means that it supports tokens, so it shall have this feature.
*/
SUPPORTS_TOKENS = 'supports-tokens',
/*
* Are fees for transactions of this coin paid for by the Enterprise (eg, Enterprise gas tank)?
*/
ENTERPRISE_PAYS_FEES = 'enterprise-pays-fees',
/*
* This coin requires that accounts keep a minimum balance as reserve
*/
REQUIRES_RESERVE = 'requires-reserve',
/**
* @deprecated This property is no longer valid. Please select the following custody option based on the BitGo org:
* * CUSTODY_BITGO_TRUST
* * CUSTODY_BITGO_NEW_YORK
* * CUSTODY_BITGO_GERMANY
* * CUSTODY_BITGO_SWITZERLAND
*/
CUSTODY = 'custody',
/*
This coin uses TSS for key creation and signing
*/
TSS = 'tss',
/*
* This coin supports staking
*/
STAKING = 'staking',
/*
* This coin supports liquid staking
*/
LIQUID_STAKING = 'liquid-staking',
/**
* This coin is deprecated
*/
DEPRECATED = 'deprecated',
/**
* This coin is a dummy object meant to be a placeholder for an unsupported token
*/
GENERIC_TOKEN = 'genericToken',
/*
* This coin supports custody in BitGo Trust SD entities
*/
CUSTODY_BITGO_TRUST = 'custody-bitgo-trust',
/*
* This coin supports custody in BitGo New York entities
*/
CUSTODY_BITGO_NEW_YORK = 'custody-bitgo-new-york',
/*
* This coin supports custody in BitGo Germany entities
*/
CUSTODY_BITGO_GERMANY = 'custody-bitgo-germany',
/*
* This coin supports custody in BitGo Switzerland entities
*/
CUSTODY_BITGO_SWITZERLAND = 'custody-bitgo-switzerland',
/*
* This coin supports custody in BitGo Switzerland entities
*/
CUSTODY_BITGO_FRANKFURT = 'custody-bitgo-frankfurt',
/*
* This coin supports custody in BitGo Singapore entities
*/
CUSTODY_BITGO_SINGAPORE = 'custody-bitgo-singapore',
/*
* This coin supports custody in BitGo Sister Trust 1 entities
*/
CUSTODY_BITGO_SISTER_TRUST_ONE = 'custody-bitgo-sister-trust-one',
/**
* This coin supports custody in BitGo Korea entities
*/
CUSTODY_BITGO_KOREA = 'custody-bitgo-korea',
/**
* This coin supports custody in BitGo Europe ApS entities
*/
CUSTODY_BITGO_EUROPE_APS = 'custody-bitgo-europe-aps',
/**
* This coin supports custody in BitGo MENA FZE entities
*/
CUSTODY_BITGO_MENA_FZE = 'custody-bitgo-mena-fze',
/**
* This coin supports custody in BitGo Custody MENA FZE entities
*/
CUSTODY_BITGO_CUSTODY_MENA_FZE = 'custody-bitgo-custody-mena-fze',
/**
* This coin supports custody in BitGo India entities
*/
CUSTODY_BITGO_INDIA = 'custody-bitgo-india',
/*
* This coin has transactions that expire after a certain amount of time.
*/
EXPIRING_TRANSACTIONS = 'expiring-transactions',
/**
* This coin supports cold wallets that use a multisig signing protocol
*/
MULTISIG_COLD = 'multisig-cold',
/**
* This coin supports cold wallets that use a TSS signing protocol
*/
TSS_COLD = 'tss-cold',
/**
* This coin uses sha256 hash function for ECDSA TSS signatures
*/
SHA256_WITH_ECDSA_TSS = 'sha256-with-ecdsa-tss',
/**
* This coin is cosmos like coin
*/
COSMOS_LIKE_COINS = 'cosmos_like_coins',
/**
* This coin supports the ability to rebuild transactions on custody signing
*/
REBUILD_ON_CUSTODY_SIGNING = 'rebuild-on-custody-signing',
/**
* This coin supports higher limit for tx request rebuild, which is 10 by default
*/
INCREASED_TX_REQUEST_REBUILD_LIMIT = 'increased-tx-request-rebuild-limit',
/**
* This coin supports bulk transaction creation
*/
BULK_TRANSACTION = 'bulk-transaction',
/**
* This coin supports bulk ERC20 token transactions (token batching)
*/
ERC20_BULK_TRANSACTION = 'erc20-bulk-transaction',
/**
* This coin supports bulk custody transaction creation
*/
CUSTODY_BULK_TRANSACTION = 'custody-bulk-transaction',
/**
* This coin supports distributed custody wallets
*/
DISTRIBUTED_CUSTODY = 'distributed-custody',
/**
* This coin supports bulk staking transaction creation
*/
BULK_STAKING_TRANSACTION = 'bulk-staking-transaction',
/**
* This coin uses non-packed encoding for transaction data
*/
USES_NON_PACKED_ENCODING_FOR_TXDATA = 'uses-non-packed-encoding-for-txdata',
/**
* This coins supports MPCv2 for key creation and signing
*/
MPCV2 = 'mpcv2',
/**
* This coin supports acceleration or nonce filling txn for stuck transactions for tss wallet
*/
STUCK_TRANSACTION_MANAGEMENT_TSS = 'stuck-transaction-management-tss',
/**
* This coin supports acceleration or nonce filling txn for stuck transactions for onchain wallet
*/
STUCK_TRANSACTION_MANAGEMENT_ONCHAIN = 'stuck-transaction-management-onchain',
/**
* This coin is onboarded on etheruem rollup chain
*/
ETH_ROLLUP_CHAIN = 'eth-rollup-chain',
/**
* This coin supports EIP1559 proposal for transaction fee
*/
EIP1559 = 'EIP1559',
/**
* Fees for transactions of TSS wallet of this coin would be paid by the Enterprise i.e. Gas Tank
*/
TSS_ENTERPRISE_PAYS_FEES = 'tss-enterprise-pays-fees',
/**
* Indicates that fees for transactions on a wallet for this coin are paid with a token (not the native coin).
*/
FEES_PAID_WITH_TOKEN = 'fees-paid-with-token',
/**
* This coin supports alphanumeric memo id
*/
ALPHANUMERIC_MEMO_ID = 'alphanumeric-memo-id',
/**
* This coin supports WalletConnect
*/
WALLET_CONNECT_DEFI = 'wallet-connect-defi',
/**
* This coin is gated for TSS Support
*/
TSS_SUPPORT_GATED = 'tss-support-gated',
/**
* This coin is gated for Multisig Support
*/
MULTISIG_SUPPORT_GATED = 'multisig-support-gated',
/**
* This coins is an EVM compatible coin and should use common EVM functionality
*/
SHARED_EVM_SIGNING = 'shared-evm-signing',
/**
* This coin is an EVM compatible coin and should use common EVM SDK module
*/
SHARED_EVM_SDK = 'shared-evm-sdk',
/**
* This coin supports erc20 tokens
*/
SUPPORTS_ERC20 = 'supports-erc20-token',
/**
* This coin supports erc721 tokens
*/
SUPPORTS_ERC721 = 'supports-erc721-token',
/**
* This coin is a Cosmos coin and should use shared Cosmos SDK module
*/
SHARED_COSMOS_SDK = 'shared-cosmos-sdk',
/**
* This coin is a Cosmos coin and should use shared Cosmos Functionality in WP
*/
SHARED_COSMOS_WP = 'shared-cosmos-wp',
/**
* This coin is a Cosmos coin and should use common Cosmos logic in BGA
*/
COSMOS_COMMON_BGA = 'cosmos-common-bga',
/**
* This coin is EVM based coin
*/
EVM_COIN = 'evm_coin',
/**
* This coin supports multisig wallets
*/
MULTISIG = 'multisig',
/**
* This coin is an EVM compatible coin and should use common EVM model registration in IMS
*/
EVM_COMPATIBLE_IMS = 'evm-compatible-ims',
/**
* This coin is an EVM compatible coin and should use common EVM logic in UI
*/
EVM_COMPATIBLE_UI = 'evm-compatible-ui',
/**
* This coin is an EVM compatible coin which supports unsigned sweep recovery
*/
EVM_UNSIGNED_SWEEP_RECOVERY = 'evm-unsigned-sweep-recovery',
/**
* This coin is an EVM compatible coin which supports non-bitgo recovery
*/
EVM_NON_BITGO_RECOVERY = 'evm-non-bitgo-recovery',
/**
* This coin is a rebase token and should use the rebase token functionality
*/
REBASE_TOKEN = 'rebase-token',
/**
* This coin is an EVM compatible coin and should use common EVM logic in WP
*/
EVM_COMPATIBLE_WP = 'evm-compatible-wp',
/**
* This token is internal and shouldn't be exposed to users
*/
RESTRICTED = 'restricted',
/**
* This coin is an EVM compatible coin and should use common EVM message signing functionality
*/
SHARED_EVM_MESSAGE_SIGNING = 'shared-evm-message-signing',
/**
* This token is a stablecoin
*/
STABLECOIN = 'stablecoin',
/**
* This coin supports alternative address identifier format
*/
ALTERNATIVE_ADDRESS_IDENTIFIER = 'alternative-address-identifier',
/**
* This token standard uses alternative address identifiers (e.g., DIDs for Polymesh tokens)
*/
TOKEN_STANDARD_USES_ALTERNATIVE_ADDRESS_IDENTIFIER = 'token-standard-uses-alternative-address-identifier',
/**
* This coin supports one-step deposit
*/
SUPPORTS_ONE_STEP_DEPOSIT = 'supports-one-step-deposit',
/**
* This coin requires a wallet initialization transaction
*/
REQUIRES_WALLET_INITIALIZATION_TRANSACTION = 'requires-wallet-initialization-transaction',
/**
* This coin requires a deposit acceptance transaction
*/
REQUIRES_DEPOSIT_ACCEPTANCE_TRANSACTION = 'requires-deposit-acceptance-transaction',
/**
* This coin allows negative fees in transactions
*/
ALLOWS_NEGATIVE_FEE = 'allows-negative-fee',
}
/**
* Some coins are representations of another underlying asset class. An example
* is Wrapped Bitcoin, which represents Bitcoin on the Ethereum blockchain.
*
* For these coins, the `UnderlyingAsset` provides a link to the actual
* asset for which the coin is a unit of account.
*/
export enum UnderlyingAsset {
INVALID_UNKNOWN = 'invalid_asset_type',
ADA = 'ada',
ALGO = 'algo',
APE = 'ape',
APECHAIN = 'apechain',
API3 = 'api3',
ARBETH = 'arbeth',
BASEETH = 'baseeth', // Base Ethereum
ASI = 'asi',
ATOM = 'atom',
AVAXC = 'avaxc',
AVAXP = 'avaxp',
AXL = 'AXL',
AXLV2 = 'axlv2',
BABY = 'baby',
BCH = 'bch',
BCHA = 'bcha',
BERA = 'bera',
BLD = 'bld', // Agoric
BSC = 'bsc',
BSV = 'bsv',
BTC = 'btc',
BTG = 'btg',
CANTON = 'canton',
DASH = 'dash',
DOT = 'dot',
CELO = 'celo', // Celo main coin
CHILIZ = 'chiliz', // Chiliz Chain native coin
CODEXETH = 'codexeth', // Codex Ethereum L2
COREDAO = 'coredao',
COREUM = 'coreum',
CRONOS = 'cronos',
CSPR = 'cspr',
EOS = 'eos',
ERD = 'erd',
ETC = 'etc',
ETH = 'eth',
ETH2 = 'eth2',
ETHW = 'ethw',
EURCVV0 = 'eurcvv0',
EURCV = 'eurcv',
EUROC = 'euroc',
EURR = 'eurr',
FETCHAI = 'fetchai',
FLOW = 'flow',
FLR = 'flr',
FLRP = 'flrp',
FLUENTETH = 'fluenteth',
FANTOM = 'fantom', // Fantom
GTC = 'gtc',
H = 'h', // Humanity Protocol
HASH = 'hash', // Provenance
HBAR = 'hbar', // Hedera main coin
HBAREVM = 'hbarevm', // Hedera EVM coin
HEMIETH = 'hemieth', // Hemi Ethereum L2
HOODETH = 'hoodeth', // Robinhood Chain
HPPETH = 'hppeth', // House Party Protocol
ICP = 'icp',
IP = 'ip', // Story Chain
INITIA = 'initia',
INJECTIVE = 'injective',
IOTA = 'iota',
IRYS = 'irys',
ISLM = 'islm',
JOVAYETH = 'jovayeth',
KAIA = 'kaia',
KAVACOSMOS = 'kavacosmos',
KAVAEVM = 'kavaevm',
LNBTC = 'lnbtc',
LTC = 'ltc',
LINEAETH = 'lineaeth',
MANTLE = 'mantle',
MANTRA = 'mantra',
MEGAETH = 'megaeth',
MON = 'mon',
MORPH = 'morph',
MORPHETH = 'morpheth',
NEAR = 'near',
OAS = 'oas',
OG = 'og',
OKBXLAYER = 'okbxlayer',
OPBNB = 'opbnb', // opBNB Chain
OPETH = 'opeth',
OSMO = 'osmo',
XPL = 'xpl', // Plasma Network
POLYGON = 'polygon',
PHRS = 'phrs',
PLUME = 'plume',
CTC = 'ctc',
HYPEEVM = 'hypeevm',
HYPERLIQUID = 'hyperliquid', // HyperCore L1
RBTC = 'rbtc', // RSK main coin
SEI = 'sei',
SEIEVM = 'seievm',
SGB = 'sgb',
SOL = 'sol',
SOMI = 'somi', // Somnia Chain
SONEIUM = 'soneium',
SONIC = 'sonic',
STT = 'stt',
STX = 'stx',
SUI = 'sui',
TIA = 'tia', // Celestia
TON = 'ton',
TRX = 'trx',
USDT0 = 'usdt0', // Stable EVM L1
VET = 'vet',
WEMIX = 'wemix',
WORLD = 'world',
XDC = 'xdc',
XLM = 'xlm',
XRP = 'xrp',
XTZ = 'xtz',
XTZEVM = 'xtzevm', // Etherlink (XTZ EVM L2)
ZEC = 'zec',
ZETA = 'zeta',
ZKETH = 'zketh',
ZKSYNCERA = 'zksyncera', // ZkSync Era
UNIETH = 'unieth', // Unichain
// ERC 20 tokens
'$Evmosia.com' = '$evmosia.com',
'0xREVIEW' = '0xreview',
'1INCH' = '1inch',
'1UP' = '1up',
'3CRV' = '3crv',
AAVE = 'aave',
ABT = 'abt',
ACE = 'ace',
ACEV2 = 'acev2',
ACX = 'acx',
ACXT = 'acxt',
ACH = 'ach',
ADABEAR = 'adabear',
ADABULL = 'adabull',
ADX = 'adx',
AE = 'ae',
AERGO = 'aergo',
AERGO1 = 'aergo1',
AGEUR = 'ageur',
AGI = 'agi',
AGIX = 'agix',
AGLD = 'agld',
AGWD = 'agwd',
AION = 'aion',
AJNA = 'ajna',
AKRO = 'akro',
ALCX = 'alcx',
ALD = 'ald',
ALDRIN = 'aldrin',
ALEPH = 'aleph',
ALGOBEAR = 'algobear',
ALGOBULL = 'algobull',
ALGODOOM = 'algodoom',
ALGOHEDGE = 'algohedge',
ALGOMOON = 'algomoon',
ALTDOOM = 'altdoom',
ALTMOON = 'altmoon',
ALI = 'ali',
ALICE = 'alice',
ALK = 'alk',
ALM = 'alm',
ALPHA = 'alpha',
ALTBEAR = 'altbear',
ALTBULL = 'altbull',
ALTHEDGE = 'althedge',
AMKT = 'amkt',
AMN = 'amn',
AMO = 'amo',
AMP = 'amp',
AMPL = 'ampl',
AMON = 'amon',
AMPX = 'ampx',
ANA = 'ana',
ANC = 'anc',
ANGLE = 'angle',
ANKR = 'ankr',
ANKRETH = 'ankreth',
ANML = 'anml',
ANT = 'ant',
ANTV2 = 'antv2',
AOA = 'aoa',
APPC = 'appc',
APT = 'apt',
AQT = 'aqt',
ARCUSDC = 'arcusdc',
ARCT = 'arct',
ARCX = 'arcx',
ARKM = 'arkm',
ARMOR = 'armor',
ARPA = 'arpa',
ARTEQ = 'arteq',
ASD = 'asd',
AST = 'ast',
ASTO = 'asto',
ATA = 'ata',
ATF = 'atf',
ATH = 'ath',
ATL = 'atl',
ATLAS = 'atlas',
ATOMBEAR = 'atombear',
ATOMBULL = 'atombull',
ATRI = 'atri',
AUCTION = 'auction',
AUDD = 'audd',
AUDF = 'audf',
AUDIO = 'audio',
AUDX = 'audx',
AUSD = 'ausd',
AUSDT = 'ausdt',
AUST = 'aust',
AVA = 'ava',
AVT = 'avt',
AWBTC = 'awbtc',
AXPR = 'axpr',
AXS = 'axs',
AXSV2 = 'axsv2',
AYFI = 'ayfi',
AZUKI = 'azuki',
AZUKI2 = 'azuki2',
AZUKIPEPE = 'azukipepe',
BADGER = 'badger',
BAI = 'bai',
BAL = 'bal',
BAND = 'band',
BANK = 'bank',
BAO = 'bao',
BASIC = 'basic',
BAT = 'bat',
BAX = 'bax',
BBANK = 'bbank',
BBSAMO = 'bbsamo',
BBTC = 'BBTC',
BBX = 'bbx',
BCAP = 'bcap',
BCC = 'bcc',
BCHBEAR = 'bchbear',
BCHBULL = 'bchbull',
BCHDOOM = 'bchdoom',
BCHHEDGE = 'bchhedge',
BCHMOON = 'bchmoon',
BCIO = 'bcio',
BCUT = 'bcut',
BCT = 'bct',
BDXN = 'bdxn',
BEAM = 'beam',
BEAR = 'bear',
BEARSHIT = 'bearshit',
BED = 'bed',
BEND = 'bend',
BEPRO = 'bepro',
BETA = 'beta',
BGB = 'bgb',
BGBG = 'bgbg',
BICO = 'bico',
BID = 'bid',
BIDL = 'bidl',
BIGTIME = 'bigtime',
BIRD = 'bird',
BIT = 'bit',
BKT = 'bkt',
BKX = 'bkx',
BLCT = 'blct',
BLT = 'blt',
BLUR = 'blur',
BLUR0x083 = 'blur0x083',
BLUR0xb93 = 'blur0xb93',
BLZ = 'blz',
BNB = 'bnb',
BNBBEAR = 'bnbbear',
BNBBULL = 'bnbbull',
BNBDOOM = 'bnbdoom',
BNBHEDGE = 'bnbhedge',
BNBMOON = 'bnbmoon',
BNK = 'bnk',
BNL = 'bnl',
BNT = 'bnt',
BNTY = 'bnty',
BNVDA = 'bnvda',
BOB = 'bob',
BOND = 'bond',
BONK = 'bonk',
BONE = 'bone',
BORG = 'borg',
BOTTO = 'botto',
BLOCKS = 'blocks',
BOX = 'box',
BOBA = 'boba',
BRD = 'brd',
BRIBE = 'bribe',
BRZ = 'brz',
BSGG = 'bsgg',
BST = 'bst',
BSVBEAR = 'bsvbear',
BSVBULL = 'bsvbull',
BSVDOOM = 'bsvdoom',
BSVHEDGE = 'bsvhedge',
BSVMOON = 'bsvmoon',
BSX = 'bsx',
BTC2XFLI = 'btc2xfli',
BTMXBEAR = 'btmxbear',
BTMXBULL = 'btmxbull',
BTRST = 'btrst',
BTSG = 'btsg',
BTT = 'btt',
BTU = 'btu',
BUIDL = 'buidl',
BULL = 'bull',
BULLSHIT = 'bullshit',
BURP = 'burp',
BUSD = 'busd',
BUY = 'buy',
BPT = 'bpt',
BVOL = 'bvol',
BXX = 'bxx',
BXXV1 = 'bxxv1',
BZZ = 'bzz',
C3 = 'c3',
C6P = 'c6p',
C8P = 'c8p',
C98 = 'c98',
CACXT = 'cacxt',
CADX = 'cadx',
CAG = 'cag',
CANTO = 'canto',
CAPS = 'caps',
CARV = 'carv',
CASH = 'cash',
CBAT = 'cbat',
CBC = 'cbc',
CBETH = 'cbeth',
CBRL = 'cbrl',
CCAI = 'ccai',
CCT = 'cct',
CDAG = 'cdag',
CDAI = 'cdai',
CDAIV2 = 'cdaiV2',
CDT = 'cdt',
CEL = 'cel',
CELLS = 'cells',
CELR = 'celr',
CERE = 'cere',
CETH = 'ceth',
CFX = 'cfx',
CHAINLINK = 'chainlink',
CHART = 'chart',
CHO = 'cho',
CHFX = 'chfx',
CHR = 'chr',
CHSB = 'chsb',
CHZ = 'chz',
CIBO = 'cibo',
CIX100 = 'cix100',
CLIQ = 'cliq',
CLN = 'cln',
CLT = 'clt',
CLXY = 'clxy',
CLV = 'clv',
CMFI = 'cmfi',
CNFI = 'cnfi',
CNG = 'cng',
CNYX = 'cnyx',
COLLAR = 'collar',
COMBO = 'combo',
COMP = 'comp',
CONV = 'conv',
COPE = 'cope',
CORE = 'core',
COS = 'cos',
COTI = 'coti',
COVAL = 'coval',
COVER = 'cover',
COVERPROTOCOL = 'coverprotocol',
COW = 'cow',
CPAY = 'cpay',
CPLT = 'cplt',
CPOOL = 'cpool',
CQT = 'cqt',
CQX = 'cqx',
CRA = 'cra',
CRDT = 'crdt',
CRE = 'cre',
CREAM = 'cream',
CREP = 'crep',
CRI = 'cri',
CRO = 'cro',
CRV = 'crv',
CRPT = 'crpt',
CRPT1 = 'crpt1',
CSLV = 'cslv',
CSOL = 'csol',
CSP = 'csp',
CTSI = 'ctsi',
CTX = 'ctx',
CUBE = 'cube',
CUSD = 'cusd',
CUSDC = 'cusdc',
CVXFXS = 'cvxfxs',
CWAR = 'cwar',
CWBTC = 'cwbtc',
CVC = 'cvc',
CVX = 'cvx',
CXT = 'cxt',
CYBER = 'cyber',
CZRX = 'czrx',
DACXI = 'dacxi',
DADI = 'dadi',
DAMM = 'damm',
DAI = 'dai',
DAO = 'dao',
DAOLANG = 'daolang',
DAR = 'dar',
DATA = 'data',
DATAV2 = 'datav2',
DATAECON = 'dataecon',
DAWN = 'dawn',
DEC = 'dec',
DEGO = 'dego',
DENT = 'dent',
DEP = 'dep',
DEPAY = 'depay',
DEXA = 'dexa',
DEXE = 'dexe',
DFD = 'dfd',
DFI = 'dfi',
DFL = 'dfl',
DFX = 'dfx',
DGCL = 'dgcl',
DGD = 'dgd',
DGLD = 'dgld',
DGX = 'dgx',
DHT = 'dht',
DIGG = 'digg',
DIA = 'dia',
DING = 'ding',
DIPE = 'dipe',
DMG = 'dmg',
DMT = 'dmt',
DNA = 'dna',
DNT = 'dnt',
DODO = 'dodo',
DOG = 'dog',
DOGE = 'doge',
DOGEOS = 'dogeos',
DOGEBEAR = 'dogebear',
DOGEBEAR2021 = 'dogebear2021',
DOGEBULL = 'dogebull',