Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.7k views
in Technique[技术] by (71.8m points)

ethereum - TypeError: Cannot read property 'eth' of undefined


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You have an misspellings in constuctor, thus this.web3... line never run. Correct one is constructor.

In your code there is another problem, when you use websocket, you dont need to use HttpProvider just pass websocket url to web3:

this.web3 = new Web3('wss://mainnet.infura.io/ws/v3/' + projectId);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...