開発環境
- macOS Mojave - Apple (OS)
- Emacs (Text Editor)
- Windows 10 Pro (OS)
- Visual Studio Code (Text Editor)
- Python 3.7 (プログラミング言語)
Programming Bitcoin: Learn How to Program Bitcoin from Scratch (Jimmy Song(著)、O'Reilly Media)のChapter 4(Serialization)、Big- and Little-Endian Redux、Exercises 9(86)の解答を求めてみる。
コード
Python 3
#!/usr/bin/env python3 from ecc import PrivateKey from password import SECRET if __name__ == '__main__': private_key = PrivateKey(SECRET) print(private_key.point.address(testnet=True))
入出力結果(cmd(コマンドプロンプト)、Terminal、Jupyter(IPython))
C:\Users\...>py sample9.py murpqTC7NCrrP4mWYis8vFvB9drQvJ7xga C:\Users\...>
問題なく成功。
0 コメント:
コメントを投稿