@safe-global/protocol-kit 6.0.0-alpha.2 → 6.0.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@safe-global/protocol-kit",
3
- "version": "6.0.0-alpha.2",
3
+ "version": "6.0.0",
4
4
  "description": "SDK that facilitates the interaction with Safe Smart Accounts",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "main": "dist/cjs/src/index.cjs",
@@ -29,11 +29,6 @@
29
29
  "update-safe-deployments": "ts-node scripts/safe-deployments/updateLocalNetworks.ts",
30
30
  "check-short-name-integrity": "ts-node scripts/safe-deployments/checkShortNameIntegrity.ts",
31
31
  "test": "mocha -r ts-node/register -r tsconfig-paths/register tests/unit/**/*.ts",
32
- "test:hardhat:web3:v1.0.0": "export TEST_NETWORK=hardhat && export ETH_LIB=web3 && export SAFE_VERSION=1.0.0 && testing-kit deploy && nyc testing-kit test 'tests/e2e/*.test.*'",
33
- "test:hardhat:web3:v1.1.1": "export TEST_NETWORK=hardhat && export ETH_LIB=web3 && export SAFE_VERSION=1.1.1 && testing-kit deploy && nyc testing-kit test 'tests/e2e/*.test.*'",
34
- "test:hardhat:web3:v1.2.0": "export TEST_NETWORK=hardhat && export ETH_LIB=web3 && export SAFE_VERSION=1.2.0 && testing-kit deploy && nyc testing-kit test 'tests/e2e/*.test.*'",
35
- "test:hardhat:web3:v1.3.0": "export TEST_NETWORK=hardhat && export ETH_LIB=web3 && export SAFE_VERSION=1.3.0 && testing-kit deploy && nyc testing-kit test 'tests/e2e/*.test.*'",
36
- "test:hardhat:web3:v1.4.1": "export TEST_NETWORK=hardhat && export ETH_LIB=web3 && export SAFE_VERSION=1.4.1 && testing-kit deploy && nyc testing-kit test 'tests/e2e/*.test.*'",
37
32
  "test:hardhat:ethers:v1.0.0": "export TEST_NETWORK=hardhat && export ETH_LIB=ethers && export SAFE_VERSION=1.0.0 && testing-kit deploy && nyc testing-kit test 'tests/e2e/*.test.*'",
38
33
  "test:hardhat:ethers:v1.1.1": "export TEST_NETWORK=hardhat && export ETH_LIB=ethers && export SAFE_VERSION=1.1.1 && testing-kit deploy && nyc testing-kit test 'tests/e2e/*.test.*'",
39
34
  "test:hardhat:ethers:v1.2.0": "export TEST_NETWORK=hardhat && export ETH_LIB=ethers && export SAFE_VERSION=1.2.0 && testing-kit deploy && nyc testing-kit test 'tests/e2e/*.test.*'",
@@ -47,7 +42,7 @@
47
42
  "coverage": "nyc report --reporter=lcov",
48
43
  "format:check": "prettier --check \"*/**/*.{js,json,md,ts}\"",
49
44
  "format": "prettier --write \"*/**/*.{js,json,md,ts}\"",
50
- "unbuild": "rimraf dist artifacts deployments cache .nyc_output *.tsbuildinfo",
45
+ "unbuild": "rimraf dist coverage .nyc_output meta-cjs.json meta-esm.json *.tsbuildinfo",
51
46
  "prebuild": "node -p \"'export const getProtocolKitVersion = () => \\'' + require('./package.json').version.split('-')[0] + '\\''\" > src/utils/getProtocolKitVersion.ts",
52
47
  "build": "yarn unbuild && yarn check-safe-deployments && yarn build:esm && yarn build:cjs && yarn build:types",
53
48
  "build:esm": "esbuild ./src/index ./test-utils/index --format=esm --bundle --metafile=meta-esm.json --packages=external --outdir=dist/esm --out-extension:.js=.mjs",
@@ -68,11 +63,12 @@
68
63
  ],
69
64
  "homepage": "https://github.com/safe-global/safe-core-sdk#readme",
70
65
  "devDependencies": {
71
- "@safe-global/testing-kit": "^0.2.0-alpha.2",
66
+ "@safe-global/testing-kit": "^0.2.0",
72
67
  "@types/chai": "^4.3.20",
73
68
  "@types/chai-as-promised": "^7.1.8",
74
69
  "@types/mocha": "^10.0.10",
75
70
  "@types/semver": "^7.5.8",
71
+ "@types/sinon": "^17.0.4",
76
72
  "chai": "^4.5.0",
77
73
  "chai-as-promised": "^7.1.2",
78
74
  "dotenv": "^16.4.7",
@@ -80,15 +76,14 @@
80
76
  "mocha": "^11.1.0",
81
77
  "nyc": "^17.1.0",
82
78
  "sinon": "^19.0.2",
83
- "tsconfig-paths": "^4.2.0",
84
- "web3": "^4.12.1"
79
+ "tsconfig-paths": "^4.2.0"
85
80
  },
86
81
  "dependencies": {
87
- "@safe-global/safe-deployments": "^1.37.28",
88
- "@safe-global/safe-modules-deployments": "^2.2.5",
89
- "@safe-global/types-kit": "^2.0.0-alpha.2",
82
+ "@safe-global/safe-deployments": "^1.37.30",
83
+ "@safe-global/safe-modules-deployments": "^2.2.7",
84
+ "@safe-global/types-kit": "^2.0.0",
90
85
  "abitype": "^1.0.2",
91
- "semver": "^7.6.3",
86
+ "semver": "^7.7.1",
92
87
  "viem": "^2.21.8"
93
88
  },
94
89
  "optionalDependencies": {