Ethereum: Web3.pyで取得したトランザクション・ハッシュを文字列へ変換する
メモ書き。Web3.pyでtx_hashを扱う場合は str(tx_hash)
しても素直に文字列にならないので注意。
以下のように変換する必要がある。
tx_hash.hex()
原因
Web3.py でトランザクションを取得する場合、返り値の型は <class 'hexbytes.main.HexBytes'>
であるため。
吐かれるエラーの例
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xbb in position 0: invalid start byte
環境
- Python 3.6.1
- AWS Lambda
- Web3.py 4.2.0
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xbb in position 0: invalid start byte
- Python 3.6.1
- AWS Lambda
- Web3.py 4.2.0
Author And Source
この問題について(Ethereum: Web3.pyで取得したトランザクション・ハッシュを文字列へ変換する), 我々は、より多くの情報をここで見つけました https://qiita.com/sot528/items/d65fe32581902713ab98著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .