@jup-ag/lend 0.0.103 → 0.0.104

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.
@@ -2176,8 +2176,8 @@ async function getRemainingAccountsLiquidate(vaultId, vaultState, vaultConfig, o
2176
2176
  const remainingAccounts = [];
2177
2177
  const { oraclePriceLiquidate, oracleSources } = await readOraclePrice({
2178
2178
  oracle: vaultConfig.oracle,
2179
- connection,
2180
- signer
2179
+ connection
2180
+ // signer,
2181
2181
  });
2182
2182
  const liquidationRatio = new BN(oraclePriceLiquidate).mul(new BN(281474976710656)).div(new BN(10).pow(new BN(15)));
2183
2183
  const liquidationThresholdRatio = liquidationRatio.mul(new BN(vaultConfig.liquidationThreshold)).div(new BN(10).pow(new BN(3)));
package/dist/index.mjs CHANGED
@@ -8,6 +8,6 @@ import './shared/lend.CioR9-te.mjs';
8
8
  import '@solana/spl-token';
9
9
  import 'bn.js';
10
10
 
11
- const version = "0.0.103";
11
+ const version = "0.0.104";
12
12
 
13
13
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jup-ag/lend",
3
- "version": "0.0.103",
3
+ "version": "0.0.104",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "type": "module",