Skip to content

Commit

Permalink
Merge pull request #85 from gnosisguild/feat_bob_sepolia
Browse files Browse the repository at this point in the history
feat: introduce bob sepolia
  • Loading branch information
juliopavila authored Feb 19, 2025
2 parents 73490d3 + c7f1004 commit 722175b
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 5 deletions.
15 changes: 15 additions & 0 deletions packages/contracts/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@ export default {
url: "https://rpc.sepolia-api.lisk.com",
gasPrice: 1000000000,
},
"bob-sepolia": {
...sharedNetworkConfig,
chainId: 808813,
url: "https://bob-sepolia.rpc.gobob.xyz/",
gasPrice: 1000000000,
},
},
namedAccounts: {
deployer: 0,
Expand All @@ -73,6 +79,7 @@ export default {
sepolia: ETHERSCAN_API_KEY,
// Use "ETHERSCAN_API_KEY" as a placeholder, because Blockscout doesn't need a real API key, and Hardhat will complain if this property isn't set.
"lisk-sepolia": ETHERSCAN_API_KEY,
"bob-sepolia": ETHERSCAN_API_KEY,
} as Record<string, string>,
customChains: [
{
Expand All @@ -83,6 +90,14 @@ export default {
browserURL: "https://sepolia-blockscout.lisk.com",
},
},
{
network: "bob-sepolia",
chainId: 808813,
urls: {
apiURL: "https://bob-sepolia.explorer.gobob.xyz/api",
browserURL: "https://bob-sepolia.explorer.gobob.xyz",
},
},
],
},
sourcify: {
Expand Down
2 changes: 1 addition & 1 deletion packages/contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"author": "",
"license": "LGPL-3.0+",
"devDependencies": {
"@gnosis-guild/zodiac-core": "^2.0.0",
"@gnosis-guild/zodiac-core": "^2.0.5",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.7",
"@nomicfoundation/hardhat-ethers": "^3.0.6",
"@nomicfoundation/hardhat-ignition": "^0.15.5",
Expand Down
3 changes: 3 additions & 0 deletions packages/contracts/tasks/deploy-mastercopy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ task(
`🔄 ${contractName}@${contractVersion}: Already deployed at ${address}`,
);
} else {
console.log(
`🚀 ${contractName}@${contractVersion}: Successfully deployed at ${address}`,
);
}
}
});
8 changes: 4 additions & 4 deletions packages/contracts/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -309,10 +309,10 @@
resolved "https://registry.yarnpkg.com/@fastify/busboy/-/busboy-2.1.1.tgz#b9da6a878a371829a0502c9b6c1c143ef6663f4d"
integrity sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==

"@gnosis-guild/zodiac-core@^2.0.0":
version "2.0.0"
resolved "https://registry.yarnpkg.com/@gnosis-guild/zodiac-core/-/zodiac-core-2.0.0.tgz#eed83229414b47a1656c1deebfe635beda24786c"
integrity sha512-R3ggh7fv+kS5meN89k/PTCOrTgw73LP3yOykbyBNVzgivXkX8uoaUwJ4anzj5Z18E+Ufbw99fLBvxn9jPTSpqg==
"@gnosis-guild/zodiac-core@^2.0.5":
version "2.0.5"
resolved "https://registry.yarnpkg.com/@gnosis-guild/zodiac-core/-/zodiac-core-2.0.5.tgz#a79c41487872630e085f9167e2db182f4d083b01"
integrity sha512-yxT0FPYbAcOHC979BAEzYW2sYr/e9Qa98OaRU6R1XxO/mKuU+0g7osmsgS62gNFTrdS7U5JujnGMozAhZUqi0Q==
dependencies:
"@gnosis.pm/safe-contracts" "1.3.0"
"@openzeppelin/contracts" "5.0.2"
Expand Down

0 comments on commit 722175b

Please sign in to comment.