前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >walletConnect验证签名demo

walletConnect验证签名demo

作者头像
高大北
发布2022-06-14 19:56:40
7550
发布2022-06-14 19:56:40
举报
文章被收录于专栏:java架构计划训练营
代码语言:javascript
复制
<div @click="login()">
    <div >验证签名</div>
</div> 

import WalletConnect from "@walletconnect/node";
import utils from "web3-utils";
import QRCodeModal from "@walletconnect/qrcode-modal";

methods: {
login() {
      console.log("地址:",sessionStorage.getItem("address"))
          // Create a connector
          const connector = new WalletConnect(
              {
                bridge: "https://bridge.walletconnect.org", // Required
              },
              {
                clientMeta: {
                  description: "WalletConnect NodeJS Client",
                  url: "https://nodejs.org/en/",
                  icons: ["https://nodejs.org/static/images/logo.svg"],
                  name: "WalletConnect",
                },
              }
          );
          // Draft Message Parameters
          const message = new Date().getTime();
          console.log("时间戳:",message);
          const msgParams = [sessionStorage.getItem("address"), utils.utf8ToHex(message.toString())];
          console.log("参数",msgParams);
         // Sign message
          connector.signMessage(msgParams).then((result) => {
              //   // Returns signature.
                 console.log("result返回结果:",result)
               })
               .catch(error => {
                 // Error returned when rejected
                 console.error(error);
               })
   },
}

显示效果

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档