本文整理汇总了Python中account.BIP32_Account.get_pubkey_from_x方法的典型用法代码示例。如果您正苦于以下问题:Python BIP32_Account.get_pubkey_from_x方法的具体用法?Python BIP32_Account.get_pubkey_from_x怎么用?Python BIP32_Account.get_pubkey_from_x使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类account.BIP32_Account
的用法示例。
在下文中一共展示了BIP32_Account.get_pubkey_from_x方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: parse_xpub
# 需要导入模块: from account import BIP32_Account [as 别名]
# 或者: from account.BIP32_Account import get_pubkey_from_x [as 别名]
def parse_xpub(x_pubkey):
if x_pubkey[0:2] == 'ff':
from account import BIP32_Account
xpub, s = BIP32_Account.parse_xpubkey(x_pubkey)
pubkey = BIP32_Account.get_pubkey_from_x(xpub, s[0], s[1])
elif x_pubkey[0:2] == 'fe':
from account import OldAccount
mpk, s = OldAccount.parse_xpubkey(x_pubkey)
pubkey = OldAccount.get_pubkey_from_mpk(mpk.decode('hex'), s[0], s[1])
else:
pubkey = x_pubkey
return pubkey