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