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