defi-kit 1.15.2 → 2.0.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "defi-kit",
3
- "version": "1.15.2",
3
+ "version": "2.0.1",
4
4
  "description": "Permissions for Zodiac Roles covering interactions with DeFi protocols",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -11,19 +11,19 @@
11
11
  "import": "./dist/index.mjs"
12
12
  },
13
13
  "./eth": {
14
+ "types": "./dist/eth.d.ts",
14
15
  "require": "./dist/eth.js",
15
- "import": "./dist/eth.mjs",
16
- "types": "./dist/eth.d.ts"
16
+ "import": "./dist/eth.mjs"
17
17
  },
18
18
  "./gno": {
19
+ "types": "./dist/gno.d.ts",
19
20
  "require": "./dist/gno.js",
20
- "import": "./dist/gno.mjs",
21
- "types": "./dist/gno.d.ts"
21
+ "import": "./dist/gno.mjs"
22
22
  },
23
23
  "./arb1": {
24
+ "types": "./dist/arb1.d.ts",
24
25
  "require": "./dist/arb1.js",
25
- "import": "./dist/arb1.mjs",
26
- "types": "./dist/arb1.d.ts"
26
+ "import": "./dist/arb1.mjs"
27
27
  }
28
28
  },
29
29
  "typesVersions": {
@@ -51,22 +51,22 @@
51
51
  "build": "rimraf dist && tsup --format esm,cjs",
52
52
  "dev": "tsup --format esm --watch",
53
53
  "anvil": "anvil --silent --fork-url ${FORK_RPC:-https://rpc.ankr.com/eth}",
54
- "test:watch-only": "jest --runInBand --watch",
55
- "test": "env-cmd --silent concurrently --raw --kill-others --passthrough-arguments --success first \"yarn anvil\" \"jest --runInBand -t {@}\" --",
56
- "test:watch": "env-cmd --silent concurrently --raw --kill-others --handle-input --passthrough-arguments \"yarn anvil\" \"jest --runInBand --watch {@}\" --",
54
+ "jest": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js",
55
+ "test:watch-only": "yarn jest --runInBand --watch",
56
+ "test": "env-cmd --silent concurrently --raw --kill-others --passthrough-arguments --success first \"yarn anvil\" \"yarn jest --runInBand -t {@}\" --",
57
+ "test:watch": "env-cmd --silent concurrently --raw --kill-others --handle-input --passthrough-arguments \"yarn anvil\" \"yarn jest --runInBand --watch {@}\" --",
57
58
  "check:types": "tsc --noEmit"
58
59
  },
59
60
  "dependencies": {
60
61
  "@asteasolutions/zod-to-openapi": "^5.5.0",
61
- "@ethersproject/abi": "^5.7.0",
62
- "ethers": "^5.7.2",
62
+ "@gnosis-guild/eth-sdk": "^0.3.7",
63
+ "@gnosis-guild/eth-sdk-client": "^0.1.6",
64
+ "@gnosis-guild/zodiac": "^4.0.3",
65
+ "ethers": "^6.13.4",
63
66
  "zod": "^3.22.2",
64
- "zodiac-roles-sdk": "2.13.0"
67
+ "zodiac-roles-sdk": "^2.14.5"
65
68
  },
66
69
  "devDependencies": {
67
- "@dethcrypto/eth-sdk": "^0.3.4",
68
- "@dethcrypto/eth-sdk-client": "^0.1.6",
69
- "@gnosis.pm/zodiac": "^3.5.2",
70
70
  "@types/jest": "^29.5.2",
71
71
  "@types/wait-on": "^5.3.1",
72
72
  "concurrently": "^8.2.1",