开发者问题收集

MetaMask Web3 以太坊未定义

2019-09-26
13609

我知道这个问题已经存在,而且之前也有人发过帖子,但我无法让它工作,所以很抱歉问这个问题。

我正在使用 Heroku 来构建和部署,这不是在本地完成的。

我正在尝试让 MetaMask 在我的 Dapp 中得到识别,我正在使用 MetaMask 生成的代码来修复他们的隐私模式重大更改,但我无法克服“web3”、“Web3”和“ethereum”未定义的编译错误。我不明白它需要在我的应用程序中放在哪里。任何帮助都将不胜感激。非常感谢。

这是我的 app.js:


    import React, { Component } from 'react'
    import './App.css'
    import Navbar from './Navbar'
    import Content from './Content'
    import { connect } from 'react-redux'
    import {
      loadWeb3,
      loadAccount,
      loadToken,
      loadExchange
    } from '../store/interactions'
    import { contractsLoadedSelector } from '../store/selectors'


    window.addEventListener('load', async () => {
        // Modern dapp browsers...
        if (window.ethereum) {
            window.web3 = new Web3(ethereum);
            try {
                // Request account access if needed
                await ethereum.enable();
                // Acccounts now exposed
                web3.eth.sendTransaction({/* ... */});
            } catch (error) {
                // User denied account access...
            }
        }
        // Legacy dapp browsers...
        else if (window.web3) {
            window.web3 = new Web3(web3.currentProvider);
            // Acccounts always exposed
            web3.eth.sendTransaction({/* ... */});
        }
        // Non-dapp browsers...
        else {
            console.log('Non-Ethereum browser detected. You should consider trying MetaMask!');
        }
    });

    class App extends Component {
      componentWillMount() {
        this.loadBlockchainData(this.props.dispatch)
      }

      async loadBlockchainData(dispatch) {
        const web3 = loadWeb3(dispatch)
        await web3.eth.net.getNetworkType()
        const networkId = await web3.eth.net.getId()
        await loadAccount(web3, dispatch)
        const token = await loadToken(web3, networkId, dispatch)
        if(!token) {
          window.alert('Token smart contract not detected on the current network. Please select another network with Metamask.')
          return
        }
        const exchange = await loadExchange(web3, networkId, dispatch)
        if(!exchange) {
          window.alert('Exchange smart contract not detected on the current network. Please select another network with Metamask.')
          return
        }

      }

      render() {
        return (
          <div>
            <Navbar />
            { this.props.contractsLoaded ? <Content /> : <div className="content"></div> }
          </div>
        );
      }
    }


    export default connect(mapStateToProps)(App)
    });

2个回答

截至 2021 年 1 月,Metmask 已删除其注入的 window.web3

如果您想将您的 dApp 连接到 Metamask,我建议您尝试以下操作

export const connectWallet = async () => {
  if (window.ethereum) { //check if Metamask is installed
        try {
            const address = await window.ethereum.enable(); //connect Metamask
            const obj = {
                    connectedStatus: true,
                    status: "",
                    address: address
                }
                return obj;
             
        } catch (error) {
            return {
                connectedStatus: false,
                status: "🦊 Connect to Metamask using the button on the top right."
            }
        }
        
  } else {
        return {
            connectedStatus: false,
            status: "🦊 You must install Metamask into your browser: https://metamask.io/download.html"
        }
      } 
};

如果您想了解如何使用 Metamask 签署交易,我建议您查看这个超级 适合初学者的 NFT Minter 教程 。你做到了!

Sumi Mudgil
2021-04-23

在这里 有人说你可以通过以下方式解决“ethereum 未定义”

const { ethereum } = window

这在 React 18.1.0 中对我有用

plutownium
2022-05-27