From 27d96827f8403a31f9a33a40b0a49d8d2b3e3c9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matija=20Petruni=C4=87?= Date: Wed, 31 Jul 2024 14:30:34 +0200 Subject: [PATCH] chore: add retry migration (#263) --- migrations/10_retry.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 migrations/10_retry.js 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, + }); +}