chore: sync submodule state (parent ref update)

Made-with: Cursor
This commit is contained in:
defiQUG
2026-03-02 12:14:09 -08:00
parent 50ab378da9
commit 5efe36b1e0
1100 changed files with 155024 additions and 8674 deletions

View File

@@ -102,7 +102,7 @@ contract DeployAll is Script {
console.log("Skipping WETH9, WETH10, and Bridges (already deployed)");
console.log("Deploying CCIPLogger only...");
deployed.ccipLogger = deployCCIPLogger(ccipConfig);
deployed.ccipLogger = deployCcipLogger(ccipConfig);
} else {
// All other chains: Deploy everything
console.log("\n=== Full Deployment for Chain", chainId, "===");
@@ -142,7 +142,7 @@ contract DeployAll is Script {
// Deploy CCIPLogger
console.log("\nDeploying CCIPLogger...");
deployed.ccipLogger = deployCCIPLogger(ccipConfig);
deployed.ccipLogger = deployCcipLogger(ccipConfig);
}
vm.stopBroadcast();
@@ -305,7 +305,7 @@ contract DeployAll is Script {
* @dev Note: This assumes CCIPLogger contract exists. If it uses Hardhat/OpenZeppelin,
* you may need to deploy it separately using the Hardhat script.
*/
function deployCCIPLogger(CCIPConfig memory config) internal returns (address) {
function deployCcipLogger(CCIPConfig memory config) internal returns (address) {
// TODO: If CCIPLogger is a Solidity contract in this repo, deploy it here
// For now, this is a placeholder. CCIPLogger may need to be deployed via Hardhat
// due to OpenZeppelin dependencies.