@drift-labs/sdk 2.86.0-beta.2 → 2.86.0-beta.21
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/VERSION +1 -1
- package/lib/accounts/pollingDriftClientAccountSubscriber.js +24 -16
- package/lib/accounts/webSocketDriftClientAccountSubscriber.js +25 -32
- package/lib/adminClient.d.ts +6 -0
- package/lib/adminClient.js +55 -0
- package/lib/bankrun/bankrunConnection.d.ts +1 -0
- package/lib/bankrun/bankrunConnection.js +6 -0
- package/lib/constants/numericConstants.d.ts +3 -0
- package/lib/constants/numericConstants.js +4 -1
- package/lib/constants/perpMarkets.js +125 -101
- package/lib/constants/spotMarkets.js +19 -18
- package/lib/idl/drift.json +331 -4
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/lib/math/fuel.d.ts +6 -0
- package/lib/math/fuel.js +55 -0
- package/lib/types.d.ts +17 -0
- package/lib/user.d.ts +8 -0
- package/lib/user.js +59 -0
- package/package.json +1 -1
- package/src/accounts/pollingDriftClientAccountSubscriber.ts +38 -23
- package/src/accounts/webSocketDriftClientAccountSubscriber.ts +55 -38
- package/src/adminClient.ts +159 -0
- package/src/bankrun/bankrunConnection.ts +13 -0
- package/src/constants/numericConstants.ts +4 -0
- package/src/constants/perpMarkets.ts +129 -101
- package/src/constants/spotMarkets.ts +20 -18
- package/src/idl/drift.json +331 -4
- package/src/index.ts +1 -0
- package/src/math/fuel.ts +70 -0
- package/src/types.ts +22 -0
- package/src/user.ts +154 -0
- package/tests/ci/verifyConstants.ts +214 -0
- package/tests/dlob/helpers.ts +30 -0
- package/tests/user/helpers.ts +1 -0
- package/tests/user/test.ts +2 -0
|
@@ -10,9 +10,9 @@ exports.DevnetPerpMarkets = [
|
|
|
10
10
|
symbol: 'SOL-PERP',
|
|
11
11
|
baseAssetSymbol: 'SOL',
|
|
12
12
|
marketIndex: 0,
|
|
13
|
-
oracle: new web3_js_1.PublicKey('
|
|
13
|
+
oracle: new web3_js_1.PublicKey('BAtFj4kQttZRVep3UZS2aZRDixkGYgWsbqTBVDbnSsPF'),
|
|
14
14
|
launchTs: 1655751353000,
|
|
15
|
-
oracleSource: __1.OracleSource.
|
|
15
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
16
16
|
pythFeedId: '0xef0d8b6fda2ceba41da15d4095d1da392a0d2f8ed0c6c7bc0f4cfac8c280b56d',
|
|
17
17
|
},
|
|
18
18
|
{
|
|
@@ -21,9 +21,9 @@ exports.DevnetPerpMarkets = [
|
|
|
21
21
|
symbol: 'BTC-PERP',
|
|
22
22
|
baseAssetSymbol: 'BTC',
|
|
23
23
|
marketIndex: 1,
|
|
24
|
-
oracle: new web3_js_1.PublicKey('
|
|
24
|
+
oracle: new web3_js_1.PublicKey('486kr3pmFPfTsS4aZgcsQ7kS4i9rjMsYYZup6HQNSTT4'),
|
|
25
25
|
launchTs: 1655751353000,
|
|
26
|
-
oracleSource: __1.OracleSource.
|
|
26
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
27
27
|
pythFeedId: '0xe62df6c8b4a85fe1a67db44dc12de5db330f7ac66b72dc658afedf0f4a415b43',
|
|
28
28
|
},
|
|
29
29
|
{
|
|
@@ -32,9 +32,9 @@ exports.DevnetPerpMarkets = [
|
|
|
32
32
|
symbol: 'ETH-PERP',
|
|
33
33
|
baseAssetSymbol: 'ETH',
|
|
34
34
|
marketIndex: 2,
|
|
35
|
-
oracle: new web3_js_1.PublicKey('
|
|
35
|
+
oracle: new web3_js_1.PublicKey('6bEp2MiyoiiiDxcVqE8rUHQWwHirXUXtKfAEATTVqNzT'),
|
|
36
36
|
launchTs: 1637691133472,
|
|
37
|
-
oracleSource: __1.OracleSource.
|
|
37
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
38
38
|
pythFeedId: '0xff61491a931112ddf1bd8147cd1b641375f79f5825126d665480874634fd0ace',
|
|
39
39
|
},
|
|
40
40
|
{
|
|
@@ -43,9 +43,9 @@ exports.DevnetPerpMarkets = [
|
|
|
43
43
|
symbol: 'APT-PERP',
|
|
44
44
|
baseAssetSymbol: 'APT',
|
|
45
45
|
marketIndex: 3,
|
|
46
|
-
oracle: new web3_js_1.PublicKey('
|
|
46
|
+
oracle: new web3_js_1.PublicKey('79EWaCYU9jiQN8SbvVzGFAhAncUZYp3PjNg7KxmN5cLE'),
|
|
47
47
|
launchTs: 1675610186000,
|
|
48
|
-
oracleSource: __1.OracleSource.
|
|
48
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
49
49
|
pythFeedId: '0x03ae4db29ed4ae33d323568895aa00337e658e348b37509f5372ae51f0af00d5',
|
|
50
50
|
},
|
|
51
51
|
{
|
|
@@ -54,9 +54,9 @@ exports.DevnetPerpMarkets = [
|
|
|
54
54
|
symbol: '1MBONK-PERP',
|
|
55
55
|
baseAssetSymbol: '1MBONK',
|
|
56
56
|
marketIndex: 4,
|
|
57
|
-
oracle: new web3_js_1.PublicKey('
|
|
57
|
+
oracle: new web3_js_1.PublicKey('GojbSnJuPdKDT1ZuHuAM5t9oz6bxTo1xhUKpTua2F72p'),
|
|
58
58
|
launchTs: 1677068931000,
|
|
59
|
-
oracleSource: __1.OracleSource.
|
|
59
|
+
oracleSource: __1.OracleSource.PYTH_1M_PULL,
|
|
60
60
|
pythFeedId: '0x72b021217ca3fe68922a19aaf990109cb9d84e9ad004b4d2025ad6f529314419',
|
|
61
61
|
},
|
|
62
62
|
{
|
|
@@ -65,9 +65,9 @@ exports.DevnetPerpMarkets = [
|
|
|
65
65
|
symbol: 'MATIC-PERP',
|
|
66
66
|
baseAssetSymbol: 'MATIC',
|
|
67
67
|
marketIndex: 5,
|
|
68
|
-
oracle: new web3_js_1.PublicKey('
|
|
68
|
+
oracle: new web3_js_1.PublicKey('5Wf1WrXLeNJghU8WRo5odvwAjpjSSF4THbjdxbKmwVsi'),
|
|
69
69
|
launchTs: 1677690149000,
|
|
70
|
-
oracleSource: __1.OracleSource.
|
|
70
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
71
71
|
pythFeedId: '0x5de33a9112c2b700b8d30b8a3402c103578ccfa2765696471cc672bd5cf6ac52',
|
|
72
72
|
},
|
|
73
73
|
{
|
|
@@ -76,9 +76,9 @@ exports.DevnetPerpMarkets = [
|
|
|
76
76
|
symbol: 'ARB-PERP',
|
|
77
77
|
baseAssetSymbol: 'ARB',
|
|
78
78
|
marketIndex: 6,
|
|
79
|
-
oracle: new web3_js_1.PublicKey('
|
|
79
|
+
oracle: new web3_js_1.PublicKey('8ocfAdqVRnzvfdubQaTxar4Kz5HJhNbPNmkLxswqiHUD'),
|
|
80
80
|
launchTs: 1679501812000,
|
|
81
|
-
oracleSource: __1.OracleSource.
|
|
81
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
82
82
|
pythFeedId: '0x3fa4252848f9f0a1480be62745a4629d9eb1322aebab8a791e344b3b9c1adcf5',
|
|
83
83
|
},
|
|
84
84
|
{
|
|
@@ -87,9 +87,9 @@ exports.DevnetPerpMarkets = [
|
|
|
87
87
|
symbol: 'DOGE-PERP',
|
|
88
88
|
baseAssetSymbol: 'DOGE',
|
|
89
89
|
marketIndex: 7,
|
|
90
|
-
oracle: new web3_js_1.PublicKey('
|
|
90
|
+
oracle: new web3_js_1.PublicKey('23y63pHVwKfYSCDFdiGRaGbTYWoyr8UzhUE7zukyf6gK'),
|
|
91
91
|
launchTs: 1680808053000,
|
|
92
|
-
oracleSource: __1.OracleSource.
|
|
92
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
93
93
|
pythFeedId: '0xdcef50dd0a4cd2dcc17e45df1676dcb336a11a61c69df7a0299b0150c672d25c',
|
|
94
94
|
},
|
|
95
95
|
{
|
|
@@ -98,9 +98,9 @@ exports.DevnetPerpMarkets = [
|
|
|
98
98
|
symbol: 'BNB-PERP',
|
|
99
99
|
baseAssetSymbol: 'BNB',
|
|
100
100
|
marketIndex: 8,
|
|
101
|
-
oracle: new web3_js_1.PublicKey('
|
|
101
|
+
oracle: new web3_js_1.PublicKey('Dk8eWjuQHMbxJAwB9Sg7pXQPH4kgbg8qZGcUrWcD9gTm'),
|
|
102
102
|
launchTs: 1680808053000,
|
|
103
|
-
oracleSource: __1.OracleSource.
|
|
103
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
104
104
|
pythFeedId: '0x2f95862b045670cd22bee3114c39763a4a08beeb663b145d283c31d7d1101c4f',
|
|
105
105
|
},
|
|
106
106
|
{
|
|
@@ -109,9 +109,9 @@ exports.DevnetPerpMarkets = [
|
|
|
109
109
|
symbol: 'SUI-PERP',
|
|
110
110
|
baseAssetSymbol: 'SUI',
|
|
111
111
|
marketIndex: 9,
|
|
112
|
-
oracle: new web3_js_1.PublicKey('
|
|
112
|
+
oracle: new web3_js_1.PublicKey('HBordkz5YxjzNURmKUY4vfEYFG9fZyZNeNF1VDLMoemT'),
|
|
113
113
|
launchTs: 1683125906000,
|
|
114
|
-
oracleSource: __1.OracleSource.
|
|
114
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
115
115
|
pythFeedId: '0x23d7315113f5b1d3ba7a83604c44b94d79f4fd69af77f804fc7f920a6dc65744',
|
|
116
116
|
},
|
|
117
117
|
{
|
|
@@ -120,9 +120,9 @@ exports.DevnetPerpMarkets = [
|
|
|
120
120
|
symbol: '1MPEPE-PERP',
|
|
121
121
|
baseAssetSymbol: '1MPEPE',
|
|
122
122
|
marketIndex: 10,
|
|
123
|
-
oracle: new web3_js_1.PublicKey('
|
|
123
|
+
oracle: new web3_js_1.PublicKey('CLxofhtzvLiErpn25wvUzpZXEqBhuZ6WMEckEraxyuGt'),
|
|
124
124
|
launchTs: 1683781239000,
|
|
125
|
-
oracleSource: __1.OracleSource.
|
|
125
|
+
oracleSource: __1.OracleSource.PYTH_1M_PULL,
|
|
126
126
|
pythFeedId: '0xd69731a2e74ac1ce884fc3890f7ee324b6deb66147055249568869ed700882e4',
|
|
127
127
|
},
|
|
128
128
|
{
|
|
@@ -131,9 +131,9 @@ exports.DevnetPerpMarkets = [
|
|
|
131
131
|
symbol: 'OP-PERP',
|
|
132
132
|
baseAssetSymbol: 'OP',
|
|
133
133
|
marketIndex: 11,
|
|
134
|
-
oracle: new web3_js_1.PublicKey('
|
|
134
|
+
oracle: new web3_js_1.PublicKey('C9Zi2Y3Mt6Zt6pcFvobN3N29HcrzKujPAPBDDTDRcUa2'),
|
|
135
135
|
launchTs: 1686091480000,
|
|
136
|
-
oracleSource: __1.OracleSource.
|
|
136
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
137
137
|
pythFeedId: '0x385f64d993f7b77d8182ed5003d97c60aa3361f3cecfe711544d2d59165e9bdf',
|
|
138
138
|
},
|
|
139
139
|
{
|
|
@@ -142,9 +142,9 @@ exports.DevnetPerpMarkets = [
|
|
|
142
142
|
symbol: 'RNDR-PERP',
|
|
143
143
|
baseAssetSymbol: 'RNDR',
|
|
144
144
|
marketIndex: 12,
|
|
145
|
-
oracle: new web3_js_1.PublicKey('
|
|
145
|
+
oracle: new web3_js_1.PublicKey('F3mPHRtJqqq57JPDBmUwUVhpyPLmjE5dAzDfpVgpFkug'),
|
|
146
146
|
launchTs: 1687201081000,
|
|
147
|
-
oracleSource: __1.OracleSource.
|
|
147
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
148
148
|
pythFeedId: '0xab7347771135fc733f8f38db462ba085ed3309955f42554a14fa13e855ac0e2f',
|
|
149
149
|
},
|
|
150
150
|
{
|
|
@@ -153,9 +153,9 @@ exports.DevnetPerpMarkets = [
|
|
|
153
153
|
symbol: 'XRP-PERP',
|
|
154
154
|
baseAssetSymbol: 'XRP',
|
|
155
155
|
marketIndex: 13,
|
|
156
|
-
oracle: new web3_js_1.PublicKey('
|
|
156
|
+
oracle: new web3_js_1.PublicKey('9757epAjXWCWQH98kyK9vzgehd1XDVEf7joNHUaKk3iV'),
|
|
157
157
|
launchTs: 1689270550000,
|
|
158
|
-
oracleSource: __1.OracleSource.
|
|
158
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
159
159
|
pythFeedId: '0xec5d399846a9209f3fe5881d70aae9268c94339ff9817e8d18ff19fa05eea1c8',
|
|
160
160
|
},
|
|
161
161
|
{
|
|
@@ -164,9 +164,9 @@ exports.DevnetPerpMarkets = [
|
|
|
164
164
|
symbol: 'HNT-PERP',
|
|
165
165
|
baseAssetSymbol: 'HNT',
|
|
166
166
|
marketIndex: 14,
|
|
167
|
-
oracle: new web3_js_1.PublicKey('
|
|
167
|
+
oracle: new web3_js_1.PublicKey('9b1rcK9RUPK2vAqwNYCYEG34gUVpS2WGs2YCZZy2X5Tb'),
|
|
168
168
|
launchTs: 1692294955000,
|
|
169
|
-
oracleSource: __1.OracleSource.
|
|
169
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
170
170
|
pythFeedId: '0x649fdd7ec08e8e2a20f425729854e90293dcbe2376abc47197a14da6ff339756',
|
|
171
171
|
},
|
|
172
172
|
{
|
|
@@ -175,9 +175,9 @@ exports.DevnetPerpMarkets = [
|
|
|
175
175
|
symbol: 'INJ-PERP',
|
|
176
176
|
baseAssetSymbol: 'INJ',
|
|
177
177
|
marketIndex: 15,
|
|
178
|
-
oracle: new web3_js_1.PublicKey('
|
|
178
|
+
oracle: new web3_js_1.PublicKey('BfXcyDWJmYADa5eZD7gySSDd6giqgjvm7xsAhQ239SUD'),
|
|
179
179
|
launchTs: 1698074659000,
|
|
180
|
-
oracleSource: __1.OracleSource.
|
|
180
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
181
181
|
pythFeedId: '0x7a5bc1d2b56ad029048cd63964b3ad2776eadf812edc1a43a31406cb54bff592',
|
|
182
182
|
},
|
|
183
183
|
{
|
|
@@ -186,9 +186,9 @@ exports.DevnetPerpMarkets = [
|
|
|
186
186
|
symbol: 'LINK-PERP',
|
|
187
187
|
baseAssetSymbol: 'LINK',
|
|
188
188
|
marketIndex: 16,
|
|
189
|
-
oracle: new web3_js_1.PublicKey('
|
|
189
|
+
oracle: new web3_js_1.PublicKey('Gwvob7yoLMgQRVWjScCRyQFMsgpRKrSAYisYEyjDJwEp'),
|
|
190
190
|
launchTs: 1698074659000,
|
|
191
|
-
oracleSource: __1.OracleSource.
|
|
191
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
192
192
|
pythFeedId: '0x8ac0c70fff57e9aefdf5edf44b51d62c2d433653cbb2cf5cc06bb115af04d221',
|
|
193
193
|
},
|
|
194
194
|
{
|
|
@@ -197,9 +197,9 @@ exports.DevnetPerpMarkets = [
|
|
|
197
197
|
symbol: 'RLB-PERP',
|
|
198
198
|
baseAssetSymbol: 'RLB',
|
|
199
199
|
marketIndex: 17,
|
|
200
|
-
oracle: new web3_js_1.PublicKey('
|
|
200
|
+
oracle: new web3_js_1.PublicKey('4CyhPqyVK3UQHFWhEpk91Aw4WbBsN3JtyosXH6zjoRqG'),
|
|
201
201
|
launchTs: 1699265968000,
|
|
202
|
-
oracleSource: __1.OracleSource.
|
|
202
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
203
203
|
pythFeedId: '0x2f2d17abbc1e781bd87b4a5d52c8b2856886f5c482fa3593cebf6795040ab0b6',
|
|
204
204
|
},
|
|
205
205
|
{
|
|
@@ -208,9 +208,9 @@ exports.DevnetPerpMarkets = [
|
|
|
208
208
|
symbol: 'PYTH-PERP',
|
|
209
209
|
baseAssetSymbol: 'PYTH',
|
|
210
210
|
marketIndex: 18,
|
|
211
|
-
oracle: new web3_js_1.PublicKey('
|
|
211
|
+
oracle: new web3_js_1.PublicKey('GqkCu7CbsPVz1H6W6AAHuReqbJckYG59TXz7Y5HDV7hr'),
|
|
212
212
|
launchTs: 1700542800000,
|
|
213
|
-
oracleSource: __1.OracleSource.
|
|
213
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
214
214
|
pythFeedId: '0x0bbf28e9a841a1cc788f6a361b17ca072d0ea3098a1e5df1c3922d06719579ff',
|
|
215
215
|
},
|
|
216
216
|
{
|
|
@@ -219,9 +219,9 @@ exports.DevnetPerpMarkets = [
|
|
|
219
219
|
symbol: 'TIA-PERP',
|
|
220
220
|
baseAssetSymbol: 'TIA',
|
|
221
221
|
marketIndex: 19,
|
|
222
|
-
oracle: new web3_js_1.PublicKey('
|
|
222
|
+
oracle: new web3_js_1.PublicKey('C6LHPUrgjrgo5eNUitC8raNEdEttfoRhmqdJ3BHVBJhi'),
|
|
223
223
|
launchTs: 1701880540000,
|
|
224
|
-
oracleSource: __1.OracleSource.
|
|
224
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
225
225
|
pythFeedId: '0x09f7c1d7dfbb7df2b8fe3d3d87ee94a2259d212da4f30c1f0540d066dfa44723',
|
|
226
226
|
},
|
|
227
227
|
{
|
|
@@ -230,9 +230,9 @@ exports.DevnetPerpMarkets = [
|
|
|
230
230
|
symbol: 'JTO-PERP',
|
|
231
231
|
baseAssetSymbol: 'JTO',
|
|
232
232
|
marketIndex: 20,
|
|
233
|
-
oracle: new web3_js_1.PublicKey('
|
|
233
|
+
oracle: new web3_js_1.PublicKey('Ffq6ACJ17NAgaxC6ocfMzVXL3K61qxB2xHg6WUawWPfP'),
|
|
234
234
|
launchTs: 1701967240000,
|
|
235
|
-
oracleSource: __1.OracleSource.
|
|
235
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
236
236
|
pythFeedId: '0xb43660a5f790c69354b0729a5ef9d50d68f1df92107540210b9cccba1f947cc2',
|
|
237
237
|
},
|
|
238
238
|
{
|
|
@@ -241,9 +241,9 @@ exports.DevnetPerpMarkets = [
|
|
|
241
241
|
symbol: 'SEI-PERP',
|
|
242
242
|
baseAssetSymbol: 'SEI',
|
|
243
243
|
marketIndex: 21,
|
|
244
|
-
oracle: new web3_js_1.PublicKey('
|
|
244
|
+
oracle: new web3_js_1.PublicKey('EVyoxFo5jWpv1vV7p6KVjDWwVqtTqvrZ4JMFkieVkVsD'),
|
|
245
245
|
launchTs: 1703173331000,
|
|
246
|
-
oracleSource: __1.OracleSource.
|
|
246
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
247
247
|
pythFeedId: '0x53614f1cb0c031d4af66c04cb9c756234adad0e1cee85303795091499a4084eb',
|
|
248
248
|
},
|
|
249
249
|
{
|
|
@@ -252,9 +252,9 @@ exports.DevnetPerpMarkets = [
|
|
|
252
252
|
symbol: 'AVAX-PERP',
|
|
253
253
|
baseAssetSymbol: 'AVAX',
|
|
254
254
|
marketIndex: 22,
|
|
255
|
-
oracle: new web3_js_1.PublicKey('
|
|
255
|
+
oracle: new web3_js_1.PublicKey('FgBGHNex4urrBmNbSj8ntNQDGqeHcWewKtkvL6JE6dEX'),
|
|
256
256
|
launchTs: 1704209558000,
|
|
257
|
-
oracleSource: __1.OracleSource.
|
|
257
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
258
258
|
pythFeedId: '0x93da3352f9f1d105fdfe4971cfa80e9dd777bfc5d0f683ebb6e1294b92137bb7',
|
|
259
259
|
},
|
|
260
260
|
{
|
|
@@ -263,9 +263,9 @@ exports.DevnetPerpMarkets = [
|
|
|
263
263
|
symbol: 'W-PERP',
|
|
264
264
|
baseAssetSymbol: 'W',
|
|
265
265
|
marketIndex: 23,
|
|
266
|
-
oracle: new web3_js_1.PublicKey('
|
|
266
|
+
oracle: new web3_js_1.PublicKey('4HbitGsdcFbtFotmYscikQFAAKJ3nYx4t7sV7fTvsk8U'),
|
|
267
267
|
launchTs: 1709852537000,
|
|
268
|
-
oracleSource: __1.OracleSource.
|
|
268
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
269
269
|
pythFeedId: '0xeff7446475e218517566ea99e72a4abec2e1bd8498b43b7d8331e29dcb059389',
|
|
270
270
|
},
|
|
271
271
|
{
|
|
@@ -274,11 +274,22 @@ exports.DevnetPerpMarkets = [
|
|
|
274
274
|
symbol: 'KMNO-PERP',
|
|
275
275
|
baseAssetSymbol: 'KMNO',
|
|
276
276
|
marketIndex: 24,
|
|
277
|
-
oracle: new web3_js_1.PublicKey('
|
|
277
|
+
oracle: new web3_js_1.PublicKey('7aqj2wH1BH8XT3QQ3MWtvt3My7RAGf5Stm3vx5fiysJz'),
|
|
278
278
|
launchTs: 1711475936000,
|
|
279
|
-
oracleSource: __1.OracleSource.
|
|
279
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
280
280
|
pythFeedId: '0xb17e5bc5de742a8a378b54c9c75442b7d51e30ada63f28d9bd28d3c0e26511a0',
|
|
281
281
|
},
|
|
282
|
+
{
|
|
283
|
+
fullName: 'Wen',
|
|
284
|
+
category: ['Solana', 'Meme'],
|
|
285
|
+
symbol: '1KWEN-PERP',
|
|
286
|
+
baseAssetSymbol: '1KWEN',
|
|
287
|
+
marketIndex: 25,
|
|
288
|
+
oracle: new web3_js_1.PublicKey('F47c7aJgYkfKXQ9gzrJaEpsNwUKHprysregTWXrtYLFp'),
|
|
289
|
+
launchTs: 1720572064000,
|
|
290
|
+
oracleSource: __1.OracleSource.PYTH_1K_PULL,
|
|
291
|
+
pythFeedId: '0x5169491cd7e2a44c98353b779d5eb612e4ac32e073f5cc534303d86307c2f1bc',
|
|
292
|
+
},
|
|
282
293
|
];
|
|
283
294
|
exports.MainnetPerpMarkets = [
|
|
284
295
|
{
|
|
@@ -320,9 +331,9 @@ exports.MainnetPerpMarkets = [
|
|
|
320
331
|
symbol: 'APT-PERP',
|
|
321
332
|
baseAssetSymbol: 'APT',
|
|
322
333
|
marketIndex: 3,
|
|
323
|
-
oracle: new web3_js_1.PublicKey('
|
|
334
|
+
oracle: new web3_js_1.PublicKey('79EWaCYU9jiQN8SbvVzGFAhAncUZYp3PjNg7KxmN5cLE'),
|
|
324
335
|
launchTs: 1675802661000,
|
|
325
|
-
oracleSource: __1.OracleSource.
|
|
336
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
326
337
|
pythFeedId: '0x03ae4db29ed4ae33d323568895aa00337e658e348b37509f5372ae51f0af00d5',
|
|
327
338
|
},
|
|
328
339
|
{
|
|
@@ -331,9 +342,9 @@ exports.MainnetPerpMarkets = [
|
|
|
331
342
|
symbol: '1MBONK-PERP',
|
|
332
343
|
baseAssetSymbol: '1MBONK',
|
|
333
344
|
marketIndex: 4,
|
|
334
|
-
oracle: new web3_js_1.PublicKey('
|
|
345
|
+
oracle: new web3_js_1.PublicKey('GojbSnJuPdKDT1ZuHuAM5t9oz6bxTo1xhUKpTua2F72p'),
|
|
335
346
|
launchTs: 1677690149000,
|
|
336
|
-
oracleSource: __1.OracleSource.
|
|
347
|
+
oracleSource: __1.OracleSource.PYTH_1M_PULL,
|
|
337
348
|
pythFeedId: '0x72b021217ca3fe68922a19aaf990109cb9d84e9ad004b4d2025ad6f529314419',
|
|
338
349
|
},
|
|
339
350
|
{
|
|
@@ -342,9 +353,9 @@ exports.MainnetPerpMarkets = [
|
|
|
342
353
|
symbol: 'MATIC-PERP',
|
|
343
354
|
baseAssetSymbol: 'MATIC',
|
|
344
355
|
marketIndex: 5,
|
|
345
|
-
oracle: new web3_js_1.PublicKey('
|
|
356
|
+
oracle: new web3_js_1.PublicKey('5Wf1WrXLeNJghU8WRo5odvwAjpjSSF4THbjdxbKmwVsi'),
|
|
346
357
|
launchTs: 1677690149000,
|
|
347
|
-
oracleSource: __1.OracleSource.
|
|
358
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
348
359
|
pythFeedId: '0x5de33a9112c2b700b8d30b8a3402c103578ccfa2765696471cc672bd5cf6ac52',
|
|
349
360
|
},
|
|
350
361
|
{
|
|
@@ -353,9 +364,9 @@ exports.MainnetPerpMarkets = [
|
|
|
353
364
|
symbol: 'ARB-PERP',
|
|
354
365
|
baseAssetSymbol: 'ARB',
|
|
355
366
|
marketIndex: 6,
|
|
356
|
-
oracle: new web3_js_1.PublicKey('
|
|
367
|
+
oracle: new web3_js_1.PublicKey('8ocfAdqVRnzvfdubQaTxar4Kz5HJhNbPNmkLxswqiHUD'),
|
|
357
368
|
launchTs: 1679501812000,
|
|
358
|
-
oracleSource: __1.OracleSource.
|
|
369
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
359
370
|
pythFeedId: '0x3fa4252848f9f0a1480be62745a4629d9eb1322aebab8a791e344b3b9c1adcf5',
|
|
360
371
|
},
|
|
361
372
|
{
|
|
@@ -364,9 +375,9 @@ exports.MainnetPerpMarkets = [
|
|
|
364
375
|
symbol: 'DOGE-PERP',
|
|
365
376
|
baseAssetSymbol: 'DOGE',
|
|
366
377
|
marketIndex: 7,
|
|
367
|
-
oracle: new web3_js_1.PublicKey('
|
|
378
|
+
oracle: new web3_js_1.PublicKey('23y63pHVwKfYSCDFdiGRaGbTYWoyr8UzhUE7zukyf6gK'),
|
|
368
379
|
launchTs: 1680808053000,
|
|
369
|
-
oracleSource: __1.OracleSource.
|
|
380
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
370
381
|
pythFeedId: '0xdcef50dd0a4cd2dcc17e45df1676dcb336a11a61c69df7a0299b0150c672d25c',
|
|
371
382
|
},
|
|
372
383
|
{
|
|
@@ -375,9 +386,9 @@ exports.MainnetPerpMarkets = [
|
|
|
375
386
|
symbol: 'BNB-PERP',
|
|
376
387
|
baseAssetSymbol: 'BNB',
|
|
377
388
|
marketIndex: 8,
|
|
378
|
-
oracle: new web3_js_1.PublicKey('
|
|
389
|
+
oracle: new web3_js_1.PublicKey('Dk8eWjuQHMbxJAwB9Sg7pXQPH4kgbg8qZGcUrWcD9gTm'),
|
|
379
390
|
launchTs: 1680808053000,
|
|
380
|
-
oracleSource: __1.OracleSource.
|
|
391
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
381
392
|
pythFeedId: '0x2f95862b045670cd22bee3114c39763a4a08beeb663b145d283c31d7d1101c4f',
|
|
382
393
|
},
|
|
383
394
|
{
|
|
@@ -386,9 +397,9 @@ exports.MainnetPerpMarkets = [
|
|
|
386
397
|
symbol: 'SUI-PERP',
|
|
387
398
|
baseAssetSymbol: 'SUI',
|
|
388
399
|
marketIndex: 9,
|
|
389
|
-
oracle: new web3_js_1.PublicKey('
|
|
400
|
+
oracle: new web3_js_1.PublicKey('HBordkz5YxjzNURmKUY4vfEYFG9fZyZNeNF1VDLMoemT'),
|
|
390
401
|
launchTs: 1683125906000,
|
|
391
|
-
oracleSource: __1.OracleSource.
|
|
402
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
392
403
|
pythFeedId: '0x23d7315113f5b1d3ba7a83604c44b94d79f4fd69af77f804fc7f920a6dc65744',
|
|
393
404
|
},
|
|
394
405
|
{
|
|
@@ -397,9 +408,9 @@ exports.MainnetPerpMarkets = [
|
|
|
397
408
|
symbol: '1MPEPE-PERP',
|
|
398
409
|
baseAssetSymbol: '1MPEPE',
|
|
399
410
|
marketIndex: 10,
|
|
400
|
-
oracle: new web3_js_1.PublicKey('
|
|
411
|
+
oracle: new web3_js_1.PublicKey('CLxofhtzvLiErpn25wvUzpZXEqBhuZ6WMEckEraxyuGt'),
|
|
401
412
|
launchTs: 1683781239000,
|
|
402
|
-
oracleSource: __1.OracleSource.
|
|
413
|
+
oracleSource: __1.OracleSource.PYTH_1M_PULL,
|
|
403
414
|
pythFeedId: '0xd69731a2e74ac1ce884fc3890f7ee324b6deb66147055249568869ed700882e4',
|
|
404
415
|
},
|
|
405
416
|
{
|
|
@@ -408,9 +419,9 @@ exports.MainnetPerpMarkets = [
|
|
|
408
419
|
symbol: 'OP-PERP',
|
|
409
420
|
baseAssetSymbol: 'OP',
|
|
410
421
|
marketIndex: 11,
|
|
411
|
-
oracle: new web3_js_1.PublicKey('
|
|
422
|
+
oracle: new web3_js_1.PublicKey('C9Zi2Y3Mt6Zt6pcFvobN3N29HcrzKujPAPBDDTDRcUa2'),
|
|
412
423
|
launchTs: 1686091480000,
|
|
413
|
-
oracleSource: __1.OracleSource.
|
|
424
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
414
425
|
pythFeedId: '0x385f64d993f7b77d8182ed5003d97c60aa3361f3cecfe711544d2d59165e9bdf',
|
|
415
426
|
},
|
|
416
427
|
{
|
|
@@ -419,9 +430,9 @@ exports.MainnetPerpMarkets = [
|
|
|
419
430
|
symbol: 'RNDR-PERP',
|
|
420
431
|
baseAssetSymbol: 'RNDR',
|
|
421
432
|
marketIndex: 12,
|
|
422
|
-
oracle: new web3_js_1.PublicKey('
|
|
433
|
+
oracle: new web3_js_1.PublicKey('F3mPHRtJqqq57JPDBmUwUVhpyPLmjE5dAzDfpVgpFkug'),
|
|
423
434
|
launchTs: 1687201081000,
|
|
424
|
-
oracleSource: __1.OracleSource.
|
|
435
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
425
436
|
pythFeedId: '0xab7347771135fc733f8f38db462ba085ed3309955f42554a14fa13e855ac0e2f',
|
|
426
437
|
},
|
|
427
438
|
{
|
|
@@ -430,9 +441,9 @@ exports.MainnetPerpMarkets = [
|
|
|
430
441
|
symbol: 'XRP-PERP',
|
|
431
442
|
baseAssetSymbol: 'XRP',
|
|
432
443
|
marketIndex: 13,
|
|
433
|
-
oracle: new web3_js_1.PublicKey('
|
|
444
|
+
oracle: new web3_js_1.PublicKey('9757epAjXWCWQH98kyK9vzgehd1XDVEf7joNHUaKk3iV'),
|
|
434
445
|
launchTs: 1689270550000,
|
|
435
|
-
oracleSource: __1.OracleSource.
|
|
446
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
436
447
|
pythFeedId: '0xec5d399846a9209f3fe5881d70aae9268c94339ff9817e8d18ff19fa05eea1c8',
|
|
437
448
|
},
|
|
438
449
|
{
|
|
@@ -441,9 +452,9 @@ exports.MainnetPerpMarkets = [
|
|
|
441
452
|
symbol: 'HNT-PERP',
|
|
442
453
|
baseAssetSymbol: 'HNT',
|
|
443
454
|
marketIndex: 14,
|
|
444
|
-
oracle: new web3_js_1.PublicKey('
|
|
455
|
+
oracle: new web3_js_1.PublicKey('9b1rcK9RUPK2vAqwNYCYEG34gUVpS2WGs2YCZZy2X5Tb'),
|
|
445
456
|
launchTs: 1692294955000,
|
|
446
|
-
oracleSource: __1.OracleSource.
|
|
457
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
447
458
|
pythFeedId: '0x649fdd7ec08e8e2a20f425729854e90293dcbe2376abc47197a14da6ff339756',
|
|
448
459
|
},
|
|
449
460
|
{
|
|
@@ -452,9 +463,9 @@ exports.MainnetPerpMarkets = [
|
|
|
452
463
|
symbol: 'INJ-PERP',
|
|
453
464
|
baseAssetSymbol: 'INJ',
|
|
454
465
|
marketIndex: 15,
|
|
455
|
-
oracle: new web3_js_1.PublicKey('
|
|
466
|
+
oracle: new web3_js_1.PublicKey('BfXcyDWJmYADa5eZD7gySSDd6giqgjvm7xsAhQ239SUD'),
|
|
456
467
|
launchTs: 1698074659000,
|
|
457
|
-
oracleSource: __1.OracleSource.
|
|
468
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
458
469
|
pythFeedId: '0x7a5bc1d2b56ad029048cd63964b3ad2776eadf812edc1a43a31406cb54bff592',
|
|
459
470
|
},
|
|
460
471
|
{
|
|
@@ -463,9 +474,9 @@ exports.MainnetPerpMarkets = [
|
|
|
463
474
|
symbol: 'LINK-PERP',
|
|
464
475
|
baseAssetSymbol: 'LINK',
|
|
465
476
|
marketIndex: 16,
|
|
466
|
-
oracle: new web3_js_1.PublicKey('
|
|
477
|
+
oracle: new web3_js_1.PublicKey('Gwvob7yoLMgQRVWjScCRyQFMsgpRKrSAYisYEyjDJwEp'),
|
|
467
478
|
launchTs: 1698074659000,
|
|
468
|
-
oracleSource: __1.OracleSource.
|
|
479
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
469
480
|
pythFeedId: '0x8ac0c70fff57e9aefdf5edf44b51d62c2d433653cbb2cf5cc06bb115af04d221',
|
|
470
481
|
},
|
|
471
482
|
{
|
|
@@ -474,9 +485,9 @@ exports.MainnetPerpMarkets = [
|
|
|
474
485
|
symbol: 'RLB-PERP',
|
|
475
486
|
baseAssetSymbol: 'RLB',
|
|
476
487
|
marketIndex: 17,
|
|
477
|
-
oracle: new web3_js_1.PublicKey('
|
|
488
|
+
oracle: new web3_js_1.PublicKey('4CyhPqyVK3UQHFWhEpk91Aw4WbBsN3JtyosXH6zjoRqG'),
|
|
478
489
|
launchTs: 1699265968000,
|
|
479
|
-
oracleSource: __1.OracleSource.
|
|
490
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
480
491
|
pythFeedId: '0x2f2d17abbc1e781bd87b4a5d52c8b2856886f5c482fa3593cebf6795040ab0b6',
|
|
481
492
|
},
|
|
482
493
|
{
|
|
@@ -507,9 +518,9 @@ exports.MainnetPerpMarkets = [
|
|
|
507
518
|
symbol: 'JTO-PERP',
|
|
508
519
|
baseAssetSymbol: 'JTO',
|
|
509
520
|
marketIndex: 20,
|
|
510
|
-
oracle: new web3_js_1.PublicKey('
|
|
521
|
+
oracle: new web3_js_1.PublicKey('Ffq6ACJ17NAgaxC6ocfMzVXL3K61qxB2xHg6WUawWPfP'),
|
|
511
522
|
launchTs: 1701967240000,
|
|
512
|
-
oracleSource: __1.OracleSource.
|
|
523
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
513
524
|
pythFeedId: '0xb43660a5f790c69354b0729a5ef9d50d68f1df92107540210b9cccba1f947cc2',
|
|
514
525
|
},
|
|
515
526
|
{
|
|
@@ -518,9 +529,9 @@ exports.MainnetPerpMarkets = [
|
|
|
518
529
|
symbol: 'SEI-PERP',
|
|
519
530
|
baseAssetSymbol: 'SEI',
|
|
520
531
|
marketIndex: 21,
|
|
521
|
-
oracle: new web3_js_1.PublicKey('
|
|
532
|
+
oracle: new web3_js_1.PublicKey('EVyoxFo5jWpv1vV7p6KVjDWwVqtTqvrZ4JMFkieVkVsD'),
|
|
522
533
|
launchTs: 1703173331000,
|
|
523
|
-
oracleSource: __1.OracleSource.
|
|
534
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
524
535
|
pythFeedId: '0x53614f1cb0c031d4af66c04cb9c756234adad0e1cee85303795091499a4084eb',
|
|
525
536
|
},
|
|
526
537
|
{
|
|
@@ -529,9 +540,9 @@ exports.MainnetPerpMarkets = [
|
|
|
529
540
|
symbol: 'AVAX-PERP',
|
|
530
541
|
baseAssetSymbol: 'AVAX',
|
|
531
542
|
marketIndex: 22,
|
|
532
|
-
oracle: new web3_js_1.PublicKey('
|
|
543
|
+
oracle: new web3_js_1.PublicKey('FgBGHNex4urrBmNbSj8ntNQDGqeHcWewKtkvL6JE6dEX'),
|
|
533
544
|
launchTs: 1704209558000,
|
|
534
|
-
oracleSource: __1.OracleSource.
|
|
545
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
535
546
|
pythFeedId: '0x93da3352f9f1d105fdfe4971cfa80e9dd777bfc5d0f683ebb6e1294b92137bb7',
|
|
536
547
|
},
|
|
537
548
|
{
|
|
@@ -562,9 +573,9 @@ exports.MainnetPerpMarkets = [
|
|
|
562
573
|
symbol: 'DYM-PERP',
|
|
563
574
|
baseAssetSymbol: 'DYM',
|
|
564
575
|
marketIndex: 25,
|
|
565
|
-
oracle: new web3_js_1.PublicKey('
|
|
576
|
+
oracle: new web3_js_1.PublicKey('hnefGsC8hJi8MBajpRSkUY97wJmLoBQYXaHkz3nmw1z'),
|
|
566
577
|
launchTs: 1708448765000,
|
|
567
|
-
oracleSource: __1.OracleSource.
|
|
578
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
568
579
|
pythFeedId: '0xa9f3b2a89c6f85a6c20a9518abde39b944e839ca49a0c92307c65974d3f14a57',
|
|
569
580
|
},
|
|
570
581
|
{
|
|
@@ -573,9 +584,9 @@ exports.MainnetPerpMarkets = [
|
|
|
573
584
|
symbol: 'TAO-PERP',
|
|
574
585
|
baseAssetSymbol: 'TAO',
|
|
575
586
|
marketIndex: 26,
|
|
576
|
-
oracle: new web3_js_1.PublicKey('
|
|
587
|
+
oracle: new web3_js_1.PublicKey('5ZPtwR9QpBLcZQVMnVURuYBmZMu1qQrBcA9Gutc5eKN3'),
|
|
577
588
|
launchTs: 1709136669000,
|
|
578
|
-
oracleSource: __1.OracleSource.
|
|
589
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
579
590
|
pythFeedId: '0x410f41de235f2db824e562ea7ab2d3d3d4ff048316c61d629c0b93f58584e1af',
|
|
580
591
|
},
|
|
581
592
|
{
|
|
@@ -584,9 +595,9 @@ exports.MainnetPerpMarkets = [
|
|
|
584
595
|
symbol: 'W-PERP',
|
|
585
596
|
baseAssetSymbol: 'W',
|
|
586
597
|
marketIndex: 27,
|
|
587
|
-
oracle: new web3_js_1.PublicKey('
|
|
598
|
+
oracle: new web3_js_1.PublicKey('4HbitGsdcFbtFotmYscikQFAAKJ3nYx4t7sV7fTvsk8U'),
|
|
588
599
|
launchTs: 1710418343000,
|
|
589
|
-
oracleSource: __1.OracleSource.
|
|
600
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
590
601
|
pythFeedId: '0xeff7446475e218517566ea99e72a4abec2e1bd8498b43b7d8331e29dcb059389',
|
|
591
602
|
},
|
|
592
603
|
{
|
|
@@ -595,9 +606,9 @@ exports.MainnetPerpMarkets = [
|
|
|
595
606
|
symbol: 'KMNO-PERP',
|
|
596
607
|
baseAssetSymbol: 'KMNO',
|
|
597
608
|
marketIndex: 28,
|
|
598
|
-
oracle: new web3_js_1.PublicKey('
|
|
609
|
+
oracle: new web3_js_1.PublicKey('7aqj2wH1BH8XT3QQ3MWtvt3My7RAGf5Stm3vx5fiysJz'),
|
|
599
610
|
launchTs: 1712240681000,
|
|
600
|
-
oracleSource: __1.OracleSource.
|
|
611
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
601
612
|
pythFeedId: '0xb17e5bc5de742a8a378b54c9c75442b7d51e30ada63f28d9bd28d3c0e26511a0',
|
|
602
613
|
},
|
|
603
614
|
{
|
|
@@ -606,9 +617,9 @@ exports.MainnetPerpMarkets = [
|
|
|
606
617
|
symbol: 'TNSR-PERP',
|
|
607
618
|
baseAssetSymbol: 'TNSR',
|
|
608
619
|
marketIndex: 29,
|
|
609
|
-
oracle: new web3_js_1.PublicKey('
|
|
620
|
+
oracle: new web3_js_1.PublicKey('13jpjpVyU5hGpjsZ4HzCcmBo85wze4N8Au7U6cC3GMip'),
|
|
610
621
|
launchTs: 1712593532000,
|
|
611
|
-
oracleSource: __1.OracleSource.
|
|
622
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
612
623
|
pythFeedId: '0x05ecd4597cd48fe13d6cc3596c62af4f9675aee06e2e0b94c06d8bee2b659e05',
|
|
613
624
|
},
|
|
614
625
|
{
|
|
@@ -638,9 +649,9 @@ exports.MainnetPerpMarkets = [
|
|
|
638
649
|
symbol: 'IO-PERP',
|
|
639
650
|
baseAssetSymbol: 'IO',
|
|
640
651
|
marketIndex: 32,
|
|
641
|
-
oracle: new web3_js_1.PublicKey('
|
|
652
|
+
oracle: new web3_js_1.PublicKey('HxM66CFwGwrvfTFFkvvA8N3CnKX6m2obzameYWDaSSdA'),
|
|
642
653
|
launchTs: 1718021389000,
|
|
643
|
-
oracleSource: __1.OracleSource.
|
|
654
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
644
655
|
pythFeedId: '0x82595d1509b770fa52681e260af4dda9752b87316d7c048535d8ead3fa856eb1',
|
|
645
656
|
},
|
|
646
657
|
{
|
|
@@ -649,9 +660,10 @@ exports.MainnetPerpMarkets = [
|
|
|
649
660
|
symbol: 'ZEX-PERP',
|
|
650
661
|
baseAssetSymbol: 'ZEX',
|
|
651
662
|
marketIndex: 33,
|
|
652
|
-
oracle: new web3_js_1.PublicKey('
|
|
663
|
+
oracle: new web3_js_1.PublicKey('HVwBCaR4GEB1fHrp7xCTzbYoZXL3V8b1aek2swPrmGx3'),
|
|
653
664
|
launchTs: 1719415157000,
|
|
654
|
-
oracleSource: __1.OracleSource.
|
|
665
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
666
|
+
pythFeedId: '0x3d63be09d1b88f6dffe6585d0170670592124fd9fa4e0fe8a09ff18464f05e3a',
|
|
655
667
|
},
|
|
656
668
|
{
|
|
657
669
|
fullName: 'POPCAT',
|
|
@@ -659,9 +671,21 @@ exports.MainnetPerpMarkets = [
|
|
|
659
671
|
symbol: 'POPCAT-PERP',
|
|
660
672
|
baseAssetSymbol: 'POPCAT',
|
|
661
673
|
marketIndex: 34,
|
|
662
|
-
oracle: new web3_js_1.PublicKey('
|
|
674
|
+
oracle: new web3_js_1.PublicKey('3GjpjC8TWsPqjyFSiR7saGxgzD8zqYJNsBnWpenZPEBy'),
|
|
663
675
|
launchTs: 1720013054000,
|
|
664
676
|
oracleSource: __1.OracleSource.SWITCHBOARD,
|
|
677
|
+
pythFeedId: '0xb9312a7ee50e189ef045aa3c7842e099b061bd9bdc99ac645956c3b660dc8cce',
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
fullName: 'Wen',
|
|
681
|
+
category: ['Solana', 'Meme'],
|
|
682
|
+
symbol: '1KWEN-PERP',
|
|
683
|
+
baseAssetSymbol: '1KWEN',
|
|
684
|
+
marketIndex: 35,
|
|
685
|
+
oracle: new web3_js_1.PublicKey('F47c7aJgYkfKXQ9gzrJaEpsNwUKHprysregTWXrtYLFp'),
|
|
686
|
+
launchTs: 1720633344000,
|
|
687
|
+
oracleSource: __1.OracleSource.PYTH_1K_PULL,
|
|
688
|
+
pythFeedId: '0x5169491cd7e2a44c98353b779d5eb612e4ac32e073f5cc534303d86307c2f1bc',
|
|
665
689
|
},
|
|
666
690
|
];
|
|
667
691
|
exports.PerpMarkets = {
|