Skip to content

Commit

Permalink
chore: add retry migration (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpetrun5 authored Jul 31, 2024
1 parent a72c1f9 commit 27d9682
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions migrations/10_retry.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const RetryContract = artifacts.require("Retry");

module.exports = async function (deployer) {
await deployer.deploy(RetryContract);
const RetryInstance = await RetryContract.deployed();

console.table({
"Retry Address": RetryInstance.address,
});
}

0 comments on commit 27d9682

Please sign in to comment.