Skip to content

Changelog nitpick, change avax explorer #232

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 1 commit into from
Apr 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
- Deployed V3 Gyro E-CLP Factory to all networks.
- Deployed V3 Gyro 2-CLP Factory to all networks.
- Deployed V3 Stable Pool Factory V2 to all networks.
- Deployed V3 Stable Surg Hook V2 to all networks.
- Deployed V3 Stable Surge Hook V2 to all networks.
Copy link
Collaborator

Choose a reason for hiding this comment

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

Also fixed in #231 :) Didn't want to make a separate PR just for that.

- Deployed V3 Stable Surge Pool Factory V2 to all networks.
- Deployed V3 Vault Explorer V2 to all networks.

Expand Down
10 changes: 9 additions & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ export default {
etherscan: {
customChains: [
{
network: 'zkemv',
network: 'zkevm',
Copy link
Collaborator

Choose a reason for hiding this comment

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

How did that ever work then? Is it not using the custom chain? Does it work if we just delete that network?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

this is just for the explorers; it doesn't have any other consequences.

chainId: 1101,
urls: {
apiURL: 'https://api-zkevm.polygonscan.com/api',
Expand Down Expand Up @@ -503,6 +503,14 @@ export default {
browserURL: 'https://modescan.io',
},
},
{
network: 'avalanche',
chainId: 43114,
urls: {
apiURL: 'https://api.snowscan.xyz/api',
browserURL: 'https://snowscan.xyz/',
},
},
],
},
};
Loading