@bananapus/address-registry-v6 0.0.30 → 0.0.32

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/README.md CHANGED
@@ -91,6 +91,16 @@ Useful scripts:
91
91
 
92
92
  The deploy script uses Sphinx for deterministic deployment. This package is intentionally small and independent because many other repos use it to record clone factories and helper deployments.
93
93
 
94
+ `script/Deploy.s.sol` targets Ethereum, Optimism, Base, and Arbitrum (plus their Sepolia testnets). For the Sphinx proposal to validate and run, `foundry.toml` must:
95
+
96
+ - enable the storage-layout build output (`extra_output = ['storageLayout']`), which Sphinx reads during proposal validation, and
97
+ - define an `[rpc_endpoints]` entry for each of those networks so the proposal can connect.
98
+
99
+ Provide the matching RPC URLs through environment variables before proposing or deploying:
100
+
101
+ - `RPC_ETHEREUM_MAINNET`, `RPC_OPTIMISM_MAINNET`, `RPC_BASE_MAINNET`, `RPC_ARBITRUM_MAINNET`
102
+ - `RPC_ETHEREUM_SEPOLIA`, `RPC_OPTIMISM_SEPOLIA`, `RPC_BASE_SEPOLIA`, `RPC_ARBITRUM_SEPOLIA`
103
+
94
104
  ## Repository Layout
95
105
 
96
106
  ```text
package/foundry.toml CHANGED
@@ -5,6 +5,7 @@ evm_version = 'cancun'
5
5
  optimizer_runs = 200
6
6
  libs = ["node_modules", "lib"]
7
7
  fs_permissions = [{ access = "read-write", path = "./"}]
8
+ extra_output = ['storageLayout']
8
9
 
9
10
  [fuzz]
10
11
  runs = 4096
@@ -21,3 +22,10 @@ wrap_comments = true
21
22
 
22
23
  [rpc_endpoints]
23
24
  ethereum = "${RPC_ETHEREUM_MAINNET}"
25
+ optimism = "${RPC_OPTIMISM_MAINNET}"
26
+ base = "${RPC_BASE_MAINNET}"
27
+ arbitrum = "${RPC_ARBITRUM_MAINNET}"
28
+ ethereum_sepolia = "${RPC_ETHEREUM_SEPOLIA}"
29
+ optimism_sepolia = "${RPC_OPTIMISM_SEPOLIA}"
30
+ base_sepolia = "${RPC_BASE_SEPOLIA}"
31
+ arbitrum_sepolia = "${RPC_ARBITRUM_SEPOLIA}"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bananapus/address-registry-v6",
3
- "version": "0.0.30",
3
+ "version": "0.0.32",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",