diff --git a/migrations/10_retry.js b/migrations/10_retry.js new file mode 100644 index 00000000..3358a4c1 --- /dev/null +++ b/migrations/10_retry.js @@ -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, + }); +}