作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试了 @polkadot/util-crypto
lib 和 @polkadot/keyring
将公钥转换为 polkadot 地址,但没有帮助。
polkadot.js
有没有提供什么方法?
有关如何获取地址的步骤也很有效。
谢谢
最佳答案
@polkadot/util-crypto
公开了函数 encodeAddress
,它可以输入您的公钥字节/十六进制并输出 SS58 编码地址。如果你想获取特定网络的地址,比如 Polkadot,你需要提供一个辅助参数,即该网络的 SS58 前缀。在 Polkadot 的情况下,它是 0。
https://github.com/paritytech/substrate/wiki/External-Address-Format-(SS58)#address-type
例如:
let address = util_crypto.encodeAddress("0x263158a10b39debac59bd1239bc64fb4bd678f507814d24f59efd46279111c71", 0)
document.getElementById("output").innerText = address;
<script src="//unpkg.com/polkadot-js-bundle/polkadot.js"></script>
<div id="output"></output>
关于cryptography - 如何从 polkadot 公钥获取 Polkadot 地址?波卡.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63899101/
我是一名优秀的程序员,十分优秀!