@t2000/sdk 1.5.0 → 1.6.0

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.
@@ -4485,7 +4485,10 @@ async function addSaveToTx(tx, _client, _address, coin, options = {}) {
4485
4485
  async function addRepayToTx(tx, client, address, coin, options = {}) {
4486
4486
  const asset = options.asset ?? "USDC";
4487
4487
  const assetInfo = resolveAssetInfo(asset);
4488
- await refreshOracle(tx, client, address, { skipPythUpdate: options.skipPythUpdate });
4488
+ await refreshOracle(tx, client, address, {
4489
+ skipPythUpdate: options.skipPythUpdate,
4490
+ skipOracle: options.skipOracle
4491
+ });
4489
4492
  try {
4490
4493
  await xe(tx, assetInfo.type, coin, { env: "prod" });
4491
4494
  } catch (err) {