@strkfarm/sdk 2.0.0-dev.45 → 2.0.0-dev.47
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.
|
@@ -128381,7 +128381,7 @@ spurious results.`);
|
|
|
128381
128381
|
// TODO
|
|
128382
128382
|
accessControl: {
|
|
128383
128383
|
type: "Standard Account" /* STANDARD_ACCOUNT */,
|
|
128384
|
-
addresses: [ContractAddr.from("
|
|
128384
|
+
addresses: [ContractAddr.from("0x055d39827894c40F04fe3a314Ad013Bf9Bc5220F7eB6CD8863212DCba6C0e16E")],
|
|
128385
128385
|
timeLock: "0 Days"
|
|
128386
128386
|
}
|
|
128387
128387
|
},
|
package/dist/index.browser.mjs
CHANGED
|
@@ -40389,7 +40389,7 @@ function getStrategySettings2(settings, meta) {
|
|
|
40389
40389
|
// TODO
|
|
40390
40390
|
accessControl: {
|
|
40391
40391
|
type: "Standard Account" /* STANDARD_ACCOUNT */,
|
|
40392
|
-
addresses: [ContractAddr.from("
|
|
40392
|
+
addresses: [ContractAddr.from("0x055d39827894c40F04fe3a314Ad013Bf9Bc5220F7eB6CD8863212DCba6C0e16E")],
|
|
40393
40393
|
timeLock: "0 Days"
|
|
40394
40394
|
}
|
|
40395
40395
|
},
|
package/dist/index.js
CHANGED
|
@@ -40722,7 +40722,7 @@ function getStrategySettings2(settings, meta) {
|
|
|
40722
40722
|
// TODO
|
|
40723
40723
|
accessControl: {
|
|
40724
40724
|
type: "Standard Account" /* STANDARD_ACCOUNT */,
|
|
40725
|
-
addresses: [ContractAddr.from("
|
|
40725
|
+
addresses: [ContractAddr.from("0x055d39827894c40F04fe3a314Ad013Bf9Bc5220F7eB6CD8863212DCba6C0e16E")],
|
|
40726
40726
|
timeLock: "0 Days"
|
|
40727
40727
|
}
|
|
40728
40728
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -40556,7 +40556,7 @@ function getStrategySettings2(settings, meta) {
|
|
|
40556
40556
|
// TODO
|
|
40557
40557
|
accessControl: {
|
|
40558
40558
|
type: "Standard Account" /* STANDARD_ACCOUNT */,
|
|
40559
|
-
addresses: [ContractAddr.from("
|
|
40559
|
+
addresses: [ContractAddr.from("0x055d39827894c40F04fe3a314Ad013Bf9Bc5220F7eB6CD8863212DCba6C0e16E")],
|
|
40560
40560
|
timeLock: "0 Days"
|
|
40561
40561
|
}
|
|
40562
40562
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@strkfarm/sdk",
|
|
3
|
-
"version": "2.0.0-dev.
|
|
3
|
+
"version": "2.0.0-dev.47",
|
|
4
4
|
"description": "STRKFarm TS SDK (Meant for our internal use, but feel free to use it)",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -78,63 +78,5 @@
|
|
|
78
78
|
"redis": "^4.7.0",
|
|
79
79
|
"stacktrace-js": "^2.0.2",
|
|
80
80
|
"winston": "^3.13.0"
|
|
81
|
-
},
|
|
82
|
-
"files": [
|
|
83
|
-
"dist",
|
|
84
|
-
"src"
|
|
85
|
-
],
|
|
86
|
-
"scripts": {
|
|
87
|
-
"test": "jest",
|
|
88
|
-
"build": "tsup --clean && pnpm run build:esm && npm run build:dts && npm run build:iife && npm run build-cli && pnpm run build:iife-esm",
|
|
89
|
-
"build:esm": "tsup --clean false --format esm --platform node",
|
|
90
|
-
"build-cli:esm": "tsup ./src/cli.ts --clean false --format esm --platform node",
|
|
91
|
-
"build-cli": "tsup ./src/cli.ts --clean false && pnpm run build-cli:esm",
|
|
92
|
-
"build:dts": "tsup --clean false --dts-only",
|
|
93
|
-
"build:iife": "tsup --clean false --format iife --platform browser",
|
|
94
|
-
"build:iife-esm": "tsup --clean false --format iife --format esm --platform browser"
|
|
95
|
-
},
|
|
96
|
-
"keywords": [],
|
|
97
|
-
"author": "",
|
|
98
|
-
"license": "ISC",
|
|
99
|
-
"devDependencies": {
|
|
100
|
-
"@types/jest": "^29.5.12",
|
|
101
|
-
"@types/node-telegram-bot-api": "^0.64.7",
|
|
102
|
-
"jest": "^29.7.0",
|
|
103
|
-
"jest-environment-jsdom": "^29.7.0",
|
|
104
|
-
"request": "^2.88.2",
|
|
105
|
-
"ts-jest": "^29.1.5",
|
|
106
|
-
"ts-node": "^10.9.2",
|
|
107
|
-
"tsup": "^8.1.0",
|
|
108
|
-
"typedoc": "^0.26.3",
|
|
109
|
-
"typescript": "^5.5.3"
|
|
110
|
-
},
|
|
111
|
-
"peerDependencies": {
|
|
112
|
-
"@types/react": "^19.1.2",
|
|
113
|
-
"axios": "^1.7.2",
|
|
114
|
-
"react": "19.1.2",
|
|
115
|
-
"starknet": "9.2.1"
|
|
116
|
-
},
|
|
117
|
-
"publishConfig": {
|
|
118
|
-
"tag": "staging"
|
|
119
|
-
},
|
|
120
|
-
"dependencies": {
|
|
121
|
-
"@apollo/client": "3.11.8",
|
|
122
|
-
"@avnu/avnu-sdk": "3.0.2",
|
|
123
|
-
"@ericnordelo/strk-merkle-tree": "^1.0.0",
|
|
124
|
-
"@noble/curves": "^1.0.0",
|
|
125
|
-
"@noble/hashes": "^2.0.0",
|
|
126
|
-
"@scure/starknet": "^2.0.0",
|
|
127
|
-
"bignumber.js": "4.0.4",
|
|
128
|
-
"browser-assert": "^1.2.1",
|
|
129
|
-
"chalk": "^4.1.2",
|
|
130
|
-
"commander": "^12.1.0",
|
|
131
|
-
"ethers": "^6.13.5",
|
|
132
|
-
"graphql": "16.9.0",
|
|
133
|
-
"inquirer": "^10.1.2",
|
|
134
|
-
"node-telegram-bot-api": "^0.66.0",
|
|
135
|
-
"proxy-from-env": "^1.1.0",
|
|
136
|
-
"redis": "^4.7.0",
|
|
137
|
-
"stacktrace-js": "^2.0.2",
|
|
138
|
-
"winston": "^3.13.0"
|
|
139
81
|
}
|
|
140
82
|
}
|
|
@@ -1220,7 +1220,7 @@ function getStrategySettings(
|
|
|
1220
1220
|
// TODO
|
|
1221
1221
|
accessControl: {
|
|
1222
1222
|
type: AccessControlType.STANDARD_ACCOUNT,
|
|
1223
|
-
addresses: [ContractAddr.from("
|
|
1223
|
+
addresses: [ContractAddr.from("0x055d39827894c40F04fe3a314Ad013Bf9Bc5220F7eB6CD8863212DCba6C0e16E")],
|
|
1224
1224
|
timeLock: "0 Days",
|
|
1225
1225
|
},
|
|
1226
1226
|
},
|