flash-sdk 2.5.5 → 2.6.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/PerpetualsClient.d.ts +21 -17
- package/dist/PerpetualsClient.js +48 -3
- package/dist/PoolConfig.js +1 -1
- package/dist/PoolConfig.json +82 -82
- package/dist/idl/perpetuals.d.ts +682 -82
- package/dist/idl/perpetuals.js +682 -82
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -71,8 +71,8 @@ export declare class PerpetualsClient {
|
|
71
71
|
isVirtual: boolean;
|
72
72
|
distributeRewards: boolean;
|
73
73
|
oracle: {
|
74
|
-
|
75
|
-
|
74
|
+
intOracleAccount: PublicKey;
|
75
|
+
extOracleAccount: PublicKey;
|
76
76
|
oracleType: {
|
77
77
|
none?: Record<string, never>;
|
78
78
|
custom?: Record<string, never>;
|
@@ -332,8 +332,8 @@ export declare class PerpetualsClient {
|
|
332
332
|
isVirtual: boolean;
|
333
333
|
distributeRewards: boolean;
|
334
334
|
oracle: {
|
335
|
-
|
336
|
-
|
335
|
+
intOracleAccount: PublicKey;
|
336
|
+
extOracleAccount: PublicKey;
|
337
337
|
oracleType: {
|
338
338
|
none?: Record<string, never>;
|
339
339
|
custom?: Record<string, never>;
|
@@ -592,8 +592,8 @@ export declare class PerpetualsClient {
|
|
592
592
|
isVirtual: boolean;
|
593
593
|
distributeRewards: boolean;
|
594
594
|
oracle: {
|
595
|
-
|
596
|
-
|
595
|
+
intOracleAccount: PublicKey;
|
596
|
+
extOracleAccount: PublicKey;
|
597
597
|
oracleType: {
|
598
598
|
none?: Record<string, never>;
|
599
599
|
custom?: Record<string, never>;
|
@@ -855,8 +855,8 @@ export declare class PerpetualsClient {
|
|
855
855
|
isVirtual: boolean;
|
856
856
|
distributeRewards: boolean;
|
857
857
|
oracle: {
|
858
|
-
|
859
|
-
|
858
|
+
intOracleAccount: PublicKey;
|
859
|
+
extOracleAccount: PublicKey;
|
860
860
|
oracleType: {
|
861
861
|
none?: Record<string, never>;
|
862
862
|
custom?: Record<string, never>;
|
@@ -1117,8 +1117,8 @@ export declare class PerpetualsClient {
|
|
1117
1117
|
isVirtual: boolean;
|
1118
1118
|
distributeRewards: boolean;
|
1119
1119
|
oracle: {
|
1120
|
-
|
1121
|
-
|
1120
|
+
intOracleAccount: PublicKey;
|
1121
|
+
extOracleAccount: PublicKey;
|
1122
1122
|
oracleType: {
|
1123
1123
|
none?: Record<string, never>;
|
1124
1124
|
custom?: Record<string, never>;
|
@@ -1377,8 +1377,8 @@ export declare class PerpetualsClient {
|
|
1377
1377
|
isVirtual: boolean;
|
1378
1378
|
distributeRewards: boolean;
|
1379
1379
|
oracle: {
|
1380
|
-
|
1381
|
-
|
1380
|
+
intOracleAccount: PublicKey;
|
1381
|
+
extOracleAccount: PublicKey;
|
1382
1382
|
oracleType: {
|
1383
1383
|
none?: Record<string, never>;
|
1384
1384
|
custom?: Record<string, never>;
|
@@ -1670,8 +1670,8 @@ export declare class PerpetualsClient {
|
|
1670
1670
|
isVirtual: boolean;
|
1671
1671
|
distributeRewards: boolean;
|
1672
1672
|
oracle: {
|
1673
|
-
|
1674
|
-
|
1673
|
+
intOracleAccount: PublicKey;
|
1674
|
+
extOracleAccount: PublicKey;
|
1675
1675
|
oracleType: {
|
1676
1676
|
none?: Record<string, never>;
|
1677
1677
|
custom?: Record<string, never>;
|
@@ -1930,8 +1930,8 @@ export declare class PerpetualsClient {
|
|
1930
1930
|
isVirtual: boolean;
|
1931
1931
|
distributeRewards: boolean;
|
1932
1932
|
oracle: {
|
1933
|
-
|
1934
|
-
|
1933
|
+
intOracleAccount: PublicKey;
|
1934
|
+
extOracleAccount: PublicKey;
|
1935
1935
|
oracleType: {
|
1936
1936
|
none?: Record<string, never>;
|
1937
1937
|
custom?: Record<string, never>;
|
@@ -2379,7 +2379,11 @@ export declare class PerpetualsClient {
|
|
2379
2379
|
instructions: TransactionInstruction[];
|
2380
2380
|
additionalSigners: Signer[];
|
2381
2381
|
}>;
|
2382
|
-
reimburse: (
|
2382
|
+
reimburse: (tokenMint: PublicKey, amountIn: BN, poolConfig: PoolConfig) => Promise<{
|
2383
|
+
instructions: TransactionInstruction[];
|
2384
|
+
additionalSigners: Signer[];
|
2385
|
+
}>;
|
2386
|
+
setCustomOraclePrice: (tokenMint: PublicKey, price: BN, expo: number, conf: BN, ema: BN, publishTime: BN, poolConfig: PoolConfig) => Promise<{
|
2383
2387
|
instructions: TransactionInstruction[];
|
2384
2388
|
additionalSigners: Signer[];
|
2385
2389
|
}>;
|
package/dist/PerpetualsClient.js
CHANGED
@@ -4280,7 +4280,7 @@ var PerpetualsClient = (function () {
|
|
4280
4280
|
}
|
4281
4281
|
});
|
4282
4282
|
}); };
|
4283
|
-
this.reimburse = function (
|
4283
|
+
this.reimburse = function (tokenMint, amountIn, poolConfig) { return __awaiter(_this, void 0, void 0, function () {
|
4284
4284
|
var custodyAccountMetas, custodyOracleAccountMetas, markets, _i, _a, custody, _b, _c, market, instructions, additionalSigners, custodyConfig, reimburse, _d, _e, err_26;
|
4285
4285
|
var _f;
|
4286
4286
|
return __generator(this, function (_g) {
|
@@ -4327,8 +4327,8 @@ var PerpetualsClient = (function () {
|
|
4327
4327
|
return [4, (0, spl_token_1.getAssociatedTokenAddress)(tokenMint, this.provider.wallet.publicKey)];
|
4328
4328
|
case 2: return [4, _e.apply(_d, [(_f.fundingAccount = _g.sent(),
|
4329
4329
|
_f.perpetuals = poolConfig.perpetuals,
|
4330
|
-
_f.pool =
|
4331
|
-
_f.custody =
|
4330
|
+
_f.pool = poolConfig.poolAddress,
|
4331
|
+
_f.custody = custodyConfig.custodyAccount,
|
4332
4332
|
_f.custodyOracleAccount = this.useCustomOracle ? custodyConfig.customOracleAddress : custodyConfig.oracleAddress,
|
4333
4333
|
_f.custodyTokenAccount = custodyConfig.tokenAccount,
|
4334
4334
|
_f.tokenProgram = spl_token_1.TOKEN_PROGRAM_ID,
|
@@ -4352,6 +4352,51 @@ var PerpetualsClient = (function () {
|
|
4352
4352
|
}
|
4353
4353
|
});
|
4354
4354
|
}); };
|
4355
|
+
this.setCustomOraclePrice = function (tokenMint, price, expo, conf, ema, publishTime, poolConfig) { return __awaiter(_this, void 0, void 0, function () {
|
4356
|
+
var instructions, additionalSigners, custodyConfig, setCustomOraclePrice, err_27;
|
4357
|
+
return __generator(this, function (_a) {
|
4358
|
+
switch (_a.label) {
|
4359
|
+
case 0:
|
4360
|
+
instructions = [];
|
4361
|
+
additionalSigners = [];
|
4362
|
+
custodyConfig = poolConfig.custodies.find(function (i) { return i.mintKey.equals(tokenMint); });
|
4363
|
+
_a.label = 1;
|
4364
|
+
case 1:
|
4365
|
+
_a.trys.push([1, 3, , 4]);
|
4366
|
+
return [4, this.program.methods
|
4367
|
+
.setCustomOraclePrice({
|
4368
|
+
price: price,
|
4369
|
+
expo: expo,
|
4370
|
+
conf: conf,
|
4371
|
+
ema: ema,
|
4372
|
+
publishTime: publishTime,
|
4373
|
+
})
|
4374
|
+
.accounts({
|
4375
|
+
admin: this.provider.wallet.publicKey,
|
4376
|
+
multisig: poolConfig.multisig,
|
4377
|
+
perpetuals: poolConfig.perpetuals,
|
4378
|
+
pool: poolConfig.poolAddress,
|
4379
|
+
custody: custodyConfig.custodyAccount,
|
4380
|
+
intOracleAccount: custodyConfig.oracleAddress,
|
4381
|
+
extOracleAccount: custodyConfig.customOracleAddress,
|
4382
|
+
systemProgram: web3_js_1.SystemProgram.programId,
|
4383
|
+
})
|
4384
|
+
.instruction()];
|
4385
|
+
case 2:
|
4386
|
+
setCustomOraclePrice = _a.sent();
|
4387
|
+
instructions.push(setCustomOraclePrice);
|
4388
|
+
return [3, 4];
|
4389
|
+
case 3:
|
4390
|
+
err_27 = _a.sent();
|
4391
|
+
console.log("perpClient setCustomOracleAccount error:: ", err_27);
|
4392
|
+
throw err_27;
|
4393
|
+
case 4: return [2, {
|
4394
|
+
instructions: __spreadArray([], instructions, true),
|
4395
|
+
additionalSigners: additionalSigners
|
4396
|
+
}];
|
4397
|
+
}
|
4398
|
+
});
|
4399
|
+
}); };
|
4355
4400
|
this.provider = provider;
|
4356
4401
|
(0, anchor_1.setProvider)(provider);
|
4357
4402
|
this.program = new anchor_1.Program(perpetuals_1.IDL, programId);
|
package/dist/PoolConfig.js
CHANGED
@@ -138,7 +138,7 @@ var PoolConfig = (function () {
|
|
138
138
|
var custodies;
|
139
139
|
try {
|
140
140
|
custodies = poolConfig['custodies'].map(function (i, index) {
|
141
|
-
return __assign(__assign({}, i), { custodyId: i.custodyId, custodyAccount: new web3_js_1.PublicKey(i.custodyAccount), tokenAccount: new web3_js_1.PublicKey(i.tokenAccount), mintKey: new web3_js_1.PublicKey(i.mintKey), oracleAddress: new web3_js_1.PublicKey(i.
|
141
|
+
return __assign(__assign({}, i), { custodyId: i.custodyId, custodyAccount: new web3_js_1.PublicKey(i.custodyAccount), tokenAccount: new web3_js_1.PublicKey(i.tokenAccount), mintKey: new web3_js_1.PublicKey(i.mintKey), oracleAddress: new web3_js_1.PublicKey(i.intOracleAddress), customOracleAddress: new web3_js_1.PublicKey(i.extOracleAddress), usdPrecision: i.usdPrecision, tokenPrecision: i.tokenPrecision });
|
142
142
|
});
|
143
143
|
}
|
144
144
|
catch (error) {
|
package/dist/PoolConfig.json
CHANGED
@@ -95,8 +95,8 @@
|
|
95
95
|
"tokenPrecision": 2,
|
96
96
|
"isStable": true,
|
97
97
|
"isVirtual": false,
|
98
|
-
"
|
99
|
-
"
|
98
|
+
"intOracleAddress": "Gnt27xtC473ZT2Mw5u8wZ68Z3gULkSTb5DuxJy7eJotD",
|
99
|
+
"extOracleAddress": "Dpw1EAVrSB1ibxiDQyTAW6Zip3J4Btk2x4SgApQCeFbX",
|
100
100
|
"pythTicker": "Crypto.USDC/USD",
|
101
101
|
"pythPriceId": "0xeaa020c61cc479712813461ce153894a96a6c00b21ed0cfc2798d1f9a9e9c94a"
|
102
102
|
},
|
@@ -111,8 +111,8 @@
|
|
111
111
|
"tokenPrecision": 4,
|
112
112
|
"isStable": false,
|
113
113
|
"isVirtual": false,
|
114
|
-
"
|
115
|
-
"
|
114
|
+
"intOracleAddress": "H6ARHf6YXhGYeQfUzQNGk6rDNnLBQKrenN712K4AQJEG",
|
115
|
+
"extOracleAddress": "7UVimffxr9ow1uXYxsr4LHAcV58mLzhmwaeKvJ1pjLiE",
|
116
116
|
"pythTicker": "Crypto.SOL/USD",
|
117
117
|
"pythPriceId": "0xef0d8b6fda2ceba41da15d4095d1da392a0d2f8ed0c6c7bc0f4cfac8c280b56d"
|
118
118
|
},
|
@@ -127,8 +127,8 @@
|
|
127
127
|
"tokenPrecision": 6,
|
128
128
|
"isStable": false,
|
129
129
|
"isVirtual": false,
|
130
|
-
"
|
131
|
-
"
|
130
|
+
"intOracleAddress": "GVXRSBjFk6e6J3NbVPXohDJetcTjaeeuykUpbQF8UoMU",
|
131
|
+
"extOracleAddress": "4cSM2e6rvbGQUFiJbqytoVMi5GgghSMr8LwVrT9VPSPo",
|
132
132
|
"pythTicker": "Crypto.BTC/USD",
|
133
133
|
"pythPriceId": "0xe62df6c8b4a85fe1a67db44dc12de5db330f7ac66b72dc658afedf0f4a415b43"
|
134
134
|
},
|
@@ -143,8 +143,8 @@
|
|
143
143
|
"tokenPrecision": 4,
|
144
144
|
"isStable": false,
|
145
145
|
"isVirtual": false,
|
146
|
-
"
|
147
|
-
"
|
146
|
+
"intOracleAddress": "JBu1AL4obBcCMqKBBxhpWCNUt136ijcuMZLFvTP7iWdB",
|
147
|
+
"extOracleAddress": "42amVS4KgzR9rA28tkVYqVXjq9Qa8dcZQMbH5EYFX6XC",
|
148
148
|
"pythTicker": "Crypto.ETH/USD",
|
149
149
|
"pythPriceId": "0xff61491a931112ddf1bd8147cd1b641375f79f5825126d665480874634fd0ace"
|
150
150
|
}
|
@@ -330,8 +330,8 @@
|
|
330
330
|
"tokenPrecision": 2,
|
331
331
|
"isStable": true,
|
332
332
|
"isVirtual": false,
|
333
|
-
"
|
334
|
-
"
|
333
|
+
"intOracleAddress": "Gnt27xtC473ZT2Mw5u8wZ68Z3gULkSTb5DuxJy7eJotD",
|
334
|
+
"extOracleAddress": "Dpw1EAVrSB1ibxiDQyTAW6Zip3J4Btk2x4SgApQCeFbX",
|
335
335
|
"pythTicker": "Crypto.USDC/USD",
|
336
336
|
"pythPriceId": "0xeaa020c61cc479712813461ce153894a96a6c00b21ed0cfc2798d1f9a9e9c94a"
|
337
337
|
},
|
@@ -346,8 +346,8 @@
|
|
346
346
|
"tokenPrecision": 6,
|
347
347
|
"isStable": false,
|
348
348
|
"isVirtual": true,
|
349
|
-
"
|
350
|
-
"
|
349
|
+
"intOracleAddress": "8y3WWjvmSmVGWVKH1rCA7VTRmuU7QbJ9axafSsBX5FcD",
|
350
|
+
"extOracleAddress": "2uPQGpm8X4ZkxMHxrAW1QuhXcse1AHEgPih6Xp9NuEWW",
|
351
351
|
"pythTicker": "Metal.XAU/USD",
|
352
352
|
"pythPriceId": "0x765d2ba906dbc32ca17cc11f5310a89e9ee1f6420508c63861f2f8ba4ee34bb2"
|
353
353
|
},
|
@@ -362,8 +362,8 @@
|
|
362
362
|
"tokenPrecision": 6,
|
363
363
|
"isStable": false,
|
364
364
|
"isVirtual": true,
|
365
|
-
"
|
366
|
-
"
|
365
|
+
"intOracleAddress": "HMVfAm6uuwnPnHRzaqfMhLNyrYHxaczKTbzeDcjBvuDo",
|
366
|
+
"extOracleAddress": "H9JxsWwtDZxjSL6m7cdCVsWibj3JBMD9sxqLjadoZnot",
|
367
367
|
"pythTicker": "Metal.XAG/USD",
|
368
368
|
"pythPriceId": "0xf2fb02c32b055c805e7238d628e5e9dadef274376114eb1f012337cabe93871e"
|
369
369
|
},
|
@@ -378,8 +378,8 @@
|
|
378
378
|
"tokenPrecision": 6,
|
379
379
|
"isStable": false,
|
380
380
|
"isVirtual": true,
|
381
|
-
"
|
382
|
-
"
|
381
|
+
"intOracleAddress": "CQzPyC5xVhkuBfWFJiPCvPEnBshmRium4xxUxnX1ober",
|
382
|
+
"extOracleAddress": "Fu76ChamBDjE8UuGLV6GP2AcPPSU6gjhkNhAyuoPm7ny",
|
383
383
|
"pythTicker": "FX.EUR/USD",
|
384
384
|
"pythPriceId": "0xa995d00bb36a63cef7fd2c287dc105fc8f3d93779f062f09551b0af3e81ec30b"
|
385
385
|
},
|
@@ -394,8 +394,8 @@
|
|
394
394
|
"tokenPrecision": 6,
|
395
395
|
"isStable": false,
|
396
396
|
"isVirtual": true,
|
397
|
-
"
|
398
|
-
"
|
397
|
+
"intOracleAddress": "9wFA8FYZwvBbhE22uvYBZniTXi1KJiN8iNQsegkTWZqS",
|
398
|
+
"extOracleAddress": "G25Tm7UkVruTJ7mcbCxFm45XGWwsH72nJKNGcHEQw1tU",
|
399
399
|
"pythTicker": "FX.GBP/USD",
|
400
400
|
"pythPriceId": "0x84c2dde9633d93d1bcad84e7dc41c9d56578b7ec52fabedc1f335d673df0a7c1"
|
401
401
|
},
|
@@ -410,8 +410,8 @@
|
|
410
410
|
"tokenPrecision": 6,
|
411
411
|
"isStable": false,
|
412
412
|
"isVirtual": true,
|
413
|
-
"
|
414
|
-
"
|
413
|
+
"intOracleAddress": "7ycfa1ENNT5dVVoMtiMjsgVbkWKFJbu6nF2h1UVT18Cf",
|
414
|
+
"extOracleAddress": "6pPXqXcgFFoLEcXfedWJy3ypNZVJ1F3mgipaDFsvZ1co",
|
415
415
|
"pythTicker": "FX.AUD/USD",
|
416
416
|
"pythPriceId": "0x67a6f93030420c1c9e3fe37c1ab6b77966af82f995944a9fefce357a22854a80"
|
417
417
|
}
|
@@ -649,8 +649,8 @@
|
|
649
649
|
"tokenPrecision": 2,
|
650
650
|
"isStable": true,
|
651
651
|
"isVirtual": false,
|
652
|
-
"
|
653
|
-
"
|
652
|
+
"intOracleAddress": "Gnt27xtC473ZT2Mw5u8wZ68Z3gULkSTb5DuxJy7eJotD",
|
653
|
+
"extOracleAddress": "Dpw1EAVrSB1ibxiDQyTAW6Zip3J4Btk2x4SgApQCeFbX",
|
654
654
|
"pythTicker": "Crypto.USDC/USD",
|
655
655
|
"pythPriceId": "0xeaa020c61cc479712813461ce153894a96a6c00b21ed0cfc2798d1f9a9e9c94a"
|
656
656
|
},
|
@@ -665,8 +665,8 @@
|
|
665
665
|
"tokenPrecision": 4,
|
666
666
|
"isStable": false,
|
667
667
|
"isVirtual": false,
|
668
|
-
"
|
669
|
-
"
|
668
|
+
"intOracleAddress": "g6eRCbboSwK4tSWngn773RCMexr1APQr4uA9bGZBYfo",
|
669
|
+
"extOracleAddress": "7dbob1psH1iZBS7qPsm3Kwbf5DzSXK8Jyg31CTgTnxH5",
|
670
670
|
"pythTicker": "Crypto.JUP/USD",
|
671
671
|
"pythPriceId": "0x0a0408d619e9380abad35060f9192039ed5042fa6f82301d0e48bb52be830996"
|
672
672
|
},
|
@@ -681,8 +681,8 @@
|
|
681
681
|
"tokenPrecision": 6,
|
682
682
|
"isStable": false,
|
683
683
|
"isVirtual": false,
|
684
|
-
"
|
685
|
-
"
|
684
|
+
"intOracleAddress": "nrYkQQQur7z8rYTST3G9GqATviK5SxTDkrqd21MW6Ue",
|
685
|
+
"extOracleAddress": "8vjchtMuJNY4oFQdTi8yCe6mhCaNBFaUbktT482TpLPS",
|
686
686
|
"pythTicker": "Crypto.PYTH/USD",
|
687
687
|
"pythPriceId": "0x0bbf28e9a841a1cc788f6a361b17ca072d0ea3098a1e5df1c3922d06719579ff"
|
688
688
|
},
|
@@ -697,8 +697,8 @@
|
|
697
697
|
"tokenPrecision": 4,
|
698
698
|
"isStable": false,
|
699
699
|
"isVirtual": false,
|
700
|
-
"
|
701
|
-
"
|
700
|
+
"intOracleAddress": "D8UUgr8a3aR3yUeHLu7v8FWK7E8Y5sSU7qrYBXUJXBQ5",
|
701
|
+
"extOracleAddress": "7ajR2zA4MGMMTqRAVjghTKqPPn4kbrj3pYkAVRVwTGzP",
|
702
702
|
"pythTicker": "Crypto.JTO/USD",
|
703
703
|
"pythPriceId": "0xb43660a5f790c69354b0729a5ef9d50d68f1df92107540210b9cccba1f947cc2"
|
704
704
|
},
|
@@ -713,8 +713,8 @@
|
|
713
713
|
"tokenPrecision": 6,
|
714
714
|
"isStable": false,
|
715
715
|
"isVirtual": false,
|
716
|
-
"
|
717
|
-
"
|
716
|
+
"intOracleAddress": "H9j8CT1bFiWHaZUPMooEaxMRHdWdJ5T9CzFn41z96JHW",
|
717
|
+
"extOracleAddress": "BEMsCSQEGi2kwPA4mKnGjxnreijhMki7L4eeb96ypzF9",
|
718
718
|
"pythTicker": "Crypto.W/USD",
|
719
719
|
"pythPriceId": "0xeff7446475e218517566ea99e72a4abec2e1bd8498b43b7d8331e29dcb059389"
|
720
720
|
},
|
@@ -729,8 +729,8 @@
|
|
729
729
|
"tokenPrecision": 4,
|
730
730
|
"isStable": false,
|
731
731
|
"isVirtual": false,
|
732
|
-
"
|
733
|
-
"
|
732
|
+
"intOracleAddress": "Hhipna3EoWR7u8pDruUg8RxhP5F6XLh6SEHMVDmZhWi8",
|
733
|
+
"extOracleAddress": "Hhipna3EoWR7u8pDruUg8RxhP5F6XLh6SEHMVDmZhWi8",
|
734
734
|
"pythTicker": "Crypto.RAY/USD",
|
735
735
|
"pythPriceId": "0x91568baa8beb53db23eb3fb7f22c6e8bd303d103919e19733f2bb642d3e7987a"
|
736
736
|
}
|
@@ -876,7 +876,7 @@
|
|
876
876
|
"poolName": "Community.1",
|
877
877
|
"poolAddress": "6HukhSeVVLQekKaGJYkwztBacjhKLKywVPrmcvccaYMz",
|
878
878
|
"lpTokenMint": "GnxdTsSQNQ3FF72nTyWo4SUt59Tt1MqDkRRfoPtKjMvJ",
|
879
|
-
"flpTokenAccount": "
|
879
|
+
"flpTokenAccount": "BX61fNmuhXtPPRaRTo2bAQFyhnmBqAXWG41PUqQx62yr",
|
880
880
|
"metadataAccount": "8HPm3sNXqFxNkEDYBMwX1BnXxxfn4XY6Jt5b8ikv6m7b",
|
881
881
|
"lpDecimals": 6,
|
882
882
|
"lpTokenSymbol": "FLP.4",
|
@@ -924,8 +924,8 @@
|
|
924
924
|
"tokenPrecision": 2,
|
925
925
|
"isStable": true,
|
926
926
|
"isVirtual": false,
|
927
|
-
"
|
928
|
-
"
|
927
|
+
"intOracleAddress": "Gnt27xtC473ZT2Mw5u8wZ68Z3gULkSTb5DuxJy7eJotD",
|
928
|
+
"extOracleAddress": "Dpw1EAVrSB1ibxiDQyTAW6Zip3J4Btk2x4SgApQCeFbX",
|
929
929
|
"pythTicker": "Crypto.USDC/USD",
|
930
930
|
"pythPriceId": "0xeaa020c61cc479712813461ce153894a96a6c00b21ed0cfc2798d1f9a9e9c94a"
|
931
931
|
},
|
@@ -940,8 +940,8 @@
|
|
940
940
|
"tokenPrecision": 4,
|
941
941
|
"isStable": false,
|
942
942
|
"isVirtual": false,
|
943
|
-
"
|
944
|
-
"
|
943
|
+
"intOracleAddress": "8ihFLu5FimgTQ1Unh4dVyEHUGodJ5gJQCrQf4KUVB9bN",
|
944
|
+
"extOracleAddress": "DBE3N8uNjhKPRHfANdwGvCZghWXyLPdqdSbEW2XFwBiX",
|
945
945
|
"pythTicker": "Crypto.BONK/USD",
|
946
946
|
"pythPriceId": "0x72b021217ca3fe68922a19aaf990109cb9d84e9ad004b4d2025ad6f529314419"
|
947
947
|
}
|
@@ -983,7 +983,7 @@
|
|
983
983
|
"poolName": "Community.2",
|
984
984
|
"poolAddress": "DP1FnZjWzDjSMQA64BcMzUdpDpyAQ6723d5fpX4yTk5G",
|
985
985
|
"lpTokenMint": "EsdayVbDQYQdy54TQh5iASMTkCzmhxsx6MpCvyrtYaUZ",
|
986
|
-
"flpTokenAccount": "
|
986
|
+
"flpTokenAccount": "DCW9WsRzhsXQ78MLenwFaRc5BUGBUADXNaNnuzRWoAHd",
|
987
987
|
"metadataAccount": "BR4ZZ8wkomYSbiap9jDfTPCBT348eciPWBnLHUXKu5rL",
|
988
988
|
"lpDecimals": 6,
|
989
989
|
"lpTokenSymbol": "FLP.5",
|
@@ -1031,8 +1031,8 @@
|
|
1031
1031
|
"tokenPrecision": 2,
|
1032
1032
|
"isStable": true,
|
1033
1033
|
"isVirtual": false,
|
1034
|
-
"
|
1035
|
-
"
|
1034
|
+
"intOracleAddress": "Gnt27xtC473ZT2Mw5u8wZ68Z3gULkSTb5DuxJy7eJotD",
|
1035
|
+
"extOracleAddress": "Dpw1EAVrSB1ibxiDQyTAW6Zip3J4Btk2x4SgApQCeFbX",
|
1036
1036
|
"pythTicker": "Crypto.USDC/USD",
|
1037
1037
|
"pythPriceId": "0xeaa020c61cc479712813461ce153894a96a6c00b21ed0cfc2798d1f9a9e9c94a"
|
1038
1038
|
},
|
@@ -1047,8 +1047,8 @@
|
|
1047
1047
|
"tokenPrecision": 4,
|
1048
1048
|
"isStable": false,
|
1049
1049
|
"isVirtual": false,
|
1050
|
-
"
|
1051
|
-
"
|
1050
|
+
"intOracleAddress": "Gnt27xtC473ZT2Mw5u8wZ68Z3gULkSTb5DuxJy7eJotD",
|
1051
|
+
"extOracleAddress": "6B23K3tkb51vLZA14jcEQVCA1pfHptzEHFA93V5dYwbT",
|
1052
1052
|
"pythTicker": "Crypto.WIF/USD",
|
1053
1053
|
"pythPriceId": "0x4ca4beeca86f0d164160323817a4e42b10010a724c2217c6ee41b54cd4cc61fc"
|
1054
1054
|
}
|
@@ -1171,8 +1171,8 @@
|
|
1171
1171
|
"tokenPrecision": 4,
|
1172
1172
|
"isStable": true,
|
1173
1173
|
"isVirtual": false,
|
1174
|
-
"
|
1175
|
-
"
|
1174
|
+
"intOracleAddress": "CuzxxETyjZkGVJmUv4zJTjoo4YE5HHdNm4AT4krtTikY",
|
1175
|
+
"extOracleAddress": "Dpw1EAVrSB1ibxiDQyTAW6Zip3J4Btk2x4SgApQCeFbX",
|
1176
1176
|
"pythTicker": "Crypto.USDC/USD",
|
1177
1177
|
"pythPriceId": "0xeaa020c61cc479712813461ce153894a96a6c00b21ed0cfc2798d1f9a9e9c94a"
|
1178
1178
|
},
|
@@ -1187,8 +1187,8 @@
|
|
1187
1187
|
"tokenPrecision": 4,
|
1188
1188
|
"isStable": false,
|
1189
1189
|
"isVirtual": false,
|
1190
|
-
"
|
1191
|
-
"
|
1190
|
+
"intOracleAddress": "4JwcQt7a1Qis1RxixRJ2g6QgiF1aJay32hgWrMa7ptgD",
|
1191
|
+
"extOracleAddress": "7UVimffxr9ow1uXYxsr4LHAcV58mLzhmwaeKvJ1pjLiE",
|
1192
1192
|
"pythTicker": "Crypto.SOL/USD",
|
1193
1193
|
"pythPriceId": "0xef0d8b6fda2ceba41da15d4095d1da392a0d2f8ed0c6c7bc0f4cfac8c280b56d"
|
1194
1194
|
},
|
@@ -1203,8 +1203,8 @@
|
|
1203
1203
|
"tokenPrecision": 6,
|
1204
1204
|
"isStable": false,
|
1205
1205
|
"isVirtual": false,
|
1206
|
-
"
|
1207
|
-
"
|
1206
|
+
"intOracleAddress": "9YK4f2wPWRzJcC9iN8Bqhd7RWPewVh4kom7UVZhaJwbN",
|
1207
|
+
"extOracleAddress": "4cSM2e6rvbGQUFiJbqytoVMi5GgghSMr8LwVrT9VPSPo",
|
1208
1208
|
"pythTicker": "Crypto.BTC/USD",
|
1209
1209
|
"pythPriceId": "0xe62df6c8b4a85fe1a67db44dc12de5db330f7ac66b72dc658afedf0f4a415b43"
|
1210
1210
|
},
|
@@ -1219,8 +1219,8 @@
|
|
1219
1219
|
"tokenPrecision": 4,
|
1220
1220
|
"isStable": false,
|
1221
1221
|
"isVirtual": false,
|
1222
|
-
"
|
1223
|
-
"
|
1222
|
+
"intOracleAddress": "CMVuTVTME7PfxvtfFSURkktfaHEW6Yzbio2FLa29TngK",
|
1223
|
+
"extOracleAddress": "42amVS4KgzR9rA28tkVYqVXjq9Qa8dcZQMbH5EYFX6XC",
|
1224
1224
|
"pythTicker": "Crypto.ETH/USD",
|
1225
1225
|
"pythPriceId": "0xff61491a931112ddf1bd8147cd1b641375f79f5825126d665480874634fd0ace"
|
1226
1226
|
}
|
@@ -1406,8 +1406,8 @@
|
|
1406
1406
|
"tokenPrecision": 4,
|
1407
1407
|
"isStable": true,
|
1408
1408
|
"isVirtual": false,
|
1409
|
-
"
|
1410
|
-
"
|
1409
|
+
"intOracleAddress": "CuzxxETyjZkGVJmUv4zJTjoo4YE5HHdNm4AT4krtTikY",
|
1410
|
+
"extOracleAddress": "Dpw1EAVrSB1ibxiDQyTAW6Zip3J4Btk2x4SgApQCeFbX",
|
1411
1411
|
"pythTicker": "Crypto.USDC/USD",
|
1412
1412
|
"pythPriceId": "0xeaa020c61cc479712813461ce153894a96a6c00b21ed0cfc2798d1f9a9e9c94a"
|
1413
1413
|
},
|
@@ -1422,8 +1422,8 @@
|
|
1422
1422
|
"tokenPrecision": 4,
|
1423
1423
|
"isStable": false,
|
1424
1424
|
"isVirtual": true,
|
1425
|
-
"
|
1426
|
-
"
|
1425
|
+
"intOracleAddress": "GKQnYPbwmkhdkUn2maAokiD49zcBfncZ3x4sfTWm85tN",
|
1426
|
+
"extOracleAddress": "2uPQGpm8X4ZkxMHxrAW1QuhXcse1AHEgPih6Xp9NuEWW",
|
1427
1427
|
"pythTicker": "Metal.XAU/USD",
|
1428
1428
|
"pythPriceId": "0x765d2ba906dbc32ca17cc11f5310a89e9ee1f6420508c63861f2f8ba4ee34bb2"
|
1429
1429
|
},
|
@@ -1438,8 +1438,8 @@
|
|
1438
1438
|
"tokenPrecision": 4,
|
1439
1439
|
"isStable": false,
|
1440
1440
|
"isVirtual": true,
|
1441
|
-
"
|
1442
|
-
"
|
1441
|
+
"intOracleAddress": "6QLKbCJ7CvvySAecJF8Ao6DzeLRC23XJeegaioY5B2qJ",
|
1442
|
+
"extOracleAddress": "H9JxsWwtDZxjSL6m7cdCVsWibj3JBMD9sxqLjadoZnot",
|
1443
1443
|
"pythTicker": "Metal.XAG/USD",
|
1444
1444
|
"pythPriceId": "0xf2fb02c32b055c805e7238d628e5e9dadef274376114eb1f012337cabe93871e"
|
1445
1445
|
},
|
@@ -1454,8 +1454,8 @@
|
|
1454
1454
|
"tokenPrecision": 4,
|
1455
1455
|
"isStable": false,
|
1456
1456
|
"isVirtual": true,
|
1457
|
-
"
|
1458
|
-
"
|
1457
|
+
"intOracleAddress": "6VeDqEd85fd4ePyBhhHvvKJnnsaj2zBiUApyMy8JGY7h",
|
1458
|
+
"extOracleAddress": "Fu76ChamBDjE8UuGLV6GP2AcPPSU6gjhkNhAyuoPm7ny",
|
1459
1459
|
"pythTicker": "FX.EUR/USD",
|
1460
1460
|
"pythPriceId": "0xa995d00bb36a63cef7fd2c287dc105fc8f3d93779f062f09551b0af3e81ec30b"
|
1461
1461
|
},
|
@@ -1470,8 +1470,8 @@
|
|
1470
1470
|
"tokenPrecision": 4,
|
1471
1471
|
"isStable": false,
|
1472
1472
|
"isVirtual": true,
|
1473
|
-
"
|
1474
|
-
"
|
1473
|
+
"intOracleAddress": "4dpwvLtUxQHbV8hx8LKLkdGgJ5m7kYRhkjhurijPj9Ww",
|
1474
|
+
"extOracleAddress": "G25Tm7UkVruTJ7mcbCxFm45XGWwsH72nJKNGcHEQw1tU",
|
1475
1475
|
"pythTicker": "FX.GBP/USD",
|
1476
1476
|
"pythPriceId": "0x84c2dde9633d93d1bcad84e7dc41c9d56578b7ec52fabedc1f335d673df0a7c1"
|
1477
1477
|
},
|
@@ -1486,8 +1486,8 @@
|
|
1486
1486
|
"tokenPrecision": 4,
|
1487
1487
|
"isStable": false,
|
1488
1488
|
"isVirtual": true,
|
1489
|
-
"
|
1490
|
-
"
|
1489
|
+
"intOracleAddress": "BttDaqMMzPPvUvakrRsddcjJxiTs2qTmrCcWvk5nvtc9",
|
1490
|
+
"extOracleAddress": "6pPXqXcgFFoLEcXfedWJy3ypNZVJ1F3mgipaDFsvZ1co",
|
1491
1491
|
"pythTicker": "FX.AUD/USD",
|
1492
1492
|
"pythPriceId": "0x67a6f93030420c1c9e3fe37c1ab6b77966af82f995944a9fefce357a22854a80"
|
1493
1493
|
}
|
@@ -1725,8 +1725,8 @@
|
|
1725
1725
|
"tokenPrecision": 4,
|
1726
1726
|
"isStable": true,
|
1727
1727
|
"isVirtual": false,
|
1728
|
-
"
|
1729
|
-
"
|
1728
|
+
"intOracleAddress": "CuzxxETyjZkGVJmUv4zJTjoo4YE5HHdNm4AT4krtTikY",
|
1729
|
+
"extOracleAddress": "Dpw1EAVrSB1ibxiDQyTAW6Zip3J4Btk2x4SgApQCeFbX",
|
1730
1730
|
"pythTicker": "Crypto.USDC/USD",
|
1731
1731
|
"pythPriceId": "0xeaa020c61cc479712813461ce153894a96a6c00b21ed0cfc2798d1f9a9e9c94a"
|
1732
1732
|
},
|
@@ -1741,8 +1741,8 @@
|
|
1741
1741
|
"tokenPrecision": 4,
|
1742
1742
|
"isStable": false,
|
1743
1743
|
"isVirtual": false,
|
1744
|
-
"
|
1745
|
-
"
|
1744
|
+
"intOracleAddress": "UoMv2PWy6uzLj9KLJNSRQ3s9bSp7CXWVFbBnjPcRnZk",
|
1745
|
+
"extOracleAddress": "7dbob1psH1iZBS7qPsm3Kwbf5DzSXK8Jyg31CTgTnxH5",
|
1746
1746
|
"pythTicker": "Crypto.JUP/USD",
|
1747
1747
|
"pythPriceId": "0x0a0408d619e9380abad35060f9192039ed5042fa6f82301d0e48bb52be830996"
|
1748
1748
|
},
|
@@ -1757,8 +1757,8 @@
|
|
1757
1757
|
"tokenPrecision": 4,
|
1758
1758
|
"isStable": false,
|
1759
1759
|
"isVirtual": false,
|
1760
|
-
"
|
1761
|
-
"
|
1760
|
+
"intOracleAddress": "FGx7LQvhNqbZCfxyChfLEy6svZWFmAwzY6vGs8cZH2Pf",
|
1761
|
+
"extOracleAddress": "8vjchtMuJNY4oFQdTi8yCe6mhCaNBFaUbktT482TpLPS",
|
1762
1762
|
"pythTicker": "Crypto.PYTH/USD",
|
1763
1763
|
"pythPriceId": "0x0bbf28e9a841a1cc788f6a361b17ca072d0ea3098a1e5df1c3922d06719579ff"
|
1764
1764
|
},
|
@@ -1773,8 +1773,8 @@
|
|
1773
1773
|
"tokenPrecision": 4,
|
1774
1774
|
"isStable": false,
|
1775
1775
|
"isVirtual": false,
|
1776
|
-
"
|
1777
|
-
"
|
1776
|
+
"intOracleAddress": "J5b2iRft9n3RLyk6K7yNTN8h1qUc9iG6vjXMUqdtcUcj",
|
1777
|
+
"extOracleAddress": "7ajR2zA4MGMMTqRAVjghTKqPPn4kbrj3pYkAVRVwTGzP",
|
1778
1778
|
"pythTicker": "Crypto.JTO/USD",
|
1779
1779
|
"pythPriceId": "0xb43660a5f790c69354b0729a5ef9d50d68f1df92107540210b9cccba1f947cc2"
|
1780
1780
|
},
|
@@ -1789,8 +1789,8 @@
|
|
1789
1789
|
"tokenPrecision": 4,
|
1790
1790
|
"isStable": false,
|
1791
1791
|
"isVirtual": false,
|
1792
|
-
"
|
1793
|
-
"
|
1792
|
+
"intOracleAddress": "H4JgM7j6H19YrvzGmrx67LDQRemm4G1ocgjASBfB7WBR",
|
1793
|
+
"extOracleAddress": "BEMsCSQEGi2kwPA4mKnGjxnreijhMki7L4eeb96ypzF9",
|
1794
1794
|
"pythTicker": "Crypto.W/USD",
|
1795
1795
|
"pythPriceId": "0xeff7446475e218517566ea99e72a4abec2e1bd8498b43b7d8331e29dcb059389"
|
1796
1796
|
},
|
@@ -1805,8 +1805,8 @@
|
|
1805
1805
|
"tokenPrecision": 4,
|
1806
1806
|
"isStable": false,
|
1807
1807
|
"isVirtual": false,
|
1808
|
-
"
|
1809
|
-
"
|
1808
|
+
"intOracleAddress": "96rdpwQ8J8ESbnzCZL3egYLa4kGPtfJTbTqg1KijouLF",
|
1809
|
+
"extOracleAddress": "Hhipna3EoWR7u8pDruUg8RxhP5F6XLh6SEHMVDmZhWi8",
|
1810
1810
|
"pythTicker": "Crypto.RAY/USD",
|
1811
1811
|
"pythPriceId": "0x91568baa8beb53db23eb3fb7f22c6e8bd303d103919e19733f2bb642d3e7987a"
|
1812
1812
|
}
|
@@ -2000,8 +2000,8 @@
|
|
2000
2000
|
"tokenPrecision": 4,
|
2001
2001
|
"isStable": true,
|
2002
2002
|
"isVirtual": false,
|
2003
|
-
"
|
2004
|
-
"
|
2003
|
+
"intOracleAddress": "CuzxxETyjZkGVJmUv4zJTjoo4YE5HHdNm4AT4krtTikY",
|
2004
|
+
"extOracleAddress": "Dpw1EAVrSB1ibxiDQyTAW6Zip3J4Btk2x4SgApQCeFbX",
|
2005
2005
|
"pythTicker": "Crypto.USDC/USD",
|
2006
2006
|
"pythPriceId": "0xeaa020c61cc479712813461ce153894a96a6c00b21ed0cfc2798d1f9a9e9c94a"
|
2007
2007
|
},
|
@@ -2016,8 +2016,8 @@
|
|
2016
2016
|
"tokenPrecision": 4,
|
2017
2017
|
"isStable": false,
|
2018
2018
|
"isVirtual": false,
|
2019
|
-
"
|
2020
|
-
"
|
2019
|
+
"intOracleAddress": "Gmp635ELmurCvcrbTwuY2AJyqVf74DzaSzgJ1xNYMGiB",
|
2020
|
+
"extOracleAddress": "DBE3N8uNjhKPRHfANdwGvCZghWXyLPdqdSbEW2XFwBiX",
|
2021
2021
|
"pythTicker": "Crypto.BONK/USD",
|
2022
2022
|
"pythPriceId": "0x72b021217ca3fe68922a19aaf990109cb9d84e9ad004b4d2025ad6f529314419"
|
2023
2023
|
}
|
@@ -2107,8 +2107,8 @@
|
|
2107
2107
|
"tokenPrecision": 4,
|
2108
2108
|
"isStable": true,
|
2109
2109
|
"isVirtual": false,
|
2110
|
-
"
|
2111
|
-
"
|
2110
|
+
"intOracleAddress": "CuzxxETyjZkGVJmUv4zJTjoo4YE5HHdNm4AT4krtTikY",
|
2111
|
+
"extOracleAddress": "Dpw1EAVrSB1ibxiDQyTAW6Zip3J4Btk2x4SgApQCeFbX",
|
2112
2112
|
"pythTicker": "Crypto.USDC/USD",
|
2113
2113
|
"pythPriceId": "0xeaa020c61cc479712813461ce153894a96a6c00b21ed0cfc2798d1f9a9e9c94a"
|
2114
2114
|
},
|
@@ -2123,8 +2123,8 @@
|
|
2123
2123
|
"tokenPrecision": 4,
|
2124
2124
|
"isStable": false,
|
2125
2125
|
"isVirtual": false,
|
2126
|
-
"
|
2127
|
-
"
|
2126
|
+
"intOracleAddress": "BdeNEwrZ4UG3MRGSdE2JJNnbXvuz2VihqR4FzQ4Ms3uF",
|
2127
|
+
"extOracleAddress": "6B23K3tkb51vLZA14jcEQVCA1pfHptzEHFA93V5dYwbT",
|
2128
2128
|
"pythTicker": "Crypto.WIF/USD",
|
2129
2129
|
"pythPriceId": "0x4ca4beeca86f0d164160323817a4e42b10010a724c2217c6ee41b54cd4cc61fc"
|
2130
2130
|
}
|