Skip to content

Commit b8553cb

Browse files
fix: Update paths in deployment documentation and config generation script for consistency
1 parent 9ca4c21 commit b8553cb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

DEPLOYMENT.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ forge script script/DeployPOM.s.sol:DeployPOM \
7777
- `apps/paynode-web/.env` (`NEXT_PUBLIC_PAYNODE_ROUTER_ADDRESS`)
7878

7979
**Option B: Automated Sync (Recommended)**
80-
The project now uses a central `paynode-config.json`. To sync new addresses across the Web app and SDKs automatically:
81-
- Update `router` and `tokens.USDC` entries in `paynode-config.json`.
82-
- Run the sync script from the project root:
80+
The project now uses a central `meta/paynode-config.json`. To sync new addresses across the Web app and SDKs automatically inside the aggregate workspace:
81+
- Update `router` and `tokens.USDC` entries in `meta/paynode-config.json`.
82+
- Run the sync script from the aggregate workspace root:
8383
```bash
84-
python3 scripts/sync-config.py
84+
python3 meta/scripts/sync-config.py
8585
```
8686

8787
3. **Transfer Ownership (Optional):**

script/Config.s.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: MIT
22
pragma solidity ^0.8.20;
33

4-
// Generated by scripts/sync-config.py
4+
// Generated by meta/scripts/sync-config.py
55
library Config {
66
address public constant ROUTER_MAINNET = 0x4A73696ccF76E7381b044cB95127B3784369Ed63;
77
address public constant ROUTER_SEPOLIA = 0x24cD8b68aaC209217ff5a6ef1Bf55a59f2c8Ca6F;

0 commit comments

Comments
 (0)