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