Skip to content

Commit

Permalink
ON-876: fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ernanirst committed Jul 5, 2024
1 parent 87cc826 commit 5520a21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/ERC-7589/ERC7589RolesRegistry/01-deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async function main() {

const ERC7589RolesRegistryFactory = await ethers.getContractFactory(IMMUTABLE_CONTRACT_NAME, { signer: deployer })
const ERC7589RolesRegistry = await ERC7589RolesRegistryFactory.deploy(MARKETPLACE_CONTRACT, {
gasPrice: ethers.utils.parseUnits('100', 'gwei')
gasPrice: ethers.utils.parseUnits('100', 'gwei'),
})
await ERC7589RolesRegistry.deployed()

Expand All @@ -38,7 +38,7 @@ async function main() {
print(colors.highlight, `Verifying contract ${IMMUTABLE_CONTRACT_NAME} on ${NETWORK}...`)
await hre.run('verify:verify', {
address: ERC7589RolesRegistry.address,
constructorArguments: [ MARKETPLACE_CONTRACT ],
constructorArguments: [MARKETPLACE_CONTRACT],
})
print(colors.success, `Contract ${IMMUTABLE_CONTRACT_NAME} verified!`)
}
Expand Down

0 comments on commit 5520a21

Please sign in to comment.