@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 +16 -0
- package/README.md +1 -1
- package/package.json +3 -5
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
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
|
|
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
|
-
"
|
|
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
|
|
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",
|