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