Skip to content

Commit

Permalink
fix address output
Browse files Browse the repository at this point in the history
  • Loading branch information
0xCardinalError committed Dec 3, 2024
1 parent 5d8eb15 commit 05afe0f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
3 changes: 2 additions & 1 deletion deploy/main/009_deploy_local_data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ const func: DeployFunction = async function ({ deployments, network, config }) {
const oracleContract = await get('PriceOracle');
const stakingContract = await get('StakeRegistry');
const redisContract = await get('Redistribution');
const browserURL = config.etherscan.customChains.find((chain) => chain.network === network.name)?.urls.browserURL;
const browserURL =
config.etherscan.customChains.find((chain) => chain.network === network.name)?.urls.browserURL + 'address/';

// Token data
deployedData['contracts']['bzzToken']['abi'] = tokenContract.abi;
Expand Down
3 changes: 2 additions & 1 deletion deploy/test/009_deploy_local_data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ const func: DeployFunction = async function ({ deployments, network, config }) {
const oracleContract = await get('PriceOracle');
const stakingContract = await get('StakeRegistry');
const redisContract = await get('Redistribution');
const browserURL = config.etherscan.customChains.find((chain) => chain.network === network.name)?.urls.browserURL;
const browserURL =
config.etherscan.customChains.find((chain) => chain.network === network.name)?.urls.browserURL + 'address/';

// Token data
deployedData['contracts']['bzzToken']['abi'] = tokenContract.abi;
Expand Down
10 changes: 5 additions & 5 deletions mainnet_deployed.json

Large diffs are not rendered by default.

0 comments on commit 05afe0f

Please sign in to comment.