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.
- package/dist/index.mjs +17 -14
- package/dist/index.mjs.map +3 -3
- package/dist/src/clients/api/index.d.ts +3 -3
- package/dist/src/clients/api/sdk.d.ts +3 -3
- package/dist/src/clients/contracts/PurchaseBundlerV2.d.ts +0 -3
- package/dist/src/clients/contracts/index.d.ts +1 -1
- package/dist/src/generated/blockchain/v7.d.ts +66 -339
- package/dist/src/generated/graphql/index.d.ts +9 -8
- package/dist/src/gondi.d.ts +4 -4
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/src/gondi.d.ts
CHANGED
|
@@ -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
|
|
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
|
|
2580
|
+
purchaseBundlerAddress?: Address;
|
|
2581
2581
|
mslContractAddress: Address;
|
|
2582
2582
|
price: bigint;
|
|
2583
|
-
swapData
|
|
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
|
|
2589
|
+
purchaseBundlerAddress?: Address;
|
|
2590
2590
|
mslContractAddress: Address;
|
|
2591
2591
|
repaymentCalldata: Hex;
|
|
2592
2592
|
swapData?: Hex;
|