From 513432642cbc7823fd0e7dd99f248a4d94ee3b73 Mon Sep 17 00:00:00 2001 From: steven2308 Date: Fri, 1 Mar 2024 11:32:11 -0500 Subject: [PATCH] Pending changes from merged branch. --- hardhat.config.ts | 2 +- scripts/deploy-renderUtils.ts | 27 --------------------------- 2 files changed, 1 insertion(+), 28 deletions(-) delete mode 100644 scripts/deploy-renderUtils.ts 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; -});