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