Cannot read properties of undefined (reading ‘sendTransaction‘)

这篇具有很好参考价值的文章主要介绍了Cannot read properties of undefined (reading ‘sendTransaction‘)。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

这个是因为没有引入 和初始化  web3 对象。

原来的代码:

sendBtn.onclick = async () => {
    try {
        const  accounts = await  ethereum.request({method:'eth_requestAccounts'});
        console.info(accounts)
        web3.eth.sendTransaction({
            from:accounts[0],
            to:'0x4CCbD5D055fAd49d9278a6c43F1d27b9537737b5',
            value: 100000000000000000,
            gas: 21000,
            gasPrice: 20000000000
        },(result) =>{
            console.log(result);
        })
    }catch (e) {
        console.error(e)
    }
}

现在初始化 web3

sendBtn.onclick = async () => {
    try {
        const  accounts = await  ethereum.request({method:'eth_requestAccounts'});
        
        // 初始化 web3 
        web3 = new Web3(web3.currentProvider);
        if (web3.currentProvider.isMetaMask == true) {
            console.info("MetaMask可用")
        } else {
            console.info("非MetaMask环境")
        }

        web3.eth.sendTransaction({
            from:accounts[0],
            to:'0x4CCbD5D055fAd49d9278a6c43F1d27b9537737b5',
            value: 100000000000000000,
            gas: 21000,
            gasPrice: 20000000000
        },(result) =>{
            console.log(result);
        })
    }catch (e) {
        console.error(e)
    }
}

然后执行,后发现 Web3 is not defined 错误,

现在只要引入 web3.js 文件即可。文章来源地址https://www.toymoban.com/news/detail-756384.html

<script src="https://cdn.jsdelivr.net/npm/web3@latest/dist/web3.min.js"></script>

到了这里,关于Cannot read properties of undefined (reading ‘sendTransaction‘)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • TypeError: Cannot read properties of undefined (reading ‘replace‘)

    错误一:TypeError: Cannot read properties of undefined (reading \\\'replace\\\') 错误二:[Vue warn]: inject() can only be used inside setup() or functional conponents. 解释:当我们使用内置 use开头的钩子函数时,不能进行嵌套去拿实例。如: 解决:必须在 setup函数 第一层调用。

    2024年02月11日
    浏览(46)
  • TypeError: Cannot read properties of undefined (reading ‘map‘)

    控制台报错 TypeError: Cannot read properties of undefined (reading \\\'map\\\') 我的错误原因: 第一次页面渲染的时候,map的对象是undefined或null, 解决方法: 在前面加个要进行判断,当有值时再去遍历

    2024年02月07日
    浏览(50)
  • [已解决]Cannot read properties of undefined (reading ‘install‘)

    唉,对于计算机的bug是真的很害怕。但是这个错误,我发现解决起来还是蛮简单的。 参考这篇博客: (2条消息) 错误“Cannot read properties of undefined (reading ‘install‘) at Vue.use” 的解决方案_cannot read properties of undefined (reading \\\'inst_FunSober的博客-CSDN博客 原因主要就是我们在下载

    2024年02月13日
    浏览(44)
  • 解决 Cannot read property ‘key‘ of undefined

    现场环境分页查询某些条件项查询时,分页接口获取成功但是数据不渲染,页面像是卡住了: 报错 Cannot read property \\\'key\\\' of undefined 有人说 使用的el-pagination在格式化代码的时候layout属性的参数会多加空格. 参照 文档 ↓↓↓ 修改之后没有用,还是会报错 还有人说 发现是返回了

    2024年02月07日
    浏览(43)
  • Uncaught TypeError: Cannot read properties of undefined (reading ‘use‘)

    报错:Uncaught TypeError: Cannot read properties of undefined (reading ‘use’) 原因:Vue-router版本问题,在vue-router3可在router/index.js中安装router插件,但4不支持 解决: 1、在router/index.js中,导出{createRouter, createWebHistory}两个函数 使用createRouter来创建路由对象 使用createWebHistory函数赋值给histor

    2024年02月13日
    浏览(42)
  • Uncaught TypeError: Cannot read properties of undefined (reading ‘remove‘)

    在Vue 3中,你可能会遇到“Uncaught TypeError: Cannot read properties of undefined (reading \\\'remove\\\')”这样的错误,这通常是因为在组件销毁时,尝试访问已经被销毁的元素或事件监听器。 为了解决这个问题,你可以在组件销毁之前,确保移除所有的事件监听器和其他可能导致问题的操作。

    2024年01月20日
    浏览(61)
  • TypeError: Cannot read properties of undefined (reading ‘NAME‘)报错解决

    问题描述:前端一个el-table表格,一个医院查询到的科室从后端返回时总是显示不出来,response里面是有数据的,这个表格别的医院都能显示出科室,就那个医院显示不出。报错:TypeError: Cannot read properties of undefined (reading \\\'NAME\\\')  查找问题所在,发现el-table里面有一个:formatte

    2024年02月01日
    浏览(55)
  • Vue报错 Cannot read properties of undefined (reading ‘websiteDomains‘) 解决办法

    浏览器控制台如下报错: Unchecked runtime.lastError: The message port closed before a response was received. Uncaught (in promise) TypeError: Cannot read properties of undefined (reading \\\'websiteDomains\\\')     at xl-content.js:1:100558 此问题困扰了很久,偶然看到一篇博文,说是迅雷扩展问题 要想解决这个bug最有效的方

    2024年04月24日
    浏览(45)
  • vue项目中Cannot read properties of undefined (reading ‘getters‘)问题

    在vuex的index.js中引入分割的模块 import {toastStatus} from \\\"./toastStatus\\\"; 会报如下错误   toastStatus的index.js中是用export default整体导出的,但是在引用的时候用了按需导入的格式,所以报错 将花括号删除即可 import toastStatus from \\\"./toastStatus\\\";

    2024年02月12日
    浏览(52)
  • 前端解决 TypeError: Cannot read properties of undefined (reading ‘_c‘)

    每当打开页面包含有这个vue-json-viewer插件的JSON格式文件时,我本地代码运行是正常不报错的,但是线上的就会有报错问题 本地的正常显示   线上的显示,JSON是显示不出来  原因是vue-json-viewer插件的版本有问题,重新下载

    2024年02月08日
    浏览(101)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包