diff --git a/hardhat.config.ts b/hardhat.config.ts index 9fbe7c1e..338ffd93 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -168,7 +168,7 @@ const config: HardhatUserConfig = { network: 'shibuya', chainId: 81, urls: { - apiURL: 'https://shibuya.blockscout.com//api', + apiURL: 'https://shibuya.blockscout.com/api', browserURL: 'https://shibuya.blockscout.com/', }, }, diff --git a/scripts/deploy-renderUtils.ts b/scripts/deploy-renderUtils.ts deleted file mode 100644 index 1bc3b9cd..00000000 --- a/scripts/deploy-renderUtils.ts +++ /dev/null @@ -1,27 +0,0 @@ -import { SignerWithAddress } from '@nomicfoundation/hardhat-ethers/signers'; -import { ethers, run } from 'hardhat'; -import { sleep } from './utils'; - -async function main() { - const accounts: SignerWithAddress[] = await ethers.getSigners(); - const owner = accounts[0]; - console.log(`Deployer address: ${owner.address}`); - // We get the contract to deploy - const renderUtilsFactory = await ethers.getContractFactory('RMRKEquipRenderUtils'); - const renderUtils = await renderUtilsFactory.deploy(); - await renderUtils.waitForDeployment(); - console.log('RMRK Equip Render Utils deployed to:', await renderUtils.getAddress()); - await sleep(1000); - - await run('verify:verify', { - address: await renderUtils.getAddress(), - constructorArguments: [], - }); -} - -// We recommend this pattern to be able to use async/await everywhere -// and properly handle errors. -main().catch((error) => { - console.error(error); - process.exitCode = 1; -});