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