35 lines
2.9 KiB
Markdown
35 lines
2.9 KiB
Markdown
|
|
# .bak Files — Deprecation and Build Exclusion
|
|||
|
|
|
|||
|
|
Several scripts and tests are kept as `.bak` (or were renamed to `.bak`) so that `forge build` and `forge test` succeed. These files are **excluded from compilation** by Forge (extension `.bak` is not `.sol`).
|
|||
|
|
|
|||
|
|
## Current .bak Files (deprecated until restored or fixed)
|
|||
|
|
|
|||
|
|
All listed files are **deprecated** for build/test purposes: excluded from compilation so `forge build` and `forge test` pass. Either fix and restore to `.sol` / `.t.sol`, or leave as `.bak` and document here.
|
|||
|
|
|
|||
|
|
| File | Reason |
|
|||
|
|
|------|--------|
|
|||
|
|
| `script/deploy/bridge/DeployWETHBridges.s.sol.bak` | Backup of pre-fix version; active script is `DeployWETHBridges.s.sol` (fixed). |
|
|||
|
|
| `script/deploy/iso4217w/DeployISO4217WSystem.s.sol.bak` | Backup of pre-fix version; active script is `DeployISO4217WSystem.s.sol` (fixed). |
|
|||
|
|
| `script/deploy/vault/DeployVaultSystem.s.sol.bak` | Backup; active script is `DeployVaultSystem.s.sol` (fixed). |
|
|||
|
|
| ~~`test/dex/DODOPMMIntegration.t.sol.bak`~~ | **RESTORED.** Test is active; fixed `vm.mockCall` (use `bytes("")`) and removed redundant `grantRole`. |
|
|||
|
|
| ~~`test/bridge/integration/MultiChainBridge.t.sol.bak`~~ | **RESTORED.** Test is active; uses proxy deployment for upgradeable registries/bridge, proposeAsset → voteOnProposal → executeProposal for asset registration, addDestination for bridge, and bytes(…) for XRPL validation. Four tests pass; testEVMToEVMBridge/testCancelBridge need mock CCIP router; testXDCAddressConversion/testXRPLBridge may need adapter-specific fixes. |
|
|||
|
|
| `script/deploy/bridge/DeployLINKToken.s.sol.bak` | Excluded; restore when needed. |
|
|||
|
|
| `script/emoney/DeployChain138.s.sol.bak` | Excluded so main build passes; requires full `contracts/emoney/` implementation. |
|
|||
|
|
| `script/emoney/Configure.s.sol.bak` | Same as above. |
|
|||
|
|
| `script/emoney/Deploy.s.sol.bak` | Same as above. |
|
|||
|
|
| `script/emoney/VerifyDeployment.s.sol.bak` | Same as above. |
|
|||
|
|
| `test/emoney/**/*.t.sol.bak` | All emoney unit/integration/fuzz/invariants/security tests; restore when full emoney contracts exist. |
|
|||
|
|
| `test/vault/Vault.t.sol.bak` | Imports `eMoneyToken`; restore when full emoney exists. |
|
|||
|
|
|
|||
|
|
**Note:** `contracts/emoney/` now contains minimal **stubs** (interfaces + TokenFactory138, PolicyManager, ComplianceRegistry, BridgeVault138) so the rest of the repo compiles. Full emoney implementation can replace these stubs; then restore the scripts and tests above.
|
|||
|
|
|
|||
|
|
## Restoring a .bak File
|
|||
|
|
|
|||
|
|
1. Rename back to `.sol` (e.g. `mv DODOPMMIntegration.t.sol.bak DODOPMMIntegration.t.sol`).
|
|||
|
|
2. Fix any compilation or test errors (see [REQUIRED_FIXES_UPDATES_GAPS.md](../../docs/REQUIRED_FIXES_UPDATES_GAPS.md)).
|
|||
|
|
3. Run `forge build` and `forge test` to confirm.
|
|||
|
|
|
|||
|
|
## Adding New Scripts/Tests
|
|||
|
|
|
|||
|
|
Do **not** commit new `.sol` files that don’t compile or that fail tests; fix them or keep them as `.bak` until fixed. Prefer fixing the script/test over leaving a long-term `.bak`.
|