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