@prb/effect-evm-safe 1.0.0-beta.4 → 1.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/CHANGELOG.md ADDED
@@ -0,0 +1,16 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Common Changelog](https://common-changelog.org/).
6
+
7
+ [1.0.0]: https://github.com/PaulRBerg/prb-effect/releases/tag/%40prb%2Feffect-evm-safe%401.0.0
8
+
9
+ ## [1.0.0] - 2026-02-03
10
+
11
+ ### Added
12
+
13
+ - Add Safe Apps service: `SafeAppsService`, `SafeAppsServiceLive` for Safe Wallet integration
14
+ - Add Safe multisig detection: `isSafeMultisig` utility
15
+ - Add Safe transaction simulation: `SafeMultisigSimulationService`, `SafeMultisigSimulationServiceLive`
16
+ - Add React hooks via `@prb/effect-evm-safe/react-hooks`
package/README.md CHANGED
@@ -18,7 +18,7 @@ Peer dependencies
18
18
 
19
19
  - `effect@^3`
20
20
  - `@effect/platform@^0.93`
21
- - `@prb/effect-evm@^1.0.0-beta.5`
21
+ - `@prb/effect-evm@^1.0.0`
22
22
  - `@safe-global/safe-apps-sdk@9.1.0`
23
23
  - `viem@^2.43`
24
24
  - Optional: `@wagmi/core@>=2.0.0` (for hooks using wagmi)
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "sideEffects": false,
7
7
  "type": "module",
8
8
  "types": "./dist/index.d.ts",
9
- "version": "1.0.0-beta.4",
9
+ "version": "1.0.0",
10
10
  "scripts": {
11
11
  "build": "just build",
12
12
  "prepack": "bun install --frozen-lockfile && just build"
@@ -60,9 +60,7 @@
60
60
  },
61
61
  "files": [
62
62
  "dist/**",
63
- "README.md",
64
- "DOCS.md",
65
- "CONTRIBUTING.md"
63
+ "CHANGELOG.md"
66
64
  ],
67
65
  "keywords": [
68
66
  "effect",
@@ -76,7 +74,7 @@
76
74
  ],
77
75
  "peerDependencies": {
78
76
  "@effect/platform": "catalog:peers",
79
- "@prb/effect-evm": "^1.0.0-beta.7",
77
+ "@prb/effect-evm": "^1.0.0",
80
78
  "@safe-global/safe-apps-sdk": "catalog:peers",
81
79
  "@wagmi/core": "catalog:peers",
82
80
  "effect": "catalog:peers",