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