Skip to content

Commit

Permalink
Test deployment script
Browse files Browse the repository at this point in the history
  • Loading branch information
shahthepro committed Jan 6, 2025
1 parent 3d7c282 commit 9ecf33c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions contracts/deploy/base/021_test_deployment.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
const addresses = require("../../utils/addresses");
const { deployOnBaseWithGuardian } = require("../../utils/deploy-l2");

module.exports = deployOnBaseWithGuardian(
{
deployName: "021_test_deployment",
},
async ({ ethers }) => {
const cTimeLock = await ethers.getContractAt(
"ITimelockController",
addresses.base.timeock
);

console.log("Min Delay", await cTimeLock.getMinDelay());

return {
actions: [],
};
}
);

0 comments on commit 9ecf33c

Please sign in to comment.