diff --git a/contracts/script/DeployZombieOwnership.s.sol b/contracts/script/DeployZombieOwnership.s.sol index 1cfa42d..9b8d1a8 100644 --- a/contracts/script/DeployZombieOwnership.s.sol +++ b/contracts/script/DeployZombieOwnership.s.sol @@ -9,10 +9,8 @@ contract DeployZombieOwnership is Script { function run() public { vm.startBroadcast(); - ZombieOwnership zombieownership = new ZombieOwnership(); console.log("ZombieOwnership deployed at address: ", address(zombieownership)); - vm.stopBroadcast(); } } diff --git a/dapp/src/App.vue b/dapp/src/App.vue index c58b0dc..aa092a2 100644 --- a/dapp/src/App.vue +++ b/dapp/src/App.vue @@ -2,7 +2,7 @@ import CryptoZombiesView from './components/CryptoZombiesView.vue' import { MetaMaskInpageProvider } from "@metamask/providers"; import { onBeforeMount, ref } from 'vue' -import Web3Utils from './utils/web3utils.ts'; +import { Web3Utils } from './utils/web3utils.ts'; // Metamask injected declare global { @@ -28,12 +28,12 @@ window.ethereum.on('accountsChanged', () => initializeApp());