diff --git a/contract_manager/scripts/deploy_evm_executor_contracts.ts b/contract_manager/scripts/deploy_evm_executor_contracts.ts index 703b06003f..44ebfff9c3 100644 --- a/contract_manager/scripts/deploy_evm_executor_contracts.ts +++ b/contract_manager/scripts/deploy_evm_executor_contracts.ts @@ -120,8 +120,12 @@ export async function main() { CACHE_FILE, ); + const maskedDeploymentConfig = { + ...deploymentConfig, + privateKey: deploymentConfig.privateKey ? `` : undefined, + }; console.log( - `Deployment config: ${JSON.stringify(deploymentConfig, null, 2)}\n`, + `Deployment config: ${JSON.stringify(maskedDeploymentConfig, null, 2)}\n`, ); console.log(`Deploying executor contracts on ${chain.getId()}...`);