Skip to content

Conversation

@fusmanii
Copy link
Contributor

It also contains changes from #1058, but I can move to another pr if its easier to review like that

Signed-off-by: Faisal Usmani <faisal.of.usmani@gmail.com>
Signed-off-by: Faisal Usmani <faisal.of.usmani@gmail.com>
Comment on lines -35 to -41
echo ""
echo "Generated files:"
echo " - $PROJECT_ROOT/broadcast/deployed-addresses.md (Markdown format)"
echo " - $PROJECT_ROOT/broadcast/deployed-addresses.json (JSON format)"
echo " - $PROJECT_ROOT/script/DeployedAddresses.sol (Foundry smart contract with all addresses)"
echo ""
echo "You can now import DeployedAddresses.sol in your other Foundry scripts to use the deployed addresses." No newline at end of file
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed these looks to make it less noisy

Comment on lines -303 to -321
// Log the sorting priority for visibility
console.log("\nChain sorting priority:");
const mainnetChains = sortedChainIds.filter((id) => Object.values(MAINNET_CHAIN_IDs).includes(id));
const testnetChains = sortedChainIds.filter((id) => Object.values(TESTNET_CHAIN_IDs).includes(id));
const otherChains = sortedChainIds.filter(
(id) => !Object.values(MAINNET_CHAIN_IDs).includes(id) && !Object.values(TESTNET_CHAIN_IDs).includes(id)
);

console.log(
` Mainnet chains (${mainnetChains.length}): ${mainnetChains.map((id) => `${getChainName(id)}(${id})`).join(", ")}`
);
console.log(
` Testnet chains (${testnetChains.length}): ${testnetChains.map((id) => `${getChainName(id)}(${id})`).join(", ")}`
);
console.log(
` Other chains (${otherChains.length}): ${otherChains.map((id) => `${getChainName(id)}(${id})`).join(", ")}`
);
console.log("");

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same here, all the changes in this file are removing logs

@fusmanii fusmanii requested a review from grasphoper September 16, 2025 16:17
},
"MulticallHandler": {
"address": "0x924a9f036260DdD5808007E1AA95f08eD08aA569",
"address": "0x0F7Ae28dE1C8532170AD4ee566B5801485c13a0E",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this right? This contract isn't verified

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice catch, looks like non of the 0x0F7Ae28dE1C8532170AD4ee566B5801485c13a0E are verified, will confirm if its the right address

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The addresses are correct but looks like they were never verified. I verified all of the unverified contracts

Copy link
Member

@nicholaspai nicholaspai left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The MUlticallHandler from this PR doesn't seem to be verified on Mainnet at least

@fusmanii fusmanii merged commit d04dfd3 into master Sep 17, 2025
10 checks passed
@fusmanii fusmanii deleted the faisal/pre-commit-hook-scripts branch September 17, 2025 14:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants