feat: Rename Etherscan in deployment verification

This could also be Basescan. Abstract away to blockchain explorer.
This commit is contained in:
TAMARA LIPOWSKI
2025-03-03 17:14:39 -05:00
parent ceef683202
commit bc54eac110
5 changed files with 9 additions and 10 deletions

View File

@@ -12,10 +12,9 @@
"vm:balancer_v2": "0x543778987b293C7E8Cf0722BB2e935ba6f4068D4" "vm:balancer_v2": "0x543778987b293C7E8Cf0722BB2e935ba6f4068D4"
}, },
"base": { "base": {
"uniswap_v2": "0xa2D6c55676D0d2A1D090e3157aCC9a41bB53BE3B", "uniswap_v2": "0x852389F3Cde47e7dab5a29Fdd3E58c7050f1a019",
"uniswap_v3": "0x374fFd7224422dF5dE83B43C7Fa8379F9CAA826a", "uniswap_v3": "0x447135F701A4650e4Bd19c2B2B99cb324f8942c3",
"uniswap_v4": "0xf1531642018C9Ab6a1B07666755d975eae16a01b", "uniswap_v4": "0xc34689d354B42b2780Fbe0A785080d761E5C882b"
"vm:balancer_v2": "0x6920209CaAF45872006eC507f2f18595af030418"
}, },
"tenderly_base": { "tenderly_base": {
"uniswap_v3": "0x7c7E06d7317e620a185078e236879D2a87fC8d22" "uniswap_v3": "0x7c7E06d7317e620a185078e236879D2a87fC8d22"

View File

@@ -45,6 +45,6 @@ module.exports = {
}, },
etherscan: { etherscan: {
apiKey: process.env.ETHERSCAN_API_KEY, apiKey: process.env.BLOCKCHAIN_EXPLORER_API_KEY,
} }
}; };

View File

@@ -25,7 +25,7 @@ export PRIVATE_KEY=<private-key>
export RPC_URL=<chain-rpc-url> export RPC_URL=<chain-rpc-url>
export DEPLOY_WALLET=<wallet-address> export DEPLOY_WALLET=<wallet-address>
export PRIVATE_KEY=<private-key> export PRIVATE_KEY=<private-key>
export ETHERSCAN_API_KEY=<etherscan-api-key> export BLOCKCHAIN_EXPLORER_API_KEY=<blockchain-explorer-api-key>
``` ```
Make sure to run `unset HISTFILE` in your terminal before setting the private key. This will prevent the private key Make sure to run `unset HISTFILE` in your terminal before setting the private key. This will prevent the private key

View File

@@ -53,9 +53,9 @@ async function main() {
address: deployedExecutor.address, address: deployedExecutor.address,
constructorArguments: args, constructorArguments: args,
}); });
console.log(`${exchange} verified successfully on Etherscan!`); console.log(`${exchange} verified successfully on blockchain explorer!`);
} catch (error) { } catch (error) {
console.error(`Error during Etherscan verification:`, error); console.error(`Error during blockchain explorer verification:`, error);
} }
} }
} }

View File

@@ -52,9 +52,9 @@ async function main() {
address: router.address, address: router.address,
constructorArguments: [permit2, weth], constructorArguments: [permit2, weth],
}); });
console.log(`TychoRouter verified successfully on Etherscan!`); console.log(`TychoRouter verified successfully on blockchain explorer!`);
} catch (error) { } catch (error) {
console.error(`Error during Etherscan verification:`, error); console.error(`Error during blockchain explorer verification:`, error);
} }
} }