summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-eth-account_0.12.1.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2024-04-17 09:40:32 +0800
committerKhem Raj <raj.khem@gmail.com>2024-04-17 23:47:25 -0700
commite4b687c2c4e6ed1099854f2b6808bf61c2b673a9 (patch)
tree9c3c332d57da47002f8188667c5fe50b72e5d3f9 /meta-python/recipes-devtools/python/python3-eth-account_0.12.1.bb
parent0069363f261ad4b1a5387d8b9e1a519920d837d6 (diff)
downloadmeta-openembedded-e4b687c2c4e6ed1099854f2b6808bf61c2b673a9.tar.gz
python3-eth-account: upgrade 0.11.0 -> 0.12.1
Changelog: ========= -Update documentation to include blob transaction signing example. -Import cytoolz methods via eth_utils instead of cytoolz directly -Add encode_typed_data to list of functions that return a SignableMessage -Add support for type 3, BlobTransaction, introduced by the Cancun network upgrade. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-eth-account_0.12.1.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-eth-account_0.12.1.bb20
1 files changed, 20 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-eth-account_0.12.1.bb b/meta-python/recipes-devtools/python/python3-eth-account_0.12.1.bb
new file mode 100644
index 0000000000..867aaaf025
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-eth-account_0.12.1.bb
@@ -0,0 +1,20 @@
1SUMMARY = "Assign Ethereum transactions and messages with local private keys."
2HOMEPAGE = "https://github.com/ethereum/eth-account"
3SECTION = "devel/python"
4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=16ffc86adf4293d4cfb204e77d62cfe6"
6
7SRC_URI[sha256sum] = "0374c5886f35780e1f23e50ce6b0482f3387646eceda544e97d69f17f6c216ee"
8
9inherit pypi setuptools3
10
11RDEPENDS:${PN} += " \
12 python3-bitarray \
13 python3-eth-abi \
14 python3-eth-keyfile \
15 python3-eth-keys \
16 python3-eth-rlp \
17 python3-eth-utils \
18 python3-hexbytes \
19 python3-rlp \
20"