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