diff --git a/.env.tpl b/.env.tpl index 5141001b..6193a62c 100644 --- a/.env.tpl +++ b/.env.tpl @@ -16,4 +16,7 @@ RAZOR_ADDRESS= # List of Stakers STAKER_ADDRESSES= -SEED_AMOUNT= \ No newline at end of file +SEED_AMOUNT= + +#Tenderly SLUG +TENDERLY_SLUG= \ No newline at end of file diff --git a/hardhat.config.js b/hardhat.config.js index 59a72c8b..65cdc131 100644 --- a/hardhat.config.js +++ b/hardhat.config.js @@ -23,6 +23,7 @@ const { MNEMONIC, CMC_KEY, ETHERSCAN_KEY, + TENDERLY_SLUG, } = process.env; // Ref - https://chainid.network/chains.json @@ -99,6 +100,6 @@ module.exports = { }, tenderly: { username: 'razor', - project: 'razor-network', + project: TENDERLY_SLUG, }, };