ReactJS错误:预期&#x27 ;;','}'或< eof>

发布于 2025-02-08 11:12:18 字数 882 浏览 1 评论 0原文

Error: 
  This is the expression part of an expression statement
  cosnt sendTransaction = async (

我正在使用ReactJ并遵循教程,但是我的代码看起来相同,无法弄清楚如何解决此错误。

这是我的transactionContext.js

cosnt sendTransaction = async (
    metamask = eth, 
    connectedAccount = currentAccount
) => {
    try {
      if (!metamask) return alert ('Please install metamsk') 
      const { addressTo, amount } = formData
      const transactionContract =  getEthereumContract() 
      
      const parsedAmount = ethers.utils.parseEther(amount)

      await metamask.request({
         method: 'eth_sendTransaction',
         params: [
            {
              from: connectedAccount, 
              to: addressTo,
              gas: '0x7EF40', // 520000 Gwei
              value: parsedAmount._hex,
            },
         ],
      })
Error: 
  This is the expression part of an expression statement
  cosnt sendTransaction = async (

I am using ReactJS and following a tutorial, but my code looks the same and can not figure out how to solve this error.

This is my TransactionContext.js

cosnt sendTransaction = async (
    metamask = eth, 
    connectedAccount = currentAccount
) => {
    try {
      if (!metamask) return alert ('Please install metamsk') 
      const { addressTo, amount } = formData
      const transactionContract =  getEthereumContract() 
      
      const parsedAmount = ethers.utils.parseEther(amount)

      await metamask.request({
         method: 'eth_sendTransaction',
         params: [
            {
              from: connectedAccount, 
              to: addressTo,
              gas: '0x7EF40', // 520000 Gwei
              value: parsedAmount._hex,
            },
         ],
      })

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

以可爱出名 2025-02-15 11:12:18

抱歉,我无法添加评论,但是您的“ const”声明中存在错别字错误。你有“ cosnt”。

Sorry I could not add a comment, but there is a typo error in your 'const' declaration. You have 'cosnt'.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文