@p2pdotme/sdk 1.1.9 → 1.2.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.
package/dist/index.cjs CHANGED
@@ -64,7 +64,7 @@ var ZodAddressSchema = import_zod.z.string().refine((s) => (0, import_viem.isAdd
64
64
  var ZodCurrencySchema = import_zod.z.enum(CURRENCY_CODES);
65
65
 
66
66
  // src/index.ts
67
- var VERSION = "1.1.9";
67
+ var VERSION = "1.2.0";
68
68
  // Annotate the CommonJS export names for ESM import in node:
69
69
  0 && (module.exports = {
70
70
  SdkError,
package/dist/index.mjs CHANGED
@@ -37,7 +37,7 @@ var ZodAddressSchema = z.string().refine((s) => isAddress(s), { message: "Invali
37
37
  var ZodCurrencySchema = z.enum(CURRENCY_CODES);
38
38
 
39
39
  // src/index.ts
40
- var VERSION = "1.1.9";
40
+ var VERSION = "1.2.0";
41
41
  export {
42
42
  SdkError,
43
43
  VERSION
package/dist/orders.cjs CHANGED
@@ -564,6 +564,13 @@ var p2pStakeBoostFacetAbi = [
564
564
  stateMutability: "nonpayable",
565
565
  type: "function"
566
566
  },
567
+ {
568
+ inputs: [],
569
+ name: "p2pBoostCancelUnstake",
570
+ outputs: [],
571
+ stateMutability: "nonpayable",
572
+ type: "function"
573
+ },
567
574
  {
568
575
  inputs: [{ internalType: "address", name: "user", type: "address" }],
569
576
  name: "getUserStake",