@liberfi.io/react-predict 0.1.60 → 0.1.61

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 CHANGED
@@ -410,6 +410,15 @@ var PredictClient = class {
410
410
  // -------------------------------------------------------------------------
411
411
  // Polymarket Relayer Withdraw
412
412
  // -------------------------------------------------------------------------
413
+ /**
414
+ * Prepare a Polymarket withdrawal by obtaining a Bridge deposit address.
415
+ *
416
+ * Maps to `POST /api/v1/withdraw/polymarket/prepare`.
417
+ */
418
+ async preparePolymarketWithdraw(body) {
419
+ const url = `${this.endpoint}/api/v1/withdraw/polymarket/prepare`;
420
+ return await httpPost(url, body);
421
+ }
413
422
  /**
414
423
  * Execute a gasless USDC.e withdrawal from a Polymarket Safe wallet via Relayer.
415
424
  *