@strkfarm/sdk 2.0.0-staging.50 → 2.0.0-staging.52
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/cli.js +2 -2
- package/dist/cli.mjs +2 -2
- package/dist/index.browser.global.js +8219 -7930
- package/dist/index.browser.mjs +163 -58
- package/dist/index.d.ts +5 -1
- package/dist/index.js +166 -61
- package/dist/index.mjs +166 -61
- package/package.json +1 -1
- package/src/data/universal-vault.abi.json +143 -27
- package/src/interfaces/common.tsx +0 -1
- package/src/strategies/base-strategy.ts +6 -1
- package/src/strategies/ekubo-cl-vault.tsx +5 -1
- package/src/strategies/sensei.ts +0 -1
- package/src/strategies/universal-lst-muliplier-strategy.tsx +7 -21
- package/src/strategies/universal-strategy.tsx +7 -10
- package/src/strategies/vesu-rebalance.tsx +0 -1
- package/src/strategies/yoloVault.ts +5 -1
package/dist/cli.js
CHANGED
|
@@ -102,8 +102,8 @@ var logger = import_winston.default.createLogger({
|
|
|
102
102
|
// Add timestamp to log messages
|
|
103
103
|
import_winston.format.printf(({ timestamp, level, message, ...meta }) => {
|
|
104
104
|
let msg = `${timestamp} ${level}: ${message}`;
|
|
105
|
-
if (meta && meta[Symbol.for("splat")]) {
|
|
106
|
-
const splat = meta[Symbol.for("splat")];
|
|
105
|
+
if (meta && meta[/* @__PURE__ */ Symbol.for("splat")]) {
|
|
106
|
+
const splat = meta[/* @__PURE__ */ Symbol.for("splat")];
|
|
107
107
|
if (Array.isArray(splat)) {
|
|
108
108
|
for (const arg of splat) {
|
|
109
109
|
if (arg instanceof Error) {
|
package/dist/cli.mjs
CHANGED
|
@@ -79,8 +79,8 @@ var logger = winston.createLogger({
|
|
|
79
79
|
// Add timestamp to log messages
|
|
80
80
|
format.printf(({ timestamp, level, message, ...meta }) => {
|
|
81
81
|
let msg = `${timestamp} ${level}: ${message}`;
|
|
82
|
-
if (meta && meta[Symbol.for("splat")]) {
|
|
83
|
-
const splat = meta[Symbol.for("splat")];
|
|
82
|
+
if (meta && meta[/* @__PURE__ */ Symbol.for("splat")]) {
|
|
83
|
+
const splat = meta[/* @__PURE__ */ Symbol.for("splat")];
|
|
84
84
|
if (Array.isArray(splat)) {
|
|
85
85
|
for (const arg of splat) {
|
|
86
86
|
if (arg instanceof Error) {
|