Web3js

無法讀取未定義的屬性“契約”。Node api 無法與智能合約互動

  • October 30, 2022

我正在使用 web3 版本 1.8.0

在此處輸入圖像描述

它總是顯示這個錯誤“Uncaught TypeError: Cannot read properties of undefined (reading ‘Contract’)”

你有兩個導入“web3”。一個是

import web3 from 'web3'

另一個是

// you are using Web3 in your contract
// this is overwriting
import Web3 from 'web3"

刪除第一個

引用自:https://ethereum.stackexchange.com/questions/138405