gondi 0.26.2 → 0.26.4

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.
@@ -226,7 +226,7 @@ export declare class Gondi {
226
226
  }>;
227
227
  buyNowPayLater({ amounts, purchaseBundlerAddress, contractAddress, loanDuration, offers, tokenId, repaymentCalldata, sellAndRepaySwapData, repayFlashLoanSwapParams, }: {
228
228
  amounts: bigint[];
229
- purchaseBundlerAddress: Address;
229
+ purchaseBundlerAddress?: Address;
230
230
  contractAddress: Address;
231
231
  loanDuration: bigint;
232
232
  offers: OfferFromExecutionOffer[];
@@ -2577,16 +2577,16 @@ export declare class Gondi {
2577
2577
  }>;
2578
2578
  buyWithSellAndRepay({ repaymentCalldata, purchaseBundlerAddress, mslContractAddress, price, swapData, }: {
2579
2579
  repaymentCalldata: Hex;
2580
- purchaseBundlerAddress: Address;
2580
+ purchaseBundlerAddress?: Address;
2581
2581
  mslContractAddress: Address;
2582
2582
  price: bigint;
2583
- swapData: Maybe<Hex>;
2583
+ swapData?: Maybe<Hex>;
2584
2584
  }): Promise<{
2585
2585
  txHash: `0x${string}`;
2586
2586
  waitTxInBlock: () => Promise<import("viem").TransactionReceipt>;
2587
2587
  }>;
2588
2588
  sellAndRepay({ purchaseBundlerAddress, mslContractAddress, repaymentCalldata, swapData, }: {
2589
- purchaseBundlerAddress: Address;
2589
+ purchaseBundlerAddress?: Address;
2590
2590
  mslContractAddress: Address;
2591
2591
  repaymentCalldata: Hex;
2592
2592
  swapData?: Hex;