我想从助记词中获取具有正确推导路径的地址
我对区块链编程和一般编程非常陌生。我想使用助记符种子短语和派生路径“m/44'/501'/0'/0”生成我的 SOL 地址。我找不到适合 python 的 BIP44 模块,您可以在其中指定派生路径。
I am very new to blockchain programming and programming in general. I want to generate my SOL address using the mnemonic seed phrase with the derivation path "m/44'/501'/0'/0". I can't find a proper BIP44 module for python where you can specify the derivation path.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
经过网上查了好久,终于找到了解决问题的方法,分享给大家。
此代码输出助记词的首地址。这仅适用于 Sollet 和 Phantom 钱包!
如果您使用的是 Solflare,则可以剪掉
bip44_chg_ctx = bip44_acc_ctx.Change(Bip44Changes.CHAIN_EXT)
行!After a long search through the internet, I have finally found a way of solving my problem that I want to share with you.
This code outputs the first address of your mnemonic. This is only for Sollet and Phantom wallet!
If you are using Solflare you can cut the line
bip44_chg_ctx = bip44_acc_ctx.Change(Bip44Changes.CHAIN_EXT)
out!2024 年 6 月为我工作:
Worked for me on Jun 2024: