@gearbox-protocol/sdk 14.8.0-next.1 → 14.8.0-next.3

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.
@@ -17,12 +17,14 @@ var abi_exports = {};
17
17
  module.exports = __toCommonJS(abi_exports);
18
18
  __reExport(abi_exports, require("./actionAbi.js"), module.exports);
19
19
  __reExport(abi_exports, require("./conctructorAbi.js"), module.exports);
20
+ __reExport(abi_exports, require("./securitize/index.js"), module.exports);
20
21
  __reExport(abi_exports, require("./targetContractAbi.js"), module.exports);
21
22
  __reExport(abi_exports, require("./utils.js"), module.exports);
22
23
  // Annotate the CommonJS export names for ESM import in node:
23
24
  0 && (module.exports = {
24
25
  ...require("./actionAbi.js"),
25
26
  ...require("./conctructorAbi.js"),
27
+ ...require("./securitize/index.js"),
26
28
  ...require("./targetContractAbi.js"),
27
29
  ...require("./utils.js")
28
30
  });
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __copyProps = (to, from, except, desc) => {
7
+ if (from && typeof from === "object" || typeof from === "function") {
8
+ for (let key of __getOwnPropNames(from))
9
+ if (!__hasOwnProp.call(to, key) && key !== except)
10
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
11
+ }
12
+ return to;
13
+ };
14
+ var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
15
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
16
+ var securitize_exports = {};
17
+ module.exports = __toCommonJS(securitize_exports);
18
+ __reExport(securitize_exports, require("./iBaseOnRamp.js"), module.exports);
19
+ __reExport(securitize_exports, require("./iSecuritizeOnRamp.js"), module.exports);
20
+ __reExport(securitize_exports, require("./iSecuritizeOnRampAdapter.js"), module.exports);
21
+ __reExport(securitize_exports, require("./iSecuritizeRedemptionGateway.js"), module.exports);
22
+ __reExport(securitize_exports, require("./iSecuritizeRedemptionGatewayAdapter.js"), module.exports);
23
+ // Annotate the CommonJS export names for ESM import in node:
24
+ 0 && (module.exports = {
25
+ ...require("./iBaseOnRamp.js"),
26
+ ...require("./iSecuritizeOnRamp.js"),
27
+ ...require("./iSecuritizeOnRampAdapter.js"),
28
+ ...require("./iSecuritizeRedemptionGateway.js"),
29
+ ...require("./iSecuritizeRedemptionGatewayAdapter.js")
30
+ });
@@ -1,4 +1,5 @@
1
1
  export * from "./actionAbi.js";
2
2
  export * from "./conctructorAbi.js";
3
+ export * from "./securitize/index.js";
3
4
  export * from "./targetContractAbi.js";
4
5
  export * from "./utils.js";
@@ -0,0 +1,5 @@
1
+ export * from "./iBaseOnRamp.js";
2
+ export * from "./iSecuritizeOnRamp.js";
3
+ export * from "./iSecuritizeOnRampAdapter.js";
4
+ export * from "./iSecuritizeRedemptionGateway.js";
5
+ export * from "./iSecuritizeRedemptionGatewayAdapter.js";
@@ -10,7 +10,7 @@ export interface NotValidatedStrategy extends Omit<StrategyConfigPayload, "addit
10
10
  additionalCollaterals?: ExtraCollaterals;
11
11
  }
12
12
  export interface Strategy extends Omit<NotValidatedStrategy, "network" | "id"> {
13
- id: Address;
13
+ id: string;
14
14
  network: NetworkType;
15
15
  }
16
16
  export type StrategyRecord = Record<number, Record<Strategy["id"], Strategy>>;
@@ -1,4 +1,5 @@
1
1
  export * from "./actionAbi.js";
2
2
  export * from "./conctructorAbi.js";
3
+ export * from "./securitize/index.js";
3
4
  export * from "./targetContractAbi.js";
4
5
  export * from "./utils.js";
@@ -0,0 +1,5 @@
1
+ export * from "./iBaseOnRamp.js";
2
+ export * from "./iSecuritizeOnRamp.js";
3
+ export * from "./iSecuritizeOnRampAdapter.js";
4
+ export * from "./iSecuritizeRedemptionGateway.js";
5
+ export * from "./iSecuritizeRedemptionGatewayAdapter.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/sdk",
3
- "version": "14.8.0-next.1",
3
+ "version": "14.8.0-next.3",
4
4
  "description": "Gearbox SDK",
5
5
  "license": "MIT",
6
6
  "main": "./dist/cjs/sdk/index.js",