diff --git a/apps/remix-ide/src/blockchain/blockchain.js b/apps/remix-ide/src/blockchain/blockchain.js index 5c8e238060..0b14c881ce 100644 --- a/apps/remix-ide/src/blockchain/blockchain.js +++ b/apps/remix-ide/src/blockchain/blockchain.js @@ -188,7 +188,6 @@ export class Blockchain extends Plugin { parsedDeployments.deployments.push({ fork: networkInfo.currentFork, proxyAddress: address, - implementationAddress: implementationContractObject.implementationAddress, layout: implementationContractObject.contract.object.storageLayout, date: new Date().toISOString() }) @@ -200,7 +199,6 @@ export class Blockchain extends Plugin { deployments: [{ fork: networkInfo.currentFork, proxyAddress: address, - implementationAddress: implementationContractObject.implementationAddress, layout: implementationContractObject.contract.object.storageLayout, date: new Date().toISOString() }] diff --git a/libs/remix-core-plugin/src/lib/openzeppelin-proxy.ts b/libs/remix-core-plugin/src/lib/openzeppelin-proxy.ts index b3f01c8267..9caa46e441 100644 --- a/libs/remix-core-plugin/src/lib/openzeppelin-proxy.ts +++ b/libs/remix-core-plugin/src/lib/openzeppelin-proxy.ts @@ -101,7 +101,6 @@ export class OpenZeppelinProxy extends Plugin { // re-use implementation contract's ABI for UI display in udapp and change name to proxy name. implementationContractObject.name = proxyName - implementationContractObject.implementationAddress = implAddress this.blockchain.deployProxy(data, implementationContractObject) } diff --git a/libs/remix-ui/run-tab/src/lib/components/contractGUI.tsx b/libs/remix-ui/run-tab/src/lib/components/contractGUI.tsx index f0617adf6a..40c86aaec6 100644 --- a/libs/remix-ui/run-tab/src/lib/components/contractGUI.tsx +++ b/libs/remix-ui/run-tab/src/lib/components/contractGUI.tsx @@ -1,7 +1,6 @@ // eslint-disable-next-line no-use-before-define import React, { useEffect, useRef, useState } from 'react' import * as remixLib from '@remix-project/remix-lib' -import Web3 from 'web3' import { ContractGUIProps } from '../types' import { CopyToClipboard } from '@remix-ui/clipboard' import { CustomTooltip } from '@remix-ui/helper'