微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Walletconnect 不会在移动设备中触发应用程序而是重定向

如何解决Walletconnect 不会在移动设备中触发应用程序而是重定向

我不明白为什么当我通过提供程序调用一个方法时,walletconnect 一直在 https://link.trustwallet.com重定向我,而不是打开应用程序来批准交易。我已经为 Metamask 和 walletconnect 编写了代码,并使用了 ethersjs 来处理提供程序。

这是连接代码

 const getBlockchain = (typew) =>
  new Promise(async (resolve) => {
    var provider;
    if(typew == "Metamask"){
      /* @ts-ignore */
      if(window.ethereum) {
        /* @ts-ignore */
        await window.ethereum.enable();
        /* @ts-ignore */
        provider = new ethers.providers.Web3Provider(window.ethereum);
      }
    }
      
    if(typew == "walletconnect"){
        providerEth = new WalletConnectProvider({
          chainId: 56,rpc: {
            56: "https://bsc-dataseed.binance.org",}
        });

        await providerEth.enable();
        provider = new ethers.providers.Web3Provider(providerEth); 

        provider.off("disconnect");
        provider.on("disconnect",() => {
          closeBlockhain();
        })
    }
    
    
    if(provider !== undefined){
      const signer = provider.getSigner();
      /* @ts-ignore */
      const signerAddress:any = await signer.getAddress();

      const contract = new Contract(
        Contract.networks[56].address,Contract.abi,signer
      );

      const contract_two = new Contract(
        Contract_two.networks[56].address,Contract_two.abi,signer
      );

      configConnections = {
        connected: true,provider,contract,contract_two,signerAddress: signerAddress
      }

      resolve(configConnections);
    }
  
  resolve(configConnections);
 });

这是方法代码

let test = await configConnections.contract.awardItem(ethers.utils.formatBytes32String("1"),res.data.hash);

无法向自己解释为什么如果我在移动设备上打开应用程序并尝试调用方法,浏览器会将我重定向到其他页面而不是 TrustWallet 或 Metamask 应用程序。

谢谢。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其他元素将获得点击?
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。)
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbcDriver发生异常。为什么?
这是用Java进行XML解析的最佳库。
Java的PriorityQueue的内置迭代器不会以任何特定顺序遍历数据结构。为什么?
如何在Java中聆听按键时移动图像。
Java“Program to an interface”。这是什么意思?