@safe-global/api-kit 4.0.1 → 4.1.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/package.json +11 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@safe-global/api-kit",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"description": "SDK that facilitates the interaction with the Safe Transaction Service API",
|
|
5
5
|
"types": "dist/src/index.d.ts",
|
|
6
6
|
"main": "dist/cjs/index.cjs",
|
|
@@ -21,9 +21,12 @@
|
|
|
21
21
|
"test:ethers": "export HARDHAT_NETWORK=sepolia && export ETH_LIB=ethers && nyc --reporter=lcov testing-kit test 'tests/endpoint/*.test.*'",
|
|
22
22
|
"test:viem": "export HARDHAT_NETWORK=sepolia && export ETH_LIB=viem && nyc --reporter=lcov testing-kit test 'tests/endpoint/*.test.*'",
|
|
23
23
|
"test": "yarn test:viem",
|
|
24
|
-
"test:ci:ethers": "export HARDHAT_NETWORK=sepolia && export ETH_LIB=ethers && nyc --reporter=lcov testing-kit test 'tests/e2e/*.test.*'",
|
|
25
|
-
"test:ci:
|
|
26
|
-
"test:ci": "
|
|
24
|
+
"test:ci:ethers:v1.3.0": "export HARDHAT_NETWORK=sepolia && export ETH_LIB=ethers && export SAFE_VERSION=1.3.0 && nyc --reporter=lcov testing-kit test 'tests/e2e/*.test.*'",
|
|
25
|
+
"test:ci:ethers:v1.4.1": "export HARDHAT_NETWORK=sepolia && export ETH_LIB=ethers && export SAFE_VERSION=1.4.1 && nyc --reporter=lcov testing-kit test 'tests/e2e/*.test.*'",
|
|
26
|
+
"test:ci:ethers:v1.5.0": "export HARDHAT_NETWORK=sepolia && export ETH_LIB=ethers && export SAFE_VERSION=1.5.0 && nyc --reporter=lcov testing-kit test 'tests/e2e/*.test.*'",
|
|
27
|
+
"test:ci:viem:v1.3.0": "export HARDHAT_NETWORK=sepolia && export ETH_LIB=viem && export SAFE_VERSION=1.3.0 && nyc --reporter=lcov testing-kit test 'tests/e2e/*.test.*'",
|
|
28
|
+
"test:ci:viem:v1.4.1": "export HARDHAT_NETWORK=sepolia && export ETH_LIB=viem && export SAFE_VERSION=1.4.1 && nyc --reporter=lcov testing-kit test 'tests/e2e/*.test.*'",
|
|
29
|
+
"test:ci:viem:v1.5.0": "export HARDHAT_NETWORK=sepolia && export ETH_LIB=viem && export SAFE_VERSION=1.5.0 && nyc --reporter=lcov testing-kit test 'tests/e2e/*.test.*'",
|
|
27
30
|
"format:check": "prettier --check \"*/**/*.{js,json,md,ts}\"",
|
|
28
31
|
"format": "prettier --write \"*/**/*.{js,json,md,ts}\"",
|
|
29
32
|
"unbuild": "rimraf dist coverage .nyc_output",
|
|
@@ -46,8 +49,8 @@
|
|
|
46
49
|
],
|
|
47
50
|
"homepage": "https://github.com/safe-global/safe-core-sdk#readme",
|
|
48
51
|
"devDependencies": {
|
|
49
|
-
"@safe-global/relay-kit": "^
|
|
50
|
-
"@safe-global/testing-kit": "^0.
|
|
52
|
+
"@safe-global/relay-kit": "^5.0.0",
|
|
53
|
+
"@safe-global/testing-kit": "^0.3.0",
|
|
51
54
|
"@types/chai": "^4.3.20",
|
|
52
55
|
"@types/chai-as-promised": "^7.1.8",
|
|
53
56
|
"@types/mocha": "^10.0.10",
|
|
@@ -65,8 +68,8 @@
|
|
|
65
68
|
"tsconfig-paths": "^4.2.0"
|
|
66
69
|
},
|
|
67
70
|
"dependencies": {
|
|
68
|
-
"@safe-global/protocol-kit": "^
|
|
69
|
-
"@safe-global/types-kit": "^3.
|
|
71
|
+
"@safe-global/protocol-kit": "^7.0.0",
|
|
72
|
+
"@safe-global/types-kit": "^3.1.0",
|
|
70
73
|
"node-fetch": "^2.7.0",
|
|
71
74
|
"viem": "^2.21.8"
|
|
72
75
|
}
|