@bitgo-beta/statics 15.1.1-beta.180 → 15.1.1-beta.1801
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/dist/src/account.d.ts +1130 -75
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +1780 -160
- package/dist/src/ada.d.ts.map +1 -1
- package/dist/src/ada.js +7 -3
- package/dist/src/allCoinsAndTokens.d.ts +2 -0
- package/dist/src/allCoinsAndTokens.d.ts.map +1 -0
- package/dist/src/allCoinsAndTokens.js +1673 -0
- package/dist/src/avaxp.d.ts.map +1 -1
- package/dist/src/avaxp.js +9 -3
- package/dist/src/base.d.ts +2482 -53
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +2591 -63
- package/dist/src/canton.d.ts +34 -0
- package/dist/src/canton.d.ts.map +1 -0
- package/dist/src/canton.js +51 -0
- package/dist/src/coinFeatures.d.ts +116 -0
- package/dist/src/coinFeatures.d.ts.map +1 -0
- package/dist/src/coinFeatures.js +762 -0
- package/dist/src/coins/adaTokens.d.ts +2 -0
- package/dist/src/coins/adaTokens.d.ts.map +1 -0
- package/dist/src/coins/adaTokens.js +22 -0
- package/dist/src/coins/avaxTokens.d.ts +2 -0
- package/dist/src/coins/avaxTokens.d.ts.map +1 -0
- package/dist/src/coins/avaxTokens.js +129 -0
- package/dist/src/coins/botOfcTokens.d.ts +3 -0
- package/dist/src/coins/botOfcTokens.d.ts.map +1 -0
- package/dist/src/coins/botOfcTokens.js +131 -0
- package/dist/src/coins/botTokens.d.ts +3 -0
- package/dist/src/coins/botTokens.d.ts.map +1 -0
- package/dist/src/coins/botTokens.js +143 -0
- package/dist/src/coins/bscTokens.d.ts +2 -0
- package/dist/src/coins/bscTokens.d.ts.map +1 -0
- package/dist/src/coins/bscTokens.js +213 -0
- package/dist/src/coins/cantonTokens.d.ts +2 -0
- package/dist/src/coins/cantonTokens.d.ts.map +1 -0
- package/dist/src/coins/cantonTokens.js +22 -0
- package/dist/src/coins/cosmosTokens.d.ts +2 -0
- package/dist/src/coins/cosmosTokens.d.ts.map +1 -0
- package/dist/src/coins/cosmosTokens.js +14 -0
- package/dist/src/coins/erc20Coins.d.ts +2 -0
- package/dist/src/coins/erc20Coins.d.ts.map +1 -0
- package/dist/src/coins/erc20Coins.js +2045 -0
- package/dist/src/coins/erc7984Tokens.d.ts +18 -0
- package/dist/src/coins/erc7984Tokens.d.ts.map +1 -0
- package/dist/src/coins/erc7984Tokens.js +32 -0
- package/dist/src/coins/generateERC20.d.ts +36 -0
- package/dist/src/coins/generateERC20.d.ts.map +1 -0
- package/dist/src/coins/generateERC20.js +46 -0
- package/dist/src/coins/jettonTokens.d.ts +2 -0
- package/dist/src/coins/jettonTokens.d.ts.map +1 -0
- package/dist/src/coins/jettonTokens.js +19 -0
- package/dist/src/coins/nep141Tokens.d.ts +2 -0
- package/dist/src/coins/nep141Tokens.d.ts.map +1 -0
- package/dist/src/coins/nep141Tokens.js +18 -0
- package/dist/src/coins/ofcCoins.d.ts +2 -0
- package/dist/src/coins/ofcCoins.d.ts.map +1 -0
- package/dist/src/coins/ofcCoins.js +1102 -0
- package/dist/src/coins/ofcErc20Coins.d.ts +4 -0
- package/dist/src/coins/ofcErc20Coins.d.ts.map +1 -0
- package/dist/src/coins/ofcErc20Coins.js +1854 -0
- package/dist/src/coins/polygonTokens.d.ts +2 -0
- package/dist/src/coins/polygonTokens.d.ts.map +1 -0
- package/dist/src/coins/polygonTokens.js +198 -0
- package/dist/src/coins/polyxTokens.d.ts +2 -0
- package/dist/src/coins/polyxTokens.d.ts.map +1 -0
- package/dist/src/coins/polyxTokens.js +22 -0
- package/dist/src/coins/sip10Tokens.d.ts +2 -0
- package/dist/src/coins/sip10Tokens.d.ts.map +1 -0
- package/dist/src/coins/sip10Tokens.js +25 -0
- package/dist/src/coins/solTokens.d.ts +3 -0
- package/dist/src/coins/solTokens.d.ts.map +1 -0
- package/dist/src/coins/solTokens.js +479 -0
- package/dist/src/coins/vetTokens.d.ts +2 -0
- package/dist/src/coins/vetTokens.d.ts.map +1 -0
- package/dist/src/coins/vetTokens.js +11 -0
- package/dist/src/coins.d.ts +22 -1
- package/dist/src/coins.d.ts.map +1 -1
- package/dist/src/coins.js +451 -1695
- package/dist/src/constants.d.ts +1 -0
- package/dist/src/constants.d.ts.map +1 -1
- package/dist/src/constants.js +3 -2
- package/dist/src/errors.d.ts +3 -0
- package/dist/src/errors.d.ts.map +1 -1
- package/dist/src/errors.js +9 -2
- package/dist/src/flrp.d.ts +40 -0
- package/dist/src/flrp.d.ts.map +1 -0
- package/dist/src/flrp.js +68 -0
- package/dist/src/hypeevm.d.ts +28 -0
- package/dist/src/hypeevm.d.ts.map +1 -0
- package/dist/src/hypeevm.js +60 -0
- package/dist/src/index.d.ts +5 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +41 -3
- package/dist/src/kaspa.d.ts +34 -0
- package/dist/src/kaspa.d.ts.map +1 -0
- package/dist/src/kaspa.js +63 -0
- package/dist/src/lightning.d.ts +43 -0
- package/dist/src/lightning.d.ts.map +1 -0
- package/dist/src/lightning.js +64 -0
- package/dist/src/map.d.ts +16 -1
- package/dist/src/map.d.ts.map +1 -1
- package/dist/src/map.js +194 -34
- package/dist/src/networkFeatureMapForTokens.d.ts +17 -0
- package/dist/src/networkFeatureMapForTokens.d.ts.map +1 -0
- package/dist/src/networkFeatureMapForTokens.js +75 -0
- package/dist/src/networks.d.ts +1947 -61
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +2392 -106
- package/dist/src/ofc.d.ts +695 -3
- package/dist/src/ofc.d.ts.map +1 -1
- package/dist/src/ofc.js +1653 -28
- package/dist/src/tokenConfig.d.ts +687 -108
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +1085 -220
- package/dist/src/utxo.d.ts +3 -1
- package/dist/src/utxo.d.ts.map +1 -1
- package/dist/src/utxo.js +84 -3
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -3
- package/.mocharc.js +0 -10
- package/.prettierignore +0 -2
- package/CHANGELOG.md +0 -1090
package/dist/src/base.d.ts
CHANGED
|
@@ -13,56 +13,134 @@ export declare enum CoinKind {
|
|
|
13
13
|
*/
|
|
14
14
|
export declare enum CoinFamily {
|
|
15
15
|
ADA = "ada",
|
|
16
|
+
ABSTRACTETH = "abstracteth",// Abstract L2 EVM
|
|
17
|
+
APECHAIN = "apechain",
|
|
16
18
|
ALGO = "algo",
|
|
19
|
+
APT = "apt",
|
|
17
20
|
ARBETH = "arbeth",
|
|
21
|
+
ASI = "asi",
|
|
18
22
|
ATOM = "atom",
|
|
19
23
|
AVAXC = "avaxc",
|
|
20
24
|
AVAXP = "avaxp",
|
|
25
|
+
BASEETH = "baseeth",// Base Ethereum
|
|
26
|
+
BABY = "baby",
|
|
21
27
|
BCH = "bch",
|
|
22
28
|
BCHA = "bcha",
|
|
23
29
|
BERA = "bera",
|
|
24
|
-
BLD = "bld"
|
|
30
|
+
BLD = "bld",// Agoric
|
|
25
31
|
BSC = "bsc",
|
|
26
32
|
BSV = "bsv",
|
|
27
33
|
BTC = "btc",
|
|
28
34
|
BTG = "btg",
|
|
35
|
+
CANTON = "canton",
|
|
29
36
|
CELO = "celo",
|
|
37
|
+
CHILIZ = "chiliz",// Chiliz Chain
|
|
38
|
+
CODEXETH = "codexeth",// Codex Ethereum L2
|
|
39
|
+
COREDAO = "coredao",
|
|
30
40
|
COREUM = "coreum",
|
|
41
|
+
CRONOS = "cronos",
|
|
31
42
|
CSPR = "cspr",
|
|
32
43
|
DASH = "dash",
|
|
33
44
|
DOGE = "doge",
|
|
45
|
+
DOGEOS = "dogeos",
|
|
34
46
|
DOT = "dot",
|
|
47
|
+
DYDX = "dydx",
|
|
48
|
+
DYDXCOSMOS = "dydxcosmos",
|
|
49
|
+
EOS = "eos",
|
|
50
|
+
ETC = "etc",
|
|
35
51
|
ETH = "eth",
|
|
36
52
|
ETH2 = "eth2",
|
|
37
53
|
ETHW = "ethw",
|
|
38
|
-
|
|
39
|
-
EOS = "eos",
|
|
54
|
+
FETCHAI = "fetchai",
|
|
40
55
|
FIAT = "fiat",
|
|
41
|
-
|
|
56
|
+
FLOW = "flow",
|
|
57
|
+
FANTOM = "fantom",// Fantom
|
|
58
|
+
FLR = "flr",
|
|
59
|
+
FLRP = "flrp",
|
|
60
|
+
H = "h",// Humanity Protocol
|
|
61
|
+
HASH = "hash",// Provenance
|
|
42
62
|
HBAR = "hbar",
|
|
63
|
+
HBAREVM = "hbarevm",// Hedera EVM coin
|
|
64
|
+
HEMIETH = "hemieth",// Hemi Ethereum L2
|
|
65
|
+
HOODETH = "hoodeth",// Robinhood Chain
|
|
66
|
+
HPPETH = "hppeth",// House Party Protocol
|
|
67
|
+
ICP = "icp",
|
|
68
|
+
INKETH = "inketh",// INK L2
|
|
69
|
+
INITIA = "initia",
|
|
43
70
|
INJECTIVE = "injective",
|
|
71
|
+
IOTA = "iota",
|
|
72
|
+
IRYS = "irys",
|
|
44
73
|
ISLM = "islm",
|
|
45
|
-
|
|
74
|
+
JOVAYETH = "jovayeth",
|
|
75
|
+
KAIA = "kaia",
|
|
76
|
+
KASPA = "kaspa",
|
|
77
|
+
KATANAETH = "katanaeth",// Katana Network L2
|
|
78
|
+
KAVACOSMOS = "kavacosmos",
|
|
79
|
+
KAVAEVM = "kavaevm",
|
|
80
|
+
LNBTC = "lnbtc",
|
|
46
81
|
LTC = "ltc",
|
|
82
|
+
MANTLE = "mantle",
|
|
83
|
+
MANTRA = "mantra",
|
|
84
|
+
MEGAETH = "megaeth",
|
|
85
|
+
MON = "mon",
|
|
86
|
+
XPL = "xpl",// Plasma Network
|
|
47
87
|
POLYGON = "polygon",
|
|
88
|
+
POLYX = "polyx",
|
|
89
|
+
PHRS = "phrs",
|
|
90
|
+
PRIVIDIUMETH = "prividiumeth",// Prividium L2
|
|
91
|
+
CTC = "ctc",
|
|
92
|
+
HYPEEVM = "hypeevm",
|
|
93
|
+
HYPERLIQUID = "hyperliquid",// HyperCore L1
|
|
48
94
|
NEAR = "near",
|
|
95
|
+
OAS = "oas",
|
|
49
96
|
OFC = "ofc",
|
|
97
|
+
OG = "og",
|
|
98
|
+
OPBNB = "opbnb",// opBNB Chain
|
|
99
|
+
OKBXLAYER = "okbxlayer",
|
|
50
100
|
OPETH = "opeth",
|
|
51
101
|
OSMO = "osmo",
|
|
102
|
+
PLUME = "plume",
|
|
52
103
|
RBTC = "rbtc",
|
|
104
|
+
SCROLLETH = "scrolleth",// Scroll L2
|
|
105
|
+
SGB = "sgb",
|
|
53
106
|
SEI = "sei",
|
|
107
|
+
SEIEVM = "seievm",
|
|
54
108
|
SOL = "sol",
|
|
109
|
+
SONIC = "sonic",
|
|
110
|
+
SONEIUM = "soneium",
|
|
111
|
+
STARKNET = "starknet",
|
|
112
|
+
STT = "stt",
|
|
55
113
|
SUI = "sui",
|
|
56
114
|
STX = "stx",
|
|
57
115
|
SUSD = "susd",
|
|
58
|
-
|
|
116
|
+
TAO = "tao",
|
|
117
|
+
THOR = "thor",
|
|
118
|
+
TIA = "tia",// Celestia
|
|
59
119
|
TON = "ton",
|
|
60
120
|
TRX = "trx",
|
|
121
|
+
USDT0 = "usdt0",// Stable EVM L1
|
|
122
|
+
VET = "vet",
|
|
123
|
+
WORLD = "world",
|
|
124
|
+
WEMIX = "wemix",
|
|
125
|
+
XDC = "xdc",
|
|
61
126
|
XLM = "xlm",
|
|
62
127
|
XRP = "xrp",
|
|
63
128
|
XTZ = "xtz",
|
|
129
|
+
XTZEVM = "xtzevm",// Etherlink (XTZ EVM L2)
|
|
64
130
|
ZEC = "zec",
|
|
65
|
-
ZETA = "zeta"
|
|
131
|
+
ZETA = "zeta",
|
|
132
|
+
ZKETH = "zketh",
|
|
133
|
+
ZKSYNCERA = "zksyncera",// ZkSync Era
|
|
134
|
+
LINEAETH = "lineaeth",
|
|
135
|
+
IP = "ip",// Story Chain
|
|
136
|
+
SOMI = "somi",// Somnia Chain
|
|
137
|
+
FLUENTETH = "fluenteth",
|
|
138
|
+
MORPH = "morph",
|
|
139
|
+
MORPHETH = "morpheth",
|
|
140
|
+
ARCUSDC = "arcusdc",// ARC network
|
|
141
|
+
TEMPO = "tempo",// Tempo Network
|
|
142
|
+
UNIETH = "unieth",// Unichain
|
|
143
|
+
BOBAETH = "bobaeth"
|
|
66
144
|
}
|
|
67
145
|
/**
|
|
68
146
|
* Coin features are yes or no questions about what a coin requires or is capable of.
|
|
@@ -81,6 +159,12 @@ export declare enum CoinFeature {
|
|
|
81
159
|
REQUIRES_KRS_BACKUP_KEY = "requires-krs-backup-key",
|
|
82
160
|
PAYGO = "paygo",
|
|
83
161
|
UNSPENT_MODEL = "unspent-model",
|
|
162
|
+
MERGE_UTXOS = "merge-utxos",
|
|
163
|
+
/**
|
|
164
|
+
* This coin supports fanning out multiple UTXO-like holdings into more outputs.
|
|
165
|
+
*/
|
|
166
|
+
FANOUT_UTXOS = "fanout-utxos",
|
|
167
|
+
LIGHTNING_MODEL = "lightning-model",
|
|
84
168
|
ACCOUNT_MODEL = "account-model",
|
|
85
169
|
CHILD_PAYS_FOR_PARENT = "cpfp",
|
|
86
170
|
SUPPORTS_TOKENS = "supports-tokens",
|
|
@@ -96,6 +180,7 @@ export declare enum CoinFeature {
|
|
|
96
180
|
CUSTODY = "custody",
|
|
97
181
|
TSS = "tss",
|
|
98
182
|
STAKING = "staking",
|
|
183
|
+
LIQUID_STAKING = "liquid-staking",
|
|
99
184
|
/**
|
|
100
185
|
* This coin is deprecated
|
|
101
186
|
*/
|
|
@@ -109,7 +194,28 @@ export declare enum CoinFeature {
|
|
|
109
194
|
CUSTODY_BITGO_GERMANY = "custody-bitgo-germany",
|
|
110
195
|
CUSTODY_BITGO_SWITZERLAND = "custody-bitgo-switzerland",
|
|
111
196
|
CUSTODY_BITGO_FRANKFURT = "custody-bitgo-frankfurt",
|
|
197
|
+
CUSTODY_BITGO_SINGAPORE = "custody-bitgo-singapore",
|
|
112
198
|
CUSTODY_BITGO_SISTER_TRUST_ONE = "custody-bitgo-sister-trust-one",
|
|
199
|
+
/**
|
|
200
|
+
* This coin supports custody in BitGo Korea entities
|
|
201
|
+
*/
|
|
202
|
+
CUSTODY_BITGO_KOREA = "custody-bitgo-korea",
|
|
203
|
+
/**
|
|
204
|
+
* This coin supports custody in BitGo Europe ApS entities
|
|
205
|
+
*/
|
|
206
|
+
CUSTODY_BITGO_EUROPE_APS = "custody-bitgo-europe-aps",
|
|
207
|
+
/**
|
|
208
|
+
* This coin supports custody in BitGo MENA FZE entities
|
|
209
|
+
*/
|
|
210
|
+
CUSTODY_BITGO_MENA_FZE = "custody-bitgo-mena-fze",
|
|
211
|
+
/**
|
|
212
|
+
* This coin supports custody in BitGo Custody MENA FZE entities
|
|
213
|
+
*/
|
|
214
|
+
CUSTODY_BITGO_CUSTODY_MENA_FZE = "custody-bitgo-custody-mena-fze",
|
|
215
|
+
/**
|
|
216
|
+
* This coin supports custody in BitGo India entities
|
|
217
|
+
*/
|
|
218
|
+
CUSTODY_BITGO_INDIA = "custody-bitgo-india",
|
|
113
219
|
EXPIRING_TRANSACTIONS = "expiring-transactions",
|
|
114
220
|
/**
|
|
115
221
|
* This coin supports cold wallets that use a multisig signing protocol
|
|
@@ -119,6 +225,10 @@ export declare enum CoinFeature {
|
|
|
119
225
|
* This coin supports cold wallets that use a TSS signing protocol
|
|
120
226
|
*/
|
|
121
227
|
TSS_COLD = "tss-cold",
|
|
228
|
+
/**
|
|
229
|
+
* This coin is in progress for being onboarded to TSS signing protocol
|
|
230
|
+
*/
|
|
231
|
+
TSS_SUPPORT_IN_PROGRESS = "tss-support-in-progress",
|
|
122
232
|
/**
|
|
123
233
|
* This coin uses sha256 hash function for ECDSA TSS signatures
|
|
124
234
|
*/
|
|
@@ -139,10 +249,185 @@ export declare enum CoinFeature {
|
|
|
139
249
|
* This coin supports bulk transaction creation
|
|
140
250
|
*/
|
|
141
251
|
BULK_TRANSACTION = "bulk-transaction",
|
|
252
|
+
/**
|
|
253
|
+
* This coin supports bulk ERC20 token transactions (token batching)
|
|
254
|
+
*/
|
|
255
|
+
ERC20_BULK_TRANSACTION = "erc20-bulk-transaction",
|
|
256
|
+
/**
|
|
257
|
+
* This coin supports bulk custody transaction creation
|
|
258
|
+
*/
|
|
259
|
+
CUSTODY_BULK_TRANSACTION = "custody-bulk-transaction",
|
|
142
260
|
/**
|
|
143
261
|
* This coin supports distributed custody wallets
|
|
144
262
|
*/
|
|
145
|
-
DISTRIBUTED_CUSTODY = "distributed-custody"
|
|
263
|
+
DISTRIBUTED_CUSTODY = "distributed-custody",
|
|
264
|
+
/**
|
|
265
|
+
* This coin supports bulk staking transaction creation
|
|
266
|
+
*/
|
|
267
|
+
BULK_STAKING_TRANSACTION = "bulk-staking-transaction",
|
|
268
|
+
/**
|
|
269
|
+
* This coin uses non-packed encoding for transaction data
|
|
270
|
+
*/
|
|
271
|
+
USES_NON_PACKED_ENCODING_FOR_TXDATA = "uses-non-packed-encoding-for-txdata",
|
|
272
|
+
/**
|
|
273
|
+
* This coins supports MPCv2 for key creation and signing
|
|
274
|
+
*/
|
|
275
|
+
MPCV2 = "mpcv2",
|
|
276
|
+
/**
|
|
277
|
+
* This coin supports acceleration or nonce filling txn for stuck transactions for tss wallet
|
|
278
|
+
*/
|
|
279
|
+
STUCK_TRANSACTION_MANAGEMENT_TSS = "stuck-transaction-management-tss",
|
|
280
|
+
/**
|
|
281
|
+
* This coin supports acceleration or nonce filling txn for stuck transactions for onchain wallet
|
|
282
|
+
*/
|
|
283
|
+
STUCK_TRANSACTION_MANAGEMENT_ONCHAIN = "stuck-transaction-management-onchain",
|
|
284
|
+
/**
|
|
285
|
+
* This coin is onboarded on etheruem rollup chain
|
|
286
|
+
*/
|
|
287
|
+
ETH_ROLLUP_CHAIN = "eth-rollup-chain",
|
|
288
|
+
/**
|
|
289
|
+
* This coin supports EIP1559 proposal for transaction fee
|
|
290
|
+
*/
|
|
291
|
+
EIP1559 = "EIP1559",
|
|
292
|
+
/**
|
|
293
|
+
* Fees for transactions of TSS wallet of this coin would be paid by the Enterprise i.e. Gas Tank
|
|
294
|
+
*/
|
|
295
|
+
TSS_ENTERPRISE_PAYS_FEES = "tss-enterprise-pays-fees",
|
|
296
|
+
/**
|
|
297
|
+
* Indicates that fees for transactions on a wallet for this coin are paid with a token (not the native coin).
|
|
298
|
+
*/
|
|
299
|
+
FEES_PAID_WITH_TOKEN = "fees-paid-with-token",
|
|
300
|
+
/**
|
|
301
|
+
* This coin supports alphanumeric memo id
|
|
302
|
+
*/
|
|
303
|
+
ALPHANUMERIC_MEMO_ID = "alphanumeric-memo-id",
|
|
304
|
+
/**
|
|
305
|
+
* This coin supports WalletConnect
|
|
306
|
+
*/
|
|
307
|
+
WALLET_CONNECT_DEFI = "wallet-connect-defi",
|
|
308
|
+
/**
|
|
309
|
+
* This coin is gated for TSS Support
|
|
310
|
+
*/
|
|
311
|
+
TSS_SUPPORT_GATED = "tss-support-gated",
|
|
312
|
+
/**
|
|
313
|
+
* This coin is gated for Multisig Support
|
|
314
|
+
*/
|
|
315
|
+
MULTISIG_SUPPORT_GATED = "multisig-support-gated",
|
|
316
|
+
/**
|
|
317
|
+
* This coins is an EVM compatible coin and should use common EVM functionality
|
|
318
|
+
*/
|
|
319
|
+
SHARED_EVM_SIGNING = "shared-evm-signing",
|
|
320
|
+
/**
|
|
321
|
+
* This coin is an EVM compatible coin and should use common EVM SDK module
|
|
322
|
+
*/
|
|
323
|
+
SHARED_EVM_SDK = "shared-evm-sdk",
|
|
324
|
+
/**
|
|
325
|
+
* This coin supports erc20 tokens
|
|
326
|
+
*/
|
|
327
|
+
SUPPORTS_ERC20 = "supports-erc20-token",
|
|
328
|
+
/**
|
|
329
|
+
* This coin supports erc721 tokens
|
|
330
|
+
*/
|
|
331
|
+
SUPPORTS_ERC721 = "supports-erc721-token",
|
|
332
|
+
/**
|
|
333
|
+
* This coin is a Cosmos coin and should use shared Cosmos SDK module
|
|
334
|
+
*/
|
|
335
|
+
SHARED_COSMOS_SDK = "shared-cosmos-sdk",
|
|
336
|
+
/**
|
|
337
|
+
* This coin is a Cosmos coin and should use shared Cosmos Functionality in WP
|
|
338
|
+
*/
|
|
339
|
+
SHARED_COSMOS_WP = "shared-cosmos-wp",
|
|
340
|
+
/**
|
|
341
|
+
* This coin is a Cosmos coin and should use common Cosmos logic in BGA
|
|
342
|
+
*/
|
|
343
|
+
COSMOS_COMMON_BGA = "cosmos-common-bga",
|
|
344
|
+
/**
|
|
345
|
+
* This coin is EVM based coin
|
|
346
|
+
*/
|
|
347
|
+
EVM_COIN = "evm_coin",
|
|
348
|
+
/**
|
|
349
|
+
* This coin supports multisig wallets
|
|
350
|
+
*/
|
|
351
|
+
MULTISIG = "multisig",
|
|
352
|
+
/**
|
|
353
|
+
* This coin is an EVM compatible coin and should use common EVM model registration in IMS
|
|
354
|
+
*/
|
|
355
|
+
EVM_COMPATIBLE_IMS = "evm-compatible-ims",
|
|
356
|
+
/**
|
|
357
|
+
* This coin is an EVM compatible coin and should use common EVM logic in UI
|
|
358
|
+
*/
|
|
359
|
+
EVM_COMPATIBLE_UI = "evm-compatible-ui",
|
|
360
|
+
/**
|
|
361
|
+
* This coin is an EVM compatible coin which supports unsigned sweep recovery
|
|
362
|
+
*/
|
|
363
|
+
EVM_UNSIGNED_SWEEP_RECOVERY = "evm-unsigned-sweep-recovery",
|
|
364
|
+
/**
|
|
365
|
+
* This coin is an EVM compatible coin which supports non-bitgo recovery
|
|
366
|
+
*/
|
|
367
|
+
EVM_NON_BITGO_RECOVERY = "evm-non-bitgo-recovery",
|
|
368
|
+
/**
|
|
369
|
+
* This coin is a rebase token and should use the rebase token functionality
|
|
370
|
+
*/
|
|
371
|
+
REBASE_TOKEN = "rebase-token",
|
|
372
|
+
/**
|
|
373
|
+
* This coin is an EVM compatible coin and should use common EVM logic in WP
|
|
374
|
+
*/
|
|
375
|
+
EVM_COMPATIBLE_WP = "evm-compatible-wp",
|
|
376
|
+
/**
|
|
377
|
+
* This coin does not support EVM Keyring.
|
|
378
|
+
* Add this feature to any EVM-family coin that should be excluded from EVM Keyring
|
|
379
|
+
*/
|
|
380
|
+
EVM_KEYRING_UNSUPPORTED = "evm-keyring-unsupported",
|
|
381
|
+
/**
|
|
382
|
+
* This token is internal and shouldn't be exposed to users
|
|
383
|
+
*/
|
|
384
|
+
RESTRICTED = "restricted",
|
|
385
|
+
/**
|
|
386
|
+
* This coin is an EVM compatible coin and should use common EVM message signing functionality
|
|
387
|
+
*/
|
|
388
|
+
SHARED_EVM_MESSAGE_SIGNING = "shared-evm-message-signing",
|
|
389
|
+
/**
|
|
390
|
+
* This token is a stablecoin
|
|
391
|
+
*/
|
|
392
|
+
STABLECOIN = "stablecoin",
|
|
393
|
+
/**
|
|
394
|
+
* This coin supports alternative address identifier format
|
|
395
|
+
*/
|
|
396
|
+
ALTERNATIVE_ADDRESS_IDENTIFIER = "alternative-address-identifier",
|
|
397
|
+
/**
|
|
398
|
+
* This token standard uses alternative address identifiers (e.g., DIDs for Polymesh tokens)
|
|
399
|
+
*/
|
|
400
|
+
TOKEN_STANDARD_USES_ALTERNATIVE_ADDRESS_IDENTIFIER = "token-standard-uses-alternative-address-identifier",
|
|
401
|
+
/**
|
|
402
|
+
* This coin supports one-step deposit
|
|
403
|
+
*/
|
|
404
|
+
SUPPORTS_ONE_STEP_DEPOSIT = "supports-one-step-deposit",
|
|
405
|
+
/**
|
|
406
|
+
* This coin requires a wallet initialization transaction
|
|
407
|
+
*/
|
|
408
|
+
REQUIRES_WALLET_INITIALIZATION_TRANSACTION = "requires-wallet-initialization-transaction",
|
|
409
|
+
/**
|
|
410
|
+
* This coin requires a deposit acceptance transaction
|
|
411
|
+
*/
|
|
412
|
+
REQUIRES_DEPOSIT_ACCEPTANCE_TRANSACTION = "requires-deposit-acceptance-transaction",
|
|
413
|
+
/**
|
|
414
|
+
* This coin allows negative fees in transactions
|
|
415
|
+
*/
|
|
416
|
+
ALLOWS_NEGATIVE_FEE = "allows-negative-fee",
|
|
417
|
+
/**
|
|
418
|
+
* This token uses fully homomorphic encryption (FHE) for confidential transfers (ERC-7984).
|
|
419
|
+
* Balances are stored as encrypted ciphertexts; transfers use confidentialTransfer() instead of transfer().
|
|
420
|
+
*/
|
|
421
|
+
CONFIDENTIAL_TRANSFER = "confidential-transfer",
|
|
422
|
+
/**
|
|
423
|
+
* Reading the balance of this token requires the wallet owner to delegate decryption access
|
|
424
|
+
* to BitGo via ACL.delegateForUserDecryption() before balances can be displayed.
|
|
425
|
+
*/
|
|
426
|
+
REQUIRES_DECRYPTION_DELEGATION = "requires-decryption-delegation",
|
|
427
|
+
/**
|
|
428
|
+
* This token is a receipt token, representing a claim on an underlying asset
|
|
429
|
+
*/
|
|
430
|
+
RECEIPT_TOKEN = "receipt-token"
|
|
146
431
|
}
|
|
147
432
|
/**
|
|
148
433
|
* Some coins are representations of another underlying asset class. An example
|
|
@@ -152,88 +437,168 @@ export declare enum CoinFeature {
|
|
|
152
437
|
* asset for which the coin is a unit of account.
|
|
153
438
|
*/
|
|
154
439
|
export declare enum UnderlyingAsset {
|
|
440
|
+
INVALID_UNKNOWN = "invalid_asset_type",
|
|
441
|
+
ABSTRACTETH = "abstracteth",// Abstract L2 EVM
|
|
155
442
|
ADA = "ada",
|
|
156
443
|
ALGO = "algo",
|
|
157
444
|
APE = "ape",
|
|
445
|
+
APECHAIN = "apechain",
|
|
158
446
|
API3 = "api3",
|
|
159
447
|
ARBETH = "arbeth",
|
|
448
|
+
BASEETH = "baseeth",// Base Ethereum
|
|
449
|
+
ASI = "asi",
|
|
160
450
|
ATOM = "atom",
|
|
161
451
|
AVAXC = "avaxc",
|
|
162
452
|
AVAXP = "avaxp",
|
|
163
453
|
AXL = "AXL",
|
|
164
454
|
AXLV2 = "axlv2",
|
|
455
|
+
BABY = "baby",
|
|
165
456
|
BCH = "bch",
|
|
166
457
|
BCHA = "bcha",
|
|
167
458
|
BERA = "bera",
|
|
168
|
-
BLD = "bld"
|
|
459
|
+
BLD = "bld",// Agoric
|
|
169
460
|
BSC = "bsc",
|
|
170
461
|
BSV = "bsv",
|
|
171
462
|
BTC = "btc",
|
|
172
463
|
BTG = "btg",
|
|
464
|
+
CANTON = "canton",
|
|
173
465
|
DASH = "dash",
|
|
174
466
|
DOT = "dot",
|
|
175
|
-
CELO = "celo"
|
|
467
|
+
CELO = "celo",// Celo main coin
|
|
468
|
+
CHILIZ = "chiliz",// Chiliz Chain native coin
|
|
469
|
+
CODEXETH = "codexeth",// Codex Ethereum L2
|
|
470
|
+
COREDAO = "coredao",
|
|
176
471
|
COREUM = "coreum",
|
|
472
|
+
CRONOS = "cronos",
|
|
177
473
|
CSPR = "cspr",
|
|
474
|
+
EOS = "eos",
|
|
475
|
+
ERD = "erd",
|
|
476
|
+
ETC = "etc",
|
|
178
477
|
ETH = "eth",
|
|
179
478
|
ETH2 = "eth2",
|
|
180
479
|
ETHW = "ethw",
|
|
181
|
-
ETC = "etc",
|
|
182
|
-
EOS = "eos",
|
|
183
|
-
ERD = "erd",
|
|
184
|
-
EUR = "eur",
|
|
185
480
|
EURCVV0 = "eurcvv0",
|
|
186
481
|
EURCV = "eurcv",
|
|
187
482
|
EUROC = "euroc",
|
|
188
|
-
|
|
483
|
+
EURR = "eurr",
|
|
484
|
+
FETCHAI = "fetchai",
|
|
485
|
+
FLOW = "flow",
|
|
486
|
+
FLR = "flr",
|
|
487
|
+
FLRP = "flrp",
|
|
488
|
+
FLUENTETH = "fluenteth",
|
|
489
|
+
FANTOM = "fantom",// Fantom
|
|
189
490
|
GTC = "gtc",
|
|
190
|
-
|
|
191
|
-
|
|
491
|
+
H = "h",// Humanity Protocol
|
|
492
|
+
HASH = "hash",// Provenance
|
|
493
|
+
HBAR = "hbar",// Hedera main coin
|
|
494
|
+
HBAREVM = "hbarevm",// Hedera EVM coin
|
|
495
|
+
HEMIETH = "hemieth",// Hemi Ethereum L2
|
|
496
|
+
HOODETH = "hoodeth",// Robinhood Chain
|
|
497
|
+
HPPETH = "hppeth",// House Party Protocol
|
|
498
|
+
ICP = "icp",
|
|
499
|
+
INKETH = "inketh",// INK L2
|
|
500
|
+
IP = "ip",// Story Chain
|
|
501
|
+
INITIA = "initia",
|
|
192
502
|
INJECTIVE = "injective",
|
|
503
|
+
IOTA = "iota",
|
|
504
|
+
IRYS = "irys",
|
|
193
505
|
ISLM = "islm",
|
|
194
|
-
|
|
506
|
+
JOVAYETH = "jovayeth",
|
|
507
|
+
KAIA = "kaia",
|
|
508
|
+
KATANAETH = "katanaeth",// Katana Network L2
|
|
509
|
+
KAVACOSMOS = "kavacosmos",
|
|
510
|
+
KAVAEVM = "kavaevm",
|
|
511
|
+
LNBTC = "lnbtc",
|
|
195
512
|
LTC = "ltc",
|
|
513
|
+
LINEAETH = "lineaeth",
|
|
514
|
+
MANTLE = "mantle",
|
|
515
|
+
MANTRA = "mantra",
|
|
516
|
+
MEGAETH = "megaeth",
|
|
517
|
+
MON = "mon",
|
|
518
|
+
MORPH = "morph",
|
|
519
|
+
MORPHETH = "morpheth",
|
|
196
520
|
NEAR = "near",
|
|
521
|
+
OAS = "oas",
|
|
522
|
+
OG = "og",
|
|
523
|
+
OKBXLAYER = "okbxlayer",
|
|
524
|
+
OPBNB = "opbnb",// opBNB Chain
|
|
197
525
|
OPETH = "opeth",
|
|
198
526
|
OSMO = "osmo",
|
|
527
|
+
XPL = "xpl",// Plasma Network
|
|
199
528
|
POLYGON = "polygon",
|
|
200
|
-
|
|
529
|
+
PHRS = "phrs",
|
|
530
|
+
PLUME = "plume",
|
|
531
|
+
PRIVIDIUMETH = "prividiumeth",// Prividium L2
|
|
532
|
+
CTC = "ctc",
|
|
533
|
+
HYPEEVM = "hypeevm",
|
|
534
|
+
HYPERLIQUID = "hyperliquid",// HyperCore L1
|
|
535
|
+
RBTC = "rbtc",// RSK main coin
|
|
536
|
+
SCROLLETH = "scrolleth",// Scroll L2
|
|
201
537
|
SEI = "sei",
|
|
538
|
+
SEIEVM = "seievm",
|
|
539
|
+
SGB = "sgb",
|
|
202
540
|
SOL = "sol",
|
|
203
|
-
|
|
541
|
+
SOMI = "somi",// Somnia Chain
|
|
542
|
+
SONEIUM = "soneium",
|
|
543
|
+
SONIC = "sonic",
|
|
544
|
+
STARKNET = "starknet",
|
|
545
|
+
STT = "stt",
|
|
204
546
|
STX = "stx",
|
|
205
|
-
|
|
547
|
+
SUI = "sui",
|
|
548
|
+
TIA = "tia",// Celestia
|
|
206
549
|
TON = "ton",
|
|
207
550
|
TRX = "trx",
|
|
208
|
-
|
|
551
|
+
USDT0 = "usdt0",// Stable EVM L1
|
|
552
|
+
VET = "vet",
|
|
553
|
+
WEMIX = "wemix",
|
|
554
|
+
WORLD = "world",
|
|
555
|
+
XDC = "xdc",
|
|
209
556
|
XLM = "xlm",
|
|
210
557
|
XRP = "xrp",
|
|
211
558
|
XTZ = "xtz",
|
|
559
|
+
XTZEVM = "xtzevm",// Etherlink (XTZ EVM L2)
|
|
212
560
|
ZEC = "zec",
|
|
213
561
|
ZETA = "zeta",
|
|
562
|
+
ZKETH = "zketh",
|
|
563
|
+
ZKSYNCERA = "zksyncera",// ZkSync Era
|
|
564
|
+
UNIETH = "unieth",// Unichain
|
|
565
|
+
'$Evmosia.com' = "$evmosia.com",
|
|
566
|
+
'0xREVIEW' = "0xreview",
|
|
214
567
|
'1INCH' = "1inch",
|
|
215
568
|
'1UP' = "1up",
|
|
569
|
+
'3CRV' = "3crv",
|
|
216
570
|
AAVE = "aave",
|
|
217
571
|
ABT = "abt",
|
|
218
572
|
ACE = "ace",
|
|
573
|
+
ACEV2 = "acev2",
|
|
574
|
+
ACX = "acx",
|
|
219
575
|
ACXT = "acxt",
|
|
220
576
|
ACH = "ach",
|
|
221
577
|
ADABEAR = "adabear",
|
|
222
578
|
ADABULL = "adabull",
|
|
579
|
+
ADX = "adx",
|
|
223
580
|
AE = "ae",
|
|
224
581
|
AERGO = "aergo",
|
|
225
582
|
AERGO1 = "aergo1",
|
|
583
|
+
AGEUR = "ageur",
|
|
584
|
+
AGI = "agi",
|
|
585
|
+
AGIX = "agix",
|
|
226
586
|
AGLD = "agld",
|
|
227
587
|
AGWD = "agwd",
|
|
228
588
|
AION = "aion",
|
|
229
589
|
AJNA = "ajna",
|
|
230
590
|
AKRO = "akro",
|
|
231
591
|
ALCX = "alcx",
|
|
592
|
+
ALD = "ald",
|
|
232
593
|
ALDRIN = "aldrin",
|
|
233
594
|
ALEPH = "aleph",
|
|
234
595
|
ALGOBEAR = "algobear",
|
|
235
596
|
ALGOBULL = "algobull",
|
|
597
|
+
ALGODOOM = "algodoom",
|
|
236
598
|
ALGOHEDGE = "algohedge",
|
|
599
|
+
ALGOMOON = "algomoon",
|
|
600
|
+
ALTDOOM = "altdoom",
|
|
601
|
+
ALTMOON = "altmoon",
|
|
237
602
|
ALI = "ali",
|
|
238
603
|
ALICE = "alice",
|
|
239
604
|
ALK = "alk",
|
|
@@ -250,80 +615,141 @@ export declare enum UnderlyingAsset {
|
|
|
250
615
|
AMON = "amon",
|
|
251
616
|
AMPX = "ampx",
|
|
252
617
|
ANA = "ana",
|
|
618
|
+
ANC = "anc",
|
|
619
|
+
ANGLE = "angle",
|
|
253
620
|
ANKR = "ankr",
|
|
254
621
|
ANKRETH = "ankreth",
|
|
622
|
+
ANML = "anml",
|
|
255
623
|
ANT = "ant",
|
|
256
624
|
ANTV2 = "antv2",
|
|
257
625
|
AOA = "aoa",
|
|
258
626
|
APPC = "appc",
|
|
259
627
|
APT = "apt",
|
|
260
628
|
AQT = "aqt",
|
|
629
|
+
ARCUSDC = "arcusdc",
|
|
261
630
|
ARCT = "arct",
|
|
262
631
|
ARCX = "arcx",
|
|
632
|
+
ARKM = "arkm",
|
|
633
|
+
ARMOR = "armor",
|
|
634
|
+
ARPA = "arpa",
|
|
263
635
|
ARTEQ = "arteq",
|
|
264
636
|
ASD = "asd",
|
|
265
637
|
AST = "ast",
|
|
638
|
+
ASTO = "asto",
|
|
639
|
+
ATA = "ata",
|
|
640
|
+
ATF = "atf",
|
|
641
|
+
ATH = "ath",
|
|
642
|
+
ATL = "atl",
|
|
266
643
|
ATLAS = "atlas",
|
|
267
644
|
ATOMBEAR = "atombear",
|
|
268
645
|
ATOMBULL = "atombull",
|
|
269
646
|
ATRI = "atri",
|
|
647
|
+
AUCTION = "auction",
|
|
648
|
+
AUDD = "audd",
|
|
649
|
+
AUDF = "audf",
|
|
270
650
|
AUDIO = "audio",
|
|
271
651
|
AUDX = "audx",
|
|
652
|
+
AUSD = "ausd",
|
|
653
|
+
AUSDT = "ausdt",
|
|
272
654
|
AUST = "aust",
|
|
655
|
+
AVA = "ava",
|
|
656
|
+
AVT = "avt",
|
|
657
|
+
AWBTC = "awbtc",
|
|
273
658
|
AXPR = "axpr",
|
|
274
659
|
AXS = "axs",
|
|
275
660
|
AXSV2 = "axsv2",
|
|
661
|
+
AYFI = "ayfi",
|
|
662
|
+
AZUKI = "azuki",
|
|
663
|
+
AZUKI2 = "azuki2",
|
|
664
|
+
AZUKIPEPE = "azukipepe",
|
|
276
665
|
BADGER = "badger",
|
|
666
|
+
BAI = "bai",
|
|
277
667
|
BAL = "bal",
|
|
278
668
|
BAND = "band",
|
|
669
|
+
BANK = "bank",
|
|
279
670
|
BAO = "bao",
|
|
280
671
|
BASIC = "basic",
|
|
281
672
|
BAT = "bat",
|
|
282
673
|
BAX = "bax",
|
|
674
|
+
BBANK = "bbank",
|
|
283
675
|
BBSAMO = "bbsamo",
|
|
676
|
+
BBTC = "BBTC",
|
|
284
677
|
BBX = "bbx",
|
|
285
678
|
BCAP = "bcap",
|
|
286
679
|
BCC = "bcc",
|
|
287
680
|
BCHBEAR = "bchbear",
|
|
288
681
|
BCHBULL = "bchbull",
|
|
682
|
+
BCHDOOM = "bchdoom",
|
|
289
683
|
BCHHEDGE = "bchhedge",
|
|
684
|
+
BCHMOON = "bchmoon",
|
|
290
685
|
BCIO = "bcio",
|
|
686
|
+
BCUT = "bcut",
|
|
291
687
|
BCT = "bct",
|
|
688
|
+
BDXN = "bdxn",
|
|
689
|
+
BEAM = "beam",
|
|
292
690
|
BEAR = "bear",
|
|
691
|
+
BEARSHIT = "bearshit",
|
|
293
692
|
BED = "bed",
|
|
693
|
+
BEND = "bend",
|
|
294
694
|
BEPRO = "bepro",
|
|
695
|
+
BETA = "beta",
|
|
696
|
+
BGB = "bgb",
|
|
697
|
+
BGBG = "bgbg",
|
|
295
698
|
BICO = "bico",
|
|
296
699
|
BID = "bid",
|
|
297
700
|
BIDL = "bidl",
|
|
701
|
+
BIGTIME = "bigtime",
|
|
298
702
|
BIRD = "bird",
|
|
299
703
|
BIT = "bit",
|
|
704
|
+
BKT = "bkt",
|
|
705
|
+
BKX = "bkx",
|
|
706
|
+
BLCT = "blct",
|
|
300
707
|
BLT = "blt",
|
|
301
708
|
BLUR = "blur",
|
|
709
|
+
BLUR0x083 = "blur0x083",
|
|
710
|
+
BLUR0xb93 = "blur0xb93",
|
|
711
|
+
BLZ = "blz",
|
|
302
712
|
BNB = "bnb",
|
|
303
713
|
BNBBEAR = "bnbbear",
|
|
304
714
|
BNBBULL = "bnbbull",
|
|
715
|
+
BNBDOOM = "bnbdoom",
|
|
305
716
|
BNBHEDGE = "bnbhedge",
|
|
717
|
+
BNBMOON = "bnbmoon",
|
|
306
718
|
BNK = "bnk",
|
|
307
719
|
BNL = "bnl",
|
|
308
720
|
BNT = "bnt",
|
|
309
721
|
BNTY = "bnty",
|
|
722
|
+
BNVDA = "bnvda",
|
|
723
|
+
BOB = "bob",
|
|
310
724
|
BOND = "bond",
|
|
725
|
+
BONK = "bonk",
|
|
726
|
+
BONE = "bone",
|
|
727
|
+
BORG = "borg",
|
|
311
728
|
BOTTO = "botto",
|
|
312
729
|
BLOCKS = "blocks",
|
|
313
730
|
BOX = "box",
|
|
314
731
|
BOBA = "boba",
|
|
315
732
|
BRD = "brd",
|
|
733
|
+
BRIBE = "bribe",
|
|
316
734
|
BRZ = "brz",
|
|
735
|
+
BSGG = "bsgg",
|
|
317
736
|
BST = "bst",
|
|
318
737
|
BSVBEAR = "bsvbear",
|
|
319
738
|
BSVBULL = "bsvbull",
|
|
739
|
+
BSVDOOM = "bsvdoom",
|
|
320
740
|
BSVHEDGE = "bsvhedge",
|
|
741
|
+
BSVMOON = "bsvmoon",
|
|
321
742
|
BSX = "bsx",
|
|
743
|
+
BTC2XFLI = "btc2xfli",
|
|
322
744
|
BTMXBEAR = "btmxbear",
|
|
745
|
+
BTMXBULL = "btmxbull",
|
|
323
746
|
BTRST = "btrst",
|
|
747
|
+
BTSG = "btsg",
|
|
324
748
|
BTT = "btt",
|
|
325
749
|
BTU = "btu",
|
|
750
|
+
BUIDL = "buidl",
|
|
326
751
|
BULL = "bull",
|
|
752
|
+
BULLSHIT = "bullshit",
|
|
327
753
|
BURP = "burp",
|
|
328
754
|
BUSD = "busd",
|
|
329
755
|
BUY = "buy",
|
|
@@ -332,43 +758,62 @@ export declare enum UnderlyingAsset {
|
|
|
332
758
|
BXX = "bxx",
|
|
333
759
|
BXXV1 = "bxxv1",
|
|
334
760
|
BZZ = "bzz",
|
|
761
|
+
C3 = "c3",
|
|
762
|
+
C6P = "c6p",
|
|
335
763
|
C8P = "c8p",
|
|
336
764
|
C98 = "c98",
|
|
337
765
|
CACXT = "cacxt",
|
|
338
766
|
CADX = "cadx",
|
|
339
767
|
CAG = "cag",
|
|
768
|
+
CANTO = "canto",
|
|
769
|
+
CAPS = "caps",
|
|
770
|
+
CARV = "carv",
|
|
340
771
|
CASH = "cash",
|
|
341
772
|
CBAT = "cbat",
|
|
342
773
|
CBC = "cbc",
|
|
774
|
+
CBETH = "cbeth",
|
|
343
775
|
CBRL = "cbrl",
|
|
344
776
|
CCAI = "ccai",
|
|
345
777
|
CCT = "cct",
|
|
346
778
|
CDAG = "cdag",
|
|
347
779
|
CDAI = "cdai",
|
|
780
|
+
CDAIV2 = "cdaiV2",
|
|
348
781
|
CDT = "cdt",
|
|
349
782
|
CEL = "cel",
|
|
783
|
+
CELLS = "cells",
|
|
350
784
|
CELR = "celr",
|
|
351
785
|
CERE = "cere",
|
|
352
786
|
CETH = "ceth",
|
|
353
787
|
CFX = "cfx",
|
|
788
|
+
CHAINLINK = "chainlink",
|
|
789
|
+
CHART = "chart",
|
|
354
790
|
CHO = "cho",
|
|
355
791
|
CHFX = "chfx",
|
|
356
792
|
CHR = "chr",
|
|
357
793
|
CHSB = "chsb",
|
|
358
794
|
CHZ = "chz",
|
|
795
|
+
CIBO = "cibo",
|
|
359
796
|
CIX100 = "cix100",
|
|
360
797
|
CLIQ = "cliq",
|
|
361
798
|
CLN = "cln",
|
|
362
799
|
CLT = "clt",
|
|
800
|
+
CLXY = "clxy",
|
|
363
801
|
CLV = "clv",
|
|
364
802
|
CMFI = "cmfi",
|
|
803
|
+
CNFI = "cnfi",
|
|
365
804
|
CNG = "cng",
|
|
366
805
|
CNYX = "cnyx",
|
|
806
|
+
COLLAR = "collar",
|
|
807
|
+
COMBO = "combo",
|
|
367
808
|
COMP = "comp",
|
|
368
809
|
CONV = "conv",
|
|
369
810
|
COPE = "cope",
|
|
811
|
+
CORE = "core",
|
|
812
|
+
COS = "cos",
|
|
370
813
|
COTI = "coti",
|
|
814
|
+
COVAL = "coval",
|
|
371
815
|
COVER = "cover",
|
|
816
|
+
COVERPROTOCOL = "coverprotocol",
|
|
372
817
|
COW = "cow",
|
|
373
818
|
CPAY = "cpay",
|
|
374
819
|
CPLT = "cplt",
|
|
@@ -380,6 +825,7 @@ export declare enum UnderlyingAsset {
|
|
|
380
825
|
CRE = "cre",
|
|
381
826
|
CREAM = "cream",
|
|
382
827
|
CREP = "crep",
|
|
828
|
+
CRI = "cri",
|
|
383
829
|
CRO = "cro",
|
|
384
830
|
CRV = "crv",
|
|
385
831
|
CRPT = "crpt",
|
|
@@ -388,60 +834,98 @@ export declare enum UnderlyingAsset {
|
|
|
388
834
|
CSOL = "csol",
|
|
389
835
|
CSP = "csp",
|
|
390
836
|
CTSI = "ctsi",
|
|
837
|
+
CTX = "ctx",
|
|
838
|
+
CUBE = "cube",
|
|
391
839
|
CUSD = "cusd",
|
|
392
840
|
CUSDC = "cusdc",
|
|
841
|
+
CVXFXS = "cvxfxs",
|
|
393
842
|
CWAR = "cwar",
|
|
394
843
|
CWBTC = "cwbtc",
|
|
395
844
|
CVC = "cvc",
|
|
396
845
|
CVX = "cvx",
|
|
846
|
+
CXT = "cxt",
|
|
847
|
+
CYBER = "cyber",
|
|
397
848
|
CZRX = "czrx",
|
|
398
849
|
DACXI = "dacxi",
|
|
850
|
+
DADI = "dadi",
|
|
399
851
|
DAMM = "damm",
|
|
400
852
|
DAI = "dai",
|
|
401
853
|
DAO = "dao",
|
|
854
|
+
DAOLANG = "daolang",
|
|
855
|
+
DAR = "dar",
|
|
402
856
|
DATA = "data",
|
|
403
857
|
DATAV2 = "datav2",
|
|
404
858
|
DATAECON = "dataecon",
|
|
405
859
|
DAWN = "dawn",
|
|
406
860
|
DEC = "dec",
|
|
861
|
+
DEGO = "dego",
|
|
407
862
|
DENT = "dent",
|
|
408
863
|
DEP = "dep",
|
|
864
|
+
DEPAY = "depay",
|
|
409
865
|
DEXA = "dexa",
|
|
866
|
+
DEXE = "dexe",
|
|
410
867
|
DFD = "dfd",
|
|
411
868
|
DFI = "dfi",
|
|
412
869
|
DFL = "dfl",
|
|
870
|
+
DFX = "dfx",
|
|
413
871
|
DGCL = "dgcl",
|
|
414
872
|
DGD = "dgd",
|
|
415
873
|
DGLD = "dgld",
|
|
416
874
|
DGX = "dgx",
|
|
875
|
+
DHT = "dht",
|
|
417
876
|
DIGG = "digg",
|
|
418
877
|
DIA = "dia",
|
|
419
878
|
DING = "ding",
|
|
879
|
+
DIPE = "dipe",
|
|
420
880
|
DMG = "dmg",
|
|
421
881
|
DMT = "dmt",
|
|
882
|
+
DNA = "dna",
|
|
883
|
+
DNT = "dnt",
|
|
422
884
|
DODO = "dodo",
|
|
885
|
+
DOG = "dog",
|
|
423
886
|
DOGE = "doge",
|
|
887
|
+
DOGEOS = "dogeos",
|
|
424
888
|
DOGEBEAR = "dogebear",
|
|
889
|
+
DOGEBEAR2021 = "dogebear2021",
|
|
425
890
|
DOGEBULL = "dogebull",
|
|
891
|
+
DOMI = "domi",
|
|
892
|
+
DOOM = "doom",
|
|
893
|
+
DOOMSHIT = "doomshit",
|
|
894
|
+
DOSE = "dose",
|
|
895
|
+
DOTK = "dotk",
|
|
896
|
+
DPAY = "dpay",
|
|
426
897
|
DPI = "dpi",
|
|
427
898
|
DPX = "dpx",
|
|
899
|
+
DPY = "dpy",
|
|
900
|
+
DRAM = "dram",
|
|
428
901
|
DRGNBEAR = "drgnbear",
|
|
429
902
|
DRGNBULL = "drgnbull",
|
|
430
903
|
DRPU = "drpu",
|
|
431
904
|
DRV = "drv",
|
|
432
905
|
DUC = "duc",
|
|
906
|
+
DUCK = "duck",
|
|
907
|
+
DUSD = "dusd",
|
|
908
|
+
DUSK = "dusk",
|
|
909
|
+
DUST = "dust",
|
|
433
910
|
DX1U = "dx1u",
|
|
434
911
|
DXGT = "dxgt",
|
|
912
|
+
DXO = "dxo",
|
|
435
913
|
DXPT = "dxpt",
|
|
436
914
|
DXST = "dxst",
|
|
437
915
|
DYDX = "dydx",
|
|
916
|
+
DYDXCOSMOS = "dydxcosmos",
|
|
438
917
|
DYN = "dyn",
|
|
439
918
|
EASY = "easy",
|
|
440
919
|
EBTCQ = "ebtcq",
|
|
441
920
|
ECHT = "echt",
|
|
921
|
+
'eth:eco' = "eth:eco",
|
|
442
922
|
ECOX = "ecox",
|
|
923
|
+
'sol:eusx' = "sol:eusx",
|
|
443
924
|
EDEN = "eden",
|
|
444
925
|
EDISON = "edison",
|
|
926
|
+
EDLC = "edlc",
|
|
927
|
+
EDO = "edo",
|
|
928
|
+
ELON = "elon",
|
|
445
929
|
EMB = "emb",
|
|
446
930
|
EDN = "edn",
|
|
447
931
|
EDR = "edr",
|
|
@@ -449,86 +933,172 @@ export declare enum UnderlyingAsset {
|
|
|
449
933
|
EGL = "egl",
|
|
450
934
|
EGLD = "egld",
|
|
451
935
|
EGOLD = "egold",
|
|
936
|
+
EIGEN = "eigen",
|
|
452
937
|
ELF = "elf",
|
|
453
938
|
ELU = "elu",
|
|
939
|
+
EMAID = "emaid",
|
|
454
940
|
EMX = "emx",
|
|
941
|
+
ENA = "ena",
|
|
455
942
|
ENG = "eng",
|
|
456
943
|
ENJ = "enj",
|
|
457
944
|
ENS = "ens",
|
|
945
|
+
EON = "eon",
|
|
946
|
+
EOP = "eop",
|
|
458
947
|
EOSBEAR = "eosbear",
|
|
459
948
|
EOSBULL = "eosbull",
|
|
949
|
+
EOSDOOM = "eosdoom",
|
|
460
950
|
EOSHEDGE = "eoshedge",
|
|
951
|
+
EOSMOON = "eosmoon",
|
|
461
952
|
EQO = "eqo",
|
|
953
|
+
ESE = "ese",
|
|
462
954
|
ETA = "eta",
|
|
463
955
|
ETHBULL = "ethbull",
|
|
464
956
|
ETCBEAR = "etcbear",
|
|
465
957
|
ETCBULL = "etcbull",
|
|
958
|
+
ETCDOOM = "etcdoom",
|
|
959
|
+
ETCHEDOOM = "etchedoom",
|
|
960
|
+
ETCMOON = "etcmoon",
|
|
466
961
|
ETHBEAR = "ethbear",
|
|
962
|
+
ETHDOOM = "ethdoom",
|
|
963
|
+
ETHFI = "ethfi",
|
|
964
|
+
'eth:block' = "eth:block",
|
|
965
|
+
'eth:bito' = "eth:bito",
|
|
966
|
+
'ETH:ECASH' = "eth:ecash",
|
|
967
|
+
'ETH:OORT' = "eth:oort",
|
|
968
|
+
'eth:prism' = "eth:prism",
|
|
969
|
+
'eth:ultra' = "eth:ultra",
|
|
970
|
+
'eth:yprism' = "eth:yprism",
|
|
971
|
+
'eth:nvylds' = "eth:nvylds",
|
|
972
|
+
'eth:nvheloc' = "eth:nvheloc",
|
|
973
|
+
'eth:nil' = "eth:nil",
|
|
974
|
+
'eth:dragonx' = "eth:dragonx",
|
|
467
975
|
ETHHEDGE = "ethhedge",
|
|
976
|
+
ETHMOON = "ethmoon",
|
|
977
|
+
ETHOPT = "ethopt",
|
|
468
978
|
ETHOS = "ethos",
|
|
979
|
+
ETHTON = "ethton",
|
|
469
980
|
ETHX = "ethx",
|
|
470
981
|
ETV = "etv",
|
|
982
|
+
ETX = "etx",
|
|
471
983
|
EUL = "eul",
|
|
984
|
+
EURE = "eure",
|
|
985
|
+
EURL = "eurl",
|
|
986
|
+
EUROE = "euroe",
|
|
987
|
+
EUROP = "europ",
|
|
472
988
|
EURS = "eurs",
|
|
473
989
|
EURST = "eurst",
|
|
474
990
|
EURT = "eurt",
|
|
475
991
|
EURX = "eurx",
|
|
476
992
|
EUX = "eux",
|
|
477
993
|
EVER = "ever",
|
|
994
|
+
EVERY = "every",
|
|
478
995
|
EVRY = "evry",
|
|
479
996
|
EVX = "evx",
|
|
997
|
+
EXCHBEAR = "exchbear",
|
|
998
|
+
EXCHBULL = "exchbull",
|
|
999
|
+
EXCHDOOM = "exchdoom",
|
|
1000
|
+
EXCHHEDGE = "exchhedge",
|
|
1001
|
+
EXCHMOON = "exchmoon",
|
|
480
1002
|
EXE = "exe",
|
|
481
1003
|
FANT = "fant",
|
|
1004
|
+
FARM = "farm",
|
|
482
1005
|
FEI = "fei",
|
|
483
1006
|
FET = "fet",
|
|
484
1007
|
FET1 = "fet1",
|
|
485
1008
|
FDT = "fdt",
|
|
1009
|
+
FDUSD = "fdusd",
|
|
486
1010
|
FF1 = "ff1",
|
|
1011
|
+
FF6000 = "ff6000",
|
|
487
1012
|
FFT = "fft",
|
|
488
1013
|
FIDA = "fida",
|
|
1014
|
+
FIDU = "fidu",
|
|
1015
|
+
FIN = "fin",
|
|
489
1016
|
FIRE = "fire",
|
|
1017
|
+
FIRSTBLOOD = "firstblood",
|
|
1018
|
+
FIS = "fis",
|
|
490
1019
|
FIXED = "fixed",
|
|
491
1020
|
FLIP = "flip",
|
|
492
1021
|
FLOKI = "floki",
|
|
1022
|
+
FLUX = "flux",
|
|
493
1023
|
FLY = "fly",
|
|
494
1024
|
FMF = "fmf",
|
|
1025
|
+
FOLD = "fold",
|
|
1026
|
+
FOR = "for",
|
|
1027
|
+
'sol:ford' = "sol:ford",
|
|
1028
|
+
FOREX = "forex",
|
|
495
1029
|
FORT = "fort",
|
|
496
1030
|
FORTH = "forth",
|
|
497
1031
|
FOX = "fox",
|
|
1032
|
+
FPIS = "fpis",
|
|
498
1033
|
FRAX = "frax",
|
|
499
1034
|
FRONT = "front",
|
|
1035
|
+
FT = "ft",
|
|
500
1036
|
FTM = "ftm",
|
|
501
1037
|
FTT = "ftt",
|
|
1038
|
+
FTT20 = "ftt20",
|
|
1039
|
+
FTX2 = "ftx2",
|
|
1040
|
+
FUCKFTX = "fuckftx",
|
|
502
1041
|
FUN = "fun",
|
|
503
1042
|
FWB = "fwb",
|
|
1043
|
+
FX = "fx",
|
|
504
1044
|
FXRT = "fxrt",
|
|
505
1045
|
FXS = "fxs",
|
|
1046
|
+
G = "g",
|
|
506
1047
|
GAL = "gal",
|
|
507
1048
|
GALA = "gala",
|
|
508
1049
|
GALAV2 = "galav2",
|
|
1050
|
+
'GAME.COM' = "game.com",
|
|
509
1051
|
GAMMA = "gamma",
|
|
510
|
-
|
|
1052
|
+
'sol:gari' = "sol:gari",
|
|
1053
|
+
'tsol:sofid' = "tsol:sofid",
|
|
1054
|
+
'tsol:stgsofid' = "tsol:stgsofid",
|
|
1055
|
+
'sol:sofid' = "sol:sofid",
|
|
1056
|
+
'sol:usd1' = "sol:usd1",
|
|
1057
|
+
'sol:usdm1' = "sol:usdm1",
|
|
1058
|
+
'tsol:slnd' = "tsol:slnd",
|
|
1059
|
+
'tsol:orca' = "tsol:orca",
|
|
1060
|
+
'tsol:usdc' = "tsol:usdc",
|
|
1061
|
+
'tsol:ray' = "tsol:ray",
|
|
1062
|
+
'tsol:gmt' = "tsol:gmt",
|
|
1063
|
+
'tsol:usdt' = "tsol:usdt",
|
|
1064
|
+
'tsol:srm' = "tsol:srm",
|
|
1065
|
+
'tsol:wsol' = "tsol:wsol",
|
|
1066
|
+
'tsol:gari' = "tsol:gari",
|
|
1067
|
+
'tsol:t22mint' = "tsol:t22mint",
|
|
1068
|
+
'tsol:t1test' = "tsol:t1test",
|
|
1069
|
+
GAS = "gas",
|
|
511
1070
|
GATE = "gate",
|
|
512
1071
|
GBPT = "gbpt",
|
|
513
1072
|
GBPX = "gbpx",
|
|
514
1073
|
GDT = "gdt",
|
|
1074
|
+
GEAR = "gear",
|
|
515
1075
|
GEC = "gec",
|
|
1076
|
+
GEL = "gel",
|
|
516
1077
|
GEN = "gen",
|
|
517
1078
|
GENE = "gene",
|
|
518
1079
|
GENIE = "genie",
|
|
1080
|
+
GF = "gf",
|
|
519
1081
|
GFI = "gfi",
|
|
1082
|
+
GHST = "ghst",
|
|
520
1083
|
GHUB = "ghub",
|
|
521
1084
|
GIGDROP = "gigdrop",
|
|
1085
|
+
GIV = "giv",
|
|
522
1086
|
GLDX = "gldx",
|
|
523
1087
|
GLM = "glm",
|
|
1088
|
+
'sol:glxy' = "sol:glxy",
|
|
524
1089
|
GMT = "gmt",
|
|
1090
|
+
'sol:gmt' = "sol:gmt",
|
|
525
1091
|
GNO = "gno",
|
|
526
1092
|
GNT = "gnt",
|
|
1093
|
+
'sol:goat' = "sol:goat",
|
|
527
1094
|
GODS = "gods",
|
|
528
1095
|
GOHM = "gohm",
|
|
529
1096
|
GOG = "gog",
|
|
530
1097
|
GOLD = "gold",
|
|
1098
|
+
GOM = "gom",
|
|
1099
|
+
GOMINING = "gomining",
|
|
531
1100
|
GOT = "got",
|
|
1101
|
+
GRID = "grid",
|
|
532
1102
|
GRT = "grt",
|
|
533
1103
|
GST = "gst",
|
|
534
1104
|
GT = "gt",
|
|
@@ -550,36 +1120,58 @@ export declare enum UnderlyingAsset {
|
|
|
550
1120
|
GUSD = "gusd",
|
|
551
1121
|
GUSDT = "gusdt",
|
|
552
1122
|
GXC = "gxc",
|
|
1123
|
+
GXT = "gxt",
|
|
553
1124
|
GYEN = "gyen",
|
|
554
1125
|
HBB = "hbb",
|
|
1126
|
+
HBTC = "hbtc",
|
|
555
1127
|
HCN = "hcn",
|
|
556
1128
|
HDO = "hdo",
|
|
557
1129
|
HEDG = "hedg",
|
|
558
1130
|
HEDGE = "hedge",
|
|
1131
|
+
HEDGESHIT = "hedgeshit",
|
|
1132
|
+
HEX = "hex",
|
|
559
1133
|
HFT = "hft",
|
|
560
1134
|
HGET = "hget",
|
|
1135
|
+
HIGH = "high",
|
|
1136
|
+
HIFI = "hifi",
|
|
1137
|
+
HIT = "hit",
|
|
561
1138
|
HKDX = "hkdx",
|
|
562
1139
|
HLC = "hlc",
|
|
563
1140
|
HMT = "hmt",
|
|
564
|
-
|
|
1141
|
+
'sol:hnt' = "sol:hnt",
|
|
565
1142
|
HOLD = "hold",
|
|
566
1143
|
HOLY = "holy",
|
|
1144
|
+
HOP = "hop",
|
|
567
1145
|
HOT = "hot",
|
|
1146
|
+
HPO = "hpo",
|
|
1147
|
+
HQG = "hqg",
|
|
568
1148
|
HQT = "hqt",
|
|
569
1149
|
HST = "hst",
|
|
570
1150
|
HT = "ht",
|
|
1151
|
+
HTBEAR = "htbear",
|
|
571
1152
|
HTBULL = "htbull",
|
|
1153
|
+
HTDOOM = "htdoom",
|
|
1154
|
+
'hteth:bgerchv2' = "hteth:bgerchv2",
|
|
1155
|
+
'hteth:aut' = "hteth:aut",
|
|
1156
|
+
HTHEDGE = "hthedge",
|
|
1157
|
+
HTMOON = "htmoon",
|
|
572
1158
|
HUM = "hum",
|
|
1159
|
+
HUMV2 = "humv2",
|
|
573
1160
|
HUSD = "husd",
|
|
574
1161
|
HXRO = "hxro",
|
|
575
1162
|
HYB = "hyb",
|
|
576
1163
|
HYDRO = "hydro",
|
|
1164
|
+
HYDROPROTOCOL = "hydroprotocol",
|
|
577
1165
|
I8 = "i8",
|
|
1166
|
+
IBEUR = "ibeur",
|
|
1167
|
+
IBOX = "ibox",
|
|
578
1168
|
IBVOL = "ibvol",
|
|
579
1169
|
ICETH = "iceth",
|
|
1170
|
+
ID = "id",
|
|
580
1171
|
IDEX = "idex",
|
|
581
1172
|
IDRC = "idrc",
|
|
582
1173
|
IDRT = "idrt",
|
|
1174
|
+
ILV = "ilv",
|
|
583
1175
|
IMX = "imx",
|
|
584
1176
|
IMXV2 = "imxv2",
|
|
585
1177
|
INCX = "incx",
|
|
@@ -590,8 +1182,11 @@ export declare enum UnderlyingAsset {
|
|
|
590
1182
|
INJ = "inj",
|
|
591
1183
|
INJV2 = "injv2",
|
|
592
1184
|
INST = "inst",
|
|
1185
|
+
INSUR = "insur",
|
|
593
1186
|
INV = "inv",
|
|
594
1187
|
INX = "inx",
|
|
1188
|
+
IOST = "iost",
|
|
1189
|
+
IOTX = "iotx",
|
|
595
1190
|
IP3 = "ip3",
|
|
596
1191
|
ISF = "isf",
|
|
597
1192
|
ISR = "isr",
|
|
@@ -601,30 +1196,58 @@ export declare enum UnderlyingAsset {
|
|
|
601
1196
|
JBC = "jbc",
|
|
602
1197
|
JCR = "jcr",
|
|
603
1198
|
JCG = "jcg",
|
|
604
|
-
|
|
1199
|
+
'sol:jet' = "sol:jet",
|
|
605
1200
|
JFIN = "jfin",
|
|
606
1201
|
JPYX = "jpyx",
|
|
607
1202
|
JSOL = "jsol",
|
|
608
1203
|
KARATE = "karate",
|
|
1204
|
+
KARMA = "karma",
|
|
1205
|
+
KAS = "kas",
|
|
1206
|
+
KASPA = "kaspa",
|
|
1207
|
+
KCASH = "kcash",
|
|
1208
|
+
KCS = "kcs",
|
|
609
1209
|
KEEP = "keep",
|
|
610
1210
|
KEY = "key",
|
|
1211
|
+
KILL0 = "kill0",
|
|
611
1212
|
KIN = "kin",
|
|
1213
|
+
'sol:kin' = "sol:kin",
|
|
1214
|
+
KINE = "kine",
|
|
1215
|
+
KING = "king",
|
|
1216
|
+
KINTO = "kinto",
|
|
612
1217
|
KIRO = "kiro",
|
|
1218
|
+
KISHUI = "kishui",
|
|
613
1219
|
KITTY = "kitty",
|
|
614
1220
|
KNC = "knc",
|
|
615
1221
|
KNC2 = "knc2",
|
|
616
1222
|
KOIN = "koin",
|
|
1223
|
+
KOL = "kol",
|
|
617
1224
|
KOZ = "koz",
|
|
618
1225
|
KP3R = "kp3r",
|
|
1226
|
+
KRO = "kro",
|
|
1227
|
+
KROM = "krom",
|
|
619
1228
|
KTRC = "ktrc",
|
|
620
1229
|
KZE = "kze",
|
|
1230
|
+
L3 = "l3",
|
|
1231
|
+
L3USD = "l3usd",
|
|
1232
|
+
LA = "la",
|
|
1233
|
+
LADYS = "ladys",
|
|
621
1234
|
LAYER = "layer",
|
|
1235
|
+
LAYERZERO = "layerzero",
|
|
622
1236
|
LBA = "lba",
|
|
623
1237
|
LCX = "lcx",
|
|
624
1238
|
LDO = "ldo",
|
|
625
1239
|
LEND = "lend",
|
|
626
1240
|
LEO = "leo",
|
|
1241
|
+
LEOBEAR = "leobear",
|
|
1242
|
+
LEOBULL = "leobull",
|
|
1243
|
+
LEODOOM = "leodoom",
|
|
1244
|
+
LEOHEDGE = "leohedge",
|
|
1245
|
+
LEOMOON = "leomoon",
|
|
1246
|
+
LEV = "lev",
|
|
1247
|
+
LEVER = "lever",
|
|
627
1248
|
LGO = "lgo",
|
|
1249
|
+
LIEN = "lien",
|
|
1250
|
+
LIF3 = "lif3",
|
|
628
1251
|
LIKE = "like",
|
|
629
1252
|
LINA = "lina",
|
|
630
1253
|
LINK = "link",
|
|
@@ -632,29 +1255,48 @@ export declare enum UnderlyingAsset {
|
|
|
632
1255
|
LINKBULL = "linkbull",
|
|
633
1256
|
LION = "lion",
|
|
634
1257
|
LIT = "lit",
|
|
1258
|
+
LITH = "lith",
|
|
1259
|
+
LITv2 = "litv2",
|
|
1260
|
+
LKR = "lkr",
|
|
1261
|
+
LMWR = "lmwr",
|
|
635
1262
|
LNC = "lnc",
|
|
1263
|
+
LOKA = "loka",
|
|
636
1264
|
LOOKS = "looks",
|
|
637
1265
|
LOOM = "loom",
|
|
638
1266
|
LOOM1 = "loom1",
|
|
1267
|
+
LOVE = "love",
|
|
1268
|
+
LOVELY = "lovely",
|
|
639
1269
|
LOWB = "lowb",
|
|
1270
|
+
LPT = "lpt",
|
|
640
1271
|
LQID = "lqid",
|
|
1272
|
+
LQTY = "lqty",
|
|
641
1273
|
LRC = "lrc",
|
|
642
1274
|
LRCV2 = "lrcv2",
|
|
643
1275
|
LSETH = "lseth",
|
|
1276
|
+
LSK = "lsk",
|
|
644
1277
|
LTCBEAR = "ltcbear",
|
|
645
1278
|
LTCBULL = "ltcbull",
|
|
1279
|
+
LTCDOOM = "ltcdoom",
|
|
1280
|
+
LTCHEDGE = "ltchedge",
|
|
1281
|
+
LTCMOON = "ltcmoon",
|
|
1282
|
+
LTO = "lto",
|
|
646
1283
|
LUA = "lua",
|
|
647
1284
|
LUNA = "luna",
|
|
1285
|
+
LUNAWORMHOLE = "lunawormhole",
|
|
648
1286
|
LYN = "lyn",
|
|
1287
|
+
LYXE = "lyxe",
|
|
649
1288
|
MAGIC = "magic",
|
|
650
1289
|
MANA = "mana",
|
|
651
1290
|
MAPS = "maps",
|
|
1291
|
+
MASA = "masa",
|
|
652
1292
|
MASK = "mask",
|
|
653
1293
|
MATH = "math",
|
|
654
1294
|
MATIC = "matic",
|
|
655
1295
|
MATICBEAR = "maticbear",
|
|
1296
|
+
MATICBEAR2021 = "maticbear2021",
|
|
656
1297
|
MATICBULL = "maticbull",
|
|
657
1298
|
MATTER = "matter",
|
|
1299
|
+
MAV = "mav",
|
|
658
1300
|
MBS = "mbs",
|
|
659
1301
|
MCAU = "mcau",
|
|
660
1302
|
MCB = "mcb",
|
|
@@ -664,19 +1306,27 @@ export declare enum UnderlyingAsset {
|
|
|
664
1306
|
MCS = "mcs",
|
|
665
1307
|
MCX = "mcx",
|
|
666
1308
|
MDFC = "mdfc",
|
|
1309
|
+
MDT = "mdt",
|
|
667
1310
|
MDX = "mdx",
|
|
668
1311
|
MEAN = "mean",
|
|
669
1312
|
MEDIA = "media",
|
|
1313
|
+
MEDIAv2 = "mediav2",
|
|
670
1314
|
MEDX = "medx",
|
|
671
1315
|
MEME = "meme",
|
|
1316
|
+
MEOW = "meow",
|
|
672
1317
|
MER = "mer",
|
|
673
1318
|
MET = "met",
|
|
674
1319
|
META = "meta",
|
|
675
1320
|
METIS = "metis",
|
|
1321
|
+
MEW = "mew",
|
|
676
1322
|
MFG = "mfg",
|
|
677
1323
|
MFPH = "mfph",
|
|
678
1324
|
MFT = "mft",
|
|
1325
|
+
MIDBEAR = "midbear",
|
|
679
1326
|
MIDBULL = "midbull",
|
|
1327
|
+
MIDDOOM = "middoom",
|
|
1328
|
+
MIDHEDGE = "midhedge",
|
|
1329
|
+
MIDMOON = "midmoon",
|
|
680
1330
|
MILKV2 = "milkv2",
|
|
681
1331
|
MIM = "mim",
|
|
682
1332
|
MIR = "mir",
|
|
@@ -688,78 +1338,146 @@ export declare enum UnderlyingAsset {
|
|
|
688
1338
|
MNS = "mns",
|
|
689
1339
|
MNT = "mnt",
|
|
690
1340
|
MNDE = "mnde",
|
|
1341
|
+
'sol:mnde' = "sol:mnde",
|
|
691
1342
|
MOC = "moc",
|
|
1343
|
+
MOCA = "moca",
|
|
1344
|
+
MOCHI = "mochi",
|
|
692
1345
|
MOF = "mof",
|
|
1346
|
+
MOG = "mog",
|
|
1347
|
+
MOH = "moh",
|
|
1348
|
+
MOON = "moon",
|
|
1349
|
+
MOONSHIT = "moonshit",
|
|
1350
|
+
MOTHER = "mother",
|
|
693
1351
|
MNGO = "mngo",
|
|
694
1352
|
MPAY = "mpay",
|
|
695
1353
|
MPL = "mpl",
|
|
696
|
-
|
|
1354
|
+
'sol:mplx' = "sol:mplx",
|
|
1355
|
+
MRTWEET = "mrtweet",
|
|
1356
|
+
MSN = "msn",
|
|
697
1357
|
MSOL = "msol",
|
|
698
1358
|
MTA = "mta",
|
|
699
1359
|
MTCN = "mtcn",
|
|
1360
|
+
MTH = "mth",
|
|
700
1361
|
MTL = "mtl",
|
|
1362
|
+
MTV = "mtv",
|
|
701
1363
|
MUSD = "musd",
|
|
702
1364
|
MVL = "mvl",
|
|
703
1365
|
MVI = "mvi",
|
|
704
1366
|
MWT = "mwt",
|
|
1367
|
+
MYRC = "myrc",
|
|
1368
|
+
'sol:myrc' = "sol:myrc",
|
|
1369
|
+
MYTH = "myth",
|
|
1370
|
+
NAAI = "naai",
|
|
705
1371
|
NAS = "nas",
|
|
706
1372
|
NCT = "nct",
|
|
707
1373
|
NDX = "ndx",
|
|
1374
|
+
'NEAR-ERC20' = "near-erc20",
|
|
708
1375
|
NEU = "neu",
|
|
1376
|
+
NEWO = "newo",
|
|
709
1377
|
NEXO = "nexo",
|
|
1378
|
+
'NFCWIN-SB-2021' = "nfcwin-sb-2021",
|
|
1379
|
+
NFTFI = "nftfi",
|
|
710
1380
|
NFTX = "nftx",
|
|
711
1381
|
NGNT = "ngnt",
|
|
712
1382
|
NIAX = "niax",
|
|
1383
|
+
NKN = "nkn",
|
|
713
1384
|
NMR = "nmr",
|
|
1385
|
+
NOSANA = "nosana",
|
|
1386
|
+
NOTE = "note",
|
|
714
1387
|
NOVA = "nova",
|
|
1388
|
+
NPT = "npt",
|
|
715
1389
|
NPXS = "npxs",
|
|
716
1390
|
NS2DRP = "ns2drp",
|
|
717
1391
|
NU = "nu",
|
|
1392
|
+
NULS = "nuls",
|
|
1393
|
+
NUTS = "nuts",
|
|
1394
|
+
NXM = "nxm",
|
|
718
1395
|
NYM = "nym",
|
|
719
1396
|
NZDX = "nzdx",
|
|
1397
|
+
OAX = "oax",
|
|
720
1398
|
OCEAN = "ocean",
|
|
721
1399
|
OCEANV2 = "oceanv2",
|
|
1400
|
+
OCTAV = "octav",
|
|
722
1401
|
OGN = "ogn",
|
|
723
|
-
|
|
1402
|
+
OGV = "ogv",
|
|
724
1403
|
OKB = "okb",
|
|
1404
|
+
OKBBEAR = "okbbear",
|
|
725
1405
|
OKBBULL = "okbbull",
|
|
1406
|
+
OKBDOOM = "okbdoom",
|
|
1407
|
+
OKBHEDGE = "okbhedge",
|
|
1408
|
+
OKBMOON = "okbmoon",
|
|
1409
|
+
OM = "om",
|
|
1410
|
+
OMOLD = "omold",
|
|
726
1411
|
OMG = "omg",
|
|
1412
|
+
OMNI = "omni",
|
|
1413
|
+
OMNIA = "omnia",
|
|
1414
|
+
ONDO = "ondo",
|
|
727
1415
|
ONL = "onl",
|
|
1416
|
+
ONT = "ont",
|
|
1417
|
+
OOKI = "ooki",
|
|
728
1418
|
OP = "op",
|
|
1419
|
+
OPIUM = "opium",
|
|
729
1420
|
OPT = "opt",
|
|
730
1421
|
ORAI = "orai",
|
|
731
1422
|
ORBS = "orbs",
|
|
732
|
-
|
|
1423
|
+
ORC = "orc",
|
|
1424
|
+
ORN = "orn",
|
|
1425
|
+
'sol:orca' = "sol:orca",
|
|
1426
|
+
OS = "os",
|
|
1427
|
+
OSETH = "oseth",
|
|
1428
|
+
OUSD = "ousd",
|
|
733
1429
|
OUSG = "ousg",
|
|
1430
|
+
OWN = "own",
|
|
734
1431
|
OXT = "oxt",
|
|
735
1432
|
OXY = "oxy",
|
|
736
1433
|
OHM = "ohm",
|
|
1434
|
+
PACT = "pact",
|
|
737
1435
|
PAI = "pai",
|
|
738
1436
|
PAR = "par",
|
|
739
1437
|
PASS = "pass",
|
|
740
1438
|
PAU = "pau",
|
|
741
1439
|
PAX = "pax",
|
|
742
1440
|
PAXG = "paxg",
|
|
1441
|
+
PAXGBEAR = "paxgbear",
|
|
1442
|
+
PAXGBULL = "paxgbull",
|
|
743
1443
|
PAY = "pay",
|
|
744
1444
|
PBCH = "pbch",
|
|
1445
|
+
PBTC = "pbtc",
|
|
1446
|
+
PDA = "PDA",
|
|
745
1447
|
PDATA = "pdata",
|
|
746
1448
|
PDI = "pdi",
|
|
747
|
-
|
|
1449
|
+
PEAQ = "peaq",
|
|
1450
|
+
PEBBLE = "pebble",
|
|
748
1451
|
PEG = "peg",
|
|
1452
|
+
PENDLE = "pendle",
|
|
749
1453
|
PEOPLE = "people",
|
|
750
1454
|
PEPE = "pepe",
|
|
1455
|
+
PERL = "perl",
|
|
751
1456
|
PERP = "perp",
|
|
752
1457
|
PETH = "peth",
|
|
1458
|
+
PHA = "pha",
|
|
753
1459
|
PHNX = "phnx",
|
|
1460
|
+
PICK = "pick",
|
|
1461
|
+
PICKLE = "pickle",
|
|
754
1462
|
PIE = "pie",
|
|
1463
|
+
PINE = "pine",
|
|
1464
|
+
PIRATE = "pirate",
|
|
1465
|
+
PLAY = "play",
|
|
1466
|
+
PIXEL = "pixel",
|
|
755
1467
|
PLC = "plc",
|
|
756
1468
|
PFCT = "pfct",
|
|
757
1469
|
PLANET = "planet",
|
|
758
1470
|
PLNX = "plnx",
|
|
759
1471
|
PLX = "plx",
|
|
760
1472
|
PMA = "pma",
|
|
1473
|
+
PNT = "pnt",
|
|
1474
|
+
POL = "pol",
|
|
761
1475
|
POLIS = "polis",
|
|
762
1476
|
POLY = "poly",
|
|
1477
|
+
POLYX = "polyx",
|
|
1478
|
+
POLS = "pols",
|
|
1479
|
+
POND = "pond",
|
|
1480
|
+
PONYS = "ponys",
|
|
763
1481
|
PORT = "port",
|
|
764
1482
|
POWR = "powr",
|
|
765
1483
|
PPT = "ppt",
|
|
@@ -768,19 +1486,26 @@ export declare enum UnderlyingAsset {
|
|
|
768
1486
|
PRISM = "prism",
|
|
769
1487
|
PRO = "pro",
|
|
770
1488
|
PROM = "prom",
|
|
1489
|
+
PROS = "pros",
|
|
771
1490
|
PRT = "prt",
|
|
772
1491
|
PRTS = "prts",
|
|
773
1492
|
PSOL = "psol",
|
|
1493
|
+
PSP = "psp",
|
|
774
1494
|
PSTAKE = "pstake",
|
|
775
1495
|
PSY = "psy",
|
|
776
1496
|
PTU = "ptu",
|
|
777
1497
|
PUNDIX = "pundix",
|
|
1498
|
+
'sol:pump' = "sol:pump",
|
|
778
1499
|
PUSD = "pusd",
|
|
1500
|
+
PUSH = "push",
|
|
1501
|
+
PV01 = "pv01",
|
|
779
1502
|
PXP = "pxp",
|
|
780
1503
|
PYR = "pyr",
|
|
781
1504
|
PYUSD = "pyusd",
|
|
782
1505
|
QASH = "qash",
|
|
783
1506
|
QCAD = "qcad",
|
|
1507
|
+
'sol:qcad' = "sol:qcad",
|
|
1508
|
+
QOM = "qom",
|
|
784
1509
|
QUICK = "quick",
|
|
785
1510
|
QDT = "qdt",
|
|
786
1511
|
QKC = "qkc",
|
|
@@ -791,63 +1516,107 @@ export declare enum UnderlyingAsset {
|
|
|
791
1516
|
QSP = "qsp",
|
|
792
1517
|
QVT = "qvt",
|
|
793
1518
|
RAD = "rad",
|
|
1519
|
+
RADAR = "radar",
|
|
1520
|
+
RAIN = "rain",
|
|
1521
|
+
RALPH = "ralph",
|
|
794
1522
|
RAMP = "ramp",
|
|
795
1523
|
RARE = "rare",
|
|
796
1524
|
RARI = "rari",
|
|
797
1525
|
RAY = "ray",
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
1526
|
+
'sol:ray' = "sol:ray",
|
|
1527
|
+
RAZOR = "razor",
|
|
1528
|
+
RBANK = "rbank",
|
|
1529
|
+
RBN = "rbn",
|
|
801
1530
|
RBX = "rbx",
|
|
802
1531
|
RBY = "rby",
|
|
1532
|
+
RCOIN = "rcoin",
|
|
1533
|
+
RCT = "rct",
|
|
803
1534
|
RDN = "rdn",
|
|
1535
|
+
RDNT = "rdnt",
|
|
1536
|
+
REAL = "real",
|
|
804
1537
|
REB = "reb",
|
|
805
1538
|
REBL = "rebl",
|
|
806
1539
|
REEF = "reef",
|
|
1540
|
+
REF = "ref",
|
|
1541
|
+
REKTTOKEN = "rekttoken",
|
|
1542
|
+
REKTGAME = "rektgame",
|
|
807
1543
|
REN = "ren",
|
|
1544
|
+
RENBTC = "renbtc",
|
|
1545
|
+
RENDOGE = "rendoge",
|
|
808
1546
|
REP = "rep",
|
|
809
1547
|
REPV2 = "repv2",
|
|
810
1548
|
REQ = "REQ",
|
|
811
|
-
|
|
1549
|
+
'RETH-ROCKET' = "reth-rocket",
|
|
1550
|
+
'RETH-STAFI' = "reth-stafi",
|
|
812
1551
|
'RETH-H' = "reth-h",
|
|
1552
|
+
RETH2 = "reth2",
|
|
1553
|
+
REVV = "revv",
|
|
1554
|
+
REZ = "rez",
|
|
813
1555
|
RFOX = "rfox",
|
|
814
1556
|
RFR = "rfr",
|
|
815
1557
|
RFUEL = "rfuel",
|
|
816
1558
|
RGT = "rgt",
|
|
817
1559
|
RIF = "rif",
|
|
818
1560
|
RINGX = "ringx",
|
|
1561
|
+
RIO = "rio",
|
|
819
1562
|
RLC = "rlc",
|
|
1563
|
+
RLUSD = "rlusd",
|
|
820
1564
|
RLY = "rly",
|
|
1565
|
+
RN = "rn",
|
|
1566
|
+
RND = "rnd",
|
|
821
1567
|
RNDR = "rndr",
|
|
1568
|
+
RNDT = "rndt",
|
|
822
1569
|
ROOK = "rook",
|
|
823
1570
|
RON = "ron",
|
|
824
1571
|
RONC = "ronc",
|
|
825
1572
|
ROOBEE = "roobee",
|
|
1573
|
+
RPK = "rpk",
|
|
826
1574
|
RPL = "rpl",
|
|
827
1575
|
RSR = "rsr",
|
|
1576
|
+
RSWETH = "rsweth",
|
|
828
1577
|
RUBX = "rubx",
|
|
829
1578
|
RUEDATK = "ruedatk",
|
|
830
1579
|
RUN = "run",
|
|
1580
|
+
RUNE = "rune",
|
|
1581
|
+
RVR = "rvr",
|
|
1582
|
+
RYOSHI = "ryoshi",
|
|
1583
|
+
SAFE = "safe",
|
|
831
1584
|
SAIL = "sail",
|
|
1585
|
+
SAITABIT = "saitabit",
|
|
832
1586
|
SALT = "salt",
|
|
833
1587
|
SAND = "sand",
|
|
834
1588
|
SASHIMI = "sashimi",
|
|
835
1589
|
SAMO = "samo",
|
|
836
1590
|
SBC = "sbc",
|
|
1591
|
+
'sol:sbc' = "sol:sbc",
|
|
1592
|
+
'sol:veur' = "sol:veur",
|
|
1593
|
+
'sol:vchf' = "sol:vchf",
|
|
1594
|
+
'sol:tbill' = "sol:tbill",
|
|
1595
|
+
'sol:usdg' = "sol:usdg",
|
|
1596
|
+
'sol:ausd' = "sol:ausd",
|
|
1597
|
+
SBF = "sbf",
|
|
837
1598
|
SBR = "sbr",
|
|
838
1599
|
SBRIOU = "sbriou",
|
|
839
1600
|
SCNSOL = "scnsol",
|
|
840
1601
|
SCOPE = "scope",
|
|
841
1602
|
SD = "sd",
|
|
1603
|
+
SDL = "sdl",
|
|
842
1604
|
SECO = "seco",
|
|
1605
|
+
SETH = "seth",
|
|
1606
|
+
'SETH-H' = "seth-h",
|
|
843
1607
|
SETH2 = "seth2",
|
|
1608
|
+
SEWERCOIN = "sewercoin",
|
|
1609
|
+
SFI = "sfi",
|
|
844
1610
|
SGA = "sga",
|
|
845
1611
|
SGDX = "sgdx",
|
|
846
1612
|
SGR = "sgr",
|
|
847
1613
|
SGT = "sgt",
|
|
848
1614
|
SHDW = "shdw",
|
|
1615
|
+
SHEESH = "sheesh",
|
|
1616
|
+
SHIDO = "shido",
|
|
849
1617
|
SHK = "shk",
|
|
850
1618
|
SHOPX = "shopx",
|
|
1619
|
+
SHOW = "show",
|
|
851
1620
|
SHIB = "shib",
|
|
852
1621
|
SHR = "shr",
|
|
853
1622
|
SIH = "sih",
|
|
@@ -858,60 +1627,88 @@ export declare enum UnderlyingAsset {
|
|
|
858
1627
|
SLAB = "slab",
|
|
859
1628
|
SLC = "slc",
|
|
860
1629
|
SLCL = "slcl",
|
|
861
|
-
|
|
1630
|
+
'sol:slnd' = "sol:slnd",
|
|
862
1631
|
SLOT = "slot",
|
|
863
1632
|
SLP = "slp",
|
|
864
1633
|
SLRS = "slrs",
|
|
865
1634
|
SLVX = "slvx",
|
|
1635
|
+
SMT = "smt",
|
|
866
1636
|
SNC = "snc",
|
|
1637
|
+
SNM = "snm",
|
|
867
1638
|
SNOV = "snov",
|
|
868
1639
|
SNT = "snt",
|
|
869
1640
|
SNX = "snx",
|
|
870
1641
|
SNY = "sny",
|
|
871
1642
|
SOC = "soc",
|
|
872
1643
|
SOHM = "sohm",
|
|
1644
|
+
SOMM = "somm",
|
|
873
1645
|
SOS = "sos",
|
|
1646
|
+
SPA = "spa",
|
|
874
1647
|
SPELL = "spell",
|
|
1648
|
+
SPF = "spf",
|
|
875
1649
|
SPO = "spo",
|
|
876
1650
|
SOLVE = "solve",
|
|
1651
|
+
'SQUID2.0' = "squid2.0",
|
|
877
1652
|
SRNT = "srnt",
|
|
878
1653
|
SRM = "srm",
|
|
879
|
-
|
|
1654
|
+
'sol:srm' = "sol:srm",
|
|
1655
|
+
'sol:pipe' = "sol:pipe",
|
|
1656
|
+
SSV = "ssv",
|
|
880
1657
|
STARS = "stars",
|
|
1658
|
+
STATE = "state",
|
|
881
1659
|
STBU = "stbu",
|
|
882
1660
|
STC = "stc",
|
|
883
1661
|
STCV2 = "stcv2",
|
|
884
|
-
'SETH-H' = "seth-h",
|
|
885
1662
|
STEP = "step",
|
|
886
1663
|
STETH = "steth",
|
|
887
1664
|
STG = "stg",
|
|
888
1665
|
STKAAVE = "stkaave",
|
|
1666
|
+
STMX = "stmx",
|
|
889
1667
|
STORE = "store",
|
|
890
1668
|
STORJ = "storj",
|
|
891
|
-
STMX = "stmx",
|
|
892
1669
|
STORM = "storm",
|
|
1670
|
+
STPT = "stpt",
|
|
1671
|
+
STRIKE = "strike",
|
|
1672
|
+
STRK = "strk",
|
|
1673
|
+
STRONG = "strong",
|
|
893
1674
|
STSOL = "stsol",
|
|
894
1675
|
STZEN = "stzen",
|
|
895
|
-
|
|
1676
|
+
'SUI-ERC20' = "sui-erc20",
|
|
896
1677
|
SUN = "sun",
|
|
897
1678
|
SUNNY = "sunny",
|
|
1679
|
+
SUPER = "super",
|
|
1680
|
+
SUPERPERIO = "superperio",
|
|
898
1681
|
SUSD = "susd",
|
|
1682
|
+
SUSDE = "susde",
|
|
899
1683
|
SUSHI = "sushi",
|
|
900
1684
|
SQUIG = "squig",
|
|
901
1685
|
SVT = "svt",
|
|
902
1686
|
SWAG = "swag",
|
|
903
|
-
|
|
1687
|
+
SWAP = "SWAP",
|
|
1688
|
+
SWEAT = "sweat",
|
|
1689
|
+
SWETH = "sweth",
|
|
1690
|
+
SWISE = "swise",
|
|
1691
|
+
SWITCH = "switch",
|
|
1692
|
+
SWRV = "swrv",
|
|
904
1693
|
SXP = "sxp",
|
|
905
1694
|
SYN = "syn",
|
|
1695
|
+
SYNCH = "synch",
|
|
1696
|
+
SYRUP = "syrup",
|
|
906
1697
|
'SYNTH-SUSD' = "synth-susd",
|
|
1698
|
+
TAO = "tao",
|
|
907
1699
|
THRESHOLD = "threshold",
|
|
908
1700
|
THEU = "theu",
|
|
909
1701
|
TAUD = "taud",
|
|
1702
|
+
TBILL = "tbill",
|
|
910
1703
|
TBTC1 = "tbtc1",
|
|
911
1704
|
TBTC2 = "tbtc2",
|
|
912
1705
|
TCAD = "tcad",
|
|
913
1706
|
TCO = "tco",
|
|
1707
|
+
TEIGEN = "teigen",
|
|
1708
|
+
TEINU = "teinu",
|
|
914
1709
|
TEL = "tel",
|
|
1710
|
+
TELEGRAMDAO = "telegramdao",
|
|
1711
|
+
TEMPO = "tempo",
|
|
915
1712
|
TEN = "ten",
|
|
916
1713
|
TENX = "tenx",
|
|
917
1714
|
TERC = "terc",
|
|
@@ -945,44 +1742,131 @@ export declare enum UnderlyingAsset {
|
|
|
945
1742
|
TERC18DP13 = "terc18dp13",
|
|
946
1743
|
TERC18DP14 = "terc18dp14",
|
|
947
1744
|
TERC18DP15 = "terc18dp15",
|
|
1745
|
+
BGERCH = "bgerch",
|
|
1746
|
+
AMSTEST = "amstest",
|
|
1747
|
+
TERM = "term",
|
|
948
1748
|
TGBP = "tgbp",
|
|
1749
|
+
TUSDS = "tusds",
|
|
1750
|
+
TGOUSD = "tgousd",
|
|
1751
|
+
'hteth:gousd' = "hteth:gousd",
|
|
1752
|
+
'hteth:grtx' = "hteth:grtx",
|
|
1753
|
+
'hteth:sofid' = "hteth:sofid",
|
|
1754
|
+
'hteth:stgsofid' = "hteth:stgsofid",
|
|
1755
|
+
'hteth:usd1' = "hteth:usd1",
|
|
1756
|
+
'hteth:stgusd1' = "hteth:stgusd1",
|
|
1757
|
+
'hteth:cusd' = "hteth:cusd",
|
|
1758
|
+
'hteth:fyusd' = "hteth:fyusd",
|
|
1759
|
+
'hteth:stgcusd' = "hteth:stgcusd",
|
|
1760
|
+
'hteth:stgfyusd' = "hteth:stgfyusd",
|
|
1761
|
+
'hteth:qxmp' = "hteth:qxmp",
|
|
1762
|
+
'hteth:stgqxmp' = "hteth:stgqxmp",
|
|
1763
|
+
'hteth:stgwbtc' = "hteth:stgwbtc",
|
|
1764
|
+
'hteth:tsteth' = "hteth:tsteth",
|
|
1765
|
+
'hteth:tusdc' = "hteth:tusdc",
|
|
1766
|
+
'hteth:tusdt' = "hteth:tusdt",
|
|
1767
|
+
'hteth:grtxp' = "hteth:grtxp",
|
|
1768
|
+
'hteth:testeigen' = "hteth:testeigen",
|
|
1769
|
+
'hteth:wbtc' = "hteth:wbtc",
|
|
1770
|
+
'hteth:htusdl' = "hteth:htusdl",
|
|
1771
|
+
'hteth:htusdlt' = "hteth:htusdlt",
|
|
1772
|
+
'thoodeth:amzn' = "thoodeth:amzn",
|
|
1773
|
+
'thoodeth:tsla' = "thoodeth:tsla",
|
|
1774
|
+
'hoodeth:tsla' = "hoodeth:tsla",
|
|
1775
|
+
'hoodeth:usdg' = "hoodeth:usdg",
|
|
1776
|
+
'hoodeth:nvda' = "hoodeth:nvda",
|
|
1777
|
+
'hoodeth:mu' = "hoodeth:mu",
|
|
1778
|
+
'hoodeth:sndk' = "hoodeth:sndk",
|
|
1779
|
+
'hoodeth:amd' = "hoodeth:amd",
|
|
1780
|
+
'hoodeth:spy' = "hoodeth:spy",
|
|
1781
|
+
'hoodeth:msft' = "hoodeth:msft",
|
|
1782
|
+
'hoodeth:pltr' = "hoodeth:pltr",
|
|
1783
|
+
'hoodeth:intc' = "hoodeth:intc",
|
|
1784
|
+
'hoodeth:qqq' = "hoodeth:qqq",
|
|
1785
|
+
'hoodeth:slv' = "hoodeth:slv",
|
|
1786
|
+
'hoodeth:crcl' = "hoodeth:crcl",
|
|
1787
|
+
'hoodeth:meta' = "hoodeth:meta",
|
|
1788
|
+
'hoodeth:aapl' = "hoodeth:aapl",
|
|
1789
|
+
'hoodeth:googl' = "hoodeth:googl",
|
|
1790
|
+
'hoodeth:uso' = "hoodeth:uso",
|
|
1791
|
+
'hoodeth:amzn' = "hoodeth:amzn",
|
|
1792
|
+
'hoodeth:crwv' = "hoodeth:crwv",
|
|
1793
|
+
'hoodeth:orcl' = "hoodeth:orcl",
|
|
1794
|
+
'hoodeth:sgov' = "hoodeth:sgov",
|
|
1795
|
+
'hoodeth:be' = "hoodeth:be",
|
|
1796
|
+
'hoodeth:usar' = "hoodeth:usar",
|
|
1797
|
+
'hoodeth:dram' = "hoodeth:dram",
|
|
1798
|
+
'hoodeth:week' = "hoodeth:week",
|
|
1799
|
+
'hemieth:hemi' = "hemieth:hemi",
|
|
1800
|
+
'hemieth:hemibtc' = "hemieth:hemibtc",
|
|
1801
|
+
'usdt0:stable' = "usdt0:stable",
|
|
1802
|
+
'hppeth:hpp' = "hppeth:hpp",
|
|
1803
|
+
'unieth:usdc' = "unieth:usdc",
|
|
1804
|
+
'unieth:uni' = "unieth:uni",
|
|
949
1805
|
THKD = "thkd",
|
|
1806
|
+
THUNDER = "thunder",
|
|
1807
|
+
TIO = "tio",
|
|
950
1808
|
TIOX = "tiox",
|
|
951
1809
|
TKMK = "tkmk",
|
|
952
1810
|
TKNT = "tknt",
|
|
1811
|
+
TKO = "tko",
|
|
953
1812
|
TKX = "tkx",
|
|
954
1813
|
TLAB = "tlab",
|
|
955
1814
|
TLM = "tlm",
|
|
956
1815
|
TLOS = "tlos",
|
|
957
1816
|
TMATIC = "tmatic",
|
|
1817
|
+
TMSN = "tmsn",
|
|
958
1818
|
TNT = "tnt",
|
|
1819
|
+
TOKAMAK = "tokamak",
|
|
1820
|
+
TOKE = "toke",
|
|
1821
|
+
TOKEN = "token",
|
|
1822
|
+
TOMI = "tomi",
|
|
959
1823
|
TOMOBEAR = "tomobear",
|
|
1824
|
+
TOMOBEAR2 = "tomobear2",
|
|
960
1825
|
TOMOBULL = "tomobull",
|
|
961
|
-
TOMOE = "tomoe",
|
|
962
1826
|
TOK = "tok",
|
|
963
1827
|
TONCOIN = "toncoin",
|
|
964
1828
|
TOPM = "topm",
|
|
965
1829
|
TRAC = "trac",
|
|
966
1830
|
TRAXX = "traxx",
|
|
1831
|
+
TRB = "trb",
|
|
967
1832
|
TRIBE = "tribe",
|
|
1833
|
+
TRIBL = "tribl",
|
|
968
1834
|
TRL = "trl",
|
|
1835
|
+
TROY = "troy",
|
|
969
1836
|
TRST = "trst",
|
|
970
1837
|
TRU = "tru",
|
|
1838
|
+
TRUF = "truf",
|
|
1839
|
+
TRUFV2 = "trufv2",
|
|
1840
|
+
TRUMPLOSE = "trumplose",
|
|
1841
|
+
TRUMPWIN = "trumpwin",
|
|
971
1842
|
TRXBEAR = "trxbear",
|
|
972
1843
|
TRXBULL = "trxbull",
|
|
1844
|
+
TRXDOOM = "trxdoom",
|
|
1845
|
+
'TRX-ERC20' = "TRX-ERC20",
|
|
973
1846
|
TRXHEDGE = "trxhedge",
|
|
1847
|
+
TRXMOON = "trxmoon",
|
|
974
1848
|
TRYB = "tryb",
|
|
975
1849
|
TRYB2 = "tryb2",
|
|
1850
|
+
TRYBBEAR = "trybbear",
|
|
1851
|
+
TRYBBULL = "trybbull",
|
|
976
1852
|
TRYX = "tryx",
|
|
1853
|
+
TST = "tst",
|
|
1854
|
+
TSUKA = "tsuka",
|
|
977
1855
|
TULIP = "tulip",
|
|
978
1856
|
TUPOLIS = "tupolis",
|
|
979
1857
|
TUSD = "tusd",
|
|
1858
|
+
TUSDC = "tusdc",
|
|
1859
|
+
TUSDT = "tusdt",
|
|
980
1860
|
TUSRM = "tusrm",
|
|
981
1861
|
TWDOGE = "twdoge",
|
|
1862
|
+
TWETH = "tweth",
|
|
982
1863
|
TXL = "txl",
|
|
1864
|
+
TXSGD = "txsgd",
|
|
1865
|
+
TXUSD = "txusd",
|
|
983
1866
|
UAIR = "uair",
|
|
984
1867
|
UBXT = "ubxt",
|
|
985
1868
|
UCO = "uco",
|
|
1869
|
+
UFT = "uft",
|
|
986
1870
|
UKG = "ukg",
|
|
987
1871
|
UMA = "uma",
|
|
988
1872
|
UMEE = "umee",
|
|
@@ -996,36 +1880,89 @@ export declare enum UnderlyingAsset {
|
|
|
996
1880
|
UPUSD = "upusd",
|
|
997
1881
|
UQC = "uqc",
|
|
998
1882
|
URHD = "urhd",
|
|
1883
|
+
'sol:usdt' = "sol:usdt",
|
|
1884
|
+
'sol:usdc' = "sol:usdc",
|
|
1885
|
+
'sol:agri' = "sol:agri",
|
|
1886
|
+
'sol:usdca' = "sol:usdca",
|
|
1887
|
+
'sol:sonic' = "sol:sonic",
|
|
1888
|
+
'sol:crdt' = "sol:crdt",
|
|
1889
|
+
'sol:epxc' = "sol:epxc",
|
|
1890
|
+
'sol:eqtyx' = "sol:eqtyx",
|
|
1891
|
+
'sol:flttx' = "sol:flttx",
|
|
1892
|
+
'sol:lngvx' = "sol:lngvx",
|
|
1893
|
+
'sol:modrx' = "sol:modrx",
|
|
1894
|
+
'sol:spxux' = "sol:spxux",
|
|
1895
|
+
'sol:techx' = "sol:techx",
|
|
1896
|
+
'sol:tipsx' = "sol:tipsx",
|
|
1897
|
+
'sol:wtgxx' = "sol:wtgxx",
|
|
1898
|
+
'sol:wtlgx' = "sol:wtlgx",
|
|
1899
|
+
'sol:wtstx' = "sol:wtstx",
|
|
1900
|
+
'sol:wttsx' = "sol:wttsx",
|
|
1901
|
+
'sol:wtsix' = "sol:wtsix",
|
|
1902
|
+
'sol:wtsyx' = "sol:wtsyx",
|
|
1903
|
+
USCC = "uscc",
|
|
999
1904
|
USDC = "usdc",
|
|
1905
|
+
'USDC-POS-WORMHOLE' = "usdc-pos-wormhole",
|
|
1906
|
+
USDD = "usdd",
|
|
1907
|
+
USDE = "usde",
|
|
1908
|
+
USDGLO = "usdglo",
|
|
1000
1909
|
USDH = "usdh",
|
|
1910
|
+
USDK = "usdk",
|
|
1001
1911
|
USDT = "usdt",
|
|
1912
|
+
USDTBEAR = "usdtbear",
|
|
1913
|
+
USDTBULL = "usdtbull",
|
|
1914
|
+
USDTDOOM = "usdtdoom",
|
|
1915
|
+
USDTHEDGE = "usdthedge",
|
|
1916
|
+
USDTMOON = "usdtmoon",
|
|
1002
1917
|
USDX = "usdx",
|
|
1918
|
+
USDY = "usdy",
|
|
1003
1919
|
USG = "usg",
|
|
1004
1920
|
USPX = "uspx",
|
|
1005
1921
|
UST = "ust",
|
|
1922
|
+
USTB = "ustb",
|
|
1923
|
+
'UST-WORMHOLE' = "ust-wormhole",
|
|
1006
1924
|
USX = "usx",
|
|
1925
|
+
USYC = "usyc",
|
|
1007
1926
|
UTK = "utk",
|
|
1008
1927
|
UTK1 = "utk1",
|
|
1009
1928
|
UXB = "uxb",
|
|
1010
1929
|
UXP = "uxp",
|
|
1011
1930
|
VALOR = "valor",
|
|
1931
|
+
VANRY = "vanry",
|
|
1932
|
+
VBNT = "vbnt",
|
|
1012
1933
|
VCORE = "vcore",
|
|
1013
1934
|
VDX = "vdx",
|
|
1935
|
+
VEC = "vec",
|
|
1936
|
+
VEE = "vee",
|
|
1014
1937
|
VEGA = "vega",
|
|
1015
1938
|
VEXT = "vext",
|
|
1016
1939
|
VGX = "vgx",
|
|
1940
|
+
VI = "vi",
|
|
1941
|
+
VIB = "vib",
|
|
1942
|
+
VIC = "vic",
|
|
1943
|
+
VIDT = "vidt",
|
|
1017
1944
|
VISR = "visr",
|
|
1945
|
+
VIU = "viu",
|
|
1946
|
+
VOLT = "volt",
|
|
1947
|
+
VRA = "vra",
|
|
1018
1948
|
VRGX = "vrgx",
|
|
1019
|
-
|
|
1020
|
-
VI = "vi",
|
|
1949
|
+
VRTX = "vrtx",
|
|
1021
1950
|
VSP = "vsp",
|
|
1951
|
+
VXC = "vxc",
|
|
1952
|
+
VXV = "vxv",
|
|
1953
|
+
W = "w",
|
|
1022
1954
|
WAAVE = "waave",
|
|
1955
|
+
WABI = "wabi",
|
|
1023
1956
|
WAFL = "wafl",
|
|
1957
|
+
WAGMI = "wagmi",
|
|
1024
1958
|
WAVAX = "wavax",
|
|
1025
1959
|
WAVES = "waves",
|
|
1026
1960
|
WAX = "wax",
|
|
1027
|
-
|
|
1961
|
+
WAXP = "waxp",
|
|
1028
1962
|
WBNB = "wbnb",
|
|
1963
|
+
WECAN = "wecan",
|
|
1964
|
+
WFEE = "wfee",
|
|
1965
|
+
WHAT = "what",
|
|
1029
1966
|
WOO = "woo",
|
|
1030
1967
|
WTK = "wtk",
|
|
1031
1968
|
WBTC = "wbtc",
|
|
@@ -1033,23 +1970,30 @@ export declare enum UnderlyingAsset {
|
|
|
1033
1970
|
WDOGE = "wdoge",
|
|
1034
1971
|
WCFG = "wcfg",
|
|
1035
1972
|
WEC = "wec",
|
|
1973
|
+
'sol:wec' = "sol:wec",
|
|
1036
1974
|
WET = "wet",
|
|
1037
1975
|
WETH = "weth",
|
|
1976
|
+
WEETH = "weeth",
|
|
1038
1977
|
WFLOW = "wflow",
|
|
1039
1978
|
WFFT = "wfft",
|
|
1040
1979
|
WHALE = "whale",
|
|
1041
1980
|
WHT = "wht",
|
|
1042
1981
|
WILD = "wild",
|
|
1982
|
+
WING = "wing",
|
|
1043
1983
|
WNXM = "wnxm",
|
|
1044
1984
|
WLD = "wld",
|
|
1045
1985
|
WLUNA = "wluna",
|
|
1046
1986
|
WLXT = "wlxt",
|
|
1047
|
-
|
|
1987
|
+
'sol:wsol' = "sol:wsol",
|
|
1988
|
+
WROSE = "wrose",
|
|
1048
1989
|
WSTETH = "wsteth",
|
|
1049
1990
|
WPX = "wpx",
|
|
1991
|
+
WTAO = "wtao",
|
|
1050
1992
|
WTC = "wtc",
|
|
1993
|
+
WTGXX = "wtgxx",
|
|
1051
1994
|
WUSDC = "wusdc",
|
|
1052
1995
|
WUSDCV2 = "wusdvcv2",
|
|
1996
|
+
WUSDM = "wusdm",
|
|
1053
1997
|
WUSDTV2 = "wusdtv2",
|
|
1054
1998
|
WXRP = "wxrp",
|
|
1055
1999
|
WXRPV0 = "wxrpv0",
|
|
@@ -1061,21 +2005,31 @@ export declare enum UnderlyingAsset {
|
|
|
1061
2005
|
XAUTBULL = "xautbull",
|
|
1062
2006
|
XBGOLD = "xbgold",
|
|
1063
2007
|
XCD = "xcd",
|
|
2008
|
+
XCHNG = "xchng",
|
|
1064
2009
|
XCN = "xcn",
|
|
1065
2010
|
XDEFI = "xdefi",
|
|
2011
|
+
XDOGE = "xdoge",
|
|
1066
2012
|
XEX = "xex",
|
|
1067
2013
|
XLMBEAR = "xlmbear",
|
|
1068
2014
|
XLMBULL = "xlmbull",
|
|
2015
|
+
'xpl:syzusd' = "xpl:syzusd",
|
|
2016
|
+
'xpl:usdto' = "xpl:usdto",
|
|
1069
2017
|
XRL = "xrl",
|
|
1070
2018
|
XRPBEAR = "xrpbear",
|
|
1071
2019
|
XRPBULL = "xrpbull",
|
|
2020
|
+
XRPDOOM = "xrpdoom",
|
|
1072
2021
|
XRPHEDGE = "xrphedge",
|
|
2022
|
+
XRPMOON = "xrpmoon",
|
|
1073
2023
|
XSGD = "xsgd",
|
|
1074
2024
|
XSUSHI = "xsushi",
|
|
1075
2025
|
XTP = "xtp",
|
|
1076
2026
|
XTZBEAR = "xtzbear",
|
|
1077
2027
|
XTZBULL = "xtzbull",
|
|
1078
2028
|
XUSD = "xusd",
|
|
2029
|
+
XVS = "xvs",
|
|
2030
|
+
XX = "xx",
|
|
2031
|
+
XZK = "xzk",
|
|
2032
|
+
YAMV2 = "yamv2",
|
|
1079
2033
|
YFDAI = "yfdai",
|
|
1080
2034
|
YFI = "yfi",
|
|
1081
2035
|
YFII = "yfii",
|
|
@@ -1087,16 +2041,364 @@ export declare enum UnderlyingAsset {
|
|
|
1087
2041
|
ZARX = "zarx",
|
|
1088
2042
|
ZBC = "zbc",
|
|
1089
2043
|
ZBU = "zbu",
|
|
2044
|
+
ZBUV2 = "zbuv2",
|
|
1090
2045
|
ZCO = "zco",
|
|
1091
2046
|
ZECBEAR = "zecbear",
|
|
1092
2047
|
ZECBULL = "zecbull",
|
|
2048
|
+
ZETAEVM = "zetaevm",
|
|
1093
2049
|
ZIL = "zil",
|
|
2050
|
+
ZIP = "zip",
|
|
1094
2051
|
ZIX = "zix",
|
|
2052
|
+
ZKL = "zkl",
|
|
2053
|
+
ZKS = "zks",
|
|
1095
2054
|
ZLW = "zlw",
|
|
1096
2055
|
ZMT = "zmt",
|
|
1097
2056
|
ZOOM = "zoom",
|
|
2057
|
+
ZRO = "zro",
|
|
2058
|
+
BOBAETH = "bobaeth",
|
|
2059
|
+
'ZRO-0x320' = "zro-0x320",
|
|
2060
|
+
'ZRO-0xFCF' = "zro-0xfcf",
|
|
2061
|
+
'ZRO-0xE5C' = "zro-0xe5c",
|
|
1098
2062
|
ZRX = "zrx",
|
|
1099
2063
|
ZUSD = "zusd",
|
|
2064
|
+
'eth:usdg' = "eth:usdg",
|
|
2065
|
+
'eth:spxux' = "eth:spxux",
|
|
2066
|
+
'eth:aleo' = "eth:aleo",
|
|
2067
|
+
'eth:dbusd' = "eth:dbusd",
|
|
2068
|
+
'eth:edu' = "eth:edu",
|
|
2069
|
+
'eth:telos' = "eth:telos",
|
|
2070
|
+
'eth:cusdo' = "eth:cusdo",
|
|
2071
|
+
'eth:aevo' = "eth:aevo",
|
|
2072
|
+
'eth:alt' = "eth:alt",
|
|
2073
|
+
'eth:rtbl' = "eth:rtbl",
|
|
2074
|
+
'eth:virtual' = "eth:virtual",
|
|
2075
|
+
'eth:vice' = "eth:vice",
|
|
2076
|
+
'eth:audu' = "eth:audu",
|
|
2077
|
+
'eth:wlfi' = "eth:wlfi",
|
|
2078
|
+
'eth:kava' = "eth:kava",
|
|
2079
|
+
'eth:gousd' = "eth:gousd",
|
|
2080
|
+
'eth:iq' = "eth:iq",
|
|
2081
|
+
'eth:iris' = "eth:iris",
|
|
2082
|
+
'eth:hard' = "eth:hard",
|
|
2083
|
+
'eth:hegic' = "eth:hegic",
|
|
2084
|
+
'eth:spx' = "eth:spx",
|
|
2085
|
+
'eth:exrd' = "eth:exrd",
|
|
2086
|
+
'eth:turbo' = "eth:turbo",
|
|
2087
|
+
'eth:icnt' = "eth:icnt",
|
|
2088
|
+
'eth:god' = "eth:god",
|
|
2089
|
+
'eth:sky' = "eth:sky",
|
|
2090
|
+
'eth:uco' = "eth:uco",
|
|
2091
|
+
'eth:fuel' = "eth:fuel",
|
|
2092
|
+
'eth:xprism' = "eth:xprism",
|
|
2093
|
+
'eth:xreth' = "eth:xreth",
|
|
2094
|
+
'eth:xy' = "eth:xy",
|
|
2095
|
+
'eth:yu' = "eth:yu",
|
|
2096
|
+
'eth:move' = "eth:move",
|
|
2097
|
+
'eth:mon' = "eth:mon",
|
|
2098
|
+
'eth:usual' = "eth:usual",
|
|
2099
|
+
'eth:usd1' = "eth:usd1",
|
|
2100
|
+
'eth:usdm1' = "eth:usdm1",
|
|
2101
|
+
'eth:sofid' = "eth:sofid",
|
|
2102
|
+
'eth:cusd' = "eth:cusd",
|
|
2103
|
+
'eth:fyusd' = "eth:fyusd",
|
|
2104
|
+
'eth:qxmp' = "eth:qxmp",
|
|
2105
|
+
'eth:ibtc' = "eth:ibtc",
|
|
2106
|
+
'eth:pyr' = "eth:pyr",
|
|
2107
|
+
'eth:una' = "eth:una",
|
|
2108
|
+
'eth:ads' = "eth:ads",
|
|
2109
|
+
'eth:fuelv1' = "eth:fuelv1",
|
|
2110
|
+
'eth:cet' = "eth:cet",
|
|
2111
|
+
'eth:unio' = "eth:unio",
|
|
2112
|
+
'eth:flttx' = "eth:flttx",
|
|
2113
|
+
'eth:wtsix' = "eth:wtsix",
|
|
2114
|
+
'eth:modrx' = "eth:modrx",
|
|
2115
|
+
'eth:techx' = "eth:techx",
|
|
2116
|
+
'eth:wtsyx' = "eth:wtsyx",
|
|
2117
|
+
'eth:wtlgx' = "eth:wtlgx",
|
|
2118
|
+
'eth:wttsx' = "eth:wttsx",
|
|
2119
|
+
'eth:tipsx' = "eth:tipsx",
|
|
2120
|
+
'eth:wtstx' = "eth:wtstx",
|
|
2121
|
+
'eth:lngvx' = "eth:lngvx",
|
|
2122
|
+
'eth:eqtyx' = "eth:eqtyx",
|
|
2123
|
+
'eth:deuro' = "eth:deuro",
|
|
2124
|
+
'eth:usat' = "eth:usat",
|
|
2125
|
+
'eth:usdf' = "eth:usdf",
|
|
2126
|
+
'eth:ausd' = "eth:ausd",
|
|
2127
|
+
'eth:ags' = "eth:ags",
|
|
2128
|
+
'eth:aus' = "eth:aus",
|
|
2129
|
+
'eth:reya' = "eth:reya",
|
|
2130
|
+
'eth:usdp' = "eth:usdp",
|
|
2131
|
+
'eth:grtx' = "eth:grtx",
|
|
2132
|
+
'eth:gaia' = "eth:gaia",
|
|
2133
|
+
'eth:usds' = "eth:usds",
|
|
2134
|
+
'eth:perc' = "eth:perc",
|
|
2135
|
+
'eth:cfg' = "eth:cfg",
|
|
2136
|
+
'eth:plume' = "eth:plume",
|
|
2137
|
+
'eth:vbill' = "eth:vbill",
|
|
2138
|
+
'eth:la' = "eth:la",
|
|
2139
|
+
'eth:es' = "eth:es",
|
|
2140
|
+
'eth:ctrl' = "eth:ctrl",
|
|
2141
|
+
'eth:benji' = "eth:benji",
|
|
2142
|
+
'eth:ibenji' = "eth:ibenji",
|
|
2143
|
+
'eth:chex' = "eth:chex",
|
|
2144
|
+
'eth:gho' = "eth:gho",
|
|
2145
|
+
'eth:npc' = "eth:npc",
|
|
2146
|
+
'eth:towns' = "eth:towns",
|
|
2147
|
+
'eth:umint' = "eth:umint",
|
|
2148
|
+
'eth:arb' = "eth:arb",
|
|
2149
|
+
'eth:ez' = "eth:ez",
|
|
2150
|
+
'eth:ncash' = "eth:ncash",
|
|
2151
|
+
'eth:sub' = "eth:sub",
|
|
2152
|
+
'eth:poe' = "eth:poe",
|
|
2153
|
+
'eth:ocn' = "eth:ocn",
|
|
2154
|
+
'eth:banca' = "eth:banca",
|
|
2155
|
+
'eth:stq' = "eth:stq",
|
|
2156
|
+
'eth:route' = "eth:route",
|
|
2157
|
+
'eth:ryt' = "eth:ryt",
|
|
2158
|
+
'eth:guild' = "eth:guild",
|
|
2159
|
+
'eth:rdo' = "eth:rdo",
|
|
2160
|
+
'eth:h' = "eth:h",
|
|
2161
|
+
'eth:wbt' = "eth:wbt",
|
|
2162
|
+
'eth:ftn' = "eth:ftn",
|
|
2163
|
+
'eth:sc' = "eth:sc",
|
|
2164
|
+
'eth:lf' = "eth:lf",
|
|
2165
|
+
'eth:usdcv' = "eth:usdcv",
|
|
2166
|
+
'eth:cake' = "eth:cake",
|
|
2167
|
+
'eth:nft' = "eth:nft",
|
|
2168
|
+
'eth:morpho' = "eth:morpho",
|
|
2169
|
+
'eth:usdd' = "eth:usdd",
|
|
2170
|
+
'eth:mx' = "eth:mx",
|
|
2171
|
+
'eth:flz' = "eth:flz",
|
|
2172
|
+
'eth:usd0' = "eth:usd0",
|
|
2173
|
+
'eth:white' = "eth:white",
|
|
2174
|
+
'eth:upc' = "eth:upc",
|
|
2175
|
+
'eth:lgct' = "eth:lgct",
|
|
2176
|
+
'eth:usdtb' = "eth:usdtb",
|
|
2177
|
+
'eth:deusd' = "eth:deusd",
|
|
2178
|
+
'eth:neiro' = "eth:neiro",
|
|
2179
|
+
'eth:vana' = "eth:vana",
|
|
2180
|
+
'eth:eurau' = "eth:eurau",
|
|
2181
|
+
'eth:insur' = "eth:insur",
|
|
2182
|
+
'eth:xyo' = "eth:xyo",
|
|
2183
|
+
'eth:zig' = "eth:zig",
|
|
2184
|
+
'eth:swftc' = "eth:swftc",
|
|
2185
|
+
'eth:dsync' = "eth:dsync",
|
|
2186
|
+
'eth:orbr' = "eth:orbr",
|
|
2187
|
+
'eth:sxt' = "eth:sxt",
|
|
2188
|
+
'eth:paal' = "eth:paal",
|
|
2189
|
+
'eth:wmtx' = "eth:wmtx",
|
|
2190
|
+
'eth:anime' = "eth:anime",
|
|
2191
|
+
'eth:anvl' = "eth:anvl",
|
|
2192
|
+
'eth:newt' = "eth:newt",
|
|
2193
|
+
'eth:hsk' = "eth:hsk",
|
|
2194
|
+
'eth:rog' = "eth:rog",
|
|
2195
|
+
'eth:xaum' = "eth:xaum",
|
|
2196
|
+
'eth:avail' = "eth:avail",
|
|
2197
|
+
'eth:dolo' = "eth:dolo",
|
|
2198
|
+
'eth:era' = "eth:era",
|
|
2199
|
+
'eth:ugold' = "eth:ugold",
|
|
2200
|
+
'eth:seda' = "eth:seda",
|
|
2201
|
+
'eth:enso' = "eth:enso",
|
|
2202
|
+
'eth:hpp' = "eth:hpp",
|
|
2203
|
+
'eth:lit' = "eth:lit",
|
|
2204
|
+
'eth:aedz' = "eth:aedz",
|
|
2205
|
+
'eth:arm-susde-usde' = "eth:arm-susde-usde",
|
|
2206
|
+
'eth:arm-weth-eeth' = "eth:arm-weth-eeth",
|
|
2207
|
+
'eth:cashplus' = "eth:cashplus",
|
|
2208
|
+
'eth:cbbtc' = "eth:cbbtc",
|
|
2209
|
+
'eth:island' = "eth:island",
|
|
2210
|
+
'eth:six' = "eth:six",
|
|
2211
|
+
'eth:eden' = "eth:eden",
|
|
2212
|
+
'eth:xeden' = "eth:xeden",
|
|
2213
|
+
'eth:linea' = "eth:linea",
|
|
2214
|
+
'eth:ff' = "eth:ff",
|
|
2215
|
+
'eth:mavia' = "eth:mavia",
|
|
2216
|
+
'eth:lm' = "eth:lm",
|
|
2217
|
+
'eth:kub' = "eth:kub",
|
|
2218
|
+
'eth:fidd' = "eth:fidd",
|
|
2219
|
+
'eth:meme' = "eth:meme",
|
|
2220
|
+
'eth:bard' = "eth:bard",
|
|
2221
|
+
'eth:sfp' = "eth:sfp",
|
|
2222
|
+
'eth:aztec' = "eth:aztec",
|
|
2223
|
+
'eth:qqqon' = "qqqon",
|
|
2224
|
+
'eth:spyon' = "spyon",
|
|
2225
|
+
'eth:nvdaon' = "nvdaon",
|
|
2226
|
+
'eth:tslaon' = "tslaon",
|
|
2227
|
+
'eth:aaplon' = "aaplon",
|
|
2228
|
+
'eth:mstron' = "mstron",
|
|
2229
|
+
'eth:pltron' = "pltron",
|
|
2230
|
+
'eth:hoodon' = "hoodon",
|
|
2231
|
+
'eth:crclon' = "crclon",
|
|
2232
|
+
'eth:coinon' = "coinon",
|
|
2233
|
+
'eth:amznon' = "amznon",
|
|
2234
|
+
'eth:googlon' = "googlon",
|
|
2235
|
+
'eth:metaon' = "metaon",
|
|
2236
|
+
'eth:babaon' = "babaon",
|
|
2237
|
+
'eth:msfton' = "msfton",
|
|
2238
|
+
'eth:spgion' = "spgion",
|
|
2239
|
+
'eth:tsmon' = "tsmon",
|
|
2240
|
+
'eth:amdon' = "amdon",
|
|
2241
|
+
'eth:unhon' = "unhon",
|
|
2242
|
+
'eth:jpmon' = "jpmon",
|
|
2243
|
+
'eth:orclon' = "orclon",
|
|
2244
|
+
'eth:von' = "von",
|
|
2245
|
+
'eth:maon' = "maon",
|
|
2246
|
+
'eth:llyon' = "llyon",
|
|
2247
|
+
'eth:nflxon' = "nflxon",
|
|
2248
|
+
'eth:coston' = "coston",
|
|
2249
|
+
'eth:iauon' = "iauon",
|
|
2250
|
+
'eth:ivvon' = "ivvon",
|
|
2251
|
+
'eth:slvon' = "slvon",
|
|
2252
|
+
'eth:iwnon' = "eth:iwnon",
|
|
2253
|
+
'eth:qbtson' = "eth:qbtson",
|
|
2254
|
+
'eth:tipon' = "eth:tipon",
|
|
2255
|
+
'eth:ulon' = "eth:ulon",
|
|
2256
|
+
'eth:itoton' = "eth:itoton",
|
|
2257
|
+
'eth:hygon' = "eth:hygon",
|
|
2258
|
+
'eth:gmeon' = "eth:gmeon",
|
|
2259
|
+
'eth:pbron' = "eth:pbron",
|
|
2260
|
+
'eth:eqixon' = "eth:eqixon",
|
|
2261
|
+
'eth:rioton' = "eth:rioton",
|
|
2262
|
+
'eth:maraon' = "eth:maraon",
|
|
2263
|
+
'eth:pfeon' = "eth:pfeon",
|
|
2264
|
+
'eth:eemon' = "eth:eemon",
|
|
2265
|
+
'eth:cmcsaon' = "eth:cmcsaon",
|
|
2266
|
+
'eth:sonyon' = "eth:sonyon",
|
|
2267
|
+
'eth:pyplon' = "eth:pyplon",
|
|
2268
|
+
'eth:himson' = "eth:himson",
|
|
2269
|
+
'eth:abton' = "eth:abton",
|
|
2270
|
+
'eth:nvoon' = "eth:nvoon",
|
|
2271
|
+
'eth:efaon' = "eth:efaon",
|
|
2272
|
+
'eth:nkeon' = "eth:nkeon",
|
|
2273
|
+
'eth:intcon' = "eth:intcon",
|
|
2274
|
+
'eth:iefaon' = "eth:iefaon",
|
|
2275
|
+
'eth:smcion' = "eth:smcion",
|
|
2276
|
+
'eth:mrvlon' = "eth:mrvlon",
|
|
2277
|
+
'eth:aggon' = "eth:aggon",
|
|
2278
|
+
'eth:sbuxon' = "eth:sbuxon",
|
|
2279
|
+
'eth:uberon' = "eth:uberon",
|
|
2280
|
+
'eth:abnbon' = "eth:abnbon",
|
|
2281
|
+
'eth:qcomon' = "eth:qcomon",
|
|
2282
|
+
'eth:cscoon' = "eth:cscoon",
|
|
2283
|
+
'eth:futuon' = "eth:futuon",
|
|
2284
|
+
'eth:cmgon' = "eth:cmgon",
|
|
2285
|
+
'eth:iwfon' = "eth:iwfon",
|
|
2286
|
+
'eth:koon' = "eth:koon",
|
|
2287
|
+
'eth:linon' = "eth:linon",
|
|
2288
|
+
'eth:armon' = "eth:armon",
|
|
2289
|
+
'eth:jdon' = "eth:jdon",
|
|
2290
|
+
'eth:muon' = "eth:muon",
|
|
2291
|
+
'eth:wmton' = "eth:wmton",
|
|
2292
|
+
'eth:tmon' = "eth:tmon",
|
|
2293
|
+
'eth:shopon' = "eth:shopon",
|
|
2294
|
+
'eth:rddton' = "eth:rddton",
|
|
2295
|
+
'eth:dison' = "eth:dison",
|
|
2296
|
+
'eth:apoon' = "eth:apoon",
|
|
2297
|
+
'eth:pepon' = "eth:pepon",
|
|
2298
|
+
'eth:wfcon' = "eth:wfcon",
|
|
2299
|
+
'eth:biduon' = "eth:biduon",
|
|
2300
|
+
'eth:mson' = "eth:mson",
|
|
2301
|
+
'eth:pgon' = "eth:pgon",
|
|
2302
|
+
'eth:cvxon' = "eth:cvxon",
|
|
2303
|
+
'eth:panwon' = "eth:panwon",
|
|
2304
|
+
'eth:avgoon' = "eth:avgoon",
|
|
2305
|
+
'eth:crmon' = "eth:crmon",
|
|
2306
|
+
'eth:snowon' = "eth:snowon",
|
|
2307
|
+
'eth:axpon' = "eth:axpon",
|
|
2308
|
+
'eth:ibmon' = "eth:ibmon",
|
|
2309
|
+
'eth:dashon' = "eth:dashon",
|
|
2310
|
+
'eth:acnon' = "eth:acnon",
|
|
2311
|
+
'eth:ijhon' = "eth:ijhon",
|
|
2312
|
+
'eth:baon' = "eth:baon",
|
|
2313
|
+
'eth:geon' = "eth:geon",
|
|
2314
|
+
'eth:appon' = "eth:appon",
|
|
2315
|
+
'eth:lmton' = "eth:lmton",
|
|
2316
|
+
'eth:intuon' = "eth:intuon",
|
|
2317
|
+
'eth:mcdon' = "eth:mcdon",
|
|
2318
|
+
'eth:gson' = "eth:gson",
|
|
2319
|
+
'eth:adbeon' = "eth:adbeon",
|
|
2320
|
+
'eth:spoton' = "eth:spoton",
|
|
2321
|
+
'eth:blkon' = "eth:blkon",
|
|
2322
|
+
'eth:asmlon' = "eth:asmlon",
|
|
2323
|
+
'eth:nowon' = "eth:nowon",
|
|
2324
|
+
'eth:iwmon' = "eth:iwmon",
|
|
2325
|
+
'eth:melion' = "eth:melion",
|
|
2326
|
+
'eth:tlton' = "eth:tlton",
|
|
2327
|
+
'eth:grndon' = "eth:grndon",
|
|
2328
|
+
'eth:figon' = "eth:figon",
|
|
2329
|
+
'eth:iemgon' = "eth:iemgon",
|
|
2330
|
+
'eth:sbeton' = "eth:sbeton",
|
|
2331
|
+
'eth:usdo' = "eth:usdo",
|
|
2332
|
+
'eth:align' = "eth:align",
|
|
2333
|
+
'eth:xan' = "eth:xan",
|
|
2334
|
+
'eth:frxusd' = "eth:frxusd",
|
|
2335
|
+
'eth:red' = "eth:red",
|
|
2336
|
+
'eth:dka' = "eth:dka",
|
|
2337
|
+
'eth:cgpt' = "eth:cgpt",
|
|
2338
|
+
'eth:apu' = "eth:apu",
|
|
2339
|
+
'eth:shfl' = "eth:shfl",
|
|
2340
|
+
'eth:banana' = "eth:banana",
|
|
2341
|
+
'eth:zkj' = "eth:zkj",
|
|
2342
|
+
'eth:spk' = "eth:spk",
|
|
2343
|
+
'eth:merl' = "eth:merl",
|
|
2344
|
+
'eth:aeur' = "eth:aeur",
|
|
2345
|
+
'eth:soso' = "eth:soso",
|
|
2346
|
+
'eth:bfc' = "eth:bfc",
|
|
2347
|
+
'eth:osak' = "eth:osak",
|
|
2348
|
+
'eth:uds' = "eth:uds",
|
|
2349
|
+
'eth:zent' = "eth:zent",
|
|
2350
|
+
'eth:euri' = "eth:euri",
|
|
2351
|
+
'eth:al' = "eth:al",
|
|
2352
|
+
'eth:wct' = "eth:wct",
|
|
2353
|
+
'eth:pundiai' = "eth:pundiai",
|
|
2354
|
+
'eth:anon' = "eth:anon",
|
|
2355
|
+
'eth:omi' = "eth:omi",
|
|
2356
|
+
'eth:andy' = "eth:andy",
|
|
2357
|
+
'eth:aioz' = "eth:aioz",
|
|
2358
|
+
'eth:job' = "eth:job",
|
|
2359
|
+
'eth:irys' = "eth:irys",
|
|
2360
|
+
'eth:kpk' = "eth:kpk",
|
|
2361
|
+
'eth:devve' = "eth:devve",
|
|
2362
|
+
'eth:fbtc' = "eth:fbtc",
|
|
2363
|
+
'eth:byzusd' = "eth:byzusd",
|
|
2364
|
+
'eth:audm' = "eth:audm",
|
|
2365
|
+
'eth:usdi' = "eth:usdi",
|
|
2366
|
+
'eth:tea' = "eth:tea",
|
|
2367
|
+
'eth:ofc' = "eth:ofc",
|
|
2368
|
+
'eth:wxm' = "eth:wxm",
|
|
2369
|
+
'eth:jpyc' = "eth:jpyc",
|
|
2370
|
+
'eth:ten' = "eth:ten",
|
|
2371
|
+
'eth:camp' = "eth:camp",
|
|
2372
|
+
'eth:f' = "eth:f",
|
|
2373
|
+
'eth:turtle' = "eth:turtle",
|
|
2374
|
+
'eth:order' = "eth:order",
|
|
2375
|
+
'eth:puffer' = "eth:puffer",
|
|
2376
|
+
'eth:resolv' = "eth:resolv",
|
|
2377
|
+
'eth:spec' = "eth:spec",
|
|
2378
|
+
'eth:prompt' = "eth:prompt",
|
|
2379
|
+
'eth:yb' = "eth:yb",
|
|
2380
|
+
'eth:btr' = "eth:btr",
|
|
2381
|
+
'eth:krl' = "eth:krl",
|
|
2382
|
+
'eth:cadd' = "eth:cadd",
|
|
2383
|
+
'eth:kau' = "eth:kau",
|
|
2384
|
+
'eth:kag' = "eth:kag",
|
|
2385
|
+
'eth:upprism' = "eth:upprism",
|
|
2386
|
+
'eth:qncxt' = "eth:qncxt",
|
|
2387
|
+
'eth:t-bincon' = "eth:t-bincon",
|
|
2388
|
+
'eth:t-iauon' = "eth:t-iauon",
|
|
2389
|
+
'eth:t-iemgon' = "eth:t-iemgon",
|
|
2390
|
+
'eth:t-ibiton' = "eth:t-ibiton",
|
|
2391
|
+
'eth:t-ivvon' = "eth:t-ivvon",
|
|
2392
|
+
'morph:usdc' = "morph:usdc",
|
|
2393
|
+
'morpheth:usdc' = "morpheth:usdc",
|
|
2394
|
+
'morph:usdt' = "morph:usdt",
|
|
2395
|
+
'morpheth:usdt' = "morpheth:usdt",
|
|
2396
|
+
'morph:usd1' = "morph:usd1",
|
|
2397
|
+
'morpheth:usd1' = "morpheth:usd1",
|
|
2398
|
+
'tmorph:tmt' = "tmorph:tmt",
|
|
2399
|
+
'tmorpheth:tmt' = "tmorpheth:tmt",
|
|
2400
|
+
'tmorpheth:usd1' = "tmorpheth:usd1",
|
|
2401
|
+
'tmorpheth:stgusd1' = "tmorpheth:stgusd1",
|
|
1100
2402
|
'xlm:BST-GADDFE4R72YUP2AOEL67OHZN3GJQYPC3VE734N2XFMEGRR2L32CZ3XYZ' = "xlm:BST-GADDFE4R72YUP2AOEL67OHZN3GJQYPC3VE734N2XFMEGRR2L32CZ3XYZ",
|
|
1101
2403
|
'xlm:VELO-GDM4RQUQQUVSKQA7S6EM7XBZP3FCGH4Q7CL6TABQ7B2BEJ5ERARM2M5M' = "xlm:VELO-GDM4RQUQQUVSKQA7S6EM7XBZP3FCGH4Q7CL6TABQ7B2BEJ5ERARM2M5M",
|
|
1102
2404
|
'xlm:SLT-GCKA6K5PCQ6PNF5RQBF7PQDJWRHO6UOGFMRLK3DYHDOI244V47XKQ4GP' = "xlm:SLT-GCKA6K5PCQ6PNF5RQBF7PQDJWRHO6UOGFMRLK3DYHDOI244V47XKQ4GP",
|
|
@@ -1104,11 +2406,22 @@ export declare enum UnderlyingAsset {
|
|
|
1104
2406
|
'xlm:ETH-GBVOL67TMUQBGL4TZYNMY3ZQ5WGQYFPFD5VJRWXR72VA33VFNL225PL5' = "xlm:ETH-GBVOL67TMUQBGL4TZYNMY3ZQ5WGQYFPFD5VJRWXR72VA33VFNL225PL5",
|
|
1105
2407
|
'xlm:WXT-GASBLVHS5FOABSDNW5SPPH3QRJYXY5JHA2AOA2QHH2FJLZBRXSG4SWXT' = "xlm:WXT-GASBLVHS5FOABSDNW5SPPH3QRJYXY5JHA2AOA2QHH2FJLZBRXSG4SWXT",
|
|
1106
2408
|
'xlm:USDC-GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN' = "xlm:USDC-GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN",
|
|
2409
|
+
'xlm:USDM1-GDM5QWWXCMDTQMZAKMYTCI52LA7FWBHAZMU5NJLMIFHDJISJRP2ZWPKC' = "xlm:USDM1-GDM5QWWXCMDTQMZAKMYTCI52LA7FWBHAZMU5NJLMIFHDJISJRP2ZWPKC",
|
|
1107
2410
|
'xlm:SIX-GDMS6EECOH6MBMCP3FYRYEVRBIV3TQGLOFQIPVAITBRJUMTI6V7A2X6Z' = "xlm:SIX-GDMS6EECOH6MBMCP3FYRYEVRBIV3TQGLOFQIPVAITBRJUMTI6V7A2X6Z",
|
|
1108
2411
|
'xlm:BRLT-GCHQ3F2BF5P74DMDNOOGHT5DUCKC773AW5DTOFINC26W4KGYFPYDPRSO' = "xlm:BRLT-GCHQ3F2BF5P74DMDNOOGHT5DUCKC773AW5DTOFINC26W4KGYFPYDPRSO",
|
|
1109
2412
|
'xlm:ARST-GCSAZVWXZKWS4XS223M5F54H2B6XPIIXZZGP7KEAIU6YSL5HDRGCI3DG' = "xlm:ARST-GCSAZVWXZKWS4XS223M5F54H2B6XPIIXZZGP7KEAIU6YSL5HDRGCI3DG",
|
|
1110
2413
|
'xlm:AQUA-GBNZILSTVQZ4R7IKQDGHYGY2QXL5QOFJYQMXPKWRRM5PAV7Y4M67AQUA' = "xlm:AQUA-GBNZILSTVQZ4R7IKQDGHYGY2QXL5QOFJYQMXPKWRRM5PAV7Y4M67AQUA",
|
|
1111
2414
|
'xlm:EURC-GDHU6WRG4IEQXM5NZ4BMPKOXHW76MZM4Y2IEMFDVXBSDP6SJY4ITNPP2' = "xlm:EURC-GDHU6WRG4IEQXM5NZ4BMPKOXHW76MZM4Y2IEMFDVXBSDP6SJY4ITNPP2",
|
|
2415
|
+
'xlm:GYEN-GDF6VOEGRWLOZ64PQQGKD2IYWA22RLT37GJKS2EJXZHT2VLAGWLC5TOB' = "xlm:GYEN-GDF6VOEGRWLOZ64PQQGKD2IYWA22RLT37GJKS2EJXZHT2VLAGWLC5TOB",
|
|
2416
|
+
'xlm:ZUSD-GDF6VOEGRWLOZ64PQQGKD2IYWA22RLT37GJKS2EJXZHT2VLAGWLC5TOB' = "xlm:ZUSD-GDF6VOEGRWLOZ64PQQGKD2IYWA22RLT37GJKS2EJXZHT2VLAGWLC5TOB",
|
|
2417
|
+
'xlm:EURS-GC5FGCDEOGOGSNWCCNKS3OMEVDHTE3Q5A5FEQWQKV3AXA7N6KDQ2CUZJ' = "xlm:EURS-GC5FGCDEOGOGSNWCCNKS3OMEVDHTE3Q5A5FEQWQKV3AXA7N6KDQ2CUZJ",
|
|
2418
|
+
'xlm:VEUR-GDXLSLCOPPHTWOQXLLKSVN4VN3G67WD2ENU7UMVAROEYVJLSPSEWXIZN' = "xlm:VEUR-GDXLSLCOPPHTWOQXLLKSVN4VN3G67WD2ENU7UMVAROEYVJLSPSEWXIZN",
|
|
2419
|
+
'xlm:VCHF-GDXLSLCOPPHTWOQXLLKSVN4VN3G67WD2ENU7UMVAROEYVJLSPSEWXIZN' = "xlm:VCHF-GDXLSLCOPPHTWOQXLLKSVN4VN3G67WD2ENU7UMVAROEYVJLSPSEWXIZN",
|
|
2420
|
+
'xlm:AUDD-GDC7X2MXTYSAKUUGAIQ7J7RPEIM7GXSAIWFYWWH4GLNFECQVJJLB2EEU' = "xlm:AUDD-GDC7X2MXTYSAKUUGAIQ7J7RPEIM7GXSAIWFYWWH4GLNFECQVJJLB2EEU",
|
|
2421
|
+
'xlm:BENJI-GBHNGLLIE3KWGKCHIKMHJ5HVZHYIK7WTBE4QF5PLAKL4CJGSEU7HZIW5' = "xlm:BENJI-GBHNGLLIE3KWGKCHIKMHJ5HVZHYIK7WTBE4QF5PLAKL4CJGSEU7HZIW5",
|
|
2422
|
+
'xlm:gBENJI-GD5J73EKK5IYL5XS3FBTHHX7CZIYRP7QXDL57XFWGC2WVYWT326OBXRP' = "xlm:gBENJI-GD5J73EKK5IYL5XS3FBTHHX7CZIYRP7QXDL57XFWGC2WVYWT326OBXRP",
|
|
2423
|
+
'xlm:SHX-GDSTRSHXHGJ7ZIVRBXEYE5Q74XUVCUSEKEBR7UCHEUUEK72N7I7KJ6JH' = "xlm:SHX-GDSTRSHXHGJ7ZIVRBXEYE5Q74XUVCUSEKEBR7UCHEUUEK72N7I7KJ6JH",
|
|
2424
|
+
'xlm:YLDS-GAC7MOPTQLQUM3KC24AW4GHS3RLF72LPEZO54AH7EZ6TSMGRB5SOAVH3' = "xlm:YLDS-GAC7MOPTQLQUM3KC24AW4GHS3RLF72LPEZO54AH7EZ6TSMGRB5SOAVH3",
|
|
1112
2425
|
'erc721:token' = "erc721:token",
|
|
1113
2426
|
'erc1155:token' = "erc1155:token",
|
|
1114
2427
|
'nonstandard:token' = "nonstandard:token",
|
|
@@ -1134,6 +2447,8 @@ export declare enum UnderlyingAsset {
|
|
|
1134
2447
|
CHEX = "chex",
|
|
1135
2448
|
IQ = "iq",
|
|
1136
2449
|
EOS_BOX = "eos:box",
|
|
2450
|
+
EOS_SBET = "eos:sbet",
|
|
2451
|
+
VAULTA = "vaulta",
|
|
1137
2452
|
'avaxc:qi' = "avaxc:qi",
|
|
1138
2453
|
'avaxc:xava' = "avaxc:xava",
|
|
1139
2454
|
'avaxc:klo' = "avaxc:klo",
|
|
@@ -1146,13 +2461,92 @@ export declare enum UnderlyingAsset {
|
|
|
1146
2461
|
'avaxc:aave' = "avaxc:aave",
|
|
1147
2462
|
'avaxc:btc' = "avaxc:btc",
|
|
1148
2463
|
'avaxc:dai' = "avaxc:dai",
|
|
2464
|
+
'avaxc:arena' = "avaxc:arena",
|
|
2465
|
+
'avaxc:tryb' = "avaxc:tryb",
|
|
1149
2466
|
'avaxc:wbtc' = "avaxc:wbtc",
|
|
1150
2467
|
'avaxc:weth' = "avaxc:weth",
|
|
2468
|
+
'avaxc:sbc' = "avaxc:sbc",
|
|
2469
|
+
'avaxc:xsgd' = "avaxc:xsgd",
|
|
2470
|
+
'avaxc:ticov2' = "avaxc:ticov2",
|
|
2471
|
+
'avaxc:nxpc' = "avaxc:nxpc",
|
|
2472
|
+
'avaxc:spxux' = "avaxc:spxux",
|
|
2473
|
+
'avaxc:stavax' = "avaxc:stavax",
|
|
1151
2474
|
'tavaxc:opm' = "tavaxc:opm",
|
|
2475
|
+
'tavaxc:cop2peq' = "tavaxc:cop2peq",
|
|
2476
|
+
'tavaxc:xsgd' = "tavaxc:xsgd",
|
|
2477
|
+
'tavaxc:bitgo' = "tavaxc:bitgo",
|
|
2478
|
+
'tavaxc:stavax' = "tavaxc:stavax",
|
|
2479
|
+
'tavaxc:rtest' = "tavaxc:rtest",
|
|
2480
|
+
'tavaxc:tkula' = "tavaxc:tkula",
|
|
2481
|
+
'avaxc:usdc-e' = "avaxc:usdc-e",
|
|
2482
|
+
'avaxc:usdt-e' = "avaxc:usdt-e",
|
|
2483
|
+
'avaxc:yeti' = "avaxc:yeti",
|
|
2484
|
+
'avaxc:spell' = "avaxc:spell",
|
|
2485
|
+
'avaxc:yusd' = "avaxc:yusd",
|
|
2486
|
+
'avaxc:yusdcrv-f' = "avaxc:yusdcrv-f",
|
|
2487
|
+
'avaxc:ecd' = "avaxc:ecd",
|
|
2488
|
+
'avaxc:blzz' = "avaxc:blzz",
|
|
2489
|
+
'avaxc:ptp' = "avaxc:ptp",
|
|
2490
|
+
'avaxc:stg' = "avaxc:stg",
|
|
2491
|
+
'avaxc:syn' = "avaxc:syn",
|
|
2492
|
+
'avaxc:aavausdc' = "avaxc:aavausdc",
|
|
2493
|
+
'avaxc:tusd' = "avaxc:tusd",
|
|
2494
|
+
'avaxc:crv' = "avaxc:crv",
|
|
2495
|
+
'avaxc:savax' = "avaxc:savax",
|
|
2496
|
+
'avaxc:ampl' = "avaxc:ampl",
|
|
2497
|
+
'avaxc:cnr' = "avaxc:cnr",
|
|
2498
|
+
'avaxc:roco' = "avaxc:roco",
|
|
2499
|
+
'avaxc:aavadai' = "avaxc:aavadai",
|
|
2500
|
+
'avaxc:vtx' = "avaxc:vtx",
|
|
2501
|
+
'avaxc:wavax' = "avaxc:wavax",
|
|
2502
|
+
'avaxc:bnb' = "avaxc:bnb",
|
|
2503
|
+
'avaxc:aavausdt' = "avaxc:aavausdt",
|
|
2504
|
+
'avaxc:acre' = "avaxc:acre",
|
|
2505
|
+
'avaxc:gmx' = "avaxc:gmx",
|
|
2506
|
+
'avaxc:gunz' = "avaxc:gunz",
|
|
2507
|
+
'avaxc:mim' = "avaxc:mim",
|
|
2508
|
+
'avaxc:axlusdc' = "avaxc:axlusdc",
|
|
2509
|
+
'avaxc:lot' = "avaxc:lot",
|
|
2510
|
+
'avaxc:av3crv' = "avaxc:av3crv",
|
|
2511
|
+
'avaxc:time' = "avaxc:time",
|
|
2512
|
+
'avaxc:uni.e' = "avaxc:uni.e",
|
|
2513
|
+
'avaxc:sb' = "avaxc:sb",
|
|
2514
|
+
'avaxc:dyp' = "avaxc:dyp",
|
|
2515
|
+
'avaxc:sing' = "avaxc:sing",
|
|
2516
|
+
'avaxc:gohm' = "avaxc:gohm",
|
|
2517
|
+
'avaxc:boofi' = "avaxc:boofi",
|
|
2518
|
+
'avaxc:eth' = "avaxc:eth",
|
|
2519
|
+
'avaxc:wmemo' = "avaxc:wmemo",
|
|
2520
|
+
'avaxc:fxs' = "avaxc:fxs",
|
|
2521
|
+
'avaxc:sifu' = "avaxc:sifu",
|
|
2522
|
+
'avaxc:sushi.e' = "avaxc:sushi.e",
|
|
2523
|
+
'avaxc:sushi' = "avaxc:sushi",
|
|
2524
|
+
'avaxc:mimatic' = "avaxc:mimatic",
|
|
2525
|
+
'avaxc:sspell' = "avaxc:sspell",
|
|
2526
|
+
'avaxc:grape' = "avaxc:grape",
|
|
2527
|
+
'avaxc:xjoe' = "avaxc:xjoe",
|
|
2528
|
+
'avaxc:bsgg' = "avaxc:bsgg",
|
|
2529
|
+
'avaxc:roy' = "avaxc:roy",
|
|
2530
|
+
'avaxc:wow' = "avaxc:wow",
|
|
2531
|
+
'avaxc:wine' = "avaxc:wine",
|
|
2532
|
+
'avaxc:mu' = "avaxc:mu",
|
|
2533
|
+
'avaxc:frax' = "avaxc:frax",
|
|
2534
|
+
'avaxc:movr' = "avaxc:movr",
|
|
2535
|
+
'avaxc:ice' = "avaxc:ice",
|
|
2536
|
+
'avaxc:note' = "avaxc:note",
|
|
2537
|
+
'avaxc:wrose' = "avaxc:wrose",
|
|
2538
|
+
'avaxc:swap' = "avaxc:swap",
|
|
2539
|
+
'avaxc:tico' = "avaxc:tico",
|
|
2540
|
+
'avaxc:shrap' = "avaxc:shrap",
|
|
2541
|
+
'avaxc:benji' = "avaxc:benji",
|
|
2542
|
+
'avaxc:emdx' = "avaxc:emdx",
|
|
2543
|
+
'avaxc:eurc' = "avaxc:eurc",
|
|
2544
|
+
'avaxc:ausd' = "avaxc:ausd",
|
|
1152
2545
|
'polygon:usdc' = "polygon:usdc",
|
|
1153
2546
|
'polygon:usdcv2' = "polygon:usdcv2",
|
|
1154
2547
|
'polygon:usdt' = "polygon:usdt",
|
|
1155
2548
|
'polygon:weth' = "polygon:weth",
|
|
2549
|
+
'polygon:cnkt' = "polygon:cnkt",
|
|
1156
2550
|
'polygon:wbtc' = "polygon:wbtc",
|
|
1157
2551
|
'polygon:sand' = "polygon:sand",
|
|
1158
2552
|
'polygon:dai' = "polygon:dai",
|
|
@@ -1184,13 +2578,310 @@ export declare enum UnderlyingAsset {
|
|
|
1184
2578
|
'polygon:wftm' = "polygon:wftm",
|
|
1185
2579
|
'polygon:yfi' = "polygon:yfi",
|
|
1186
2580
|
'polygon:treta' = "polygon:treta",
|
|
2581
|
+
'polygon:orb' = "polygon:orb",
|
|
2582
|
+
'polygon:route' = "polygon:route",
|
|
2583
|
+
'polygon:sbc' = "polygon:sbc",
|
|
2584
|
+
'polygon:xsgd' = "polygon:xsgd",
|
|
2585
|
+
'polygon:dimo' = "polygon:dimo",
|
|
2586
|
+
'polygon:bcut' = "polygon:bcut",
|
|
2587
|
+
'polygon:pme' = "polygon:pme",
|
|
2588
|
+
'polygon:dipe' = "polygon:dipe",
|
|
2589
|
+
'polygon:lif3' = "polygon:lif3",
|
|
2590
|
+
'polygon:l3usd' = "polygon:l3usd",
|
|
2591
|
+
'polygon:moca' = "polygon:moca",
|
|
2592
|
+
'polygon:mask' = "polygon:mask",
|
|
2593
|
+
'polygon:nexo' = "polygon:nexo",
|
|
2594
|
+
'polygon:om' = "polygon:om",
|
|
2595
|
+
'polygon:pyr' = "polygon:pyr",
|
|
2596
|
+
'polygon:renbtc' = "polygon:renbtc",
|
|
2597
|
+
'polygon:req' = "polygon:req",
|
|
2598
|
+
'polygon:rndr' = "polygon:rndr",
|
|
2599
|
+
'polygon:snx' = "polygon:snx",
|
|
2600
|
+
'polygon:trb' = "polygon:trb",
|
|
2601
|
+
'polygon:ali' = "polygon:ali",
|
|
2602
|
+
'polygon:bal' = "polygon:bal",
|
|
2603
|
+
'polygon:elon' = "polygon:elon",
|
|
2604
|
+
'polygon:hex' = "polygon:hex",
|
|
2605
|
+
'polygon:iotx' = "polygon:iotx",
|
|
2606
|
+
'polygon:agix' = "polygon:agix",
|
|
2607
|
+
'polygon:avax' = "polygon:avax",
|
|
2608
|
+
'polygon:band' = "polygon:band",
|
|
2609
|
+
'polygon:blz' = "polygon:blz",
|
|
2610
|
+
'polygon:bnb' = "polygon:bnb",
|
|
2611
|
+
'polygon:bnt' = "polygon:bnt",
|
|
2612
|
+
'polygon:chz' = "polygon:chz",
|
|
2613
|
+
'polygon:enj' = "polygon:enj",
|
|
2614
|
+
'polygon:fet' = "polygon:fet",
|
|
2615
|
+
'polygon:forth' = "polygon:forth",
|
|
2616
|
+
'polygon:glm' = "polygon:glm",
|
|
2617
|
+
'polygon:gno' = "polygon:gno",
|
|
2618
|
+
'polygon:gohm' = "polygon:gohm",
|
|
2619
|
+
'polygon:gtc' = "polygon:gtc",
|
|
2620
|
+
'polygon:gusd' = "polygon:gusd",
|
|
2621
|
+
'polygon:hot' = "polygon:hot",
|
|
2622
|
+
'polygon:inj' = "polygon:inj",
|
|
2623
|
+
'polygon:lit' = "polygon:lit",
|
|
2624
|
+
'polygon:lrc' = "polygon:lrc",
|
|
2625
|
+
'polygon:mana' = "polygon:mana",
|
|
2626
|
+
'polygon:shib' = "polygon:shib",
|
|
2627
|
+
'polygon:sxp' = "polygon:sxp",
|
|
2628
|
+
'polygon:grt' = "polygon:grt",
|
|
2629
|
+
'polygon:mkr' = "polygon:mkr",
|
|
2630
|
+
'polygon:oxt' = "polygon:oxt",
|
|
2631
|
+
'polygon:pax' = "polygon:pax",
|
|
2632
|
+
'polygon:paxg' = "polygon:paxg",
|
|
2633
|
+
'polygon:powr' = "polygon:powr",
|
|
2634
|
+
'polygon:super' = "polygon:super",
|
|
2635
|
+
'polygon:uma' = "polygon:uma",
|
|
2636
|
+
'polygon:zrx' = "polygon:zrx",
|
|
2637
|
+
'polygon:ont' = "polygon:ont",
|
|
2638
|
+
'polygon:wrx' = "polygon:wrx",
|
|
2639
|
+
'polygon:voxel' = "polygon:voxel",
|
|
2640
|
+
'polygon:uft' = "polygon:uft",
|
|
2641
|
+
'polygon:ooki' = "polygon:ooki",
|
|
2642
|
+
'polygon:swap' = "polygon:swap",
|
|
2643
|
+
'polygon:vanry' = "polygon:vanry",
|
|
2644
|
+
'polygon:npt' = "polygon:npt",
|
|
2645
|
+
'polygon:volt' = "polygon:volt",
|
|
2646
|
+
'polygon:euroe' = "polygon:euroe",
|
|
2647
|
+
'polygon:geod' = "polygon:geod",
|
|
2648
|
+
'polygon:heth' = "polygon:heth",
|
|
2649
|
+
'polygon:copm' = "polygon:copm",
|
|
2650
|
+
'polygon:gmt' = "polygon:gmt",
|
|
2651
|
+
'polygon:uhu' = "polygon:uhu",
|
|
2652
|
+
'polygon:mv' = "polygon:mv",
|
|
2653
|
+
'polygon:bid' = "polygon:bid",
|
|
2654
|
+
'polygon:tcs' = "polygon:tcs",
|
|
2655
|
+
'polygon:buidl' = "polygon:buidl",
|
|
2656
|
+
'polygon:benji' = "polygon:benji",
|
|
2657
|
+
'polygon:naka' = "polygon:naka",
|
|
2658
|
+
'polygon:xusd' = "polygon:xusd",
|
|
2659
|
+
'polygon:txusd' = "polygon:txusd",
|
|
2660
|
+
'polygon:zig' = "polygon:zig",
|
|
2661
|
+
'polygon:brl1' = "polygon:brl1",
|
|
2662
|
+
'polygon:cnktplus' = "polygon:cnktplus",
|
|
2663
|
+
'polygon:land1' = "polygon:land1",
|
|
2664
|
+
'polygon:mmt54' = "polygon:mmt54",
|
|
2665
|
+
'polygon:jpyc' = "polygon:jpyc",
|
|
2666
|
+
'polygon:argt' = "polygon:argt",
|
|
2667
|
+
'polygon:brat' = "polygon:brat",
|
|
2668
|
+
'polygon:chlt' = "polygon:chlt",
|
|
2669
|
+
'polygon:stg' = "polygon:stg",
|
|
2670
|
+
'polygon:19xx0' = "polygon:19xx0",
|
|
2671
|
+
'polygon:cvt0' = "polygon:cvt0",
|
|
2672
|
+
'polygon:dbh0' = "polygon:dbh0",
|
|
2673
|
+
'polygon:dst0' = "polygon:dst0",
|
|
2674
|
+
'polygon:dto0' = "polygon:dto0",
|
|
2675
|
+
'polygon:hle0' = "polygon:hle0",
|
|
2676
|
+
'polygon:jmr0' = "polygon:jmr0",
|
|
2677
|
+
'polygon:jpe0' = "polygon:jpe0",
|
|
2678
|
+
'polygon:ltm0' = "polygon:ltm0",
|
|
2679
|
+
'polygon:mox0' = "polygon:mox0",
|
|
2680
|
+
'polygon:mrhp0' = "polygon:mrhp0",
|
|
2681
|
+
'polygon:ofrn0' = "polygon:ofrn0",
|
|
2682
|
+
'polygon:qcv20' = "polygon:qcv20",
|
|
2683
|
+
'polygon:rcdt0' = "polygon:rcdt0",
|
|
2684
|
+
'polygon:rky0' = "polygon:rky0",
|
|
2685
|
+
'polygon:ros0' = "polygon:ros0",
|
|
2686
|
+
'polygon:sav0' = "polygon:sav0",
|
|
2687
|
+
'polygon:sho0' = "polygon:sho0",
|
|
2688
|
+
'polygon:stm0' = "polygon:stm0",
|
|
2689
|
+
'polygon:tbp0' = "polygon:tbp0",
|
|
2690
|
+
'polygon:tga0' = "polygon:tga0",
|
|
2691
|
+
'polygon:tgbs0' = "polygon:tgbs0",
|
|
2692
|
+
'polygon:tmdm0' = "polygon:tmdm0",
|
|
2693
|
+
'polygon:tos0' = "polygon:tos0",
|
|
2694
|
+
'polygon:tsf0' = "polygon:tsf0",
|
|
2695
|
+
'polygon:vio0' = "polygon:vio0",
|
|
2696
|
+
'polygon:wots0' = "polygon:wots0",
|
|
2697
|
+
'polygon:mext' = "polygon:mext",
|
|
2698
|
+
'polygon:pert' = "polygon:pert",
|
|
2699
|
+
'polygon:colt' = "polygon:colt",
|
|
2700
|
+
'polygon:bolt' = "polygon:bolt",
|
|
1187
2701
|
'erc721:polygontoken' = "erc721:polygontoken",
|
|
1188
2702
|
'erc1155:polygontoken' = "erc1155:polygontoken",
|
|
2703
|
+
'bsc:sol' = "bsc:sol",
|
|
2704
|
+
'bsc:solv' = "bsc:solv",
|
|
2705
|
+
'bsc:stable' = "bsc:stable",
|
|
2706
|
+
'bsc:brise' = "bsc:brise",
|
|
2707
|
+
'bsc:bsw' = "bsc:bsw",
|
|
2708
|
+
'bsc:burger' = "bsc:burger",
|
|
2709
|
+
'bsc:cfx' = "bsc:cfx",
|
|
2710
|
+
'bsc:bake' = "bsc:bake",
|
|
2711
|
+
'bsc:bnx' = "bsc:bnx",
|
|
1189
2712
|
'bsc:busd' = "bsc:busd",
|
|
2713
|
+
'bsc:hook' = "bsc:hook",
|
|
1190
2714
|
'bsc:ksm' = "bsc:ksm",
|
|
1191
2715
|
'bsc:usdt' = "bsc:usdt",
|
|
1192
2716
|
'bsc:vet' = "bsc:vet",
|
|
2717
|
+
'bsc:cake' = "bsc:cake",
|
|
2718
|
+
'bsc:litt' = "bsc:litt",
|
|
2719
|
+
'bsc:xvs' = "bsc:xvs",
|
|
2720
|
+
'bsc:epx' = "bsc:epx",
|
|
2721
|
+
'bsc:usdc' = "bsc:usdc",
|
|
2722
|
+
'bsc:eth' = "bsc:eth",
|
|
2723
|
+
'bsc:dd' = "bsc:dd",
|
|
2724
|
+
'bsc:parti' = "bsc:parti",
|
|
2725
|
+
'bsc:form' = "bsc:form",
|
|
2726
|
+
'bsc:ake' = "bsc:ake",
|
|
2727
|
+
'bsc:kgen' = "bsc:kgen",
|
|
2728
|
+
'bsc:myx' = "bsc:myx",
|
|
2729
|
+
'bsc:ltc' = "bsc:ltc",
|
|
2730
|
+
'bsc:mask' = "bsc:mask",
|
|
2731
|
+
'bsc:matic' = "bsc:matic",
|
|
2732
|
+
'bsc:mbox' = "bsc:mbox",
|
|
2733
|
+
'bsc:mdt' = "bsc:mdt",
|
|
2734
|
+
'bsc:nuls' = "bsc:nuls",
|
|
2735
|
+
'bsc:ont' = "bsc:ont",
|
|
2736
|
+
'bsc:orn' = "bsc:orn",
|
|
2737
|
+
'bsc:porto' = "bsc:porto",
|
|
2738
|
+
'bsc:reef' = "bsc:reef",
|
|
2739
|
+
'bsc:renbtc' = "bsc:renbtc",
|
|
2740
|
+
'bsc:snx' = "bsc:snx",
|
|
2741
|
+
'bsc:tking' = "bsc:tking",
|
|
2742
|
+
'bsc:tlm' = "bsc:tlm",
|
|
2743
|
+
'bsc:ton' = "bsc:ton",
|
|
2744
|
+
'bsc:trx' = "bsc:trx",
|
|
2745
|
+
'bsc:wbnb' = "bsc:wbnb",
|
|
2746
|
+
'bsc:win' = "bsc:win",
|
|
2747
|
+
'bsc:wrx' = "bsc:wrx",
|
|
2748
|
+
'bsc:yfii' = "bsc:yfii",
|
|
2749
|
+
'bsc:zil' = "bsc:zil",
|
|
2750
|
+
'bsc:1inch' = "bsc:1inch",
|
|
2751
|
+
'bsc:ada' = "bsc:ada",
|
|
2752
|
+
'bsc:alice' = "bsc:alice",
|
|
2753
|
+
'bsc:alpaca' = "bsc:alpaca",
|
|
2754
|
+
'bsc:alpine' = "bsc:alpine",
|
|
2755
|
+
'bsc:ankr' = "bsc:ankr",
|
|
2756
|
+
'bsc:avax' = "bsc:avax",
|
|
2757
|
+
'bsc:beta' = "bsc:beta",
|
|
2758
|
+
'bsc:btt' = "bsc:btt",
|
|
2759
|
+
'bsc:celr' = "bsc:celr",
|
|
2760
|
+
'bsc:chr' = "bsc:chr",
|
|
2761
|
+
'bsc:coti' = "bsc:coti",
|
|
2762
|
+
'bsc:cream' = "bsc:cream",
|
|
2763
|
+
'bsc:dar' = "bsc:dar",
|
|
2764
|
+
'bsc:degov2' = "bsc:degov2",
|
|
2765
|
+
'bsc:dodo' = "bsc:dodo",
|
|
2766
|
+
'bsc:elon' = "bsc:elon",
|
|
2767
|
+
'bsc:etc' = "bsc:etc",
|
|
2768
|
+
'bsc:firo' = "bsc:firo",
|
|
2769
|
+
'bsc:front' = "bsc:front",
|
|
2770
|
+
'bsc:hft' = "bsc:hft",
|
|
2771
|
+
'bsc:high' = "bsc:high",
|
|
2772
|
+
'bsc:hyper' = "bsc:hyper",
|
|
2773
|
+
'bsc:inj' = "bsc:inj",
|
|
2774
|
+
'bsc:iotx' = "bsc:iotx",
|
|
2775
|
+
'bsc:auto' = "bsc:auto",
|
|
2776
|
+
'bsc:fet' = "bsc:fet",
|
|
2777
|
+
'bsc:kas' = "bsc:kas",
|
|
2778
|
+
'bsc:lit' = "bsc:lit",
|
|
2779
|
+
'bsc:mana' = "bsc:mana",
|
|
2780
|
+
'bsc:shib' = "bsc:shib",
|
|
2781
|
+
'bsc:sxp' = "bsc:sxp",
|
|
2782
|
+
'bsc:nnn' = "bsc:nnn",
|
|
2783
|
+
'bsc:nvm' = "bsc:nvm",
|
|
2784
|
+
'bsc:jasmy' = "bsc:jasmy",
|
|
2785
|
+
'bsc:near' = "bsc:near",
|
|
2786
|
+
'bsc:ocean' = "bsc:ocean",
|
|
2787
|
+
'bsc:sand' = "bsc:sand",
|
|
2788
|
+
'bsc:tusd' = "bsc:tusd",
|
|
2789
|
+
'bsc:wrose' = "bsc:wrose",
|
|
2790
|
+
'bsc:twt' = "bsc:twt",
|
|
2791
|
+
'bsc:sfp' = "bsc:sfp",
|
|
2792
|
+
'bsc:edu' = "bsc:edu",
|
|
2793
|
+
'bsc:mrs' = "bsc:mrs",
|
|
2794
|
+
'bsc:ong' = "bsc:ong",
|
|
2795
|
+
'bsc:ctk' = "bsc:ctk",
|
|
2796
|
+
'bsc:rndt' = "bsc:rndt",
|
|
2797
|
+
'bsc:mbx' = "bsc:mbx",
|
|
2798
|
+
'bsc:mav' = "bsc:mav",
|
|
2799
|
+
'bsc:mct' = "bsc:mct",
|
|
2800
|
+
'bsc:thunder' = "bsc:thunder",
|
|
2801
|
+
'bsc:atlas' = "bsc:atlas",
|
|
2802
|
+
'bsc:vidt' = "bsc:vidt",
|
|
2803
|
+
'bsc:unfi' = "bsc:unfi",
|
|
2804
|
+
'bsc:chess' = "bsc:chess",
|
|
2805
|
+
'bsc:pols' = "bsc:pols",
|
|
2806
|
+
'bsc:uft' = "bsc:uft",
|
|
2807
|
+
'bsc:wing' = "bsc:wing",
|
|
2808
|
+
'bsc:santos' = "bsc:santos",
|
|
2809
|
+
'bsc:lazio' = "bsc:lazio",
|
|
2810
|
+
'bsc:swap' = "bsc:swap",
|
|
2811
|
+
'bsc:troy' = "bsc:troy",
|
|
2812
|
+
'bsc:rdnt' = "bsc:rdnt",
|
|
2813
|
+
'bsc:pax' = "bsc:pax",
|
|
2814
|
+
'bsc:volt' = "bsc:volt",
|
|
1193
2815
|
'tbsc:busd' = "tbsc:busd",
|
|
2816
|
+
'tbsc:usd1' = "tbsc:usd1",
|
|
2817
|
+
'tbsc:stgusd1' = "tbsc:stgusd1",
|
|
2818
|
+
'bsc:city' = "bsc:city",
|
|
2819
|
+
'bsc:fdusd' = "bsc:fdusd",
|
|
2820
|
+
'bsc:floki' = "bsc:floki",
|
|
2821
|
+
'bsc:ldo' = "bsc:ldo",
|
|
2822
|
+
'bsc:om' = "bsc:om",
|
|
2823
|
+
'bsc:eos' = "bsc:eos",
|
|
2824
|
+
'bsc:usdd' = "bsc:usdd",
|
|
2825
|
+
'bsc:gft' = "bsc:gft",
|
|
2826
|
+
'bsc:glmr' = "bsc:glmr",
|
|
2827
|
+
'bsc:gmt' = "bsc:gmt",
|
|
2828
|
+
'bsc:tko' = "bsc:tko",
|
|
2829
|
+
'bsc:vite' = "bsc:vite",
|
|
2830
|
+
'bsc:mdx' = "bsc:mdx",
|
|
2831
|
+
'bsc:multi' = "bsc:multi",
|
|
2832
|
+
'bsc:psg' = "bsc:psg",
|
|
2833
|
+
'bsc:telos' = "bsc:telos",
|
|
2834
|
+
'bsc:flux' = "bsc:flux",
|
|
2835
|
+
'bsc:h2o' = "bsc:h2o",
|
|
2836
|
+
'bsc:lto' = "bsc:lto",
|
|
2837
|
+
'bsc:kmd' = "bsc:kmd",
|
|
2838
|
+
'bsc:farm' = "bsc:farm",
|
|
2839
|
+
'bsc:lina' = "bsc:lina",
|
|
2840
|
+
'bsc:usd1' = "bsc:usd1",
|
|
2841
|
+
'bsc:oort' = "bsc:oort",
|
|
2842
|
+
'bsc:aitech' = "bsc:aitech",
|
|
2843
|
+
'bsc:fil' = "bsc:fil",
|
|
2844
|
+
'bsc:ftm' = "bsc:ftm",
|
|
2845
|
+
'bsc:comp' = "bsc:comp",
|
|
2846
|
+
'bsc:uni' = "bsc:uni",
|
|
2847
|
+
'bsc:yfi' = "bsc:yfi",
|
|
2848
|
+
'bsc:link' = "bsc:link",
|
|
2849
|
+
'bsc:cusdo' = "bsc:cusdo",
|
|
2850
|
+
'bsc:unx' = "bsc:unx",
|
|
2851
|
+
'bsc:usdo' = "bsc:usdo",
|
|
2852
|
+
'bsc:slay' = "bsc:slay",
|
|
2853
|
+
'bsc:prove' = "bsc:prove",
|
|
2854
|
+
'bsc:rekt' = "bsc:rekt",
|
|
2855
|
+
'bsc:zig' = "bsc:zig",
|
|
2856
|
+
'bsc:eden' = "bsc:eden",
|
|
2857
|
+
'bsc:m' = "bsc:m",
|
|
2858
|
+
'bsc:cashplus' = "bsc:cashplus",
|
|
2859
|
+
'bsc:aster' = "bsc:aster",
|
|
2860
|
+
'bsc:pln' = "bsc:pln",
|
|
2861
|
+
'bsc:ff' = "bsc:ff",
|
|
2862
|
+
'bsc:c98' = "bsc:c98",
|
|
2863
|
+
'bsc:ln' = "bsc:ln",
|
|
2864
|
+
'bsc:soon' = "bsc:soon",
|
|
2865
|
+
'bsc:bard' = "bsc:bard",
|
|
2866
|
+
'bsc:home' = "bsc:home",
|
|
2867
|
+
'bsc:zbt' = "bsc:zbt",
|
|
2868
|
+
'bsc:btr' = "bsc:btr",
|
|
2869
|
+
'bsc:iost' = "bsc:iost",
|
|
2870
|
+
'bsc:sto' = "bsc:sto",
|
|
2871
|
+
'bsc:pt-cusdo-29oct2026' = "bsc:pt-cusdo-29oct2026",
|
|
2872
|
+
'bsc:mito' = "bsc:mito",
|
|
2873
|
+
'bsc:shell' = "bsc:shell",
|
|
2874
|
+
'bsc:hemi' = "bsc:hemi",
|
|
2875
|
+
'bsc:cookie' = "bsc:cookie",
|
|
2876
|
+
'bsc:esports' = "bsc:esports",
|
|
2877
|
+
'bsc:xter' = "bsc:xter",
|
|
2878
|
+
'bsc:usdau' = "bsc:usdau",
|
|
2879
|
+
'bsc:t-bincon' = "bsc:t-bincon",
|
|
2880
|
+
'bsc:t-iauon' = "bsc:t-iauon",
|
|
2881
|
+
'bsc:t-iemgon' = "bsc:t-iemgon",
|
|
2882
|
+
'bsc:t-ibiton' = "bsc:t-ibiton",
|
|
2883
|
+
'bsc:t-ivvon' = "bsc:t-ivvon",
|
|
2884
|
+
'bsc:sqd' = "bsc:sqd",
|
|
1194
2885
|
'erc721:bsctoken' = "erc721:bsctoken",
|
|
1195
2886
|
'erc1155:bsctoken' = "erc1155:bsctoken",
|
|
1196
2887
|
'terc721:bsctoken' = "terc721:bsctoken",
|
|
@@ -1199,17 +2890,288 @@ export declare enum UnderlyingAsset {
|
|
|
1199
2890
|
'tpolygon:link' = "tpolygon:link",
|
|
1200
2891
|
'tpolygon:name' = "tpolygon:name",
|
|
1201
2892
|
'tpolygon:opm' = "tpolygon:opm",
|
|
2893
|
+
'tpolygon:pme' = "tpolygon:pme",
|
|
2894
|
+
'tpolygon:xsgd' = "tpolygon:xsgd",
|
|
2895
|
+
'tpolygon:terc18dp' = "tpolygon:terc18dp",
|
|
2896
|
+
'tpolygon:terc10dp' = "tpolygon:terc10dp",
|
|
2897
|
+
'tpolygon:terc6dp' = "tpolygon:terc6dp",
|
|
2898
|
+
'tpolygon:usdt' = "tpolygon:usdt",
|
|
2899
|
+
'tpolygon:usdc' = "tpolygon:usdc",
|
|
2900
|
+
'tpolygon:testcopm' = "tpolygon:testcopm",
|
|
2901
|
+
'tpolygon:BitGoTest' = "tpolygon:BitGoTest",
|
|
2902
|
+
'tpolygon:copr3' = "tpolygon:copr3",
|
|
2903
|
+
'tpolygon:tusdl' = "tpolygon:tusdl",
|
|
2904
|
+
'tpolygon:tusdlt' = "tpolygon:tusdlt",
|
|
1202
2905
|
'terc721:polygontoken' = "terc721:polygontoken",
|
|
1203
2906
|
'terc1155:polygontoken' = "terc1155:polygontoken",
|
|
1204
2907
|
'arbeth:link' = "arbeth:link",
|
|
2908
|
+
'arbeth:spxux' = "arbeth:spxux",
|
|
2909
|
+
'arbeth:usdc' = "arbeth:usdc",
|
|
2910
|
+
'arbeth:xsgdv2' = "arbeth:xsgdv2",
|
|
2911
|
+
'arbeth:trn' = "arbeth:trn",
|
|
2912
|
+
'arbeth:usdcv2' = "arbeth:usdcv2",
|
|
2913
|
+
'arbeth:usdt' = "arbeth:usdt",
|
|
2914
|
+
'arbeth:arb' = "arbeth:arb",
|
|
2915
|
+
'arbeth:sqd' = "arbeth:sqd",
|
|
2916
|
+
'arbeth:cbl' = "arbeth:cbl",
|
|
2917
|
+
'arbeth:chip' = "arbeth:chip",
|
|
2918
|
+
'arbeth:w' = "arbeth:w",
|
|
2919
|
+
'arbeth:comp' = "arbeth:comp",
|
|
2920
|
+
'arbeth:coti' = "arbeth:coti",
|
|
2921
|
+
'arbeth:gno' = "arbeth:gno",
|
|
2922
|
+
'arbeth:gohm' = "arbeth:gohm",
|
|
2923
|
+
'arbeth:grt' = "arbeth:grt",
|
|
2924
|
+
'arbeth:knc' = "arbeth:knc",
|
|
2925
|
+
'arbeth:trb' = "arbeth:trb",
|
|
2926
|
+
'arbeth:tusd' = "arbeth:tusd",
|
|
2927
|
+
'arbeth:uma' = "arbeth:uma",
|
|
2928
|
+
'arbeth:uni' = "arbeth:uni",
|
|
2929
|
+
'arbeth:weth' = "arbeth:weth",
|
|
2930
|
+
'arbeth:woo' = "arbeth:woo",
|
|
2931
|
+
'arbeth:yfi' = "arbeth:yfi",
|
|
2932
|
+
'arbeth:xsgd' = "arbeth:xsgd",
|
|
2933
|
+
'arbeth:ztx' = "arbeth:ztx",
|
|
2934
|
+
'arbeth:ldo' = "arbeth:ldo",
|
|
2935
|
+
'arbeth:egp' = "arbeth:egp",
|
|
2936
|
+
'arbeth:myrc' = "arbeth:myrc",
|
|
2937
|
+
'arbeth:gs' = "arbeth:gs",
|
|
2938
|
+
'arbeth:veur' = "arbeth:veur",
|
|
2939
|
+
'arbeth:vchf' = "arbeth:vchf",
|
|
2940
|
+
'arbeth:tbill' = "arbeth:tbill",
|
|
2941
|
+
'arbeth:xai' = "arbeth:xai",
|
|
2942
|
+
'arbeth:flttx' = "arbeth:flttx",
|
|
2943
|
+
'arbeth:wtsix' = "arbeth:wtsix",
|
|
2944
|
+
'arbeth:modrx' = "arbeth:modrx",
|
|
2945
|
+
'arbeth:techx' = "arbeth:techx",
|
|
2946
|
+
'arbeth:wtsyx' = "arbeth:wtsyx",
|
|
2947
|
+
'arbeth:wtlgx' = "arbeth:wtlgx",
|
|
2948
|
+
'arbeth:wttsx' = "arbeth:wttsx",
|
|
2949
|
+
'arbeth:tipsx' = "arbeth:tipsx",
|
|
2950
|
+
'arbeth:wtstx' = "arbeth:wtstx",
|
|
2951
|
+
'arbeth:wtgxx' = "arbeth:wtgxx",
|
|
2952
|
+
'arbeth:lngvx' = "arbeth:lngvx",
|
|
2953
|
+
'arbeth:eqtyx' = "arbeth:eqtyx",
|
|
2954
|
+
'arbeth:anime' = "arbeth:anime",
|
|
2955
|
+
'arbeth:benji' = "arbeth:benji",
|
|
2956
|
+
'arbeth:dolo' = "arbeth:dolo",
|
|
2957
|
+
'arbeth:bull' = "arbeth:bull",
|
|
2958
|
+
'arbeth:rdnt' = "arbeth:rdnt",
|
|
2959
|
+
'arbeth:pendle' = "arbeth:pendle",
|
|
2960
|
+
'arbeth:gmx' = "arbeth:gmx",
|
|
2961
|
+
'arbeth:uxlink' = "arbeth:uxlink",
|
|
2962
|
+
'arbeth:next' = "arbeth:next",
|
|
2963
|
+
'arbeth:zro' = "arbeth:zro",
|
|
2964
|
+
'arbeth:tt' = "arbeth:tt",
|
|
2965
|
+
'arbeth:testtsla' = "arbeth:testtsla",
|
|
2966
|
+
'arbeth:testamzn' = "arbeth:testamzn",
|
|
2967
|
+
'arbeth:testpltr' = "arbeth:testpltr",
|
|
2968
|
+
'arbeth:testnflx' = "arbeth:testnflx",
|
|
2969
|
+
'arbeth:week' = "arbeth:week",
|
|
2970
|
+
'baseeth:aero' = "baseeth:aero",
|
|
2971
|
+
'baseeth:cfi' = "baseeth:cfi",
|
|
2972
|
+
'baseeth:icnt' = "baseeth:icnt",
|
|
2973
|
+
'baseeth:mey' = "baseeth:mey",
|
|
2974
|
+
'baseeth:morpho' = "baseeth:morpho",
|
|
2975
|
+
'baseeth:myrc' = "baseeth:myrc",
|
|
2976
|
+
'baseeth:weth' = "baseeth:weth",
|
|
2977
|
+
'baseeth:usdc' = "baseeth:usdc",
|
|
2978
|
+
'baseeth:wbtc' = "baseeth:wbtc",
|
|
2979
|
+
'baseeth:usde' = "baseeth:usde",
|
|
2980
|
+
'baseeth:trust' = "baseeth:trust",
|
|
2981
|
+
'baseeth:flk' = "baseeth:flk",
|
|
2982
|
+
'baseeth:soon' = "baseeth:soon",
|
|
2983
|
+
'baseeth:wave' = "baseeth:wave",
|
|
2984
|
+
'baseeth:spec' = "baseeth:spec",
|
|
2985
|
+
'baseeth:tig' = "baseeth:tig",
|
|
2986
|
+
'baseeth:virtual' = "baseeth:virtual",
|
|
2987
|
+
'baseeth:zora' = "baseeth:zora",
|
|
2988
|
+
'baseeth:toshi' = "baseeth:toshi",
|
|
2989
|
+
'baseeth:creator' = "baseeth:creator",
|
|
2990
|
+
'baseeth:avnt' = "baseeth:avnt",
|
|
2991
|
+
'baseeth:mira' = "baseeth:mira",
|
|
2992
|
+
'baseeth:towns' = "baseeth:towns",
|
|
2993
|
+
'baseeth:brlv' = "baseeth:brlv",
|
|
2994
|
+
'baseeth:wbrly' = "baseeth:wbrly",
|
|
2995
|
+
'baseeth:recall' = "baseeth:recall",
|
|
2996
|
+
'baseeth:sapien' = "baseeth:sapien",
|
|
2997
|
+
'baseeth:aixbt' = "baseeth:aixbt",
|
|
2998
|
+
'baseeth:brett' = "baseeth:brett",
|
|
2999
|
+
'baseeth:argt' = "baseeth:argt",
|
|
3000
|
+
'baseeth:brat' = "baseeth:brat",
|
|
3001
|
+
'baseeth:mext' = "baseeth:mext",
|
|
3002
|
+
'baseeth:common' = "baseeth:common",
|
|
3003
|
+
'baseeth:unite' = "baseeth:unite",
|
|
3004
|
+
'baseeth:b3' = "baseeth:b3",
|
|
3005
|
+
'baseeth:kaito' = "baseeth:kaito",
|
|
3006
|
+
'baseeth:xsgd' = "baseeth:xsgd",
|
|
3007
|
+
'baseeth:xusd' = "baseeth:xusd",
|
|
3008
|
+
'baseeth:home' = "baseeth:home",
|
|
3009
|
+
'baseeth:c' = "baseeth:c",
|
|
3010
|
+
'baseeth:carv' = "baseeth:carv",
|
|
3011
|
+
'baseeth:usad' = "baseeth:usad",
|
|
3012
|
+
'baseeth:opg' = "baseeth:opg",
|
|
3013
|
+
'baseeth:vvv' = "baseeth:vvv",
|
|
3014
|
+
'baseeth:pert' = "baseeth:pert",
|
|
3015
|
+
'baseeth:chlt' = "baseeth:chlt",
|
|
3016
|
+
'baseeth:colt' = "baseeth:colt",
|
|
3017
|
+
'baseeth:bolt' = "baseeth:bolt",
|
|
3018
|
+
'baseeth:gusdcq' = "baseeth:gusdcq",
|
|
3019
|
+
'tbaseeth:usdc' = "tbaseeth:usdc",
|
|
3020
|
+
'tbaseeth:xusd' = "tbaseeth:xusd",
|
|
3021
|
+
'tbaseeth:xsgd' = "tbaseeth:xsgd",
|
|
3022
|
+
'tbaseeth:usd1cx' = "tbaseeth:usd1cx",
|
|
3023
|
+
'tbaseeth:ctusd1cx' = "tbaseeth:ctusd1cx",
|
|
3024
|
+
'tbaseeth:tusdl' = "tbaseeth:tusdl",
|
|
3025
|
+
'tbaseeth:ttbills' = "tbaseeth:ttbills",
|
|
3026
|
+
'og:wog' = "og:wog",
|
|
3027
|
+
'seievm:usdc' = "seievm:usdc",
|
|
3028
|
+
'seievm:weth' = "seievm:weth",
|
|
3029
|
+
'seievm:wbtc' = "seievm:wbtc",
|
|
3030
|
+
'seievm:usd0' = "seievm:usd0",
|
|
3031
|
+
'seievm:wsei' = "seievm:wsei",
|
|
3032
|
+
'lineaeth:linea' = "lineaeth:linea",
|
|
3033
|
+
'lineaeth:usdt' = "lineaeth:usdt",
|
|
3034
|
+
'lineaeth:usdc' = "lineaeth:usdc",
|
|
3035
|
+
'mantle:usdt' = "mantle:usdt",
|
|
3036
|
+
'mantle:usdc' = "mantle:usdc",
|
|
3037
|
+
'mantle:usde' = "mantle:usde",
|
|
3038
|
+
'mantle:usdt0' = "mantle:usdt0",
|
|
3039
|
+
'mantle:ausd' = "mantle:ausd",
|
|
3040
|
+
'mantle:usd1' = "mantle:usd1",
|
|
3041
|
+
'tmantle:bgerch' = "tmantle:bgerch",
|
|
3042
|
+
'tmantle:usd1' = "tmantle:usd1",
|
|
3043
|
+
'tmantle:stgusd1' = "tmantle:stgusd1",
|
|
3044
|
+
'flow:weth' = "flow:weth",
|
|
3045
|
+
'flow:usdf' = "flow:usdf",
|
|
3046
|
+
'flow:wflow' = "flow:wflow",
|
|
3047
|
+
'mon:usdc' = "mon:usdc",
|
|
3048
|
+
'mon:wmon' = "mon:wmon",
|
|
3049
|
+
'tmon:tmt' = "tmon:tmt",
|
|
3050
|
+
'xdc:usdc' = "xdc:usdc",
|
|
3051
|
+
'xdc:lbt' = "xdc:lbt",
|
|
3052
|
+
'xdc:cre' = "xdc:cre",
|
|
3053
|
+
'xdc:gama' = "xdc:gama",
|
|
3054
|
+
'xdc:audd' = "xdc:audd",
|
|
3055
|
+
'xdc:srx' = "xdc:srx",
|
|
3056
|
+
'xdc:weth' = "xdc:weth",
|
|
3057
|
+
'txdc:tmt' = "txdc:tmt",
|
|
3058
|
+
'thypeevm:usdc' = "thypeevm:usdc",
|
|
3059
|
+
'hypeevm:hwhype' = "hypeevm:hwhype",
|
|
3060
|
+
'hypeevm:usdc' = "hypeevm:usdc",
|
|
3061
|
+
'hypeevm:usdt0' = "hypeevm:usdt0",
|
|
3062
|
+
'hypeevm:khype' = "hypeevm:khype",
|
|
3063
|
+
'hypeevm:kntq' = "hypeevm:kntq",
|
|
3064
|
+
'jovayeth:jft' = "jovayeth:jft",
|
|
3065
|
+
'jovayeth:usdce' = "jovayeth:usdce",
|
|
3066
|
+
'tjovayeth:tcmn' = "tjovayeth:tcmn",
|
|
3067
|
+
'tjovayeth:usdce' = "tjovayeth:usdce",
|
|
3068
|
+
'okbxlayer:usdg' = "okbxlayer:usdg",
|
|
3069
|
+
'okbxlayer:usdt0' = "okbxlayer:usdt0",
|
|
3070
|
+
'okbxlayer:usdt' = "okbxlayer:usdt",
|
|
3071
|
+
'okbxlayer:usdc' = "okbxlayer:usdc",
|
|
3072
|
+
'tokbxlayer:tzeb' = "tokbxlayer:tzeb",
|
|
3073
|
+
'tip:usdc' = "tip:usdc",
|
|
3074
|
+
'tip:tmt' = "tip:tmt",
|
|
3075
|
+
'ip:aria' = "ip:aria",
|
|
3076
|
+
'megaeth:mega' = "megaeth:mega",
|
|
3077
|
+
'megaeth:weth' = "megaeth:weth",
|
|
3078
|
+
'tabstracteth:tmt' = "tabstracteth:tmt",
|
|
3079
|
+
'tmegaeth:tmt' = "tmegaeth:tmt",
|
|
3080
|
+
'tplume:usdc' = "tplume:usdc",
|
|
1205
3081
|
'tarbeth:link' = "tarbeth:link",
|
|
3082
|
+
'tarbeth:xsgd' = "tarbeth:xsgd",
|
|
3083
|
+
'opeth:link' = "opeth:link",
|
|
3084
|
+
'opeth:usdc' = "opeth:usdc",
|
|
3085
|
+
'opeth:usdcv2' = "opeth:usdcv2",
|
|
3086
|
+
'opeth:usdt' = "opeth:usdt",
|
|
3087
|
+
'opeth:op' = "opeth:op",
|
|
3088
|
+
'opeth:exa' = "opeth:exa",
|
|
3089
|
+
'opeth:wld' = "opeth:wld",
|
|
3090
|
+
'opeth:wct' = "opeth:wct",
|
|
3091
|
+
'opeth:spxux' = "opeth:spxux",
|
|
3092
|
+
'opeth:perp' = "opeth:perp",
|
|
3093
|
+
'opeth:flttx' = "opeth:flttx",
|
|
3094
|
+
'opeth:wtsix' = "opeth:wtsix",
|
|
3095
|
+
'opeth:modrx' = "opeth:modrx",
|
|
3096
|
+
'opeth:techx' = "opeth:techx",
|
|
3097
|
+
'opeth:wtsyx' = "opeth:wtsyx",
|
|
3098
|
+
'opeth:wtlgx' = "opeth:wtlgx",
|
|
3099
|
+
'opeth:wttsx' = "opeth:wttsx",
|
|
3100
|
+
'opeth:tipsx' = "opeth:tipsx",
|
|
3101
|
+
'opeth:wtstx' = "opeth:wtstx",
|
|
3102
|
+
'opeth:wtgxx' = "opeth:wtgxx",
|
|
3103
|
+
'opeth:lngvx' = "opeth:lngvx",
|
|
3104
|
+
'opeth:eqtyx' = "opeth:eqtyx",
|
|
3105
|
+
'opeth:cyber' = "opeth:cyber",
|
|
3106
|
+
'opeth:velo' = "opeth:velo",
|
|
3107
|
+
'topeth:terc18dp' = "topeth:terc18dp",
|
|
3108
|
+
'topeth:wct' = "topeth:wct",
|
|
3109
|
+
'zketh:link' = "zketh:link",
|
|
3110
|
+
'tzketh:link' = "tzketh:link",
|
|
3111
|
+
'celo:pact' = "celo:pact",
|
|
3112
|
+
'bera:bgt' = "bera:bgt",
|
|
3113
|
+
'bera:honey' = "bera:honey",
|
|
3114
|
+
'bera:usdc' = "bera:usdc",
|
|
3115
|
+
'bera:ibera' = "bera:ibera",
|
|
3116
|
+
'bera:dolo' = "bera:dolo",
|
|
3117
|
+
'bera:wgbera' = "bera:wgbera",
|
|
3118
|
+
'bera:ir' = "bera:ir",
|
|
3119
|
+
'tbera:bgt' = "tbera:bgt",
|
|
3120
|
+
'tbera:honey' = "tbera:honey",
|
|
3121
|
+
'tbera:usdc' = "tbera:usdc",
|
|
3122
|
+
'tbera:ibera' = "tbera:ibera",
|
|
3123
|
+
'erc721:soneiumtoken' = "erc721:soneiumtoken",
|
|
3124
|
+
'erc1155:soneiumtoken' = "erc1155:soneiumtoken",
|
|
3125
|
+
'tsoneium:test721' = "tsoneium:test721",
|
|
3126
|
+
'tsoneium:test1155' = "tsoneium:test1155",
|
|
3127
|
+
'coredao:stcore' = "coredao:stcore",
|
|
3128
|
+
'tcoredao:stcore' = "tcoredao:stcore",
|
|
3129
|
+
'tcoredao:tlstbtc' = "tcoredao:tlstbtc",
|
|
3130
|
+
'chiliz:acm' = "chiliz:acm",
|
|
3131
|
+
'chiliz:afc' = "chiliz:afc",
|
|
3132
|
+
'chiliz:arg' = "chiliz:arg",
|
|
3133
|
+
'chiliz:asr' = "chiliz:asr",
|
|
3134
|
+
'chiliz:atm' = "chiliz:atm",
|
|
3135
|
+
'chiliz:avl' = "chiliz:avl",
|
|
3136
|
+
'chiliz:bar' = "chiliz:bar",
|
|
3137
|
+
'chiliz:benfica' = "chiliz:benfica",
|
|
3138
|
+
'chiliz:city' = "chiliz:city",
|
|
3139
|
+
'chiliz:gal' = "chiliz:gal",
|
|
3140
|
+
'chiliz:inter' = "chiliz:inter",
|
|
3141
|
+
'chiliz:ita' = "chiliz:ita",
|
|
3142
|
+
'chiliz:juv' = "chiliz:juv",
|
|
3143
|
+
'chiliz:mengo' = "chiliz:mengo",
|
|
3144
|
+
'chiliz:nap' = "chiliz:nap",
|
|
3145
|
+
'chiliz:og' = "chiliz:og",
|
|
3146
|
+
'chiliz:pepper' = "chiliz:pepper",
|
|
3147
|
+
'chiliz:por' = "chiliz:por",
|
|
3148
|
+
'chiliz:psg' = "chiliz:psg",
|
|
3149
|
+
'chiliz:spurs' = "chiliz:spurs",
|
|
3150
|
+
'chiliz:tra' = "chiliz:tra",
|
|
3151
|
+
'inketh:kbtc' = "inketh:kbtc",
|
|
3152
|
+
'inketh:usdc' = "inketh:usdc",
|
|
3153
|
+
'inketh:usdt0' = "inketh:usdt0",
|
|
3154
|
+
'xtzevm:usdt' = "xtzevm:usdt",
|
|
3155
|
+
'xtzevm:usdc' = "xtzevm:usdc",
|
|
3156
|
+
'xtzevm:xu3o8' = "xtzevm:xu3o8",
|
|
3157
|
+
'xtzevm:wxtz' = "xtzevm:wxtz",
|
|
3158
|
+
'xtzevm:stxtz' = "xtzevm:stxtz",
|
|
3159
|
+
'world:wld' = "world:wld",
|
|
3160
|
+
'world:usdc' = "world:usdc",
|
|
3161
|
+
'tworld:wld' = "tworld:wld",
|
|
3162
|
+
'tworld:usdc' = "tworld:usdc",
|
|
3163
|
+
'flr:wflr' = "flr:wflr",
|
|
3164
|
+
'tflr:wflr' = "tflr:wflr",
|
|
3165
|
+
'tflr:twc2flr' = "tflr:twc2flr",
|
|
1206
3166
|
ERC721 = "erc721",
|
|
1207
3167
|
ERC1155 = "erc1155",
|
|
1208
3168
|
NONSTANDARD = "nonstandard",
|
|
1209
3169
|
adaTestnetToken = "temporary-placeholder",
|
|
3170
|
+
'sol:bome' = "sol:bome",
|
|
1210
3171
|
'3uejh-usdc' = "3uejh-usdc",
|
|
1211
3172
|
'avax-usdc' = "avax-usdc",
|
|
1212
3173
|
'bop-usdc' = "bop-usdc",
|
|
3174
|
+
'sol:crown' = "sol:crown",
|
|
1213
3175
|
'elu-usdt' = "elu-usdt",
|
|
1214
3176
|
'fida-usdc' = "fida-usdc",
|
|
1215
3177
|
'fida-usdt' = "fida-usdt",
|
|
@@ -1220,6 +3182,7 @@ export declare enum UnderlyingAsset {
|
|
|
1220
3182
|
'msol-sol' = "msol-sol",
|
|
1221
3183
|
'msol-usdc' = "msol-usdc",
|
|
1222
3184
|
'prism-usdc' = "prism-usdc",
|
|
3185
|
+
'sol:pyth' = "sol:pyth",
|
|
1223
3186
|
'rendoge-usdc' = "rendoge-usdc",
|
|
1224
3187
|
'shdw-usdc' = "shdw-usdc",
|
|
1225
3188
|
'sol-wtust' = "sol-wtust",
|
|
@@ -1236,32 +3199,438 @@ export declare enum UnderlyingAsset {
|
|
|
1236
3199
|
'wheth-usdc' = "wheth-usdc",
|
|
1237
3200
|
'wtust-usdt' = "wtust-usdt",
|
|
1238
3201
|
'xcope-usdc' = "xcope-usdc",
|
|
1239
|
-
'
|
|
3202
|
+
'xrp-sollet' = "xrp-sollet",
|
|
3203
|
+
'aury' = "aury",
|
|
3204
|
+
'dio' = "dio",
|
|
3205
|
+
'sol-perp' = "sol-perp",
|
|
3206
|
+
'sol-woo' = "sol-woo",
|
|
3207
|
+
'sol-weth' = "sol-weth",
|
|
3208
|
+
'btc-sollet' = "btc-sollet",
|
|
3209
|
+
'eth-sollet' = "eth-sollet",
|
|
3210
|
+
'sol:bonk' = "sol:bonk",
|
|
3211
|
+
'jto' = "jto",
|
|
3212
|
+
'sol:jto' = "sol:jto",
|
|
3213
|
+
'jup' = "jup",
|
|
3214
|
+
'sol:jup' = "sol:jup",
|
|
3215
|
+
'sol:honey' = "sol:honey",
|
|
3216
|
+
'mobile' = "mobile",
|
|
3217
|
+
'sol:mobile' = "sol:mobile",
|
|
3218
|
+
'wif' = "wif",
|
|
3219
|
+
'sol:wif' = "sol:wif",
|
|
3220
|
+
'natix' = "natix",
|
|
3221
|
+
'sol:natix' = "sol:natix",
|
|
3222
|
+
'sol:ks' = "sol:ks",
|
|
3223
|
+
'sol:apusdt' = "sol:apusdt",
|
|
3224
|
+
'sol:acusd' = "sol:acusd",
|
|
3225
|
+
'sol:solink' = "sol:solink",
|
|
3226
|
+
'sol:soon' = "sol:soon",
|
|
3227
|
+
'sol:wylds' = "sol:wylds",
|
|
3228
|
+
'sol:block' = "sol:block",
|
|
3229
|
+
'sol:render' = "sol:render",
|
|
3230
|
+
'sol:wen' = "sol:wen",
|
|
3231
|
+
'sol:mew' = "sol:mew",
|
|
3232
|
+
'sol:pyusd' = "sol:pyusd",
|
|
3233
|
+
'sol:moveusd' = "sol:moveusd",
|
|
3234
|
+
'sol:dxl' = "sol:dxl",
|
|
3235
|
+
'sol:mother' = "sol:mother",
|
|
3236
|
+
'sol:wrose' = "sol:wrose",
|
|
3237
|
+
'sol:atlas' = "sol:atlas",
|
|
3238
|
+
'sol:mdt' = "sol:mdt",
|
|
3239
|
+
'sol:io' = "sol:io",
|
|
3240
|
+
'sol:aave' = "sol:aave",
|
|
3241
|
+
'sol:ldo' = "sol:ldo",
|
|
3242
|
+
'sol:gt' = "sol:gt",
|
|
3243
|
+
'sol:popcat' = "sol:popcat",
|
|
3244
|
+
'sol:axs' = "sol:axs",
|
|
3245
|
+
'sol:sand' = "sol:sand",
|
|
3246
|
+
'sol:ens' = "sol:ens",
|
|
3247
|
+
'sol:enron' = "sol:enron",
|
|
3248
|
+
'sol:jitosol' = "sol:jitosol",
|
|
3249
|
+
'sol:zeus' = "sol:zeus",
|
|
3250
|
+
'sol:kmno' = "sol:kmno",
|
|
3251
|
+
'sol:giga' = "sol:giga",
|
|
3252
|
+
'sol:tnsr' = "sol:tnsr",
|
|
3253
|
+
'sol:ssol' = "sol:ssol",
|
|
3254
|
+
'sol:drift' = "sol:drift",
|
|
3255
|
+
'sol:spx' = "sol:spx",
|
|
3256
|
+
'sol:turbo' = "sol:turbo",
|
|
3257
|
+
'sol:fartcoin' = "sol:fartcoin",
|
|
3258
|
+
'sol:swarms' = "sol:swarms",
|
|
3259
|
+
'sol:nc' = "sol:nc",
|
|
3260
|
+
'sol:tai' = "sol:tai",
|
|
3261
|
+
'sol:pengu' = "sol:pengu",
|
|
3262
|
+
'sol:corn' = "sol:corn",
|
|
3263
|
+
'sol:yes' = "sol:yes",
|
|
3264
|
+
'sol:ai16z' = "sol:ai16z",
|
|
3265
|
+
'sol:pnut' = "sol:pnut",
|
|
3266
|
+
'sol:nyan' = "sol:nyan",
|
|
3267
|
+
'sol:fight' = "sol:fight",
|
|
3268
|
+
'sol:wet' = "sol:wet",
|
|
3269
|
+
'sol:meta' = "sol:meta",
|
|
3270
|
+
'sol:portals' = "sol:portals",
|
|
3271
|
+
'sol:virtual' = "sol:virtual",
|
|
3272
|
+
'sol:zerebro' = "sol:zerebro",
|
|
3273
|
+
'sol:arc' = "sol:arc",
|
|
3274
|
+
'sol:nos' = "sol:nos",
|
|
3275
|
+
'sol:jlp' = "sol:jlp",
|
|
3276
|
+
'sol:grass' = "sol:grass",
|
|
3277
|
+
'sol:trump' = "sol:trump",
|
|
3278
|
+
'sol:melania' = "sol:melania",
|
|
3279
|
+
'sol:ustry' = "sol:ustry",
|
|
3280
|
+
'sol:eurob' = "sol:eurob",
|
|
3281
|
+
'sol:tesouro' = "sol:tesouro",
|
|
3282
|
+
'sol:cetes' = "sol:cetes",
|
|
3283
|
+
'sol:gilts' = "sol:gilts",
|
|
3284
|
+
'sol:muskit' = "sol:muskit",
|
|
3285
|
+
'sol:matrix' = "sol:matrix",
|
|
3286
|
+
'sol:eurcv' = "sol:eurcv",
|
|
3287
|
+
'sol:layer' = "sol:layer",
|
|
3288
|
+
'sol:rock' = "sol:rock",
|
|
3289
|
+
'sol:dood' = "sol:dood",
|
|
3290
|
+
'sol:sb' = "sol:sb",
|
|
3291
|
+
'sol:dfdvsol' = "sol:dfdvsol",
|
|
3292
|
+
'sol:chillguy' = "sol:chillguy",
|
|
3293
|
+
'sol:moodeng' = "sol:moodeng",
|
|
3294
|
+
'sol:hsol' = "sol:hsol",
|
|
3295
|
+
'sol:grph' = "sol:grph",
|
|
3296
|
+
'sol:superbonds' = "sol:superbonds",
|
|
3297
|
+
'sol:would' = "sol:would",
|
|
3298
|
+
'sol:dog' = "sol:dog",
|
|
3299
|
+
'sol:dont' = "sol:dont",
|
|
3300
|
+
'sol:saros' = "sol:saros",
|
|
3301
|
+
'sol:babydoge' = "sol:babydoge",
|
|
3302
|
+
'sol:useless' = "sol:useless",
|
|
3303
|
+
'sol:gohome' = "sol:gohome",
|
|
3304
|
+
'sol:aura' = "sol:aura",
|
|
3305
|
+
'sol:me' = "sol:me",
|
|
3306
|
+
'sol:alch' = "sol:alch",
|
|
3307
|
+
'sol:launchcoin' = "sol:launchcoin",
|
|
3308
|
+
'sol:stik' = "sol:stik",
|
|
3309
|
+
'sol:chill' = "sol:chill",
|
|
3310
|
+
'sol:zbcn' = "sol:zbcn",
|
|
3311
|
+
'sol:benji' = "sol:benji",
|
|
3312
|
+
'sol:dupe' = "sol:dupe",
|
|
3313
|
+
'sol:tank' = "sol:tank",
|
|
3314
|
+
'sol:grift' = "sol:grift",
|
|
3315
|
+
'sol:usdk' = "sol:usdk",
|
|
3316
|
+
'sol:usdky' = "sol:usdky",
|
|
3317
|
+
'sol:wave' = "sol:wave",
|
|
3318
|
+
'sol:usdcv' = "sol:usdcv",
|
|
3319
|
+
'sol:2z' = "sol:2z",
|
|
3320
|
+
'sol:cloud' = "sol:cloud",
|
|
3321
|
+
'sol:eliza' = "sol:eliza",
|
|
3322
|
+
'sol:eurc' = "sol:eurc",
|
|
3323
|
+
'sol:dynosol' = "sol:dynosol",
|
|
3324
|
+
'sol:cipher' = "sol:cipher",
|
|
3325
|
+
'sol:bio' = "sol:bio",
|
|
3326
|
+
'sol:rekt' = "sol:rekt",
|
|
3327
|
+
'sol:xyo' = "sol:xyo",
|
|
3328
|
+
'sol:zig' = "sol:zig",
|
|
3329
|
+
'sol:xsgd' = "sol:xsgd",
|
|
3330
|
+
'sol:straitxusd' = "sol:straitxusd",
|
|
3331
|
+
'sol:usx' = "sol:usx",
|
|
3332
|
+
'sol:rksol' = "sol:rksol",
|
|
3333
|
+
'sol:usda1' = "sol:usda1",
|
|
3334
|
+
'sol:ponke' = "sol:ponke",
|
|
3335
|
+
'sol:jellyjelly' = "sol:jellyjelly",
|
|
3336
|
+
'sol:yu' = "sol:yu",
|
|
3337
|
+
'sol:met' = "sol:met",
|
|
3338
|
+
'sol:white' = "sol:white",
|
|
3339
|
+
'sol:yzy' = "sol:yzy",
|
|
3340
|
+
'sol:wild' = "sol:wild",
|
|
3341
|
+
'sol:npc' = "sol:npc",
|
|
3342
|
+
'sol:aix' = "sol:aix",
|
|
3343
|
+
'sol:troll' = "sol:troll",
|
|
3344
|
+
'sol:ban' = "sol:ban",
|
|
3345
|
+
'sol:dbr' = "sol:dbr",
|
|
3346
|
+
'sol:bless' = "sol:bless",
|
|
3347
|
+
'sol:cpool' = "sol:cpool",
|
|
3348
|
+
'sol:home' = "sol:home",
|
|
3349
|
+
'sol:oob' = "sol:oob",
|
|
3350
|
+
'sol:xnet' = "sol:xnet",
|
|
3351
|
+
'sol:xnetv2' = "sol:xnetv2",
|
|
3352
|
+
'sol:prcl' = "sol:prcl",
|
|
3353
|
+
'sol:asp' = "sol:asp",
|
|
3354
|
+
'sol:skr' = "sol:skr",
|
|
3355
|
+
'sol:bmt' = "sol:bmt",
|
|
3356
|
+
'sol:huma' = "sol:huma",
|
|
3357
|
+
'sol:cbbtc' = "sol:cbbtc",
|
|
3358
|
+
'sol:gobucks' = "sol:gobucks",
|
|
3359
|
+
'sol:prime' = "sol:prime",
|
|
3360
|
+
'sol:tbtc' = "sol:tbtc",
|
|
3361
|
+
'sol:kwyld-usdc' = "sol:kwyld-usdc",
|
|
3362
|
+
'sol:kprme-cash' = "sol:kprme-cash",
|
|
3363
|
+
'sol:kwyld-cash' = "sol:kwyld-cash",
|
|
3364
|
+
'sol:tusdc' = "sol:tusdc",
|
|
3365
|
+
'sol:slx' = "sol:slx",
|
|
3366
|
+
'sol:ab1' = "sol:ab1",
|
|
3367
|
+
'tsol:txsgd' = "sol:txsgd",
|
|
3368
|
+
'tsol:txusd' = "sol:txusd",
|
|
3369
|
+
'trx:htx' = "trx:htx",
|
|
3370
|
+
'trx:jst' = "trx:jst",
|
|
3371
|
+
'trx:tusd' = "trx:tusd",
|
|
3372
|
+
'trx:win' = "trx:win",
|
|
3373
|
+
'trx:btt' = "trx:btt",
|
|
3374
|
+
'trx:usdd' = "trx:usdd",
|
|
3375
|
+
'trx:usdt' = "trx:usdt",
|
|
3376
|
+
'trx:usd1' = "trx:usd1",
|
|
3377
|
+
'trx:nft' = "trx:nft",
|
|
3378
|
+
'trx:trxs' = "trx:trxs",
|
|
3379
|
+
'ttrx:usdt' = "ttrx:usdt",
|
|
3380
|
+
'ttrx:usd1' = "ttrx:usd1",
|
|
3381
|
+
'ttrx:stgusd1' = "ttrx:stgusd1",
|
|
3382
|
+
'ttrx:tusdlt' = "ttrx:tusdlt",
|
|
3383
|
+
'txrp:tst-rP9jPyP5kyvFRb6ZiRghAGw5u8SGAmU4bd' = "txrp:tst-rP9jPyP5kyvFRb6ZiRghAGw5u8SGAmU4bd",
|
|
3384
|
+
'xrp:rlusd' = "xrp:rlusd",
|
|
3385
|
+
'txrp:rlusd' = "txrp:rlusd",
|
|
3386
|
+
'txrp:xat' = "txrp:xat",
|
|
3387
|
+
'xrp:tbill' = "xrp:tbill",
|
|
3388
|
+
'xrp:xsgd' = "xrp:xsgd",
|
|
3389
|
+
'xrp:veur' = "xrp:veur",
|
|
3390
|
+
'xrp:vchf' = "xrp:vchf",
|
|
3391
|
+
'xrp:vgbp' = "xrp:vgbp",
|
|
3392
|
+
'xrp:solo' = "xrp:solo",
|
|
3393
|
+
'xrp:usdc' = "xrp:usdc",
|
|
3394
|
+
'xrp:eurcv' = "xrp:eurcv",
|
|
3395
|
+
'xrp:aau' = "xrp:aau",
|
|
3396
|
+
'xrp:fiuaxrp' = "xrp:fiuaxrp",
|
|
3397
|
+
'txrp:xsgd' = "txrp:xsgd",
|
|
3398
|
+
'sui:deep' = "sui:deep",
|
|
3399
|
+
'sui:suins' = "sui:suins",
|
|
3400
|
+
'sui:suiusde' = "sui:suiusde",
|
|
3401
|
+
'sui:fdusd' = "sui:fdusd",
|
|
3402
|
+
'sui:usdc' = "sui:usdc",
|
|
3403
|
+
'sui:wusdc' = "sui:wusdc",
|
|
3404
|
+
'sui:sca' = "sui:sca",
|
|
3405
|
+
'sui:times' = "sui:times",
|
|
3406
|
+
'sui:fud' = "sui:fud",
|
|
3407
|
+
'sui:haedal' = "sui:haedal",
|
|
3408
|
+
'sui:afsui' = "sui:afsui",
|
|
3409
|
+
'sui:navx' = "sui:navx",
|
|
3410
|
+
'sui:vsui' = "sui:vsui",
|
|
3411
|
+
'sui:send' = "sui:send",
|
|
3412
|
+
'sui:cetus' = "sui:cetus",
|
|
3413
|
+
'sui:wal' = "sui:wal",
|
|
3414
|
+
'sui:xmn' = "sui:xmn",
|
|
3415
|
+
'sui:xaum' = "sui:xaum",
|
|
3416
|
+
'sui:alkimi' = "sui:alkimi",
|
|
3417
|
+
'sui:dmc' = "sui:dmc",
|
|
3418
|
+
'sui:mmt' = "sui:mmt",
|
|
3419
|
+
'sui:usdsui' = "sui:usdsui",
|
|
3420
|
+
'sui:blue' = "sui:blue",
|
|
3421
|
+
'tsui:deep' = "tsui:deep",
|
|
3422
|
+
'tsui:wal' = "tsui:wal",
|
|
3423
|
+
'apt:usd1' = "apt:usd1",
|
|
3424
|
+
'apt:usdt' = "apt:usdt",
|
|
3425
|
+
'apt:usdc' = "apt:usdc",
|
|
3426
|
+
'apt:pact' = "apt:pact",
|
|
3427
|
+
'apt:benji' = "apt:benji",
|
|
3428
|
+
'apt:lsd' = "apt:lsd",
|
|
3429
|
+
'apt:kgen' = "apt:kgen",
|
|
3430
|
+
'apt:scf1' = "apt:scf1",
|
|
3431
|
+
'apt:h00ts' = "apt:h00ts",
|
|
3432
|
+
'tapt:stgusd1' = "tapt:stgusd1",
|
|
3433
|
+
'tapt:usd1' = "tapt:usd1",
|
|
3434
|
+
'tapt:usdt' = "tapt:usdt",
|
|
3435
|
+
'tapt:nftcollection1' = "tapt:nftcollection1",
|
|
3436
|
+
'tapt:beta3loanbook' = "tapt:beta3loanbook",
|
|
3437
|
+
'stx:sbtc' = "stx:sbtc",
|
|
3438
|
+
'stx:ststx' = "stx:ststx",
|
|
3439
|
+
'stx:alex' = "stx:alex",
|
|
3440
|
+
'stx:aeusdc' = "stx:aeusdc",
|
|
3441
|
+
'stx:usdh' = "stx:usdh",
|
|
3442
|
+
'stx:susdh' = "stx:susdh",
|
|
3443
|
+
'stx:welsh' = "stx:welsh",
|
|
3444
|
+
'tstx:tsbtc' = "tstx:tsbtc",
|
|
3445
|
+
'tstx:tsip6dp' = "tstx:tsip6dp",
|
|
3446
|
+
'tstx:tsip8dp' = "tstx:tsip8dp",
|
|
3447
|
+
'ttao:apex' = "ttao:apex",
|
|
3448
|
+
'ttao:onion' = "ttao:onion",
|
|
3449
|
+
'ttao:templar' = "ttao:templar",
|
|
3450
|
+
'ttao:targon' = "ttao:targon",
|
|
3451
|
+
'tpolyx:nvbitgot' = "tpolyx:nvbitgot",
|
|
3452
|
+
'tpolyx:RAND176TM' = "tpolyx:RAND176TM",
|
|
3453
|
+
'tpolyx:WEBINRASSET3' = "tpolyx:WEBINRASSET3",
|
|
3454
|
+
'tpolyx:WEBINRASSET4' = "tpolyx:WEBINRASSET4",
|
|
3455
|
+
'tpolyx:WEBINRASSET5' = "tpolyx:WEBINRASSET5",
|
|
3456
|
+
'tpolyx:WEBINRASSET6' = "tpolyx:WEBINRASSET6",
|
|
3457
|
+
'tpolyx:WEBINRASSET7' = "tpolyx:WEBINRASSET7",
|
|
3458
|
+
'tpolyx:BULLRWA' = "tpolyx:BULLRWA",
|
|
3459
|
+
'tpolyx:0x4a002922d38b8a7f87484b9c65a7ca0c' = "tpolyx:0x4a002922d38b8a7f87484b9c65a7ca0c",
|
|
3460
|
+
'tpolyx:0x753b5a2cb97c83e8b1bd66ed6643e4e9' = "tpolyx:0x753b5a2cb97c83e8b1bd66ed6643e4e9",
|
|
3461
|
+
'polyx:0xa0ce6bc4c60981e08eca6504656c99e6' = "polyx:0xa0ce6bc4c60981e08eca6504656c99e6",
|
|
3462
|
+
'polyx:TEST-TOKEN-1' = "polyx:TEST-TOKEN-1",
|
|
3463
|
+
'hbar:karate' = "hbar:karate",
|
|
3464
|
+
'hbar:sauce' = "hbar:sauce",
|
|
3465
|
+
'hbar:dovu' = "hbar:dovu",
|
|
3466
|
+
'hbar:pack' = "hbar:pack",
|
|
3467
|
+
'hbar:jam' = "hbar:jam",
|
|
3468
|
+
'hbar:berry' = "hbar:berry",
|
|
3469
|
+
'hbar:bonzo' = "hbar:bonzo",
|
|
3470
|
+
'hbar:co2e' = "hbar:co2e",
|
|
3471
|
+
'hbar:hsuite' = "hbar:hsuite",
|
|
3472
|
+
'hbar:usdc' = "hbar:usdc",
|
|
3473
|
+
'thbar:txsgd' = "thbar:txsgd",
|
|
3474
|
+
'thbarevm:hbarnativetoken' = "thbarevm:hbarnativetoken",
|
|
3475
|
+
'thbarevm:tmt' = "thbarevm:tmt",
|
|
3476
|
+
'thbarevm:tnt' = "thbarevm:tnt",
|
|
3477
|
+
'thbarevm:erc3643' = "thbarevm:erc3643",
|
|
3478
|
+
'near:usdc' = "near:usdc",
|
|
3479
|
+
'near:usdt' = "near:usdt",
|
|
3480
|
+
'near:mpdao' = "near:mpdao",
|
|
3481
|
+
'near:stnear' = "near:stnear",
|
|
3482
|
+
'near:aurora' = "near:aurora",
|
|
3483
|
+
'tnear:tnep24dp' = "tnear:tnep24dp",
|
|
3484
|
+
'tnear:usdc' = "tnear:usdc",
|
|
3485
|
+
'tnear:stnear' = "tnear:stnear",
|
|
3486
|
+
'vet:vtho' = "vet:vtho",
|
|
3487
|
+
'tvet:vtho' = "tvet:vtho",
|
|
3488
|
+
'vet:sdt' = "vet:sdt",
|
|
3489
|
+
'tvet:sdt' = "tvet:sdt",
|
|
3490
|
+
'hash:ylds' = "hash:ylds",
|
|
3491
|
+
'hash:figr' = "hash:figr",
|
|
3492
|
+
'thash:ylds' = "thash:ylds",
|
|
3493
|
+
'thash:tfigr' = "thash:tfigr",
|
|
3494
|
+
'ton:usdt' = "ton:usdt",
|
|
3495
|
+
'ton:usde' = "ton:usde",
|
|
3496
|
+
'ton:not' = "ton:not",
|
|
3497
|
+
'ton:cati' = "ton:cati",
|
|
3498
|
+
'ton:dogs' = "ton:dogs",
|
|
3499
|
+
'ton:ston' = "ton:ston",
|
|
3500
|
+
'ton:dropee' = "ton:dropee",
|
|
3501
|
+
'tton:ukwny-us' = "tton:ukwny-us",
|
|
3502
|
+
'eth:0x0' = "eth:0x0",
|
|
3503
|
+
'eth:vvs' = "eth:vvs",
|
|
3504
|
+
'eth:bmx' = "eth:bmx",
|
|
3505
|
+
'eth:pro' = "eth:pro",
|
|
3506
|
+
'eth:prime' = "eth:prime",
|
|
3507
|
+
'eth:pokt' = "eth:pokt",
|
|
3508
|
+
'eth:lon' = "eth:lon",
|
|
3509
|
+
'eth:rlb' = "eth:rlb",
|
|
3510
|
+
'eth:neiro2' = "eth:neiro2",
|
|
3511
|
+
'eth:sign' = "eth:sign",
|
|
3512
|
+
'eth:vsn' = "eth:vsn",
|
|
3513
|
+
'eth:shx' = "eth:shx",
|
|
3514
|
+
'eth:slay' = "eth:slay",
|
|
3515
|
+
'eth:mxnb' = "eth:mxnb",
|
|
3516
|
+
'eth:hwhlp' = "eth:hwhlp",
|
|
3517
|
+
'eth:mxnd' = "eth:mxnd",
|
|
3518
|
+
'eth:bio' = "eth:bio",
|
|
3519
|
+
'eth:prove' = "eth:prove",
|
|
3520
|
+
'eth:zrc' = "eth:zrc",
|
|
3521
|
+
'eth:open' = "eth:open",
|
|
3522
|
+
'eth:mbg' = "eth:mbg",
|
|
3523
|
+
'eth:rekt' = "eth:rekt",
|
|
3524
|
+
'eth:audx' = "eth:audx",
|
|
3525
|
+
'eth:chfau' = "eth:chfau",
|
|
3526
|
+
'eth:dxi' = "eth:dxi",
|
|
3527
|
+
'eth:apxusd' = "eth:apxusd",
|
|
3528
|
+
'eth:q' = "eth:q",
|
|
3529
|
+
'eth:shvon' = "eth:shvon",
|
|
3530
|
+
'eth:pt-cusdo-28may2026' = "eth:pt-cusdo-28may2026",
|
|
3531
|
+
'eth:usd1cx' = "eth:usd1cx",
|
|
3532
|
+
'eth:ctusd1cx' = "eth:ctusd1cx",
|
|
3533
|
+
'eth:nom' = "eth:nom",
|
|
3534
|
+
'eth:kite' = "eth:kite",
|
|
3535
|
+
'eth:sahara' = "eth:sahara",
|
|
3536
|
+
'eth:epic' = "eth:epic",
|
|
3537
|
+
'eth:el' = "eth:el",
|
|
3538
|
+
'eth:kernel' = "eth:kernel",
|
|
3539
|
+
'eth:tree' = "eth:tree",
|
|
3540
|
+
'eth:zkc' = "eth:zkc",
|
|
3541
|
+
'eth:musd' = "eth:musd",
|
|
3542
|
+
'eth:mezo' = "eth:mezo",
|
|
3543
|
+
'eth:drv' = "eth:drv",
|
|
3544
|
+
'eth:prn' = "eth:prn",
|
|
3545
|
+
'eth:zama' = "eth:zama",
|
|
3546
|
+
'eth:ctkn' = "eth:ctkn",
|
|
3547
|
+
'eth:cusdt' = "eth:cusdt",
|
|
3548
|
+
'hteth:ctest1' = "hteth:ctest1",
|
|
3549
|
+
'hteth:cusdt' = "hteth:cusdt",
|
|
3550
|
+
'eth:mony' = "eth:mony",
|
|
3551
|
+
'eth:architectgvi' = "eth:architectgvi",
|
|
3552
|
+
'eth:zk' = "eth:zk",
|
|
3553
|
+
'tada:water' = "tada:water",
|
|
3554
|
+
'tada:tusda' = "tada:tusda",
|
|
3555
|
+
'ada:min' = "ada:min",
|
|
3556
|
+
'ada:snek' = "ada:snek",
|
|
3557
|
+
'ada:wmtx' = "ada:wmtx",
|
|
3558
|
+
'ada:iag' = "ada:iag",
|
|
3559
|
+
'ada:djed' = "ada:djed",
|
|
3560
|
+
'ada:usda' = "ada:usda",
|
|
3561
|
+
'ada:night' = "ada:night",
|
|
3562
|
+
'ada:usdcx' = "ada:usdcx",
|
|
3563
|
+
'ada:lcc' = "ada:lcc",
|
|
3564
|
+
'ada:awlf' = "ada:awlf",
|
|
3565
|
+
'ada:asnek' = "ada:asnek",
|
|
3566
|
+
'tcanton:testcoin1' = "tcanton:testcoin1",
|
|
3567
|
+
'tcanton:testtoken' = "tcanton:testtoken",
|
|
3568
|
+
'tcanton:stgusd1' = "tcanton:stgusd1",
|
|
3569
|
+
'tcanton:usd1' = "tcanton:usd1",
|
|
3570
|
+
'canton:usdcx' = "canton:usdcx",
|
|
3571
|
+
'canton:usd1' = "canton:usd1",
|
|
3572
|
+
'canton:cbtc' = "canton:cbtc",
|
|
3573
|
+
'canton:usdxlr' = "canton:usdxlr",
|
|
3574
|
+
'canton:cltc' = "canton:cltc",
|
|
3575
|
+
'canton:ibenji' = "canton:ibenji",
|
|
3576
|
+
'canton:sbc' = "canton:sbc",
|
|
3577
|
+
'canton:ceth' = "canton:ceth",
|
|
3578
|
+
'tempo:pathusd' = "tempo:pathusd",
|
|
3579
|
+
'tempo:usdc' = "tempo:usdc",
|
|
3580
|
+
'tempo:usd1' = "tempo:usd1",
|
|
3581
|
+
'ttempo:pathusd' = "ttempo:pathusd",
|
|
3582
|
+
'ttempo:alphausd' = "ttempo:alphausd",
|
|
3583
|
+
'ttempo:betausd' = "ttempo:betausd",
|
|
3584
|
+
'ttempo:thetausd' = "ttempo:thetausd",
|
|
3585
|
+
'ttempo:usd1' = "ttempo:usd1",
|
|
3586
|
+
'ttempo:stgusd1' = "ttempo:stgusd1",
|
|
3587
|
+
'tprividiumeth:USB-ESCROW-D' = "tprividiumeth:USB-ESCROW-D",
|
|
3588
|
+
'tprividiumeth:tMMF' = "tprividiumeth:tMMF",
|
|
3589
|
+
AED = "aed",
|
|
3590
|
+
AUD = "aud",
|
|
3591
|
+
CAD = "cad",
|
|
3592
|
+
CHF = "chf",
|
|
3593
|
+
CNY = "cny",
|
|
3594
|
+
EUR = "eur",
|
|
3595
|
+
GBP = "gbp",
|
|
3596
|
+
HKD = "hkd",
|
|
3597
|
+
IDR = "idr",
|
|
3598
|
+
INR = "inr",
|
|
3599
|
+
JPY = "jpy",
|
|
3600
|
+
KRW = "krw",
|
|
3601
|
+
NOK = "nok",
|
|
3602
|
+
NZD = "nzd",
|
|
3603
|
+
SEK = "sek",
|
|
3604
|
+
SGD = "sgd",
|
|
3605
|
+
USD = "usd",
|
|
3606
|
+
ZAR = "zar"
|
|
1240
3607
|
}
|
|
1241
3608
|
/**
|
|
1242
3609
|
* This is the curve BitGo signs against with the user, backup and BitGo key.
|
|
1243
3610
|
*/
|
|
1244
3611
|
export declare enum KeyCurve {
|
|
1245
3612
|
Secp256k1 = "secp256k1",
|
|
1246
|
-
Ed25519 = "ed25519"
|
|
1247
|
-
BLS = "bls"
|
|
3613
|
+
Ed25519 = "ed25519"
|
|
1248
3614
|
}
|
|
1249
3615
|
/**
|
|
1250
3616
|
* This enum contains the base units for the coins that BitGo supports
|
|
1251
3617
|
*/
|
|
1252
3618
|
export declare enum BaseUnit {
|
|
1253
|
-
ATOM = "
|
|
3619
|
+
ATOM = "uatom",
|
|
3620
|
+
APT = "octa",
|
|
1254
3621
|
ETH = "wei",
|
|
3622
|
+
BABY = "ubbn",
|
|
1255
3623
|
BTC = "satoshi",
|
|
1256
3624
|
BSC = "jager",
|
|
1257
3625
|
XLM = "stroop",
|
|
1258
3626
|
TRX = "sun",
|
|
1259
3627
|
HBAR = "tinybar",
|
|
1260
3628
|
ALGO = "microAlgo",
|
|
1261
|
-
EOS = "eos"
|
|
3629
|
+
EOS = "eos",// eos has no base unit. smallest amount in eos is 4 decimals
|
|
1262
3630
|
SOL = "lamport",
|
|
1263
3631
|
ADA = "lovelace",
|
|
1264
3632
|
USD = "USD",
|
|
3633
|
+
LNBTC = "millisatoshi",
|
|
1265
3634
|
LTC = "microlitecoins",
|
|
1266
3635
|
DASH = "duff",
|
|
1267
3636
|
ZEC = "zatoshi",
|
|
@@ -1281,12 +3650,30 @@ export declare enum BaseUnit {
|
|
|
1281
3650
|
BLD = "ubld",
|
|
1282
3651
|
SEI = "usei",
|
|
1283
3652
|
INJECTIVE = "inj",
|
|
3653
|
+
IOTA = "iota",
|
|
1284
3654
|
ZETA = "azeta",
|
|
1285
|
-
|
|
3655
|
+
KAVACOSMOS = "ukava",
|
|
3656
|
+
DYDX = "adydx",
|
|
1286
3657
|
COREUM = "ucore",
|
|
1287
|
-
TCOREUM = "utestcore"
|
|
1288
|
-
|
|
1289
|
-
|
|
3658
|
+
TCOREUM = "utestcore",// Coreum testnet uses different name for native coin
|
|
3659
|
+
ISLM = "aISLM",
|
|
3660
|
+
RUNE = "rune",
|
|
3661
|
+
TAO = "rao",
|
|
3662
|
+
ICP = "e8s",
|
|
3663
|
+
HYPE = "hype",
|
|
3664
|
+
MANTRA = "uom",
|
|
3665
|
+
POLYX = "micropolyx",
|
|
3666
|
+
CRONOS = "basecro",
|
|
3667
|
+
FETCHAI = "afet",
|
|
3668
|
+
INITIA = "uinit",
|
|
3669
|
+
ASI = "afet",
|
|
3670
|
+
VET = "wei",
|
|
3671
|
+
TCRONOS = "basetcro",
|
|
3672
|
+
TASI = "atestfet",
|
|
3673
|
+
CANTON = "canton",
|
|
3674
|
+
KASPA = "sompi",
|
|
3675
|
+
STARKNET = "fri",
|
|
3676
|
+
USDC = "usdc"
|
|
1290
3677
|
}
|
|
1291
3678
|
export interface BaseCoinConstructorOptions {
|
|
1292
3679
|
id: string;
|
|
@@ -1295,6 +3682,7 @@ export interface BaseCoinConstructorOptions {
|
|
|
1295
3682
|
alias?: string;
|
|
1296
3683
|
prefix?: string;
|
|
1297
3684
|
suffix?: string;
|
|
3685
|
+
denom?: string;
|
|
1298
3686
|
baseUnit: string;
|
|
1299
3687
|
kind: CoinKind;
|
|
1300
3688
|
isToken: boolean;
|
|
@@ -1305,11 +3693,15 @@ export interface BaseCoinConstructorOptions {
|
|
|
1305
3693
|
primaryKeyCurve: KeyCurve;
|
|
1306
3694
|
}
|
|
1307
3695
|
export declare abstract class BaseCoin {
|
|
3696
|
+
/**
|
|
3697
|
+
* random uuid for a coin
|
|
3698
|
+
*/
|
|
1308
3699
|
readonly id: string;
|
|
1309
3700
|
readonly fullName: string;
|
|
1310
3701
|
readonly name: string;
|
|
1311
3702
|
readonly prefix?: string;
|
|
1312
3703
|
readonly suffix?: string;
|
|
3704
|
+
readonly denom?: string;
|
|
1313
3705
|
readonly baseUnit: string;
|
|
1314
3706
|
readonly alias?: string;
|
|
1315
3707
|
readonly kind: CoinKind;
|
|
@@ -1346,5 +3738,42 @@ export declare abstract class BaseCoin {
|
|
|
1346
3738
|
*/
|
|
1347
3739
|
private validateOptions;
|
|
1348
3740
|
protected constructor(options: BaseCoinConstructorOptions);
|
|
3741
|
+
/**
|
|
3742
|
+
* Returns features from a base feature set, excluding specified features
|
|
3743
|
+
* @param excludedFeatures Array of features to exclude
|
|
3744
|
+
* @param baseFeatures Base feature array to filter from (optional)
|
|
3745
|
+
* @returns Filtered array of features
|
|
3746
|
+
*/
|
|
3747
|
+
static getFeaturesByTypeExcluding(excludedFeatures: CoinFeature[], baseFeatures?: CoinFeature[]): CoinFeature[];
|
|
3748
|
+
}
|
|
3749
|
+
export interface DynamicCoinConstructorOptions {
|
|
3750
|
+
id: string;
|
|
3751
|
+
fullName: string;
|
|
3752
|
+
name: string;
|
|
3753
|
+
alias?: string;
|
|
3754
|
+
prefix?: string;
|
|
3755
|
+
suffix?: string;
|
|
3756
|
+
denom?: string;
|
|
3757
|
+
baseUnit: string;
|
|
3758
|
+
kind: string;
|
|
3759
|
+
isToken: boolean;
|
|
3760
|
+
features: string[];
|
|
3761
|
+
decimalPlaces: number;
|
|
3762
|
+
asset: string;
|
|
3763
|
+
network: BaseNetwork;
|
|
3764
|
+
primaryKeyCurve: string;
|
|
3765
|
+
}
|
|
3766
|
+
/**
|
|
3767
|
+
* Concrete coin class for AMS-discovered chains not yet registered in local statics.
|
|
3768
|
+
*
|
|
3769
|
+
* Extends {@link BaseCoin} directly with empty required/disallowed
|
|
3770
|
+
* feature sets — AMS is the source of truth for features. Accepts string-typed enum
|
|
3771
|
+
* fields and casts internally (safe since CoinKind, CoinFeature, UnderlyingAsset,
|
|
3772
|
+
* KeyCurve are all string enums).
|
|
3773
|
+
*/
|
|
3774
|
+
export declare class DynamicCoin extends BaseCoin {
|
|
3775
|
+
protected requiredFeatures(): Set<CoinFeature>;
|
|
3776
|
+
protected disallowedFeatures(): Set<CoinFeature>;
|
|
3777
|
+
constructor(options: DynamicCoinConstructorOptions);
|
|
1349
3778
|
}
|
|
1350
3779
|
//# sourceMappingURL=base.d.ts.map
|