From c542f29a6236b71be20b28fb9774728ead7dd5df Mon Sep 17 00:00:00 2001 From: Spencer Miller Date: Wed, 11 Dec 2024 10:14:02 +0200 Subject: [PATCH] remove unused files --- .bumpversion.cfg | 22 - .pre-commit-config.yaml | 66 - .readthedocs.yaml | 24 - Makefile | 103 - docs/Makefile | 177 -- docs/README-freebsd.md | 61 - docs/README-linux.md | 47 - docs/README-osx.md | 34 - docs/README-windows.md | 7 - docs/_static/banner/banner-snek.jpg | Bin 183487 -> 0 bytes docs/_static/banner/feedback.png | Bin 63987 -> 0 bytes docs/_static/banner/user-survey.png | Bin 111350 -> 0 bytes docs/_static/css/banner.css | 11 - docs/_static/css/dark.css | 622 ---- docs/_static/css/toggle.css | 77 - docs/_static/js/matomo.js | 12 - docs/_static/js/toggle.js | 38 - docs/_templates/searchbox.html | 24 - docs/_templates/versions.html | 36 - docs/code_of_conduct.rst | 78 - docs/conf.py | 327 -- docs/constants.rst | 28 - docs/contributing.rst | 521 ---- docs/ens.rst | 27 - docs/ens_overview.rst | 354 --- docs/filters.rst | 1080 ------- docs/gas_price.rst | 119 - docs/index.rst | 48 - docs/internals.rst | 483 --- docs/middleware.rst | 613 ---- docs/migration.rst | 779 ----- docs/overview.rst | 317 -- docs/providers.rst | 593 ---- docs/quickstart.rst | 163 - docs/release_notes.rst | 4460 --------------------------- docs/resources.rst | 98 - docs/toc.rst | 55 - docs/transactions.rst | 196 -- docs/troubleshooting.rst | 478 --- docs/web3.beacon.rst | 559 ---- docs/web3.contract.rst | 1673 ---------- docs/web3.eth.account.rst | 454 --- docs/web3.eth.rst | 1335 -------- docs/web3.geth.rst | 541 ---- docs/web3.main.rst | 601 ---- docs/web3.net.rst | 49 - docs/web3.testing.rst | 55 - docs/web3.tracing.rst | 16 - docs/web3.utils.rst | 53 - newsfragments/README.md | 29 - newsfragments/validate_files.py | 45 - pyproject.toml | 126 - tox.ini | 89 - 53 files changed, 17803 deletions(-) delete mode 100644 .bumpversion.cfg delete mode 100644 .pre-commit-config.yaml delete mode 100644 .readthedocs.yaml delete mode 100644 Makefile delete mode 100644 docs/Makefile delete mode 100644 docs/README-freebsd.md delete mode 100644 docs/README-linux.md delete mode 100644 docs/README-osx.md delete mode 100644 docs/README-windows.md delete mode 100644 docs/_static/banner/banner-snek.jpg delete mode 100644 docs/_static/banner/feedback.png delete mode 100644 docs/_static/banner/user-survey.png delete mode 100644 docs/_static/css/banner.css delete mode 100644 docs/_static/css/dark.css delete mode 100644 docs/_static/css/toggle.css delete mode 100644 docs/_static/js/matomo.js delete mode 100644 docs/_static/js/toggle.js delete mode 100644 docs/_templates/searchbox.html delete mode 100644 docs/_templates/versions.html delete mode 100644 docs/code_of_conduct.rst delete mode 100644 docs/conf.py delete mode 100644 docs/constants.rst delete mode 100644 docs/contributing.rst delete mode 100644 docs/ens.rst delete mode 100644 docs/ens_overview.rst delete mode 100644 docs/filters.rst delete mode 100644 docs/gas_price.rst delete mode 100644 docs/index.rst delete mode 100644 docs/internals.rst delete mode 100644 docs/middleware.rst delete mode 100644 docs/migration.rst delete mode 100644 docs/overview.rst delete mode 100644 docs/providers.rst delete mode 100644 docs/quickstart.rst delete mode 100644 docs/release_notes.rst delete mode 100644 docs/resources.rst delete mode 100644 docs/toc.rst delete mode 100644 docs/transactions.rst delete mode 100644 docs/troubleshooting.rst delete mode 100644 docs/web3.beacon.rst delete mode 100644 docs/web3.contract.rst delete mode 100644 docs/web3.eth.account.rst delete mode 100644 docs/web3.eth.rst delete mode 100644 docs/web3.geth.rst delete mode 100644 docs/web3.main.rst delete mode 100644 docs/web3.net.rst delete mode 100644 docs/web3.testing.rst delete mode 100644 docs/web3.tracing.rst delete mode 100644 docs/web3.utils.rst delete mode 100644 newsfragments/README.md delete mode 100755 newsfragments/validate_files.py delete mode 100644 pyproject.toml delete mode 100644 tox.ini diff --git a/.bumpversion.cfg b/.bumpversion.cfg deleted file mode 100644 index 838e4a26b6..0000000000 --- a/.bumpversion.cfg +++ /dev/null @@ -1,22 +0,0 @@ -[bumpversion] -current_version = 7.6.0 -commit = True -tag = True -parse = (?P\d+)\.(?P\d+)\.(?P\d+)(-(?P[^.]*)\.(?P\d+))? -serialize = - {major}.{minor}.{patch}-{stage}.{devnum} - {major}.{minor}.{patch} - -[bumpversion:part:stage] -optional_value = stable -first_value = stable -values = - alpha - beta - stable - -[bumpversion:part:devnum] - -[bumpversion:file:setup.py] -search = version="{current_version}", -replace = version="{new_version}", diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml deleted file mode 100644 index 399eea42ef..0000000000 --- a/.pre-commit-config.yaml +++ /dev/null @@ -1,66 +0,0 @@ -exclude: '.project-template|docs/conf.py|.bumpversion.cfg' -repos: -- repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.5.0 - hooks: - - id: check-yaml - - id: check-toml - - id: end-of-file-fixer - - id: trailing-whitespace -- repo: https://github.com/asottile/pyupgrade - rev: v3.15.0 - hooks: - - id: pyupgrade - args: [--py38-plus] -- repo: https://github.com/psf/black - rev: 23.9.1 - hooks: - - id: black -- repo: https://github.com/PyCQA/flake8 - rev: 6.1.0 - hooks: - - id: flake8 - additional_dependencies: - - flake8-bugbear==23.9.16 - exclude: setup.py -- repo: https://github.com/PyCQA/autoflake - rev: v2.2.1 - hooks: - - id: autoflake -- repo: https://github.com/pycqa/isort - rev: 5.12.0 - hooks: - - id: isort -- repo: https://github.com/pycqa/pydocstyle - rev: 6.3.0 - hooks: - - id: pydocstyle - additional_dependencies: - - tomli # required until >= python311 -- repo: https://github.com/executablebooks/mdformat - rev: 0.7.17 - hooks: - - id: mdformat - additional_dependencies: - - mdformat-gfm -- repo: local - hooks: - - id: mypy-local - name: run mypy with all dev dependencies present - entry: python -m mypy -p web3 - language: system - always_run: true - pass_filenames: false -- repo: https://github.com/PrincetonUniversity/blocklint - rev: v0.2.5 - hooks: - - id: blocklint - exclude: 'normalization_tests.json|docs/(Makefile|release_notes.rst|web3.eth.rst|ens_overview.rst|troubleshooting.rst|transactions.rst|web3.contract.rst)' -- repo: local - hooks: - - id: check-rst-files - name: Check for .rst files in the top-level directory - entry: sh -c 'ls *.rst 1>/dev/null 2>&1 && { echo "found .rst file in top-level folder"; exit 1; } || exit 0' - language: system - always_run: true - pass_filenames: false diff --git a/.readthedocs.yaml b/.readthedocs.yaml deleted file mode 100644 index 4e8b2ecafe..0000000000 --- a/.readthedocs.yaml +++ /dev/null @@ -1,24 +0,0 @@ -version: 2 - -build: - os: ubuntu-22.04 - tools: - python: "3.9" - -sphinx: - configuration: docs/conf.py - fail_on_warning: true - -python: - install: - - method: pip - path: . - extra_requirements: - - docs - -# Build all formats for RTD Downloads - htmlzip, pdf, epub -# formats: all -# Turning off pdf for now - won't build due to long line lengths -formats: - - epub - - htmlzip diff --git a/Makefile b/Makefile deleted file mode 100644 index 8881793fe4..0000000000 --- a/Makefile +++ /dev/null @@ -1,103 +0,0 @@ -CURRENT_SIGN_SETTING := $(shell git config commit.gpgSign) - -.PHONY: clean-pyc clean-build docs - -help: - @echo "clean-build - remove build artifacts" - @echo "clean-pyc - remove Python file artifacts" - @echo "lint - fix linting issues with pre-commit" - @echo "test - run tests quickly with the default Python" - @echo "docs - generate docs and open in browser (linux-docs for version on linux)" - @echo "autobuild-docs - live update docs when changes are saved" - @echo "notes - consume towncrier newsfragments/ and update release notes in docs/" - @echo "release - package and upload a release (does not run notes target)" - @echo "dist - package" - -clean: clean-build clean-pyc - -clean-build: - rm -fr build/ - rm -fr dist/ - rm -fr *.egg-info - -clean-pyc: - find . -name '*.pyc' -exec rm -f {} + - find . -name '*.pyo' -exec rm -f {} + - find . -name '*~' -exec rm -f {} + - find . -name '__pycache__' -exec rm -rf {} + - -lint: - @pre-commit run --all-files --show-diff-on-failure || ( \ - echo "\n\n\n * pre-commit should have fixed the errors above. Running again to make sure everything is good..." \ - && pre-commit run --all-files --show-diff-on-failure \ - ) - -test: - python -m pytest tests/core tests/ens tests/integration - -benchmark: - python -m tox run -e benchmark - -autobuild-docs: - sphinx-autobuild --open-browser docs docs/_build/html - -build-docs: - sphinx-apidoc -o docs/ . setup.py "*conftest*" "tests" "web3/tools/*" - $(MAKE) -C docs clean - $(MAKE) -C docs html - $(MAKE) -C docs doctest - -build-docs-ci: - # pdf turned off for now - long line lengths break the build - # $(MAKE) -C docs latexpdf - $(MAKE) -C docs epub - -validate-newsfragments: - python ./newsfragments/validate_files.py - towncrier build --draft --version preview - -check-docs: build-docs validate-newsfragments - -check-docs-ci: build-docs build-docs-ci validate-newsfragments - -docs: check-docs - open docs/_build/html/index.html - -linux-docs: check-docs - xdg-open docs/_build/html/index.html - -check-bump: -ifndef bump - $(error bump must be set, typically: major, minor, patch, or devnum) -endif - -notes: check-bump validate-newsfragments - # Let UPCOMING_VERSION be the version that is used for the current bump - $(eval UPCOMING_VERSION=$(shell bumpversion $(bump) --dry-run --list | grep new_version= | sed 's/new_version=//g')) - # Now generate the release notes to have them included in the release commit - towncrier build --yes --version $(UPCOMING_VERSION) - # Before we bump the version, make sure that the towncrier-generated docs will build - make build-docs - git commit -m "Compile release notes for v$(UPCOMING_VERSION)" - -release: check-bump clean - # require that upstream is configured for ethereum/web3.py - @git remote -v | grep "upstream[[:space:]]git@github.com:ethereum/web3.py.git (push)\|upstream[[:space:]]https://github.com/ethereum/web3.py (push)" - # verify that docs build correctly - ./newsfragments/validate_files.py is-empty - make build-docs - CURRENT_SIGN_SETTING=$(git config commit.gpgSign) - git config commit.gpgSign true - bumpversion $(bump) - python -m build - git push upstream && git push upstream --tags - twine upload dist/* - git config commit.gpgSign "$(CURRENT_SIGN_SETTING)" - -dist: clean - python -m build - ls -l dist - -package: clean - python -m build - python web3/scripts/release/test_package.py diff --git a/docs/Makefile b/docs/Makefile deleted file mode 100644 index 3280093558..0000000000 --- a/docs/Makefile +++ /dev/null @@ -1,177 +0,0 @@ -# Makefile for Sphinx documentation -# - -# You can set these variables from the command line. -SPHINXOPTS = -SPHINXBUILD = sphinx-build -PAPER = -BUILDDIR = _build - -# User-friendly check for sphinx-build -ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1) -$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/) -endif - -# Internal variables. -PAPEROPT_a4 = -D latex_paper_size=a4 -PAPEROPT_letter = -D latex_paper_size=letter -ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . -# the i18n builder cannot share the environment and doctrees with the others -I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . - -.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext - -help: - @echo "Please use \`make ' where is one of" - @echo " html to make standalone HTML files" - @echo " dirhtml to make HTML files named index.html in directories" - @echo " singlehtml to make a single large HTML file" - @echo " pickle to make pickle files" - @echo " json to make JSON files" - @echo " htmlhelp to make HTML files and a HTML help project" - @echo " qthelp to make HTML files and a qthelp project" - @echo " devhelp to make HTML files and a Devhelp project" - @echo " epub to make an epub" - @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" - @echo " latexpdf to make LaTeX files and run them through pdflatex" - @echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx" - @echo " text to make text files" - @echo " man to make manual pages" - @echo " texinfo to make Texinfo files" - @echo " info to make Texinfo files and run them through makeinfo" - @echo " gettext to make PO message catalogs" - @echo " changes to make an overview of all changed/added/deprecated items" - @echo " xml to make Docutils-native XML files" - @echo " pseudoxml to make pseudoxml-XML files for display purposes" - @echo " linkcheck to check all external links for integrity" - @echo " doctest to run all doctests embedded in the documentation (if enabled)" - -clean: - rm -rf $(BUILDDIR)/* - -html: - $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html - @echo - @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." - -dirhtml: - $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml - @echo - @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml." - -singlehtml: - $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml - @echo - @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml." - -pickle: - $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle - @echo - @echo "Build finished; now you can process the pickle files." - -json: - $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json - @echo - @echo "Build finished; now you can process the JSON files." - -htmlhelp: - $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp - @echo - @echo "Build finished; now you can run HTML Help Workshop with the" \ - ".hhp project file in $(BUILDDIR)/htmlhelp." - -qthelp: - $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp - @echo - @echo "Build finished; now you can run "qcollectiongenerator" with the" \ - ".qhcp project file in $(BUILDDIR)/qthelp, like this:" - @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/web3.qhcp" - @echo "To view the help file:" - @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/web3.qhc" - -devhelp: - $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp - @echo - @echo "Build finished." - @echo "To view the help file:" - @echo "# mkdir -p $$HOME/.local/share/devhelp/web3" - @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/web3" - @echo "# devhelp" - -epub: - $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub - @echo - @echo "Build finished. The epub file is in $(BUILDDIR)/epub." - -latex: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo - @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex." - @echo "Run \`make' in that directory to run these through (pdf)latex" \ - "(use \`make latexpdf' here to do that automatically)." - -latexpdf: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo "Running LaTeX files through pdflatex..." - $(MAKE) -C $(BUILDDIR)/latex all-pdf - @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." - -latexpdfja: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo "Running LaTeX files through platex and dvipdfmx..." - $(MAKE) -C $(BUILDDIR)/latex all-pdf-ja - @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." - -text: - $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text - @echo - @echo "Build finished. The text files are in $(BUILDDIR)/text." - -man: - $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man - @echo - @echo "Build finished. The manual pages are in $(BUILDDIR)/man." - -texinfo: - $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo - @echo - @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo." - @echo "Run \`make' in that directory to run these through makeinfo" \ - "(use \`make info' here to do that automatically)." - -info: - $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo - @echo "Running Texinfo files through makeinfo..." - make -C $(BUILDDIR)/texinfo info - @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo." - -gettext: - $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale - @echo - @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale." - -changes: - $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes - @echo - @echo "The overview file is in $(BUILDDIR)/changes." - -linkcheck: - $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck - @echo - @echo "Link check complete; look for any errors in the above output " \ - "or in $(BUILDDIR)/linkcheck/output.txt." - -doctest: - $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest - @echo "Testing of doctests in the sources finished, look at the " \ - "results in $(BUILDDIR)/doctest/output.txt." - -xml: - $(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml - @echo - @echo "Build finished. The XML files are in $(BUILDDIR)/xml." - -pseudoxml: - $(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml - @echo - @echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml." diff --git a/docs/README-freebsd.md b/docs/README-freebsd.md deleted file mode 100644 index 17c0fc2c2e..0000000000 --- a/docs/README-freebsd.md +++ /dev/null @@ -1,61 +0,0 @@ -# web3.py on FreeBSD (11.2) - -## Developer Setup - -### Prerequisites - -Make sure you've UTF-8 defined for charset and lang in your [~/.login_conf](https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/using-localization.html), -otherwise almost every Python 3 module will fail to install. - -`~/.login_conf`: - -``` -me:\ - :charset=UTF-8:\ - :lang=en_US.UTF-8: -``` - -Also make sure you've defined valid include and library paths in `~/.pydistutils.cfg`, otherwise native compilations fail. - -`~/.pydistutils.cfg`: - -``` -[build_ext] -include_dirs=/usr/local/include -library_dirs=/usr/local/lib -``` - -``` -sudo pkg install python3 py36-virtualenv git leveldb libxml2 libxslt pkgconf gmake secp256k1 - -# hack around https://github.com/ethereum/ethash/pull/107#issuecomment-445072692 -sudo touch /usr/local/include/alloca.h - -mkdir -p /tmp/venv_python -virtualenv-3.6 /tmp/venv_python/python3 -source /tmp/venv_python/python3/bin/activate.csh - -pip install coincurve - -cd /tmp -git clone https://github.com/ethereum/web3.py.git -cd web3.py - -# assuming you're using tcsh -pip install -e .\[dev\] -``` - -### Test - -#### Prerequisites for integration tests: - -##### geth (https://github.com/ethereum/go-ethereum/wiki/Installation-Instructions-for-FreeBSD) - -``` -pkg install go -cd /tmp -git clone https://github.com/ethereum/go-ethereum -cd go-ethereum -make geth -cp build/bin/geth /usr/local/bin/ -``` diff --git a/docs/README-linux.md b/docs/README-linux.md deleted file mode 100644 index 74dc10c774..0000000000 --- a/docs/README-linux.md +++ /dev/null @@ -1,47 +0,0 @@ -# web3.py on Linux - -## Developer Setup - -1. Install all of the package dependencies - -```sh -sudo apt-get install libssl-dev libffi-dev autoconf automake libtool -# ^ This is for Debian-like systems. TODO: Add more platforms - -sudo pacman -Sy libsecp256k1 -# ^ This is for ArchLinux system - -sudo dnf install openssl-devel libffi-devel autoconf automake libtool -# ^ This is for Fedora. -``` - -2. Install `leveldb` (TODO) - -## Examples for specific operating systems - -### Ubuntu 16.04 - -```sh -#!/bin/bash - -sudo apt-get update -sudo apt-get -y upgrade - -sudo apt-get -y install build-essential -#RESOLVES ERROR: unable to execute 'x86_64-linux-gnu-gcc': No such file or directory error: command 'x86_64-linux-gnu-gcc' failed with exit status 1 - -sudo apt-get -y install python3-dev -#RESOLVES ERROR: cytoolz/dicttoolz.c:17:20: fatal error: Python.h: No such file or directory compilation terminated. error: command 'x86_64-linux-gnu-gcc' failed with exit status 1 - -sudo apt-get -y install python3-venv -#RESOLVES ERROR: The virtual environment was not created successfully because ensurepip is not available. On Debian/Ubuntu systems, you need to install the python3-venv package using the following command. - -cd ~ -git clone https://github.com/ethereum/web3.py.git -cd web3.py -python3 -m venv venv -. venv/bin/activate -pip install --upgrade pip -pip install -e ".[dev]" - -``` diff --git a/docs/README-osx.md b/docs/README-osx.md deleted file mode 100644 index f5aab28f06..0000000000 --- a/docs/README-osx.md +++ /dev/null @@ -1,34 +0,0 @@ -# web3.py on OSX - -## Developer Setup - -1. Install XCode command line tools - -```sh -xcode-select --install -``` - -2. Install all of the package dependencies - -```sh -brew install openssl libffi autoconf automake libtool -``` - -3. Install `leveldb` - -```sh -brew install leveldb -``` - -> If you are on `>=OSX 10.15 Catalina` you may encounter the following error with the default `ZSH` shell. This can be fixed by wrapping the `[dev]` part in quotes. - -```sh -pip install -e .[dev] -zsh: no matches found: .[dev] -``` - -Run install commands as follows: - -```sh -pip install -e .'[dev]' -``` diff --git a/docs/README-windows.md b/docs/README-windows.md deleted file mode 100644 index 0c20c03d16..0000000000 --- a/docs/README-windows.md +++ /dev/null @@ -1,7 +0,0 @@ -# web3.py on Windows - -## Developer Setup - -1. Install all of the package dependencies (TODO) - -1. Install `leveldb` (TODO) diff --git a/docs/_static/banner/banner-snek.jpg b/docs/_static/banner/banner-snek.jpg deleted file mode 100644 index f49a07dd8cf93ccb24d148204de056cda8748acc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 183487 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†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�(8 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 gt=pyN5;vg({LoU!=qO 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 Cyk9o} diff --git a/docs/_static/css/banner.css b/docs/_static/css/banner.css deleted file mode 100644 index 939a201285..0000000000 --- a/docs/_static/css/banner.css +++ /dev/null @@ -1,11 +0,0 @@ -/** - * Styles to display banner under the search box. - */ - -.search-banner-wrapper img { - width: auto; - height: auto; - padding: 0; - border-radius: 0; - margin: 12px 0 0 0; -} diff --git a/docs/_static/css/dark.css b/docs/_static/css/dark.css deleted file mode 100644 index da2235b5b0..0000000000 --- a/docs/_static/css/dark.css +++ /dev/null @@ -1,622 +0,0 @@ -/* links */ - -a, -a:visited { - color: #aaddff; -} - - -/* code directives */ - -.method dt, -.class dt, -.data dt, -.attribute dt, -.function dt, -.classmethod dt, -.exception dt, -.descclassname, -.descname { - background-color: #2d2d2d !important; -} - -.rst-content dl:not(.docutils) dt { - color: #aaddff; - background-color: #2d2d2d; - border-top: solid 3px #525252; - border-left: solid 3px #525252; -} - -em.property { - color: #888888; -} - - -/* tables */ - -.rst-content table.docutils thead { - color: #ddd; -} - -.rst-content table.docutils td { - border: 0px; -} - -.rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td { - background-color: #5a5a5a; -} - - -/* inlined code highlights */ - -.xref, -.py-meth, -.rst-content a code { - color: #aaddff !important; - font-weight: normal !important; -} - -.rst-content code { - color: #eee !important; - font-weight: normal !important; -} - -code.literal { - background-color: #2d2d2d !important; - border: 1px solid #6d6d6d !important; -} - -code.docutils.literal.notranslate { - color: #ddd; -} - - -/* notes, warnings, hints */ - -.hint .admonition-title { - background: #2aa87c !important; -} - -.warning .admonition-title { - background: #cc4444 !important; -} - -.admonition-title { - background: #3a7ca8 !important; -} - -.admonition, -.note { - background-color: #2d2d2d !important; -} - - -/* table of contents */ - -.wy-nav-content-wrap { - background-color: rgba(0, 0, 0, 0.6) !important; -} - -.sidebar { - background-color: #191919 !important; -} - -.sidebar-title { - background-color: #2b2b2b !important; -} - -.wy-menu-vertical a { - color: #ddd; -} - -.wy-menu-vertical code.docutils.literal.notranslate { - color: #404040; - background: none !important; - border: none !important; -} - -.wy-nav-content { - background: #3c3c3c; - color: #dddddd; -} - -.wy-menu-vertical li.on a, -.wy-menu-vertical li.current>a { - background: #a3a3a3; - border-bottom: 0px !important; - border-top: 0px !important; -} - -.wy-menu-vertical li.current { - background: #b3b3b3; -} - -.toc-backref { - color: grey !important; -} - -.highlight .hll { - background-color: #49483e -} - -.highlight { - background: #222; - color: #f8f8f2 -} - -.highlight .c { - color: #888 -} - - -/* Comment */ - -.highlight .err { - color: #960050; - background-color: #1e0010 -} - - -/* Error */ - -.highlight .k { - color: #66d9ef -} - - -/* Keyword */ - -.highlight .l { - color: #ae81ff -} - - -/* Literal */ - -.highlight .n { - color: #f8f8f2 -} - - -/* Name */ - -.highlight .o { - color: #f92672 -} - - -/* Operator */ - -.highlight .p { - color: #f8f8f2 -} - - -/* Punctuation */ - -.highlight .ch { - color: #888 -} - - -/* Comment.Hashbang */ - -.highlight .cm { - color: #888 -} - - -/* Comment.Multiline */ - -.highlight .cp { - color: #888 -} - - -/* Comment.Preproc */ - -.highlight .cpf { - color: #888 -} - - -/* Comment.PreprocFile */ - -.highlight .c1 { - color: #888 -} - - -/* Comment.Single */ - -.highlight .cs { - color: #888 -} - - -/* Comment.Special */ - -.highlight .gd { - color: #f92672 -} - - -/* Generic.Deleted */ - -.highlight .ge { - font-style: italic -} - - -/* Generic.Emph */ - -.highlight .gi { - color: #a6e22e -} - - -/* Generic.Inserted */ - -.highlight .gs { - font-weight: bold -} - - -/* Generic.Strong */ - -.highlight .gu { - color: #888 -} - - -/* Generic.Subheading */ - -.highlight .kc { - color: #66d9ef -} - - -/* Keyword.Constant */ - -.highlight .kd { - color: #66d9ef -} - - -/* Keyword.Declaration */ - -.highlight .kn { - color: #f92672 -} - - -/* Keyword.Namespace */ - -.highlight .kp { - color: #66d9ef -} - - -/* Keyword.Pseudo */ - -.highlight .kr { - color: #66d9ef -} - - -/* Keyword.Reserved */ - -.highlight .kt { - color: #66d9ef -} - - -/* Keyword.Type */ - -.highlight .ld { - color: #e6db74 -} - - -/* Literal.Date */ - -.highlight .m { - color: #ae81ff -} - - -/* Literal.Number */ - -.highlight .s { - color: #e6db74 -} - - -/* Literal.String */ - -.highlight .na { - color: #a6e22e -} - - -/* Name.Attribute */ - -.highlight .nb { - color: #f8f8f2 -} - - -/* Name.Builtin */ - -.highlight .nc { - color: #a6e22e -} - - -/* Name.Class */ - -.highlight .no { - color: #66d9ef -} - - -/* Name.Constant */ - -.highlight .nd { - color: #a6e22e -} - - -/* Name.Decorator */ - -.highlight .ni { - color: #f8f8f2 -} - - -/* Name.Entity */ - -.highlight .ne { - color: #a6e22e -} - - -/* Name.Exception */ - -.highlight .nf { - color: #a6e22e -} - - -/* Name.Function */ - -.highlight .nl { - color: #f8f8f2 -} - - -/* Name.Label */ - -.highlight .nn { - color: #f8f8f2 -} - - -/* Name.Namespace */ - -.highlight .nx { - color: #a6e22e -} - - -/* Name.Other */ - -.highlight .py { - color: #f8f8f2 -} - - -/* Name.Property */ - -.highlight .nt { - color: #f92672 -} - - -/* Name.Tag */ - -.highlight .nv { - color: #f8f8f2 -} - - -/* Name.Variable */ - -.highlight .ow { - color: #f92672 -} - - -/* Operator.Word */ - -.highlight .w { - color: #f8f8f2 -} - - -/* Text.Whitespace */ - -.highlight .mb { - color: #ae81ff -} - - -/* Literal.Number.Bin */ - -.highlight .mf { - color: #ae81ff -} - - -/* Literal.Number.Float */ - -.highlight .mh { - color: #ae81ff -} - - -/* Literal.Number.Hex */ - -.highlight .mi { - color: #ae81ff -} - - -/* Literal.Number.Integer */ - -.highlight .mo { - color: #ae81ff -} - - -/* Literal.Number.Oct */ - -.highlight .sa { - color: #e6db74 -} - - -/* Literal.String.Affix */ - -.highlight .sb { - color: #e6db74 -} - - -/* Literal.String.Backtick */ - -.highlight .sc { - color: #e6db74 -} - - -/* Literal.String.Char */ - -.highlight .dl { - color: #e6db74 -} - - -/* Literal.String.Delimiter */ - -.highlight .sd { - color: #e6db74 -} - - -/* Literal.String.Doc */ - -.highlight .s2 { - color: #e6db74 -} - - -/* Literal.String.Double */ - -.highlight .se { - color: #ae81ff -} - - -/* Literal.String.Escape */ - -.highlight .sh { - color: #e6db74 -} - - -/* Literal.String.Heredoc */ - -.highlight .si { - color: #e6db74 -} - - -/* Literal.String.Interpol */ - -.highlight .sx { - color: #e6db74 -} - - -/* Literal.String.Other */ - -.highlight .sr { - color: #e6db74 -} - - -/* Literal.String.Regex */ - -.highlight .s1 { - color: #e6db74 -} - - -/* Literal.String.Single */ - -.highlight .ss { - color: #e6db74 -} - - -/* Literal.String.Symbol */ - -.highlight .bp { - color: #f8f8f2 -} - - -/* Name.Builtin.Pseudo */ - -.highlight .fm { - color: #a6e22e -} - - -/* Name.Function.Magic */ - -.highlight .vc { - color: #f8f8f2 -} - - -/* Name.Variable.Class */ - -.highlight .vg { - color: #f8f8f2 -} - - -/* Name.Variable.Global */ - -.highlight .vi { - color: #f8f8f2 -} - - -/* Name.Variable.Instance */ - -.highlight .vm { - color: #f8f8f2 -} - - -/* Name.Variable.Magic */ - -.highlight .il { - color: #ae81ff -} - - -/* Literal.Number.Integer.Long */ diff --git a/docs/_static/css/toggle.css b/docs/_static/css/toggle.css deleted file mode 100644 index d2f278d1a2..0000000000 --- a/docs/_static/css/toggle.css +++ /dev/null @@ -1,77 +0,0 @@ -input[type=checkbox] { - visibility: hidden; - height: 0; - width: 0; - margin: 0; -} - -.rst-versions .rst-current-version { - padding: 10px; - display: flex; - justify-content: space-between; -} - -.rst-versions .rst-current-version .fa-book, -.rst-versions .rst-current-version .fa-v, -.rst-versions .rst-current-version .fa-caret-down { - height: 24px; - line-height: 24px; - vertical-align: middle; -} - -.rst-versions .rst-current-version .fa-element { - width: 80px; - text-align: center; -} - -.rst-versions .rst-current-version .fa-book { - text-align: left; -} - -.rst-versions .rst-current-version .fa-v { - color: #27AE60; - text-align: right; -} - -label { - margin: 0 auto; - display: inline-block; - justify-content: center; - align-items: right; - border-radius: 100px; - position: relative; - cursor: pointer; - text-indent: -9999px; - width: 50px; - height: 21px; - background: #000; -} - -label:after { - border-radius: 50%; - position: absolute; - content: ''; - background: #fff; - width: 15px; - height: 15px; - top: 3px; - left: 3px; - transition: ease-in-out 200ms; -} - -input:checked+label { - background: #3a7ca8; -} - -input:checked+label:after { - left: calc(100% - 5px); - transform: translateX(-100%); -} - -html.transition, -html.transition *, -html.transition *:before, -html.transition *:after { - transition: ease-in-out 200ms !important; - transition-delay: 0 !important; -} diff --git a/docs/_static/js/matomo.js b/docs/_static/js/matomo.js deleted file mode 100644 index 3c9d5c0d33..0000000000 --- a/docs/_static/js/matomo.js +++ /dev/null @@ -1,12 +0,0 @@ -var _paq = window._paq = window._paq || []; -/* tracker methods like "setCustomDimension" should be called before "trackPageView" */ -_paq.push(["setExcludedQueryParams", ["code","gist"]]); -_paq.push(['trackPageView']); -_paq.push(['enableLinkTracking']); -(function() { - var u="https://ethereumfoundation.matomo.cloud/"; - _paq.push(['setTrackerUrl', u+'matomo.php']); - _paq.push(['setSiteId', '18']); - var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; - g.async=true; g.src='//cdn.matomo.cloud/ethereumfoundation.matomo.cloud/matomo.js'; s.parentNode.insertBefore(g,s); -})(); diff --git a/docs/_static/js/toggle.js b/docs/_static/js/toggle.js deleted file mode 100644 index c03c7713ed..0000000000 --- a/docs/_static/js/toggle.js +++ /dev/null @@ -1,38 +0,0 @@ -document.addEventListener('DOMContentLoaded', function() { - - function toggleCssMode(isDay) { - var mode = (isDay ? "Day" : "Night"); - localStorage.setItem("css-mode", mode); - - var daysheet = $('link[href="_static/pygments.css"]')[0].sheet; - daysheet.disabled = !isDay; - - var nightsheet = $('link[href="_static/css/dark.css"]')[0]; - if (!isDay && nightsheet === undefined) { - var element = document.createElement("link"); - element.setAttribute("rel", "stylesheet"); - element.setAttribute("type", "text/css"); - element.setAttribute("href", "_static/css/dark.css"); - document.getElementsByTagName("head")[0].appendChild(element); - return; - } - if (nightsheet !== undefined) { - nightsheet.sheet.disabled = isDay; - } - } - - var initial = localStorage.getItem("css-mode") != "Night"; - var checkbox = document.querySelector('input[name=mode]'); - - toggleCssMode(initial); - checkbox.checked = initial; - - checkbox.addEventListener('change', function() { - document.documentElement.classList.add('transition'); - window.setTimeout(() => { - document.documentElement.classList.remove('transition'); - }, 1000) - toggleCssMode(this.checked); - }) - -}); diff --git a/docs/_templates/searchbox.html b/docs/_templates/searchbox.html deleted file mode 100644 index c20ecea99d..0000000000 --- a/docs/_templates/searchbox.html +++ /dev/null @@ -1,24 +0,0 @@ -{%- if 'singlehtml' not in builder %} -
-
- - - -
-
- -{# Include user survey banner under the search box #} -
-{%- endif %} diff --git a/docs/_templates/versions.html b/docs/_templates/versions.html deleted file mode 100644 index 9d7c7b56ec..0000000000 --- a/docs/_templates/versions.html +++ /dev/null @@ -1,36 +0,0 @@ -{# Add rst-badge after rst-versions for small badge style. #} -
- - RTD - - - - - - - v: {{ current_version }} - - -
-
-
{{ _('Versions') }}
{% for slug, url in versions %} -
{{ slug }}
- {% endfor %} -
-
-
{{ _('Downloads') }}
{% for type, url in downloads %} -
{{ type }}
- {% endfor %} -
-
- {# Translators: The phrase "Read the Docs" is not translated #} -
{{ _('On Read the Docs') }}
-
- {{ _('Project Home') }} -
-
- {{ _('Builds') }} -
-
-
-
diff --git a/docs/code_of_conduct.rst b/docs/code_of_conduct.rst deleted file mode 100644 index 64954bd31c..0000000000 --- a/docs/code_of_conduct.rst +++ /dev/null @@ -1,78 +0,0 @@ -Code of Conduct ---------------- - -Our Pledge -~~~~~~~~~~ - -In the interest of fostering an open and welcoming environment, we as -contributors and maintainers pledge to making participation in our project and -our community a harassment-free experience for everyone, regardless of age, body -size, disability, ethnicity, gender identity and expression, level of experience, -education, socio-economic status, nationality, personal appearance, race, -religion, or sexual identity and orientation. - -Our Standards -~~~~~~~~~~~~~ - -Examples of behavior that contributes to creating a positive environment -include: - -* Using welcoming and inclusive language -* Being respectful of differing viewpoints and experiences -* Gracefully accepting constructive criticism -* Focusing on what is best for the community -* Showing empathy towards other community members - -Examples of unacceptable behavior by participants include: - -* The use of sexualized language or imagery and unwelcome sexual attention or - advances -* Trolling, insulting/derogatory comments, and personal or political attacks -* Public or private harassment -* Publishing others' private information, such as a physical or electronic - address, without explicit permission -* Other conduct which could reasonably be considered inappropriate in a - professional setting - -Our Responsibilities -~~~~~~~~~~~~~~~~~~~~ - -Project maintainers are responsible for clarifying the standards of acceptable -behavior and are expected to take appropriate and fair corrective action in -response to any instances of unacceptable behavior. - -Project maintainers have the right and responsibility to remove, edit, or -reject comments, commits, code, wiki edits, issues, and other contributions -that are not aligned to this Code of Conduct, or to ban temporarily or -permanently any contributor for other behaviors that they deem inappropriate, -threatening, offensive, or harmful. - -Scope -~~~~~ - -This Code of Conduct applies both within project spaces and in public spaces -when an individual is representing the project or its community. Examples of -representing a project or community include using an official project e-mail -address, posting via an official social media account, or acting as an appointed -representative at an online or offline event. Representation of a project may be -further defined and clarified by project maintainers. - -Enforcement -~~~~~~~~~~~ - -Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting the project team at snakecharmers@ethereum.org. All -complaints will be reviewed and investigated and will result in a response that -is deemed necessary and appropriate to the circumstances. The project team is -obligated to maintain confidentiality with regard to the reporter of an incident. -Further details of specific enforcement policies may be posted separately. - -Project maintainers who do not follow or enforce the Code of Conduct in good -faith may face temporary or permanent repercussions as determined by other -members of the project's leadership. - -Attribution -~~~~~~~~~~~ - -This Code of Conduct is adapted from the `Contributor Covenant `_, version 1.4, -available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html diff --git a/docs/conf.py b/docs/conf.py deleted file mode 100644 index 2f0405fe34..0000000000 --- a/docs/conf.py +++ /dev/null @@ -1,327 +0,0 @@ -# web3.py documentation build configuration file, created by -# sphinx-quickstart on Thu Oct 16 20:43:24 2014. -# -# This file is execfile()d with the current directory set to its -# containing dir. -# -# Note that not all possible configuration values are present in this -# autogenerated file. -# -# All configuration values have a default; values that are commented out -# serve to show the default. - -# If extensions (or modules to document with autodoc) are in another directory, -# add these directories to sys.path here. If the directory is relative to the -# documentation root, use os.path.abspath to make it absolute, like shown here. -# sys.path.insert(0, os.path.abspath('.')) - -import os - -DIR = os.path.dirname("__file__") -with open(os.path.join(DIR, "../setup.py"), "r") as f: - for line in f: - if "version=" in line: - setup_version = line.split('"')[1] - break - -# -- General configuration ------------------------------------------------ - -# If your documentation needs a minimal Sphinx version, state it here. -# needs_sphinx = '1.0' - -# Add any Sphinx extension module names here, as strings. They can be -# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom -# ones. -extensions = [ - "sphinx.ext.autodoc", - "sphinx.ext.doctest", - "sphinx.ext.intersphinx", - "sphinx_rtd_theme", -] - -# Add any paths that contain templates here, relative to this directory. -templates_path = ["_templates"] - -# The suffix of source filenames. -source_suffix = ".rst" - -# The encoding of source files. -# source_encoding = 'utf-8-sig' - -# The master toctree document. -master_doc = "index" - -# General information about the project. -project = "web3.py" -copyright = "2016-2024, The Ethereum Foundation" - -__version__ = setup_version -# The version info for the project you're documenting, acts as replacement for -# |version| and |release|, also used in various other places throughout the -# built documents. -# -# The short X.Y version. -version = ".".join(__version__.split(".")[:2]) -# The full version, including alpha/beta/rc tags. -release = __version__ - -# The language for content autogenerated by Sphinx. Refer to documentation -# for a list of supported languages. -# language = None - -# There are two options for replacing |today|: either, you set today to some -# non-false value, then it is used: -# today = '' -# Else, today_fmt is used as the format for a strftime call. -# today_fmt = '%B %d, %Y' - -# List of patterns, relative to source directory, that match files and -# directories to ignore when looking for source files. -exclude_patterns = [ - "_build", - "modules.rst", - "web3.auto.rst", - "web3.gas_strategies.rst", - "web3.middleware.rst", - "web3.providers.eth_tester.rst", - "web3.providers.persistent.rst", - "web3.providers.rpc.rst", - "web3.providers.rst", - "web3.rst", - "web3.scripts.*", - "web3.testing.rst", - "web3.tools.*", -] - -# The reST default role (used for this markup: `text`) to use for all -# documents. -# default_role = None - -# If true, '()' will be appended to :func: etc. cross-reference text. -# add_function_parentheses = True - -# If true, the current module name will be prepended to all description -# unit titles (such as .. function::). -# add_module_names = True - -# If true, sectionauthor and moduleauthor directives will be shown in the -# output. They are ignored by default. -# show_authors = False - -# The name of the Pygments (syntax highlighting) style to use. -pygments_style = "sphinx" - -# A list of ignored prefixes for module index sorting. -# modindex_common_prefix = [] - -# If true, keep warnings as "system message" paragraphs in the built documents. -# keep_warnings = False - - -# -- Options for HTML output ---------------------------------------------- - -# The theme to use for HTML and HTML Help pages. See the documentation for -# a list of builtin themes. -html_theme = "sphinx_rtd_theme" - -# Theme options are theme-specific and customize the look and feel of a theme -# further. For a list of options available for each theme, see the -# documentation. -# html_theme_options = {} - -# Add any paths that contain custom themes here, relative to this directory. - -# The name for this set of Sphinx documents. If None, it defaults to -# " v documentation". -# html_title = None - -# A shorter title for the navigation bar. Default is the same as html_title. -# html_short_title = None - -# The name of an image file (relative to this directory) to place at the top -# of the sidebar. -# html_logo = None - -# The name of an image file (within the static path) to use as favicon of the -# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 -# pixels large. -# html_favicon = None - -# Add any paths that contain custom static files (such as style sheets) here, -# relative to this directory. They are copied after the builtin static files, -# so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ["_static"] - -html_css_files = [ - "css/toggle.css", - "css/banner.css", -] - -html_js_files = ["js/matomo.js", "js/toggle.js"] - -# Add any extra paths that contain custom files (such as robots.txt or -# .htaccess) here, relative to this directory. These files are copied -# directly to the root of the documentation. -html_extra_path = ["_static/css"] - -# If not '', a 'Last updated on:' timestamp is inserted at every page bottom, -# using the given strftime format. -# html_last_updated_fmt = '%b %d, %Y' - -# If true, SmartyPants will be used to convert quotes and dashes to -# typographically correct entities. -# html_use_smartypants = True - -# Custom sidebar templates, maps document names to template names. -# html_sidebars = {} - -# Additional templates that should be rendered to pages, maps page names to -# template names. -# html_additional_pages = {} - -# If false, no module index is generated. -# html_domain_indices = True - -# If false, no index is generated. -# html_use_index = True - -# If true, the index is split into individual pages for each letter. -# html_split_index = False - -# If true, links to the reST sources are added to the pages. -# html_show_sourcelink = True - -# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. -# html_show_sphinx = True - -# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. -# html_show_copyright = True - -# If true, an OpenSearch description file will be output, and all pages will -# contain a tag referring to it. The value of this option must be the -# base URL from which the finished HTML is served. -# html_use_opensearch = '' - -# This is the file name suffix for HTML files (e.g. ".xhtml"). -# html_file_suffix = None - -# Output file base name for HTML help builder. -htmlhelp_basename = "web3docs" - - -# -- Options for LaTeX output --------------------------------------------- - -latex_engine = "xelatex" - -latex_elements = { - # The paper size ('letterpaper' or 'a4paper'). - #'papersize': 'letterpaper', - # The font size ('10pt', '11pt' or '12pt'). - #'pointsize': '10pt', - # Additional stuff for the LaTeX preamble. - #'preamble': '', -} - -# Grouping the document tree into LaTeX files. List of tuples -# (source start file, target name, title, -# author, documentclass [howto, manual, or own class]). -latex_documents = [ - ( - "index", - "web3.tex", - "web3.py Documentation", - "The Ethereum Foundation", - "manual", - ), -] - -# The name of an image file (relative to this directory) to place at the top of -# the title page. -# latex_logo = None - -# For "manual" documents, if this is true, then toplevel headings are parts, -# not chapters. -# latex_use_parts = False - -# If true, show page references after internal links. -# latex_show_pagerefs = False - -# If true, show URL addresses after external links. -# latex_show_urls = False - -# Documents to append as an appendix to all manuals. -# latex_appendices = [] - -# If false, no module index is generated. -# latex_domain_indices = True - - -# -- Options for manual page output --------------------------------------- - -# One entry per manual page. List of tuples -# (source start file, name, description, authors, manual section). -man_pages = [ - ( - "index", - "web3", - "web3.py Documentation", - ["The Ethereum Foundation"], - 1, - ) -] - -# If true, show URL addresses after external links. -# man_show_urls = False - - -# -- Options for Texinfo output ------------------------------------------- - -# Grouping the document tree into Texinfo files. List of tuples -# (source start file, target name, title, author, -# dir menu entry, description, category) -texinfo_documents = [ - ( - "index", - "web3.py", - "web3.py Documentation", - "The Ethereum Foundation", - "web3.py", - "A Python library for interacting with Ethereum", - "Miscellaneous", - ), -] - -# Documents to append as an appendix to all manuals. -# texinfo_appendices = [] - -# If false, no module index is generated. -# texinfo_domain_indices = True - -# How to display URL addresses: 'footnote', 'no', or 'inline'. -# texinfo_show_urls = 'footnote' - -# If true, do not generate a @detailmenu in the "Top" node's menu. -# texinfo_no_detailmenu = False - -# -- Intersphinx configuration ------------------------------------------------ - -intersphinx_mapping = { - "python": ("https://docs.python.org/3", None), - "eth-account": ("https://eth-account.readthedocs.io/en/latest/", None), - # doesn't exist yet "eth-tester": ("https://eth-tester.readthedocs.io/en/latest/", None), - "hexbytes": ("https://hexbytes.readthedocs.io/en/latest/", None), -} - -autodoc_member_order = "bysource" - -# -- Doctest configuration ---------------------------------------- - -import doctest - -doctest_default_flags = ( - 0 - | doctest.DONT_ACCEPT_TRUE_FOR_1 - | doctest.ELLIPSIS - | doctest.IGNORE_EXCEPTION_DETAIL - | doctest.NORMALIZE_WHITESPACE -) diff --git a/docs/constants.rst b/docs/constants.rst deleted file mode 100644 index ca6ad7456f..0000000000 --- a/docs/constants.rst +++ /dev/null @@ -1,28 +0,0 @@ -.. _constants: - -Constants -========= - -The web3.constants module contains commonly used values. - -Strings -******* - -.. code-block:: python - - #The Address Zero, which is 20 bytes (40 nibbles) of zero. - web3.constants.ADDRESS_ZERO - - #The hexadecimal version of Max uint256. - web3.constants.MAX_INT - - #The Hash Zero, which is 32 bytes (64 nibbles) of zero. - web3.constants.HASH_ZERO - -Int -*** - -.. code-block:: python - - #The amount of Wei in one Ether - web3.constants.WEI_PER_ETHER diff --git a/docs/contributing.rst b/docs/contributing.rst deleted file mode 100644 index 2abd128db9..0000000000 --- a/docs/contributing.rst +++ /dev/null @@ -1,521 +0,0 @@ -.. _contributing: - -Contributing ------------- - -Thanks for your interest in contributing to web3.py! Read on to learn what -would be helpful and how to go about it. If you get stuck along the way, reach -for help in the `Python Discord server`_. - - -How to Help -~~~~~~~~~~~ - -Without code: - -* Answer user questions within GitHub issues, Stack Overflow, or the `Python Discord server`_. -* Write or record tutorial content. -* Improve our documentation (including typo fixes). -* `Open an issue `_ on GitHub to document a bug. Include as much detail as possible, e.g., how to reproduce the issue and any exception messages. - -With code: - -* Fix a bug that has been reported in an issue. -* Add a feature that has been documented in an issue. -* Add a missing test case. - -.. warning:: - - **Before you start:** always ask if a change would be desirable or let us know that - you plan to work on something! We don't want to waste your time on changes we can't - accept or duplicated effort. - - -Your Development Environment -~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -.. note:: - - Use of a virtual environment is strongly advised for minimizing dependency issues. See - `this article `_ - for usage patterns. - -All pull requests are made from a fork of the repository; use the GitHub UI to create a fork. -web3.py depends on `submodules `_, so when you clone -your fork to your local machine, include the ``--recursive`` flag: - -.. code:: sh - - $ git clone --recursive https://github.com//web3.py.git - $ cd web3.py - - -Finally, install all development dependencies: - -.. code:: sh - - $ pip install -e ".[dev]" - - -Using Docker -^^^^^^^^^^^^ - -Developing within Docker is not required, but if you prefer that workflow, use -the *sandbox* container provided in the **docker-compose.yml** file. - -To start up the test environment, run: - -.. code:: sh - - $ docker compose up -d - - -This will build a Docker container set up with an environment to run the -Python test code. - -.. note:: - - This container does not have `go-ethereum` installed, so you cannot run - the go-ethereum test suite. - -To run the Python tests from your local machine: - -.. code:: sh - - $ docker compose exec sandbox bash -c 'pytest -n 4 -f -k "not goethereum"' - - -You can run arbitrary commands inside the Docker container by using the -`bash -c` prefix. - -.. code:: sh - - $ docker compose exec sandbox bash -c '' - - -Or, if you would like to open a session to the container, run: - -.. code:: sh - - $ docker compose exec sandbox bash - - -Code Style -~~~~~~~~~~ - -We value code consistency. To ensure your contribution conforms to the style -being used in this project, we encourage you to read our `style guide`_. - -We use Black for linting. To ignore the commits that introduced Black in -git history, you can configure your git environment like so: - -.. code:: sh - - git config blame.ignoreRevsFile .git-blame-ignore-revs - - -Type Hints -~~~~~~~~~~ - -This code base makes use of `type hints`_. Type hints make it easy to prevent -certain types of bugs, enable richer tooling, and enhance the documentation, -making the code easier to follow. - -All new code is required to include type hints, with the exception of tests. - -All parameters, as well as the return type of functions, are expected to be typed, -with the exception of ``self`` and ``cls`` as seen in the following example. - -.. code:: python - - def __init__(self, wrapped_db: DatabaseAPI) -> None: - self.wrapped_db = wrapped_db - self.reset() - - -Running The Tests -~~~~~~~~~~~~~~~~~ - -A great way to explore the code base is to run the tests. - - -First, install the test dependencies: - -.. code:: sh - - $ pip install -e ".[test]" - -You can run all tests with: - -.. code:: sh - - $ pytest - - -However, running the entire test suite takes a very long time and is generally impractical. -Typically, you'll just want to run a subset instead, like: - -.. code:: sh - - $ pytest tests/core/eth-module/test_accounts.py - - -You can use ``tox`` to run all the tests for a given version of Python: - -.. code:: sh - - $ tox -e py38-core - - -Linting is also performed by the CI. You can save yourself some time by checking for -linting errors locally: - -.. code:: sh - - $ make lint - - -It is important to understand that each pull request must pass the full test -suite as part of the CI check. This test suite will run in the CI anytime a -pull request is opened or updated. - - -Writing Tests -~~~~~~~~~~~~~ - -We strongly encourage contributors to write good tests for their code as -part of the code review process. This helps ensure that your code is doing -what it should be doing. - -We strongly encourage you to use our existing tests for both guidance and -homogeneity / consistency across our tests. We use ``pytest`` for our tests. -For more specific pytest guidance, please refer to the `pytest documentation`_. - -Within the ``pytest`` scope, :file:`conftest.py` files are used for common code -shared between modules that exist within the same directory as that particular -:file:`conftest.py` file. - -Unit Testing and eth-tester Tests -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -Our unit tests are grouped together with tests against the ``eth-tester`` library, -using the ``py-evm`` library as a backend, via the ``EthereumTesterProvider``. - -These tests live under appropriately named child directories within the -``/tests`` directory. The core of these tests live under ``/tests/core``. -Do your best to follow the existing structure when adding a test and make sure -that its location makes sense. - -Integration Testing -^^^^^^^^^^^^^^^^^^^ - -Our integration test suite setup lives under the ``/tests/integration`` directory. -The integration test suite is dependent on what we call "fixtures" (not to be -confused with pytest fixtures). These zip file fixtures, which also live in the -``/tests/integration`` directory, are configured to run the specific client we are -testing against along with a genesis configuration that gives our tests some -pre-determined useful objects (like unlocked, pre-loaded accounts) to be able to -interact with the client when we run our tests. - -The parent ``/integration`` directory houses some common configuration shared across -all client tests, whereas the ``/go_ethereum`` directory houses common code to be -shared across geth-specific provider tests. Though the setup and run configurations -exist across the different files within ``/tests/integration``, our integration module -tests are written across different files within ``/web3/_utils/module_testing``. - -* :file:`common.py` files within the client directories contain code that is shared across - all provider tests (http, ipc, and ws). This is mostly used to override tests that span - across all providers. -* :file:`conftest.py` files within each of these directories contain mostly code that - can be *used* by all test files that exist within the same directory or subdirectories - of the :file:`conftest.py` file. This is mostly used to house pytest fixtures to be - shared among our tests. Refer to the `pytest documentation on fixtures`_ for more - information. -* ``test_{client}_{provider}.py`` files (e.g. :file:`test_goethereum_http.py`) are where - client-and-provider-specific test configurations exist. This is mostly used to - override tests specific to the provider type for the respective client. - - -Working With Test Contracts -^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -Contracts used for testing exist under ``web3/_utils/contract_sources``. These contracts -get compiled via the ``compile_contracts.py`` script in the same directory. To use -this script, simply pass the Solidity version to be used to compile the contracts as an -argument at the command line. - -Arguments for the script are: - -v or --version Solidity version to be used to compile the contracts. If - blank, the script uses the latest available version from - solcx. - - -f or --filename If left blank, all .sol files will be compiled and the - respective contract data will be generated. Pass in a - specific ``.sol`` filename here to compile just one file. - - -To run the script, you will need the ``py-solc-x`` library for compiling the files -as well as ``black`` for code formatting. You can install those independently or -install the full ``[dev]`` package extra as shown below. - -.. code:: sh - - $ pip install "web3[dev]" - -The following example compiles all the contracts and generates their respective -contract data that is used across our test files for the test suites. This data gets -generated within the ``contract_data`` subdirectory within the ``contract_sources`` -folder. - -.. code-block:: bash - - $ cd ../web3.py/web3/_utils/contract_sources - $ python compile_contracts.py -v 0.8.17 - Compiling OffchainLookup - ... - ... - reformatted ... - -To compile and generate contract data for only one ``.sol`` file, specify using the -filename with the ``-f`` (or ``--filename``) argument flag. - -.. code-block:: bash - - $ cd ../web3.py/web3/_utils/contract_sources - $ python compile_contracts.py -v 0.8.17 -f OffchainLookup.sol - Compiling OffchainLookup.sol - reformatted ... - -If there is any contract data that is not generated via the script but is important -to pass on to the integration tests, the ``_custom_contract_data.py`` file within the -``contract_data`` subdirectory can be used to store that information when appropriate. - -Be sure to re-generate the integration test fixture after running the script to update -the contract bytecodes for the integration test suite - see the -:ref:`generating_fixtures` section below. - - -Manual Testing -~~~~~~~~~~~~~~ - -To import and test an unreleased version of web3.py in another context, -you can install it from your development directory: - -.. code:: sh - - $ pip install -e ../path/to/web3py - - -Documentation -~~~~~~~~~~~~~ - -Good documentation will lead to quicker adoption and happier users. Please -check out our guide on `how to create documentation`_ for the Python Ethereum -ecosystem. - -Pull requests generate their own preview of the latest documentation at -``https://web3py--.org.readthedocs.build/en//``. - - -Pull Requests -~~~~~~~~~~~~~ - -It's a good idea to make pull requests early on. A pull request represents the -start of a discussion, and doesn't necessarily need to be the final, finished -submission. - -See GitHub's documentation for `working on pull requests`_. - -Once you've made a pull request take a look at the Circle CI build status in -the GitHub interface and make sure all tests are passing. In general, pull -requests that do not pass the CI build yet won't get reviewed unless explicitly -requested. - -If the pull request introduces changes that should be reflected in the release -notes, please add a **newsfragment** file as explained -`here `_. - -If possible, the change to the release notes file should be included in the -commit that introduces the feature or bugfix. - -.. _generating_fixtures: - -Generating New Fixtures -~~~~~~~~~~~~~~~~~~~~~~~ - -Our integration tests make use of Geth private networks. -When new versions of the client software are introduced, new fixtures should be -generated. - -Before generating new fixtures, make sure you have the test dependencies installed: - -.. code:: sh - - $ pip install -e ".[test]" - -.. note:: - - A "fixture" is a pre-synced network. It's the result of configuring and running - a client, deploying the test contracts, and saving the resulting state for - testing web3.py functionality against. - - -Geth Fixtures -^^^^^^^^^^^^^ - -1. Install the desired Geth version on your machine locally. We recommend `py-geth`_ for - this purpose, because it enables you to easily manage multiple versions of Geth. - - Note that ``py-geth`` will need updating to support each new Geth version as well. - Adding newer Geth versions to py-geth is straightforward; see past commits for a template. - - If py-geth has the Geth version you need, install that version locally. For example: - - .. code:: sh - - $ python -m geth.install v1.14.5 - -2. Specify the Geth binary and run the fixture creation script (from within the web3.py directory): - - .. code:: sh - - $ GETH_BINARY=~/.py-geth/geth-v1.14.5/bin/geth python ./tests/integration/generate_fixtures/go_ethereum.py - -3. The output of this script is your fixture, a zip file, which is now stored in ``/tests/integration/``. - Update the ``/tests/integration/go_ethereum/conftest.py`` and - ``/web3/tools/benchmark/node.py`` files to point to this new fixture. Delete the old - fixture. - -4. Run the tests. To ensure that the tests run with the correct Geth version locally, - you may again include the ``GETH_BINARY`` environment variable. - -5. Update the ``geth_version`` and ``pygeth_version`` parameter defaults in - ``/.circleci/config.yml`` to match the ``go-ethereum`` version used to generate the - test fixture and the ``py-geth`` version that supports installing it. - - -CI Testing With a Nightly Geth Build -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -Occasionally you'll want to have CI run the test suite against an unreleased version of -Geth - e.g. to test upcoming hard fork changes. The workflow described below is for -testing only, as updates will only be merged into main once the Geth release is -published and the test runs are updated to use the new stable version. - -1. Configure ``tests/integration/generate_fixtures/go_ethereum/common.py`` as needed. - -2. Geth automagically compiles new builds for every commit that gets merged into the codebase. - Download the desired build from the `develop builds `_. - -3. Build your test fixture, passing in the binary you just downloaded via ``GETH_BINARY``. Don't forget - to update the ``/tests/integration/go_ethereum/conftest.py`` file to point to your new fixture. - -4. Our CI runs on Ubuntu, so download the corresponding 64-bit Linux - `develop build `_, then - add it to the root of your web3.py directory. Rename the binary ``custom_geth``. - -5. In ``.circleci/config.yml``, update the ``geth_version`` pipeline parameter to - "custom". This will trigger the custom Geth build to be used in the CI test suite. - -6. Create a PR and let CI do its thing. - - -Releasing -~~~~~~~~~ - -Final Test Before Each Release -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -Before releasing a new version, build and test the package that will be released. -There's a script to build and install the wheel locally, then generate a temporary -virtualenv for smoke testing: - -.. code:: sh - - $ git checkout main && git pull - - $ make package - - # in another shell, navigate to the virtualenv mentioned in output of ^ - - # load the virtualenv with the packaged web3.py release - $ source package-smoke-test/bin/activate - - # smoke test the release - $ pip install ipython - $ ipython - >>> from web3 import Web3, IPCProvider - >>> w3 = Web3(IPCProvider(provider_url)) - >>> w3.is_connected() - >>> ... - - -Verify The Latest Documentation -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -To preview the documentation that will get published: - -.. code:: sh - - $ make docs - - -Preview The Release Notes -^^^^^^^^^^^^^^^^^^^^^^^^^ - -.. code:: sh - - $ towncrier build --draft - - -Compile The Release Notes -^^^^^^^^^^^^^^^^^^^^^^^^^ - -After confirming that the release package looks okay, compile the release notes: - -.. code:: sh - - $ make notes bump=$$VERSION_PART_TO_BUMP$$ - - -You may need to fix up any broken release note fragments before committing. Keep -running ``make build-docs`` until it passes, then commit and carry on. - - -Push The Release to GitHub & PyPI -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -After committing the compiled release notes and pushing them to the main -branch, release a new version: - -.. code:: sh - - $ make release bump=$$VERSION_PART_TO_BUMP$$ - - -Which Version Part to Bump -^^^^^^^^^^^^^^^^^^^^^^^^^^ - -The version format for this repo is ``{major}.{minor}.{patch}`` for -stable, and ``{major}.{minor}.{patch}-{stage}.{devnum}`` for unstable -(``stage`` can be alpha or beta). - -During a release, specify which part to bump, like -``make release bump=minor`` or ``make release bump=devnum``. - -If you are in an alpha version, ``make release bump=stage`` will bump to beta. -If you are in a beta version, ``make release bump=stage`` will bump to a stable -version. - -To issue an unstable version when the current version is stable, specify the new -version explicitly, like ``make release bump="--new-version 4.0.0-alpha.1 devnum"``. - - -.. _Python Discord server: https://discord.gg/GHryRvPB84 -.. _style guide: https://github.com/ethereum/snake-charmers-tactical-manual/blob/main/style-guide.md -.. _type hints: https://www.python.org/dev/peps/pep-0484/ -.. _how to create documentation: https://github.com/ethereum/snake-charmers-tactical-manual/blob/main/documentation.md -.. _working on pull requests: https://help.github.com/articles/about-pull-requests/ -.. _py-geth: https://github.com/ethereum/py-geth -.. _pytest documentation: https://docs.pytest.org/en/latest -.. _pytest documentation on fixtures: https://docs.pytest.org/en/latest/how-to/fixtures.html diff --git a/docs/ens.rst b/docs/ens.rst deleted file mode 100644 index 372326a838..0000000000 --- a/docs/ens.rst +++ /dev/null @@ -1,27 +0,0 @@ -.. py:module:: ens - -ENS API -=========== - -:doc:`ens_overview` has a friendly overview. - -Continue below for the detailed specs on each method and class in the ens module. - -ens\.ens module ----------------- - -.. automodule:: ens.ens - :members: - -ens\.async_ens module ---------------------- - -.. automodule:: ens.async_ens - :members: - -ens\.exceptions module ----------------------- - -.. automodule:: ens.exceptions - :members: - :show-inheritance: diff --git a/docs/ens_overview.rst b/docs/ens_overview.rst deleted file mode 100644 index aede5a3f69..0000000000 --- a/docs/ens_overview.rst +++ /dev/null @@ -1,354 +0,0 @@ -.. _ens_overview: - -Ethereum Name Service (ENS) -=========================== - -The Ethereum Name Service (ENS) is analogous to the Domain Name Service. It -enables users and developers to use human-friendly names in place of error-prone -hexadecimal addresses, content hashes, and more. - -The :mod:`ens` module is included with web3.py. It provides an interface to look up -domains and addresses, add resolver records, or get and set metadata. - - -.. note:: - - web3.py ``v6.6.0`` introduced ENS name normalization standard - `ENSIP-15 `_. - This update to ENS name validation and normalization won't affect ~99% - of names but may prevent invalid names from being created and from interacting with - the ENS contracts via web3.py. We feel strongly that this change, though breaking, - is in the best interest of our users as it ensures compatibility with the latest ENS - standards. - - -Setup ------ - -Create an :class:`~ens.ENS` object (named ``ns`` below) in one of three ways: - -1. Automatic detection -2. Specify an instance of a :ref:`provider ` -3. From an existing :class:`web3.Web3` object - -.. code-block:: python - - # automatic detection - from ens.auto import ns - - # or, with a provider - from web3 import IPCProvider - from ens import ENS - - provider = IPCProvider(...) - ns = ENS(provider) - - # or, with a w3 instance - # Note: This inherits the w3 middleware from the w3 instance and adds a stalecheck middleware to the middleware onion. - # It also inherits the provider and codec from the w3 instance, as well as the ``strict_bytes_type_checking`` flag value. - from ens import ENS - w3 = Web3(...) - ns = ENS.from_web3(w3) - - -Asynchronous support is available via the ``AsyncENS`` module: - -.. code-block:: python - - from ens import AsyncENS - - ns = AsyncENS(provider) - - -Note that an ``ens`` module instance is also available on the ``w3`` instance. -The first time it's used, web3.py will create the ``ens`` instance using -``ENS.from_web3(w3)`` or ``AsyncENS.from_web3(w3)`` as appropriate. - -.. code-block:: python - - # instantiate w3 instance - from web3 import Web3, IPCProvider - w3 = Web3(IPCProvider(...)) - - # use the module - w3.ens.address('ethereum.eth') - - -.. py:attribute:: ens.strict_bytes_type_checking - - The ``ENS`` instance has a ``strict_bytes_type_checking`` flag that toggles the flag - with the same name on the ``Web3`` instance attached to the ``ENS`` instance. - You may disable the stricter bytes type checking that is loaded by default using - this flag. For more examples, see :ref:`disable-strict-byte-check` - - If instantiating a standalone ENS instance using ``ENS.from_web3()``, the ENS - instance will inherit the value of the flag on the Web3 instance at time of - instantiation. - - .. doctest:: - - >>> from web3 import Web3, EthereumTesterProvider - >>> from ens import ENS - >>> w3 = Web3(EthereumTesterProvider()) - - >>> assert w3.strict_bytes_type_checking # assert strict by default - >>> w3.is_encodable('bytes2', b'1') - False - - >>> w3.strict_bytes_type_checking = False - >>> w3.is_encodable('bytes2', b'1') # zero-padded, so encoded to: b'1\x00' - True - - >>> ns = ENS.from_web3(w3) - >>> # assert inherited from w3 at time of instantiation via ENS.from_web3() - >>> assert ns.strict_bytes_type_checking is False - >>> ns.w3.is_encodable('bytes2', b'1') - True - - >>> # assert these are now separate instances - >>> ns.strict_bytes_type_checking = True - >>> ns.w3.is_encodable('bytes2', b'1') - False - - >>> # assert w3 flag value remains - >>> assert w3.strict_bytes_type_checking is False - >>> w3.is_encodable('bytes2', b'1') - True - - However, if accessing the ``ENS`` class via the ``Web3`` instance as a module - (``w3.ens``), since all modules use the same ``Web3`` object reference - under the hood (the parent ``w3`` object), changing the - ``strict_bytes_type_checking`` flag value on ``w3`` also changes the flag state - for ``w3.ens.w3`` and all modules. - - .. doctest:: - - >>> from web3 import Web3, EthereumTesterProvider - >>> w3 = Web3(EthereumTesterProvider()) - - >>> assert w3.strict_bytes_type_checking # assert strict by default - >>> w3.is_encodable('bytes2', b'1') - False - - >>> w3.strict_bytes_type_checking = False - >>> w3.is_encodable('bytes2', b'1') # zero-padded, so encoded to: b'1\x00' - True - - >>> assert w3 == w3.ens.w3 # assert same object - >>> assert not w3.ens.w3.strict_bytes_type_checking - >>> w3.ens.w3.is_encodable('bytes2', b'1') - True - - >>> # sanity check on eth module as well - >>> assert not w3.eth.w3.strict_bytes_type_checking - >>> w3.eth.w3.is_encodable('bytes2', b'1') - True - - -Usage ------ - -Name Info -~~~~~~~~~ - -.. _ens_get_address: - -Get the Address for an ENS Name -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -.. code-block:: python - - from ens.auto import ns - eth_address = ns.address('ens.eth') - assert eth_address == '0xFe89cc7aBB2C4183683ab71653C4cdc9B02D44b7' - -The ``ENS`` module has no opinion as to which **TLD (Top Level Domain)** you can use, -but will not infer a TLD if it is not provided with the name. - -Multichain Address Resolution -+++++++++++++++++++++++++++++ - -`ENSIP-9 `_ -introduced multichain address resolution, allowing users to resolve addresses from -different chains, specified by the coin type index from -`SLIP44 `_. The -``address()`` method on the ``ENS`` class supports multichain address resolution via -the ``coin_type`` keyword argument. - -.. code-block:: python - - from ens.auto import ns - eth_address = ns.address('ens.eth', coin_type=60) # ETH is coin_type 60 - assert eth_address == '0xFe89cc7aBB2C4183683ab71653C4cdc9B02D44b7' - - -Get the ENS Name for an Address -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -.. code-block:: python - - domain = ns.name('0xFe89cc7aBB2C4183683ab71653C4cdc9B02D44b7') - - # name() also accepts the bytes version of the address - assert ns.name(b'\xfe\x89\xccz\xbb,A\x83h:\xb7\x16S\xc4\xcd\xc9\xb0-D\xb7') == domain - - # confirm that the name resolves back to the address that you looked up: - assert ns.address(domain) == '0xFe89cc7aBB2C4183683ab71653C4cdc9B02D44b7' - -.. note:: For accuracy, and as a recommendation from the ENS documentation on - `reverse resolution `_, - the ``ENS`` module now verifies that the forward resolution matches the address with every call to get the - ``name()`` for an address. This is the only sure way to know whether the reverse resolution is correct. Anyone can - claim any name, only forward resolution implies that the owner of the name gave their stamp of approval. - -Get the Owner of a Name -^^^^^^^^^^^^^^^^^^^^^^^ - -.. code-block:: python - - eth_address = ns.owner('exchange.eth') - -.... - -Set Up Your Name and Address -~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Link a Name to an Address -^^^^^^^^^^^^^^^^^^^^^^^^^ - -You can set up your name so that :meth:`~ens.ENS.address` will show the address it points to. In order to do so, -you must already be the owner of the domain (or its parent). - -.. code-block:: python - - ns.setup_address('ens.eth', '0xFe89cc7aBB2C4183683ab71653C4cdc9B02D44b7') - -In the common case where you want to point the name to the owning address, you can skip the address. - -.. code-block:: python - - ns.setup_address('ens.eth') - -You can claim arbitrarily deep subdomains. - -.. code-block:: python - - ns.setup_address('supreme.executive.power.derives.from.a.mandate.from.the.masses.ens.eth') - - # wait for the transaction to be mined, then: - assert ( - ns.address('supreme.executive.power.derives.from.a.mandate.from.the.masses.ens.eth') - == '0xFe89cc7aBB2C4183683ab71653C4cdc9B02D44b7' - ) - -.. warning:: Gas costs scale up with the number of subdomains! - -Multichain Address Support -++++++++++++++++++++++++++ - -`ENSIP-9 `_ -introduced multichain address resolution, allowing users to resolve addresses from -different chains, specified by the coin type index from -`SLIP44 `_. The -``setup_address()`` method on the ``ENS`` class supports multichain address setup -via the ``coin_type`` keyword argument. - -.. code-block:: python - - from ens.auto import ns - ns.setup_address('ens.eth', coin_type=60) # ETH is coin_type 60 - assert ns.address('ens.eth', coin_type=60) == '0xFe89cc7aBB2C4183683ab71653C4cdc9B02D44b7' - -Link an Address to a Name -^^^^^^^^^^^^^^^^^^^^^^^^^ - -You can set up your address so that :meth:`~ens.ENS.name` will show the name that points to it. - -This is like Caller ID. It enables you and others to take an account and determine what name points to it. Sometimes -this is referred to as "reverse" resolution. The ENS Reverse Resolver is used for this functionality. - -.. code-block:: python - - ns.setup_name('ens.eth', '0xFe89cc7aBB2C4183683ab71653C4cdc9B02D44b7') - -If you don't supply the address, :meth:`~ens.ENS.setup_name` will assume you want the -address returned by :meth:`~ens.ENS.address`. - -.. code-block:: python - - ns.setup_name('ens.eth') - -If the name doesn't already point to an address, :meth:`~ens.ENS.setup_name` will -call :meth:`~ens.ENS.setup_address` for you. - -Wait for the transaction to be mined, then: - -.. code-block:: python - - assert ns.name('0xFe89cc7aBB2C4183683ab71653C4cdc9B02D44b7') == 'ens.eth' - -.... - -Text Records -~~~~~~~~~~~~ - -Set Text Metadata for an ENS Record -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -As the owner of an ENS record, you can add text metadata. -A list of supported fields can be found in the -`ENS documentation `_. -You'll need to setup the address first, and then the text can be set: - -.. code-block:: python - - ns.setup_address('ens.eth', '0xFe89cc7aBB2C4183683ab71653C4cdc9B02D44b7') - ns.set_text('ens.eth', 'url', 'https://example.com') - -A transaction dictionary can be passed as the last argument if desired: - -.. code-block:: python - - transaction_dict = {'from': '0x123...'} - ns.set_text('ens.eth', 'url', 'https://example.com', transaction_dict) - -If the transaction dictionary is not passed, sensible defaults will be used, and if -a transaction dictionary is passed but does not have a ``from`` value, -the default will be the ``owner``. - -Read Text Metadata for an ENS Record -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -Anyone can read the data from an ENS Record: - -.. code-block:: python - - url = ns.get_text('ens.eth', 'url') - assert url == 'https://example.com' - -.... - -Working With Resolvers -~~~~~~~~~~~~~~~~~~~~~~ - -Get the Resolver for an ENS Record -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -You can get the resolver for an ENS name via the :meth:`~ens.ENS.resolver` method. - -.. code-block:: python - - >>> resolver = ns.resolver('ens.eth') - >>> resolver.address - '0x5B2063246F2191f18F2675ceDB8b28102e957458' - -.... - -Wildcard Resolution Support ---------------------------- - -The ``ENS`` module supports Wildcard Resolution for resolvers that implement the ``ExtendedResolver`` interface -as described in `ENSIP-10 `_. -Resolvers that implement the extended resolver interface should return ``True`` when calling the -``supportsInterface()`` function with the extended resolver interface id ``"0x9061b923"`` and should resolve subdomains -to a unique address. diff --git a/docs/filters.rst b/docs/filters.rst deleted file mode 100644 index a5e02ac931..0000000000 --- a/docs/filters.rst +++ /dev/null @@ -1,1080 +0,0 @@ -.. _filtering: - -Events and Logs -=============== - -If you're on this page, you're likely looking for an answer to this question: -**How do I know when a specific contract is used?** You have several options: - -1. Query blocks for transactions that include the contract address in the ``"to"`` field. - This contrived example is searching the latest block for any transactions sent to the - WETH_ contract. - -.. code-block:: python - - WETH_ADDRESS = '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2' - - block = w3.eth.get_block('latest') - for tx_hash in block.transactions: - tx = w3.eth.get_transaction(tx_hash) - if tx['to'] == WETH_ADDRESS: - print(f'Found interaction with WETH contract! {tx}') - -2. Query for logs emitted by a contract. After instantiating a web3.py Contract object, - you can :ref:`fetch logs ` for any event listed in the ABI. In this - example, we query for ``Transfer`` events in the latest block and log out the results. - -.. code-block:: python - - WETH_ADDRESS = '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2' - WETH_ABI = '[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"guy","type":"address"},{"name":"wad","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"dst","type":"address"},{"name":"wad","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"wad","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"dst","type":"address"},{"name":"wad","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"deposit","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"src","type":"address"},{"indexed":true,"name":"guy","type":"address"},{"indexed":false,"name":"wad","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"src","type":"address"},{"indexed":true,"name":"dst","type":"address"},{"indexed":false,"name":"wad","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"dst","type":"address"},{"indexed":false,"name":"wad","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"src","type":"address"},{"indexed":false,"name":"wad","type":"uint256"}],"name":"Withdrawal","type":"event"}]' - - weth_contract = w3.eth.contract(address=WETH_ADDRESS, abi=WETH_ABI) - - # fetch transfer events in the last block - logs = weth_contract.events.Transfer().get_logs(from_block=w3.eth.block_number) - - for log in logs: - print(f"Transfer of {w3.from_wei(log.args.wad, 'ether')} WETH from {log.args.src} to {log.args.dst}") - -See an advanced example of fetching log history :ref:`here `. - -3. Subscribe to events for real-time updates. When using a persistent connection provider - (:class:`~web3.providers.persistent.WebSocketProvider` or - :class:`~web3.providers.persistent.AsyncIPCProvider`), the - :meth:`subscribe() ` method can be used to establish a new - event subscription. This example subscribes to ``Transfer`` events of the WETH contract. - - .. code-block:: python - - import asyncio - from web3 import AsyncWeb3, WebSocketProvider - from eth_abi.abi import decode - - WETH_ADDRESS = "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2" - - - async def subscribe_to_transfer_events(): - async with AsyncWeb3(WebSocketProvider("...")) as w3: - transfer_event_topic = w3.keccak(text="Transfer(address,address,uint256)") - filter_params = { - "address": WETH_ADDRESS, - "topics": [transfer_event_topic], - } - subscription_id = await w3.eth.subscribe("logs", filter_params) - print(f"Subscribing to transfer events for WETH at {subscription_id}") - - async for payload in w3.socket.process_subscriptions(): - result = payload["result"] - - from_addr = decode(["address"], result["topics"][1])[0] - to_addr = decode(["address"], result["topics"][2])[0] - amount = decode(["uint256"], result["data"])[0] - print(f"{w3.from_wei(amount, 'ether')} WETH from {from_addr} to {to_addr}") - - asyncio.run(subscribe_to_transfer_events()) - - - For more usage examples see the docs on :ref:`subscription-examples`. - -4. Use a filter. - -.. warning :: - - While filters can be a very convenient way to monitor for blocks, transactions, or - events, they are notoriously unreliable. Both remote and locally hosted nodes have - a reputation for occasionally dropping filters, and some remote node providers don't - support filter-related RPC calls at all. - -.. py:module:: web3.utils.filters - -The :meth:`web3.eth.Eth.filter` method can be used to set up filters for: - -* Pending Transactions: ``w3.eth.filter("pending")`` - -* New Blocks ``w3.eth.filter("latest")`` - -* Event Logs - - Through the contract instance api: - - .. code-block:: python - - event_filter = my_contract.events.myEvent.create_filter(from_block='latest', argument_filters={'arg1':10}) - - Or built manually by supplying `valid filter params `_: - - .. code-block:: python - - event_filter = w3.eth.filter({"address": contract_address}) - -* Attaching to an existing filter - - .. code-block:: python - - existing_filter = w3.eth.filter(filter_id="0x0") - -.. note :: - - Creating event filters requires that your Ethereum node has an API support enabled for filters. - Note that Infura support for filters does not offer access to `pending` filters. - To get event logs on other stateless nodes please see :class:`web3.contract.ContractEvents`. - - - -Filter Class ------------- - -.. py:class:: Filter(web3, filter_id) - -.. py:attribute:: Filter.filter_id - - The ``filter_id`` for this filter as returned by the ``eth_newFilter`` RPC - method when this filter was created. - - -.. py:method:: Filter.get_new_entries() - - Retrieve new entries for this filter. - - Logs will be retrieved using the - :func:`web3.eth.Eth.get_filter_changes` which returns only new entries since the last - poll. - - -.. py:method:: Filter.get_all_entries() - - Retrieve all entries for this filter. - - Logs will be retrieved using the - :func:`web3.eth.Eth.get_filter_logs` which returns all entries that match the given - filter. - - -.. py:method:: Filter.format_entry(entry) - - Hook for subclasses to modify the format of the log entries this filter - returns, or passes to its callback functions. - - By default this returns the ``entry`` parameter unmodified. - - -.. py:method:: Filter.is_valid_entry(entry) - - Hook for subclasses to add additional programmatic filtering. The default - implementation always returns ``True``. - - -Block and Transaction Filter Classes ------------------------------------- - -.. py:class:: BlockFilter(...) - -``BlockFilter`` is a subclass of :class:`Filter`. - -You can setup a filter for new blocks using ``web3.eth.filter('latest')`` which -will return a new :class:`BlockFilter` object. - - .. code-block:: python - - new_block_filter = w3.eth.filter('latest') - new_block_filter.get_new_entries() - - .. note:: - - ``"safe"`` and ``"finalized"`` block identifiers are not yet supported for - ``eth_newBlockFilter``. - -.. py:class:: TransactionFilter(...) - -``TransactionFilter`` is a subclass of :class:`Filter`. - -You can setup a filter for new blocks using ``web3.eth.filter('pending')`` which -will return a new :class:`TransactionFilter` object. - - .. code-block:: python - - new_transaction_filter = w3.eth.filter('pending') - new_transaction_filter.get_new_entries() - - -Event Log Filters ------------------ - -You can set up a filter for event logs using the web3.py contract api: -:meth:`web3.contract.Contract.events.your_event_name.create_filter`, which provides some conveniences for -creating event log filters. Refer to the following example: - - .. code-block:: python - - event_filter = my_contract.events..create_filter(from_block="latest", argument_filters={'arg1':10}) - event_filter.get_new_entries() - -See :meth:`web3.contract.Contract.events.your_event_name.create_filter()` documentation for more information. - -You can set up an event log filter like the one above with ``web3.eth.filter`` by supplying a -dictionary containing the standard filter parameters. Assuming that ``arg1`` is indexed, the -equivalent filter creation would look like: - - .. code-block:: python - - event_signature_hash = web3.keccak(text="eventName(uint32)").hex() - event_filter = web3.eth.filter({ - "address": myContract_address, - "topics": [event_signature_hash, - "0x000000000000000000000000000000000000000000000000000000000000000a"], - }) - -The ``topics`` argument is order-dependent. For non-anonymous events, the first item in the topic list is always the keccack hash of the event signature. Subsequent topic items are the hex encoded values for indexed event arguments. In the above example, the second item is the ``arg1`` value ``10`` encoded to its hex string representation. - -In addition to being order-dependent, there are a few more points to recognize when specifying topic filters: - - Given a transaction log with topics [A, B], the following topic filters will yield a match: - - - [] "anything" - - [A] "A in first position (and anything after)" - - [None, B] "anything in first position AND B in second position (and anything after)" - - [A, B] "A in first position AND B in second position (and anything after)" - - [[A, B], [A, B]] "(A OR B) in first position AND (A OR B) in second position (and anything after)" - -See the JSON-RPC documentation for `eth_newFilter `_ more information on the standard filter parameters. - - .. note:: - - Though ``"finalized"`` and ``"safe"`` block identifiers are not yet part of the - specifications for ``eth_newFilter``, they are supported by web3.py and may or - may not yield expected results depending on the node being accessed. - -Creating a log filter by either of the above methods will return a :class:`LogFilter` instance. - -.. py:class:: LogFilter(web3, filter_id, log_entry_formatter=None, data_filter_set=None) - -The :py:class:`LogFilter` class is a subclass of :class:`Filter`. See the :class:`Filter` -documentation for inherited methods. - -:class:`LogFilter` provides the following additional -methods: - -.. py:method:: LogFilter.set_data_filters(data_filter_set) - -Provides a means to filter on the log data, in other words the ability to filter on values from -un-indexed event arguments. The parameter ``data_filter_set`` should be a list or set of 32-byte hex encoded values. - -Examples: Listening For Events ------------------------------- - -Synchronous -~~~~~~~~~~~ - - .. code-block:: python - - from web3 import Web3, IPCProvider - import time - - # instantiate Web3 instance - w3 = Web3(IPCProvider(...)) - - def handle_event(event): - print(event) - - def log_loop(event_filter, poll_interval): - while True: - for event in event_filter.get_new_entries(): - handle_event(event) - time.sleep(poll_interval) - - def main(): - block_filter = w3.eth.filter('latest') - log_loop(block_filter, 2) - - if __name__ == '__main__': - main() - -.. _asynchronous_filters: - -Asynchronous Filter Polling -~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Starting with web3 version 4, the ``watch`` method was taken out of the web3 filter objects. -There are many decisions to be made when designing a system regarding threading and concurrency. -Rather than force a decision, web3 leaves these choices up to the user. Below are some example -implementations of asynchronous filter-event handling that can serve as starting points. - -Single threaded concurrency with ``async`` and ``await`` -```````````````````````````````````````````````````````` - -Beginning in python 3.5, the ``async`` and ``await`` built-in keywords were added. These provide a -shared api for coroutines that can be utilized by modules such as the built-in asyncio_. Below is -an example event loop using asyncio_, that polls multiple web3 filter object, and passes new -entries to a handler. - - .. code-block:: python - - from web3 import Web3, IPCProvider - import asyncio - - # instantiate Web3 instance - w3 = Web3(IPCProvider(...)) - - def handle_event(event): - print(event) - # and whatever - - async def log_loop(event_filter, poll_interval): - while True: - for event in event_filter.get_new_entries(): - handle_event(event) - await asyncio.sleep(poll_interval) - - def main(): - block_filter = w3.eth.filter('latest') - tx_filter = w3.eth.filter('pending') - loop = asyncio.get_event_loop() - try: - loop.run_until_complete( - asyncio.gather( - log_loop(block_filter, 2), - log_loop(tx_filter, 2))) - finally: - loop.close() - - if __name__ == '__main__': - main() - - Read the asyncio_ documentation for more information. - -Running the event loop in a separate thread -``````````````````````````````````````````` - -Here is an extended version of above example, where the event loop is run in a separate thread, -releasing the ``main`` function for other tasks. - - .. code-block:: python - - from web3 import Web3, IPCProvider - from threading import Thread - import time - - # instantiate Web3 instance - w3 = Web3(IPCProvider(...)) - - def handle_event(event): - print(event) - # and whatever - - - def log_loop(event_filter, poll_interval): - while True: - for event in event_filter.get_new_entries(): - handle_event(event) - time.sleep(poll_interval) - - - def main(): - block_filter = w3.eth.filter('latest') - worker = Thread(target=log_loop, args=(block_filter, 5), daemon=True) - worker.start() - # .. do some other stuff - - if __name__ == '__main__': - main() - -Here are some other libraries that provide frameworks for writing asynchronous python: - - * gevent_ - * twisted_ - * celery_ - - -Examples --------- - -.. _advanced_token_fetch: - -Advanced example: Fetching all token transfer events -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -In this example, we show how to fetch all events of a certain event type from the Ethereum blockchain. There are three challenges when working with a large set of events: - -* How to incrementally update an existing database of fetched events - -* How to deal with interruptions in long running processes - -* How to deal with `eth_getLogs` JSON-RPC call query limitations - -* How to handle Ethereum minor chain reorganisations in (near) real-time data - - -eth_getLogs limitations -``````````````````````` - -Ethereum JSON-RPC API servers, like Geth, do not provide an easy way to paginate over events, only over blocks. There's no request that can find the first block with an event or how many events occur within a range of blocks. The only feedback the JSON-RPC service will give you is whether the ``eth_getLogs`` call failed. - -In this example script, we provide two kinds of heuristics to deal with this issue. The script scans events in a chunk of blocks (start block number - end block number). Then it uses two methods to find how many events there are likely to be in a block window: - -* Dynamically set the block range window size, while never exceeding a threshold (e.g., 10,000 blocks). - -* In the case of ``eth_getLogs``, the JSON-RPC call gives a timeout error, decrease the end block number and tries again with a smaller block range window. - - -Example code -```````````` - -The following example code is divided into a reusable ``EventScanner`` class and then a demo script that: - -* fetches all transfer events for `RCC token `_, - -* can incrementally run again to check if there are new events, - -* handles interruptions (e.g., CTRL+C abort) gracefully, - -* writes all ``Transfer`` events in a single file JSON database, so that other process can consume them, - -* uses the `tqdm `_ library for progress bar output in a console, - -* only supports ``HTTPS`` providers, because JSON-RPC retry logic depends on the implementation details of the underlying protocol, - -* disables the default exception retry configuration because it does not know how to handle the shrinking block range window for ``eth_getLogs``, and - -* consumes around 20k JSON-RPC API calls. - -The script can be run with: ``python ./eventscanner.py ``. - -.. code-block:: python - - """A stateful event scanner for Ethereum-based blockchains using web3.py. - - With the stateful mechanism, you can do one batch scan or incremental scans, - where events are added wherever the scanner left off. - """ - - import datetime - import time - import logging - from abc import ABC, abstractmethod - from typing import Tuple, Optional, Callable, List, Iterable, Dict, Any - - from web3 import Web3 - from web3.contract import Contract - from web3.datastructures import AttributeDict - from web3.exceptions import BlockNotFound - from eth_abi.codec import ABICodec - - # Currently this method is not exposed over official web3 API, - # but we need it to construct eth_getLogs parameters - from web3._utils.filters import construct_event_filter_params - from web3._utils.events import get_event_data - - - logger = logging.getLogger(__name__) - - - class EventScannerState(ABC): - """Application state that remembers what blocks we have scanned in the case of crash. - """ - - @abstractmethod - def get_last_scanned_block(self) -> int: - """Number of the last block we have scanned on the previous cycle. - - :return: 0 if no blocks scanned yet - """ - - @abstractmethod - def start_chunk(self, block_number: int): - """Scanner is about to ask data of multiple blocks over JSON-RPC. - - Start a database session if needed. - """ - - @abstractmethod - def end_chunk(self, block_number: int): - """Scanner finished a number of blocks. - - Persistent any data in your state now. - """ - - @abstractmethod - def process_event(self, block_when: datetime.datetime, event: AttributeDict) -> object: - """Process incoming events. - - This function takes raw events from Web3, transforms them to your application internal - format, then saves them in a database or some other state. - - :param block_when: When this block was mined - - :param event: Symbolic dictionary of the event data - - :return: Internal state structure that is the result of event transformation. - """ - - @abstractmethod - def delete_data(self, since_block: int) -> int: - """Delete any data since this block was scanned. - - Purges any potential minor reorg data. - """ - - - class EventScanner: - """Scan blockchain for events and try not to abuse JSON-RPC API too much. - - Can be used for real-time scans, as it detects minor chain reorganisation and rescans. - Unlike the easy web3.contract.Contract, this scanner can scan events from multiple contracts at once. - For example, you can get all transfers from all tokens in the same scan. - - You *should* disable the default ``exception_retry_configuration`` on your provider for Web3, - because it cannot correctly throttle and decrease the `eth_getLogs` block number range. - """ - - def __init__(self, w3: Web3, contract: Contract, state: EventScannerState, events: List, filters: Dict[str, Any], - max_chunk_scan_size: int = 10000, max_request_retries: int = 30, request_retry_seconds: float = 3.0): - """ - :param contract: Contract - :param events: List of web3 Event we scan - :param filters: Filters passed to get_logs - :param max_chunk_scan_size: JSON-RPC API limit in the number of blocks we query. (Recommendation: 10,000 for mainnet, 500,000 for testnets) - :param max_request_retries: How many times we try to reattempt a failed JSON-RPC call - :param request_retry_seconds: Delay between failed requests to let JSON-RPC server to recover - """ - - self.logger = logger - self.contract = contract - self.w3 = w3 - self.state = state - self.events = events - self.filters = filters - - # Our JSON-RPC throttling parameters - self.min_scan_chunk_size = 10 # 12 s/block = 120 seconds period - self.max_scan_chunk_size = max_chunk_scan_size - self.max_request_retries = max_request_retries - self.request_retry_seconds = request_retry_seconds - - # Factor how fast we increase the chunk size if results are found - # # (slow down scan after starting to get hits) - self.chunk_size_decrease = 0.5 - - # Factor how fast we increase chunk size if no results found - self.chunk_size_increase = 2.0 - - @property - def address(self): - return self.token_address - - def get_block_timestamp(self, block_num) -> datetime.datetime: - """Get Ethereum block timestamp""" - try: - block_info = self.w3.eth.get_block(block_num) - except BlockNotFound: - # Block was not mined yet, - # minor chain reorganisation? - return None - last_time = block_info["timestamp"] - return datetime.datetime.utcfromtimestamp(last_time) - - def get_suggested_scan_start_block(self): - """Get where we should start to scan for new token events. - - If there are no prior scans, start from block 1. - Otherwise, start from the last end block minus ten blocks. - We rescan the last ten scanned blocks in the case there were forks to avoid - misaccounting due to minor single block works (happens once in an hour in Ethereum). - These heuristics could be made more robust, but this is for the sake of simple reference implementation. - """ - - end_block = self.get_last_scanned_block() - if end_block: - return max(1, end_block - self.NUM_BLOCKS_RESCAN_FOR_FORKS) - return 1 - - def get_suggested_scan_end_block(self): - """Get the last mined block on Ethereum chain we are following.""" - - # Do not scan all the way to the final block, as this - # block might not be mined yet - return self.w3.eth.block_number - 1 - - def get_last_scanned_block(self) -> int: - return self.state.get_last_scanned_block() - - def delete_potentially_forked_block_data(self, after_block: int): - """Purge old data in the case of blockchain reorganisation.""" - self.state.delete_data(after_block) - - def scan_chunk(self, start_block, end_block) -> Tuple[int, datetime.datetime, list]: - """Read and process events between to block numbers. - - Dynamically decrease the size of the chunk if the case JSON-RPC server pukes out. - - :return: tuple(actual end block number, when this block was mined, processed events) - """ - - block_timestamps = {} - get_block_timestamp = self.get_block_timestamp - - # Cache block timestamps to reduce some RPC overhead - # Real solution might include smarter models around block - def get_block_when(block_num): - if block_num not in block_timestamps: - block_timestamps[block_num] = get_block_timestamp(block_num) - return block_timestamps[block_num] - - all_processed = [] - - for event_type in self.events: - - # Callable that takes care of the underlying web3 call - def _fetch_events(_start_block, _end_block): - return _fetch_events_for_all_contracts(self.w3, - event_type, - self.filters, - from_block=_start_block, - to_block=_end_block) - - # Do `n` retries on `eth_getLogs`, - # throttle down block range if needed - end_block, events = _retry_web3_call( - _fetch_events, - start_block=start_block, - end_block=end_block, - retries=self.max_request_retries, - delay=self.request_retry_seconds) - - for evt in events: - idx = evt["logIndex"] # Integer of the log index position in the block, null when its pending - - # We cannot avoid minor chain reorganisations, but - # at least we must avoid blocks that are not mined yet - assert idx is not None, "Somehow tried to scan a pending block" - - block_number = evt["blockNumber"] - - # Get UTC time when this event happened (block mined timestamp) - # from our in-memory cache - block_when = get_block_when(block_number) - - logger.debug(f"Processing event {evt['event']}, block: {evt['blockNumber']} count: {evt['blockNumber']}") - processed = self.state.process_event(block_when, evt) - all_processed.append(processed) - - end_block_timestamp = get_block_when(end_block) - return end_block, end_block_timestamp, all_processed - - def estimate_next_chunk_size(self, current_chuck_size: int, event_found_count: int): - """Try to figure out optimal chunk size - - Our scanner might need to scan the whole blockchain for all events - - * We want to minimize API calls over empty blocks - - * We want to make sure that one scan chunk does not try to process too many entries once, as we try to control commit buffer size and potentially asynchronous busy loop - - * Do not overload node serving JSON-RPC API by asking data for too many events at a time - - Currently Ethereum JSON-API does not have an API to tell when a first event occurred in a blockchain - and our heuristics try to accelerate block fetching (chunk size) until we see the first event. - - These heuristics exponentially increase the scan chunk size depending on if we are seeing events or not. - When any transfers are encountered, we are back to scanning only a few blocks at a time. - It does not make sense to do a full chain scan starting from block 1, doing one JSON-RPC call per 20 blocks. - """ - - if event_found_count > 0: - # When we encounter first events, reset the chunk size window - current_chuck_size = self.min_scan_chunk_size - else: - current_chuck_size *= self.chunk_size_increase - - current_chuck_size = max(self.min_scan_chunk_size, current_chuck_size) - current_chuck_size = min(self.max_scan_chunk_size, current_chuck_size) - return int(current_chuck_size) - - def scan(self, start_block, end_block, start_chunk_size=20, progress_callback=Optional[Callable]) -> Tuple[ - list, int]: - """Perform a token balances scan. - - Assumes all balances in the database are valid before start_block (no forks sneaked in). - - :param start_block: The first block included in the scan - - :param end_block: The last block included in the scan - - :param start_chunk_size: How many blocks we try to fetch over JSON-RPC on the first attempt - - :param progress_callback: If this is an UI application, update the progress of the scan - - :return: [All processed events, number of chunks used] - """ - - assert start_block <= end_block - - current_block = start_block - - # Scan in chunks, commit between - chunk_size = start_chunk_size - last_scan_duration = last_logs_found = 0 - total_chunks_scanned = 0 - - # All processed entries we got on this scan cycle - all_processed = [] - - while current_block <= end_block: - - self.state.start_chunk(current_block, chunk_size) - - # Print some diagnostics to logs to try to fiddle with real world JSON-RPC API performance - estimated_end_block = min(current_block + chunk_size, end_block) - logger.debug( - f"Scanning token transfers for blocks: {current_block} - {estimated_end_block}, chunk size {chunk_size}, last chunk scan took {last_scan_duration}, last logs found {last_logs_found}" - ) - - start = time.time() - actual_end_block, end_block_timestamp, new_entries = self.scan_chunk(current_block, estimated_end_block) - - # Where does our current chunk scan ends - are we out of chain yet? - current_end = actual_end_block - - last_scan_duration = time.time() - start - all_processed += new_entries - - # Print progress bar - if progress_callback: - progress_callback(start_block, end_block, current_block, end_block_timestamp, chunk_size, len(new_entries)) - - # Try to guess how many blocks to fetch over `eth_getLogs` API next time - chunk_size = self.estimate_next_chunk_size(chunk_size, len(new_entries)) - - # Set where the next chunk starts - current_block = current_end + 1 - total_chunks_scanned += 1 - self.state.end_chunk(current_end) - - return all_processed, total_chunks_scanned - - - def _retry_web3_call(func, start_block, end_block, retries, delay) -> Tuple[int, list]: - """A custom retry loop to throttle down block range. - - If our JSON-RPC server cannot serve all incoming `eth_getLogs` in a single request, - we retry and throttle down block range for every retry. - - For example, Go Ethereum does not indicate what is an acceptable response size. - It just fails on the server-side with a "context was cancelled" warning. - - :param func: A callable that triggers Ethereum JSON-RPC, as func(start_block, end_block) - :param start_block: The initial start block of the block range - :param end_block: The initial start block of the block range - :param retries: How many times we retry - :param delay: Time to sleep between retries - """ - for i in range(retries): - try: - return end_block, func(start_block, end_block) - except Exception as e: - # Assume this is HTTPConnectionPool(host='localhost', port=8545): Read timed out. (read timeout=10) - # from Go Ethereum. This translates to the error "context was cancelled" on the server side: - # https://github.com/ethereum/go-ethereum/issues/20426 - if i < retries - 1: - # Give some more verbose info than the default middleware - logger.warning( - f"Retrying events for block range {start_block} - {end_block} ({end_block-start_block}) failed with {e} , retrying in {delay} seconds") - # Decrease the `eth_getBlocks` range - end_block = start_block + ((end_block - start_block) // 2) - # Let the JSON-RPC to recover e.g. from restart - time.sleep(delay) - continue - else: - logger.warning("Out of retries") - raise - - - def _fetch_events_for_all_contracts( - w3, - event, - argument_filters: Dict[str, Any], - from_block: int, - to_block: int) -> Iterable: - """Get events using eth_getLogs API. - - This method is detached from any contract instance. - - This is a stateless method, as opposed to create_filter. - It can be safely called against nodes which do not provide `eth_newFilter` API, like Infura. - """ - - if from_block is None: - raise Web3TypeError("Missing mandatory keyword argument to get_logs: from_block") - - # Currently no way to poke this using a public web3.py API. - # This will return raw underlying ABI JSON object for the event - abi = event._get_event_abi() - - # Depending on the Solidity version used to compile - # the contract that uses the ABI, - # it might have Solidity ABI encoding v1 or v2. - # We just assume the default that you set on Web3 object here. - # More information here https://eth-abi.readthedocs.io/en/latest/index.html - codec: ABICodec = w3.codec - - # Here we need to poke a bit into Web3 internals, as this - # functionality is not exposed by default. - # Construct JSON-RPC raw filter presentation based on human readable Python descriptions - # Namely, convert event names to their keccak signatures - # More information here: - # https://github.com/ethereum/web3.py/blob/e176ce0793dafdd0573acc8d4b76425b6eb604ca/web3/_utils/filters.py#L71 - data_filter_set, event_filter_params = construct_event_filter_params( - abi, - codec, - address=argument_filters.get("address"), - argument_filters=argument_filters, - from_block=from_block, - to_block=to_block - ) - - logger.debug(f"Querying eth_getLogs with the following parameters: {event_filter_params}") - - # Call JSON-RPC API on your Ethereum node. - # get_logs() returns raw AttributedDict entries - logs = w3.eth.get_logs(event_filter_params) - - # Convert raw binary data to Python proxy objects as described by ABI - all_events = [] - for log in logs: - # Convert raw JSON-RPC log result to human readable event by using ABI data - # More information how process_log works here - # https://github.com/ethereum/web3.py/blob/fbaf1ad11b0c7fac09ba34baff2c256cffe0a148/web3/_utils/events.py#L200 - evt = get_event_data(codec, abi, log) - # Note: This was originally yield, - # but deferring the timeout exception caused the throttle logic not to work - all_events.append(evt) - return all_events - - - if __name__ == "__main__": - # Simple demo that scans all the token transfers of RCC token (11k). - # The demo supports persistent state by using a JSON file. - # You will need an Ethereum node for this. - # Running this script will consume around 20k JSON-RPC calls. - # With locally running Geth, the script takes 10 minutes. - # The resulting JSON state file is 2.9 MB. - import sys - import json - from web3.providers.rpc import HTTPProvider - - # We use tqdm library to render a nice progress bar in the console - # https://pypi.org/project/tqdm/ - from tqdm import tqdm - - # RCC has around 11k Transfer events - # https://etherscan.io/token/0x9b6443b0fb9c241a7fdac375595cea13e6b7807a - RCC_ADDRESS = "0x9b6443b0fb9c241a7fdac375595cea13e6b7807a" - - # Reduced ERC-20 ABI, only Transfer event - ABI = """[ - { - "anonymous": false, - "inputs": [ - { - "indexed": true, - "name": "from", - "type": "address" - }, - { - "indexed": true, - "name": "to", - "type": "address" - }, - { - "indexed": false, - "name": "value", - "type": "uint256" - } - ], - "name": "Transfer", - "type": "event" - } - ] - """ - - class JSONifiedState(EventScannerState): - """Store the state of scanned blocks and all events. - - All state is an in-memory dict. - Simple load/store massive JSON on start up. - """ - - def __init__(self): - self.state = None - self.fname = "test-state.json" - # How many second ago we saved the JSON file - self.last_save = 0 - - def reset(self): - """Create initial state of nothing scanned.""" - self.state = { - "last_scanned_block": 0, - "blocks": {}, - } - - def restore(self): - """Restore the last scan state from a file.""" - try: - self.state = json.load(open(self.fname, "rt")) - print(f"Restored the state, previously {self.state['last_scanned_block']} blocks have been scanned") - except (IOError, json.decoder.JSONDecodeError): - print("State starting from scratch") - self.reset() - - def save(self): - """Save everything we have scanned so far in a file.""" - with open(self.fname, "wt") as f: - json.dump(self.state, f) - self.last_save = time.time() - - # - # EventScannerState methods implemented below - # - - def get_last_scanned_block(self): - """The number of the last block we have stored.""" - return self.state["last_scanned_block"] - - def delete_data(self, since_block): - """Remove potentially reorganised blocks from the scan data.""" - for block_num in range(since_block, self.get_last_scanned_block()): - if block_num in self.state["blocks"]: - del self.state["blocks"][block_num] - - def start_chunk(self, block_number, chunk_size): - pass - - def end_chunk(self, block_number): - """Save at the end of each block, so we can resume in the case of a crash or CTRL+C""" - # Next time the scanner is started we will resume from this block - self.state["last_scanned_block"] = block_number - - # Save the database file for every minute - if time.time() - self.last_save > 60: - self.save() - - def process_event(self, block_when: datetime.datetime, event: AttributeDict) -> str: - """Record a ERC-20 transfer in our database.""" - # Events are keyed by their transaction hash and log index - # One transaction may contain multiple events - # and each one of those gets their own log index - - # event_name = event.event # "Transfer" - log_index = event.logIndex # Log index within the block - # transaction_index = event.transactionIndex # Transaction index within the block - txhash = event.transactionHash.hex() # Transaction hash - block_number = event.blockNumber - - # Convert ERC-20 Transfer event to our internal format - args = event["args"] - transfer = { - "from": args["from"], - "to": args.to, - "value": args.value, - "timestamp": block_when.isoformat(), - } - - # Create empty dict as the block that contains all transactions by txhash - if block_number not in self.state["blocks"]: - self.state["blocks"][block_number] = {} - - block = self.state["blocks"][block_number] - if txhash not in block: - # We have not yet recorded any transfers in this transaction - # (One transaction may contain multiple events if executed by a smart contract). - # Create a tx entry that contains all events by a log index - self.state["blocks"][block_number][txhash] = {} - - # Record ERC-20 transfer in our database - self.state["blocks"][block_number][txhash][log_index] = transfer - - # Return a pointer that allows us to look up this event later if needed - return f"{block_number}-{txhash}-{log_index}" - - def run(): - - if len(sys.argv) < 2: - print("Usage: eventscanner.py http://your-node-url") - sys.exit(1) - - api_url = sys.argv[1] - - # Enable logs to the stdout. - # DEBUG is very verbose level - logging.basicConfig(level=logging.INFO) - - provider = HTTPProvider(api_url) - - # Disable the default JSON-RPC retry configuration - # as it correctly cannot handle eth_getLogs block range - provider.exception_retry_configuration = None - - w3 = Web3(provider) - - # Prepare stub ERC-20 contract object - abi = json.loads(ABI) - ERC20 = w3.eth.contract(abi=abi) - - # Restore/create our persistent state - state = JSONifiedState() - state.restore() - - # chain_id: int, w3: Web3, abi: Dict, state: EventScannerState, events: List, filters: Dict, max_chunk_scan_size: int=10000 - scanner = EventScanner( - w3=w3, - contract=ERC20, - state=state, - events=[ERC20.events.Transfer], - filters={"address": RCC_ADDRESS}, - # How many maximum blocks at the time we request from JSON-RPC - # and we are unlikely to exceed the response size limit of the JSON-RPC server - max_chunk_scan_size=10000 - ) - - # Assume we might have scanned the blocks all the way to the last Ethereum block - # that mined a few seconds before the previous scan run ended. - # Because there might have been a minor Ethereum chain reorganisations - # since the last scan ended, we need to discard - # the last few blocks from the previous scan results. - chain_reorg_safety_blocks = 10 - scanner.delete_potentially_forked_block_data(state.get_last_scanned_block() - chain_reorg_safety_blocks) - - # Scan from [last block scanned] - [latest ethereum block] - # Note that our chain reorg safety blocks cannot go negative - start_block = max(state.get_last_scanned_block() - chain_reorg_safety_blocks, 0) - end_block = scanner.get_suggested_scan_end_block() - blocks_to_scan = end_block - start_block - - print(f"Scanning events from blocks {start_block} - {end_block}") - - # Render a progress bar in the console - start = time.time() - with tqdm(total=blocks_to_scan) as progress_bar: - def _update_progress(start, end, current, current_block_timestamp, chunk_size, events_count): - if current_block_timestamp: - formatted_time = current_block_timestamp.strftime("%d-%m-%Y") - else: - formatted_time = "no block time available" - progress_bar.set_description(f"Current block: {current} ({formatted_time}), blocks in a scan batch: {chunk_size}, events processed in a batch {events_count}") - progress_bar.update(chunk_size) - - # Run the scan - result, total_chunks_scanned = scanner.scan(start_block, end_block, progress_callback=_update_progress) - - state.save() - duration = time.time() - start - print(f"Scanned total {len(result)} Transfer events, in {duration} seconds, total {total_chunks_scanned} chunk scans performed") - - run() - - -.. _WETH: https://etherscan.io/token/0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2#code -.. _asyncio: https://docs.python.org/3/library/asyncio.html -.. _gevent: https://www.gevent.org/ -.. _twisted: https://twistedmatrix.com/ -.. _celery: https://www.celeryproject.org/ diff --git a/docs/gas_price.rst b/docs/gas_price.rst deleted file mode 100644 index 48ea8db68a..0000000000 --- a/docs/gas_price.rst +++ /dev/null @@ -1,119 +0,0 @@ -.. _Gas_Price: - -Gas Price API -=============== - -.. warning:: - Gas price strategy is only supported for legacy transactions. The London fork - introduced ``maxFeePerGas`` and ``maxPriorityFeePerGas`` transaction parameters - which should be used over ``gasPrice`` whenever possible. - -For Ethereum (legacy) transactions, gas price is a delicate property. For this reason, -Web3 includes an API for configuring it. - -The Gas Price API allows you to define Web3's behaviour for populating the gas price. -This is done using a "Gas Price Strategy" - a method which takes the Web3 object and a -transaction dictionary and returns a gas price (denominated in wei). - -Retrieving gas price --------------------- - -To retrieve the gas price using the selected strategy simply call -:meth:`~web3.eth.Eth.generate_gas_price` - -.. code-block:: python - - >>> web3.eth.generate_gas_price() - 20000000000 - -Creating a gas price strategy -------------------------------- - -A gas price strategy is implemented as a python method with the following -signature: - -.. code-block:: python - - def gas_price_strategy(web3, transaction_params=None): - ... - -The method must return a positive integer representing the gas price in wei. - -To demonstrate, here is a rudimentary example of a gas price strategy that -returns a higher gas price when the value of the transaction is higher than -1 Ether. - -.. code-block:: python - - from web3 import Web3 - - def value_based_gas_price_strategy(web3, transaction_params): - if transaction_params['value'] > Web3.to_wei(1, 'ether'): - return Web3.to_wei(20, 'gwei') - else: - return Web3.to_wei(5, 'gwei') - -Selecting the gas price strategy --------------------------------- - -The gas price strategy can be set by calling :meth:`~web3.eth.Eth.set_gas_price_strategy`. - -.. code-block:: python - - from web3 import Web3 - - def value_based_gas_price_strategy(web3, transaction_params): - ... - - w3 = Web3(...) - w3.eth.set_gas_price_strategy(value_based_gas_price_strategy) - -Available gas price strategies ------------------------------- - -.. py:module:: web3.gas_strategies.rpc - -.. py:method:: rpc_gas_price_strategy(web3, transaction_params=None) - - Makes a call to the `JSON-RPC eth_gasPrice - method `_ which returns - the gas price configured by the connected Ethereum node. - -.. py:module:: web3.gas_strategies.time_based - -.. py:method:: construct_time_based_gas_price_strategy(max_wait_seconds, sample_size=120, probability=98, weighted=False) - - Constructs a strategy which will compute a gas price such that the - transaction will be mined within a number of seconds defined by - ``max_wait_seconds`` with a probability defined by ``probability``. The - gas price is computed by sampling ``sample_size`` of the most recently - mined blocks. If ``weighted=True``, the block time will be weighted towards - more recently mined blocks. - - * ``max_wait_seconds`` The desired maximum number of seconds the - transaction should take to mine. - * ``sample_size`` The number of recent blocks to sample - * ``probability`` An integer representation of the desired probability that - the transaction will be mined within ``max_wait_seconds``. 0 means 0% - and 100 means 100%. - - The following ready to use versions of this strategy are available. - - * ``web3.gas_strategies.time_based.fast_gas_price_strategy``: Transaction mined within 60 seconds. - * ``web3.gas_strategies.time_based.medium_gas_price_strategy``: Transaction mined within 5 minutes. - * ``web3.gas_strategies.time_based.slow_gas_price_strategy``: Transaction mined within 1 hour. - * ``web3.gas_strategies.time_based.glacial_gas_price_strategy``: Transaction mined within 24 hours. - - .. warning:: Due to the overhead of sampling the recent blocks it is - recommended that a caching solution be used to reduce the amount of chain - data that needs to be re-fetched for each request. - - .. code-block:: python - - from web3 import Web3 - from web3.gas_strategies.time_based import medium_gas_price_strategy - - w3 = Web3(...) - w3.eth.set_gas_price_strategy(medium_gas_price_strategy) - - w3.provider.cache_allowed_requests = True diff --git a/docs/index.rst b/docs/index.rst deleted file mode 100644 index 8698c72e81..0000000000 --- a/docs/index.rst +++ /dev/null @@ -1,48 +0,0 @@ -.. meta:: - :description: Python Web3 SDK for Ethereum and EVM blockchains - -gm -== - -.. image:: _static/banner/banner-snek.jpg - :alt: Banner Image - -**web3.py** is a Python library for interacting with Ethereum. - -It's commonly found in `decentralized apps (dapps)`_ to help with -sending transactions, interacting with smart contracts, reading -block data, and a variety of other use cases. - -For project updates, follow `@EthereumPython`_ and sign up -for new post notifications on the `blog`_. - - -Getting Started ---------------- - -.. NOTE:: - 👋 Brand new to Ethereum? - - 0. Don't travel alone! Join the Ethereum Python Community `Discord`_. - 1. Read this `blog post series`_ for a gentle introduction to Ethereum blockchain concepts. - 2. The :ref:`Overview` page will give you a quick idea of what else web3.py can do. - 3. Try building a little something! - -- Ready to code? → :ref:`quickstart` -- Quick tour? → :ref:`overview` -- Synchronous help? → `Discord`_ -- Asynchronous help? → `StackExchange`_ -- Report a bug? → `Github`_ -- Want to help us? → :ref:`Contribute ` -- Looking for inspiration? → :ref:`resources` - -.. include:: toc.rst - - -.. _decentralized apps (dapps): https://ethereum.org/dapps/ -.. _@EthereumPython: https://twitter.com/EthereumPython -.. _blog: https://snakecharmers.ethereum.org/ -.. _blog post series: https://snakecharmers.ethereum.org/a-developers-guide-to-ethereum-pt-1 -.. _StackExchange: https://ethereum.stackexchange.com/questions/tagged/web3.py -.. _Discord: https://discord.gg/GHryRvPB84 -.. _Github: https://github.com/ethereum/web3.py/issues diff --git a/docs/internals.rst b/docs/internals.rst deleted file mode 100644 index 2f6182c67a..0000000000 --- a/docs/internals.rst +++ /dev/null @@ -1,483 +0,0 @@ -Web3 Internals -============== - - -.. warning:: This section of the documentation is for advanced users. You should probably stay away from these APIs if you don't know what you are doing. - -The Web3 library has multiple layers of abstraction between the public api -exposed by the web3 object and the backend or node that web3 is connecting to. - -* **Providers** are responsible for the actual communication with the - blockchain such as sending JSON-RPC requests over HTTP or an IPC socket. -* **Middleware** provide hooks for monitoring and modifying requests and - responses to and from the provider. -* **Managers** provide thread safety and primitives to allow for asynchronous usage of web3. - -Here are some common things you might want to do with these APIs. - -* Redirect certain RPC requests to different providers such as sending all - *read* operations to a provider backed by a remote node and all *write* operations - to a local node that you control. -* Transparently intercept transactions sent over ``eth_sendTransaction``, sign - them locally, and then send them through ``eth_sendRawTransaction``. -* Modify the response from an RPC request so that it is returned in different - format such as converting all integer values to their hexadecimal - representation. -* Validate the inputs to RPC requests - - -Request Lifecycle ------------------ - -Each web3 RPC call passes through these layers in the following manner. - -.. code-block:: none - - *********** ************ - | Request | | Response | - *********** ************ - | ^ - v | - +-----------------------------+ - | Manager | - +-----------------------------+ - | ^ - v | - +-----------------------------+ - | Middleware | - +-----------------------------+ - | ^ - v | - +-----------------------------+ - | Provider | - +-----------------------------+ - - -You can visualize this relationship like an onion, with the Provider at the -center. The request originates from the ``Manager``, outside of the onion, passing -down through each layer of the onion until it reaches the ``Provider`` at the -center. The ``Provider`` then handles the request, producing a response which will -then pass back out from the center of the onion, through each layer until it is -finally returned by the ``Manager``. - - -Providers ---------- - -A provider is responsible for all direct blockchain interactions. In most -cases this means interacting with the JSON-RPC server for an ethereum node over -HTTP or an IPC socket. There is however nothing which requires providers to be -RPC based, allowing for providers designed for testing purposes which use an -in-memory EVM to fulfill requests. - - -Writing your own Provider -~~~~~~~~~~~~~~~~~~~~~~~~~ - -Writing your own provider requires implementing two required methods as well as -setting the middleware the provider should use. - - -.. py:method:: BaseProvider.make_request(method, params) - - Each provider class **must** implement this method. This method **should** - return a JSON object with either a ``'result'`` key in the case of success, - or an ``'error'`` key in the case of failure. - - - * ``method`` This will be a string representing the JSON-RPC method that - is being called such as ``'eth_sendTransaction'``. - * ``params`` This will be a list or other iterable of the parameters for - the JSON-RPC method being called. - - -.. py:method:: BaseProvider.is_connected(show_traceback=False) - - This function should return ``True`` or ``False`` depending on whether the - provider should be considered *connected*. For example, an IPC socket - based provider should return ``True`` if the socket is open and ``False`` - if the socket is closed. - - If set to ``True``, the optional ``show_traceback`` boolean will raise a - ``ProviderConnectionError`` and provide information on why the provider should - not be considered *connected*. - - -.. py:attribute:: BaseProvider.middleware - - This should be an iterable of middleware. - -You can set a new list of middleware by assigning to ``provider.middleware``, -with the first middleware that processes the request at the beginning of the list. - - -Provider Configurations -~~~~~~~~~~~~~~~~~~~~~~~ - -.. _request_caching: - -Request Caching -``````````````` - -.. important:: - Familiarize yourself with the validation logic for request caching before - enabling it. Since this feature often requires making additional requests under the - hood to try to guarantee the validity of the data, it may create unnecessary - overhead for your use case. Validation can be turned off by setting the - ``request_cache_validation_threshold`` option to ``None``, caching all allowed - requests, or configured for adjusting performance to your needs. - - -Request caching can be configured at the provider level via the following configuration -options on the provider instance: - -- ``cache_allowed_requests: bool = False`` -- ``cacheable_requests: Optional[Set[RPCEndpoint]]`` -- ``request_cache_validation_threshold: Optional[Union[RequestCacheValidationThreshold, int]]`` - -For requests that don't rely on block data (e.g., ``eth_chainId``), enabling request -caching by setting the ``cache_allowed_requests`` option to ``True`` will cache all -responses. This is safe to do. - -However, for requests that rely on block data (e.g., ``eth_getBlockByNumber``), it is -not safe to always cache their responses because block data can change - during a -chain reorganization or while finality has not been reached, for example. The -``request_cache_validation_threshold`` option allows configuring a safe threshold for -caching responses that depend on block data. By default, this option is configured -to internal values deemed "safe" for the chain id you are connected to. If you are -connected to mainnet Ethereum, this value is set to the ``finalized`` block number. -If you are connected to another chain, this value is set to a time interval in seconds, -from the current time, that is deemed "safe" for that chain's finality mechanism. - -**It's important to understand that, in order to perform these validations, extra -requests are sometimes made to the node to get the appropriate information. For a -transaction request, for example, it is necessary to get the block information to -validate the transaction is beyond the safe threshold. This can create overhead, -especially for high-frequency requests. For this reason, it is important to understand -when to turn on caching and how to configure the validation appropriately for your -use case in order to avoid unnecessary overhead.** - -We keep a list of some reasonable values for bigger chains and -use the time interval of 1 hour for everything else. Below is a list of the default -values for internally configured chains: - - - ETH: RequestCacheValidationThreshold.FINALIZED ("finalized" block) - - ARB1: 7 days - - ZKSYNC: 1 hour - - OETH: 3 minutes - - MATIC: 30 minutes - - ZKEVM: 1 hour - - BASE: 7 days - - SCR: 1 hour - - GNO: 5 minutes - - AVAX: 2 minutes - - BNB: 2 minutes - - FTM: 1 minute - -For Ethereum mainnet, for example, this means that a request's response will be cached -if the block number the request relies on is less than or equal to the ``finalized`` -block number. If the block number exceeds the ``finalized`` block number, the response -won't be cached. For all others, the response will be cached if the block timestamp -related to the data that is being requested is older than or equal to the time interval -configured for that chain. For any chain not on this list, the default value is set to -1 hour (this includes all testnets). - -This behavior can be modified by setting the ``request_cache_validation_threshold`` -option to ``RequestCacheValidationThreshold.SAFE``, which uses the ``safe`` block as -the threshold (Ethereum mainnet only), to your own time interval in seconds (for any -chain, including mainnet Ethereum), or to ``None``, which disables any validation and -caches all requests (this is not recommended for non testnet chains). The -``RequestCacheValidationThreshold`` enum, for mainnet ``finalized`` and ``safe`` values, -is imported from the ``web3.utils`` module. - -Note that the ``cacheable_requests`` option can be used to specify a set of RPC -endpoints that are allowed to be cached. By default, this option is set to an internal -list of deemed-safe-to-cache endpoints, excluding endpoints such as ``eth_call``, whose -responses can vary and are not safe to cache. The default list of cacheable requests is -below, with requests validated by the ``request_cache_validation_threshold`` option in -bold: - - - eth_chainId - - web3_clientVersion - - net_version - - **eth_getBlockByNumber** - - **eth_getRawTransactionByBlockNumberAndIndex** - - **eth_getBlockTransactionCountByNumber** - - **eth_getUncleByBlockNumberAndIndex** - - **eth_getUncleCountByBlockNumber** - - **eth_getBlockByHash** - - **eth_getTransactionByHash** - - **eth_getTransactionByBlockNumberAndIndex** - - **eth_getTransactionByBlockHashAndIndex** - - **eth_getBlockTransactionCountByHash** - - **eth_getRawTransactionByBlockHashAndIndex** - - **eth_getUncleByBlockHashAndIndex** - - **eth_getUncleCountByBlockHash** - -.. code-block:: python - - from web3 import Web3, HTTPProvider - from web3.utils import RequestCacheValidationThreshold - - w3 = Web3(HTTPProvider( - endpoint_uri="...", - - # optional flag to turn on cached requests, defaults to ``False`` - cache_allowed_requests=True, - - # optional, defaults to an internal list of deemed-safe-to-cache endpoints (see above) - cacheable_requests={"eth_chainId", "eth_getBlockByNumber"}, - - # optional, defaults to a value that is based on the chain id (see above) - request_cache_validation_threshold=60 * 60, # 1 hour - # request_cache_validation_threshold=RequestCacheValidationThreshold.SAFE, # Ethereum mainnet only - )) - -.. _http_retry_requests: - -Retry Requests for HTTP Providers -````````````````````````````````` - -``HTTPProvider`` and ``AsyncHTTPProvider`` instances retry certain requests by default -on exceptions. This can be configured via the ``exception_retry_configuration`` -property on the provider instance, which takes a -:class:`~web3.providers.rpc.utils.ExceptionRetryConfiguration` class as its value. The -retry mechanism employs an exponential backoff strategy, starting from the initial -value determined by the ``backoff_factor``, and doubling the delay with each attempt, -up to the ``retries`` value. Below is an example showing the default options for the -retry configuration and how to override them. - - -.. py:class:: web3.providers.rpc.utils.ExceptionRetryConfiguration - - .. py:attribute:: errors - - A tuple of exceptions that the provider should retry on. The default is - ``HTTPProvider``: ``(ConnectionError, requests.HTTPError, requests.Timeout)`` - and ``AsyncHTTPProvider``: ``(aiohttp.ClientError, asyncio.TimeoutError)``. - - .. py:attribute:: retries - - The number of retries to attempt. The default is 5. - - .. py:attribute:: backoff_factor - - The initial delay multiplier, which doubles with each retry attempt. The default - is 0.125. - - .. py:attribute:: method_allowlist - - A list of retryable methods. The default is an in-house list of deemed-safe-to- - retry methods. - -.. code-block:: python - - from web3 import Web3, HTTPProvider - from web3.providers.rpc.utils import ( - REQUEST_RETRY_ALLOWLIST, - ExceptionRetryConfiguration, - ) - - w3 = Web3(HTTPProvider( - endpoint_uri="...", - exception_retry_configuration=ExceptionRetryConfiguration( - errors=DEFAULT_EXCEPTIONS, - - # number of retries to attempt - retries=5, - - # initial delay multiplier, doubles with each retry attempt - backoff_factor=0.125, - - # an in-house default list of retryable methods - method_allowlist=REQUEST_RETRY_ALLOWLIST, - ), - )) - -For the different http providers, ``DEFAULT_EXCEPTIONS`` is defined as: - -- ``HTTPProvider``: ``(ConnectionError, requests.HTTPError, requests.Timeout)`` -- ``AsyncHTTPProvider``: ``(ConnectionError, aiohttp.ClientError, asyncio.TimeoutError)`` - -Setting ``retry_configuration`` to ``None`` will disable retries on exceptions for the -provider instance. - -.. code-block:: python - - from web3 import Web3, HTTPProvider - - w3 = Web3(HTTPProvider(endpoint_uri="...", retry_configuration=None) - - - -Managers --------- - -The Manager acts as a gatekeeper for the request/response lifecycle. It is -unlikely that you will need to change the Manager as most functionality can be -implemented in the Middleware layer. - -.. _internals__persistent_connection_providers: - -Request Processing for Persistent Connection Providers ------------------------------------------------------- - -.. py:class:: web3.providers.persistent.request_processor.RequestProcessor - -The ``RequestProcessor`` class is responsible for the storing and syncing up of -asynchronous requests to responses for a ``PersistentConnectionProvider``. The -:class:`~web3.providers.persistent.WebSocketProvider` and the -:class:`~web3.providers.persistent.AsyncIPCProvider` are two persistent connection -providers. In order to send a request and receive a response to that same request, -``PersistentConnectionProvider`` instances have to match request *id* values to -response *id* values coming back from the socket connection. Any provider that does -not adhere to the `JSON-RPC 2.0 specification `_ -in this way will not work with ``PersistentConnectionProvider`` instances. The specifics -of how the request processor handles this are outlined below. - -Listening for Responses -~~~~~~~~~~~~~~~~~~~~~~~ - -Implementations of the ``PersistentConnectionProvider`` class have a message listener -background task that is called when the socket connection is established. This task -is responsible for listening for any and all messages coming in over the socket -connection and storing them in the ``RequestProcessor`` instance internal to the -``PersistentConnectionProvider`` instance. The ``RequestProcessor`` instance is -responsible for storing the messages in the correct cache, either the one-to-one cache -or the one-to-many (subscriptions) queue, depending on whether the message has a -JSON-RPC *id* value or not. - - -One-To-One Requests -~~~~~~~~~~~~~~~~~~~ - -One-to-one requests can be summarized as any request that expects only one response -back. An example is using the ``eth`` module API to request the latest block number. - -.. code-block:: python - - >>> async def ws_one_to_one_example(): - ... async with AsyncWeb3(WebSocketProvider(f"ws://127.0.0.1:8546")) as w3: - ... # make a request and expect a single response returned on the same line - ... latest_block_num = await w3.eth.block_number - - >>> asyncio.run(ws_one_to_one_example()) - -With persistent socket connections, we have to call ``send()`` and asynchronously -receive responses via another means, generally by calling ``recv()`` or by iterating -on the socket connection for messages. As outlined above, the -``PersistentConnectionProvider`` class has a message listener background task that -handles the receiving of messages. - -Due to this asynchronous nature of sending and receiving, in order to make one-to-one -request-to-response calls work, we have to save the request information somewhere so -that, when the response is received, we can match it to the original request that was -made (i.e. the request with a matching *id* to the response that was received). The -stored request information is then used to process the response when it is received, -piping it through the response formatters and middleware internal to the *web3.py* -library. - -In order to store the request information, the ``RequestProcessor`` class has an -internal ``RequestInformation`` cache. The ``RequestInformation`` class saves important -information about a request. - -.. py:class:: web3._utils.caching.RequestInformation - - .. py:attribute:: method - - The name of the method - e.g. "eth_subscribe". - - .. py:attribute:: params - - The params used when the call was made - e.g. ("newPendingTransactions", True). - - .. py:attribute:: response_formatters - - The formatters that will be used to process the response. - - .. py:attribute:: middleware_response_processors - - Any middleware that processes responses that is present on the instance at the - time of the request is appended here, in order, so the response may be piped - through that logic when it comes in. - - .. py:attribute:: subscription_id - - If the request is an ``eth_subscribe`` request, rather than - popping this information from the cache when the response to the subscription call - comes in (i.e. the subscription *id*), we save the subscription id with the - request information so that we can correctly process all subscription messages - that come in with that subscription *id*. For one-to-one request-to-response - calls, this value is always ``None``. - -One-to-one responses, those that include a JSON-RPC *id* in the response object, are -stored in an internal ``SimpleCache`` class, isolated from any one-to-many responses. -When the ``PersistentConnectionProvider`` is looking for a response internally, it will -expect the message listener task to store the response in this cache. Since the request -*id* is used in the cache key generation, it will then look for a cache key that matches -the response *id* with that of the request *id*. If the cache key is found, the response -is processed and returned to the user. If the cache key is not found, the operation will -time out and raise a ``TimeExhausted`` exception. This timeout can be configured by the -user when instantiating the ``PersistentConnectionProvider`` instance via the -``response_timeout`` keyword argument. - -One-To-Many Requests -~~~~~~~~~~~~~~~~~~~~ - -One-to-many requests can be summarized by any request that expects many responses as a -result of the initial request. The only current example is the ``eth_subscribe`` -request. The initial ``eth_subscribe`` request expects only one response, the -subscription *id* value, but it also expects to receive many ``eth_subscription`` -messages if and when the request is successful. For this reason, the original request -is considered a one-to-one request so that a subscription *id* can be returned to the -user on the same line, but the ``process_subscriptions()`` method on the -:class:`~web3.providers.persistent.PersistentConnection` class, the public API for -interacting with the active persistent socket connection, is set up to receive -``eth_subscription`` responses over an asynchronous interator pattern. - -.. code-block:: python - - >>> async def ws_subscription_example(): - ... async with AsyncWeb3(WebSocketProvider(f"ws://127.0.0.1:8546")) as w3: - ... # Subscribe to new block headers and receive the subscription_id. - ... # A one-to-one call with a trigger for many responses - ... subscription_id = await w3.eth.subscribe("newHeads") - ... - ... # Listen to the socket for the many responses utilizing the - ... # ``w3.socket`` ``PersistentConnection`` public API method - ... # ``process_subscriptions()`` - ... async for response in w3.socket.process_subscriptions(): - ... # Receive only one-to-many responses here so that we don't - ... # accidentally return the response for a one-to-one request in this - ... # block - ... - ... print(f"{response}\n") - ... - ... if some_condition: - ... # unsubscribe from new block headers, another one-to-one request - ... is_unsubscribed = await w3.eth.unsubscribe(subscription_id) - ... if is_unsubscribed: - ... break - - >>> asyncio.run(ws_subscription_example()) - -One-to-many responses, those that do not include a JSON-RPC *id* in the response object, -are stored in an internal ``asyncio.Queue`` instance, isolated from any one-to-one -responses. When the ``PersistentConnectionProvider`` is looking for one-to-many -responses internally, it will expect the message listener task to store these messages -in this queue. Since the order of the messages is important, the queue is a FIFO queue. -The ``process_subscriptions()`` method on the ``PersistentConnection`` class is set up -to pop messages from this queue as FIFO over an asynchronous iterator pattern. - -If the stream of messages from the socket is not being interrupted by any other -tasks, the queue will generally be in sync with the messages coming in over the -socket. That is, the message listener will put a message in the queue and the -``process_subscriptions()`` method will pop that message from the queue and yield -control of the loop back to the listener. This will continue until the socket -connection is closed or the user unsubscribes from the subscription. If the stream of -messages lags a bit, or the provider is not consuming messages but has subscribed to -a subscription, this internal queue may fill up with messages until it reaches its max -size and then trigger a waiting ``asyncio.Event`` until the provider begins consuming -messages from the queue again. For this reason, it's important to begin consuming -messages from the queue, via the ``process_subscriptions()`` method, as soon as a -subscription is made. diff --git a/docs/middleware.rst b/docs/middleware.rst deleted file mode 100644 index 555a630634..0000000000 --- a/docs/middleware.rst +++ /dev/null @@ -1,613 +0,0 @@ -.. _middleware_internals: - -Middleware -========== - -``Web3`` is instantiated with layers of middleware by default. They sit between the public -``Web3`` methods and the :doc:`providers`, and are used to perform sanity checks, convert data -types, enable ENS support, and more. Each layer can modify the request and/or response. -While several middleware are enabled by default, others are available for optional use, -and you're free to create your own! - -Each middleware layer gets invoked before the request reaches the provider, and then -processes the result after the provider returns, in reverse order. However, it is -possible for a middleware to return early from a call without the request ever getting -to the provider (or even reaching the middleware that are in deeper layers). - - -.. _Modifying_Middleware: - -Configuring Middleware ------------------------ - -Middleware can be added, removed, replaced, and cleared at runtime. To make that easier, you -can name the middleware for later reference. - -Middleware Order -~~~~~~~~~~~~~~~~ - -Think of the middleware as being layered in an onion, where you initiate a web3.py request at -the outermost layer of the onion, and the Ethereum node (like geth) receives and responds -to the request inside the innermost layer of the onion. Here is a (simplified) diagram: - -.. code-block:: none - - New request from web3.py - - | - | - v - - `````Layer 2`````` - ``````` ``````` - ````` | ```` - ```` v ```` - ``` ``` - `. ````````Layer 1``````` `.` - `` ```` ````` .` - `. ``` | ``` `.` - .` ``` v ``` `. - `. `.` ``` .` - `` .` `Layer 0` `` .` - `` `. ````` `````` . .` - `. `` ``` | ``` .` . - . `` `.` | `` . . - . `. `` JSON-RPC call .` . .` - . . `` | . `` . - `` . . v . . . - . .` . . . `` - . . . Ethereum node .` . . - . . . . . . - . `` `. | . . . - . . .` | .` . . - `. .` .` Response .` .` . - . . `.` | `.` `. . - `. . ``` | ```` `. . - . `. ````` v ```` `. `` - . .` ```Layer 0`` `` `. - . `. `.` `. - . `. | `.` `. - .` ``` | ``` .` - `. ``` v ```` `.` - `` `````` ````` .` - `` `````Layer 1````` `.` - ``` ``` - ```` | ``` - ````` v ```` - `````` ````` - `````````Layer 2`````````` - - | - v - - Returned value in web3.py - - -The middleware are maintained in ``Web3.middleware_onion``. See below for the API. - -When specifying middleware in a list, or retrieving the list of middleware, they will -be returned in the order of outermost layer first and innermost layer last. In the above -example, that means that ``w3.middleware_onion.middleware`` would return the middleware -in the order of: ``[2, 1, 0]``. - - -.. _middleware_stack_api: - -Middleware Stack API -~~~~~~~~~~~~~~~~~~~~ - -To add or remove items in different layers, use the following API: - -.. py:method:: Web3.middleware_onion.add(middleware, name=None) - - Middleware will be added to the outermost layer. That means the new middleware will modify the - request first, and the response last. You can optionally name it with any hashable object, - typically a string. - - .. code-block:: python - - >>> w3 = Web3(...) - >>> w3.middleware_onion.add(web3.middleware.GasPriceStrategyMiddleware) - # or - >>> w3.middleware_onion.add(web3.middleware.GasPriceStrategyMiddleware, 'gas_price_strategy') - -.. py:method:: Web3.middleware_onion.inject(middleware, name=None, layer=None) - - Inject a named middleware to an arbitrary layer. - - The current implementation only supports injection at the innermost or - outermost layers. Note that injecting to the outermost layer is equivalent to calling - :meth:`Web3.middleware_onion.add` . - - .. code-block:: python - - # Either of these will put the gas_price_strategy middleware at the innermost layer - >>> w3 = Web3(...) - >>> w3.middleware_onion.inject(web3.middleware.GasPriceStrategyMiddleware, layer=0) - # or - >>> w3.middleware_onion.inject(web3.middleware.GasPriceStrategyMiddleware, 'gas_price_strategy', layer=0) - -.. py:method:: Web3.middleware_onion.remove(middleware) - - Middleware will be removed from whatever layer it was in. If you added the middleware with - a name, use the name to remove it. If you added the middleware as an object, use the object - again later to remove it: - - .. code-block:: python - - >>> w3 = Web3(...) - >>> w3.middleware_onion.remove(web3.middleware.GasPriceStrategyMiddleware) - # or - >>> w3.middleware_onion.remove('gas_price_strategy') - -.. py:method:: Web3.middleware_onion.replace(old_middleware, new_middleware) - - Middleware will be replaced from whatever layer it was in. If the middleware was named, it will - continue to have the same name. If it was un-named, then you will now reference it with the new - middleware object. - - .. code-block:: python - - >>> from web3.middleware import GasPriceStrategyMiddleware, AttributeDictMiddleware - >>> w3 = Web3(provider, middleware=[GasPriceStrategyMiddleware, AttributeDictMiddleware]) - - >>> w3.middleware_onion.replace(GasPriceStrategyMiddleware, AttributeDictMiddleware) - # this is now referenced by the new middleware object, so to remove it: - >>> w3.middleware_onion.remove(AttributeDictMiddleware) - - # or, if it was named - - >>> w3.middleware_onion.replace('gas_price_strategy', AttributeDictMiddleware) - # this is still referenced by the original name, so to remove it: - >>> w3.middleware_onion.remove('gas_price_strategy') - -.. py:method:: Web3.middleware_onion.clear() - - Empty all the middleware, including the default ones. - - .. code-block:: python - - >>> w3 = Web3(...) - >>> w3.middleware_onion.clear() - >>> assert len(w3.middleware_onion) == 0 - -.. py:attribute:: Web3.middleware_onion.middleware - - Return all the current middleware for the ``Web3`` instance in the appropriate order for importing into a new - ``Web3`` instance. - - .. code-block:: python - - >>> w3_1 = Web3(...) - # add uniquely named middleware: - >>> w3_1.middleware_onion.add(web3.middleware.GasPriceStrategyMiddleware, 'test_middleware') - # export middleware from first w3 instance - >>> middleware = w3_1.middleware_onion.middleware - - # import into second instance - >>> w3_2 = Web3(..., middleware=middleware) - >>> assert w3_1.middleware_onion.middleware == w3_2.middleware_onion.middleware - >>> assert w3_2.middleware_onion.get('test_middleware') - - -Instantiate with Custom Middleware -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Instead of working from the default list, you can specify a custom list of -middleware when initializing Web3: - -.. code-block:: python - - Web3(middleware=[my_middleware1, my_middleware2]) - -.. warning:: - This will *replace* the default middleware. To keep the default functionality, - either use ``middleware_onion.add()`` from above, or add the default middleware to - your list of new middleware. - - -.. _default_middleware: - -Default Middleware ------------------- - -The following middleware are included by default: - -* ``gas_price_strategy`` -* ``ens_name_to_address`` -* ``attrdict`` -* ``validation`` -* ``gas_estimate`` - -The defaults are defined in the ``get_default_middleware()`` method in ``web3/manager.py``. - -AttributeDict -~~~~~~~~~~~~~ - -.. py:class:: web3.middleware.AttributeDictMiddleware - - This middleware recursively converts any dictionary type in the result of a call - to an ``AttributeDict``. This enables dot-syntax access, like - ``eth.get_block('latest').number`` in addition to - ``eth.get_block('latest')['number']``. - - .. note:: - Accessing a property via attribute breaks type hinting. For this reason, this - feature is available as a middleware, which may be removed if desired. - -ENS Name to Address Resolution -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -.. py:class:: web3.middleware.ENSNameToAddressMiddleware - - This middleware converts Ethereum Name Service (ENS) names into the - address that the name points to. For example :meth:`w3.eth.send_transaction ` will - accept .eth names in the 'from' and 'to' fields. - - .. note:: - This middleware only converts ENS names on chains where the proper ENS - contracts are deployed to support this functionality. All other cases will - result in a ``NameNotFound`` error. - -Gas Price Strategy -~~~~~~~~~~~~~~~~~~ - -.. py:class:: web3.middleware.GasPriceStrategyMiddleware - - .. warning:: - - Gas price strategy is only supported for legacy transactions. The London fork - introduced ``maxFeePerGas`` and ``maxPriorityFeePerGas`` transaction parameters - which should be used over ``gasPrice`` whenever possible. - - This adds a ``gasPrice`` to transactions if applicable and when a gas price strategy has - been set. See :ref:`Gas_Price` for information about how gas price is derived. - -Buffered Gas Estimate -~~~~~~~~~~~~~~~~~~~~~ - -.. py:class:: web3.middleware.BufferedGasEstimateMiddleware - - This adds a gas estimate to transactions if ``gas`` is not present in the transaction - parameters. Sets gas to: - ``min(w3.eth.estimate_gas + gas_buffer, gas_limit)`` - where the gas_buffer default is 100,000 - -Validation -~~~~~~~~~~ - -.. py:class:: web3.middleware.ValidationMiddleware - - This middleware includes block and transaction validators which perform validations - for transaction parameters. - - -Optional Middleware -------------------- - -``Web3`` includes optional middleware for common use cases. Below is a list of available -middleware which are not enabled by default. - -Stalecheck -~~~~~~~~~~~~ - -.. py:method:: web3.middleware.StalecheckMiddlewareBuilder - - This middleware checks how stale the blockchain is, and interrupts calls with a failure - if the blockchain is too old. - - * ``allowable_delay`` is the length in seconds that the blockchain is allowed to be - behind of ``time.time()`` - - Because this middleware takes an argument, you must create the middleware - with a method call. - - .. code-block:: python - - two_day_stalecheck = StalecheckMiddlewareBuilder.build(60 * 60 * 24 * 2) - web3.middleware_onion.add(two_day_stalecheck) - - If the latest block in the blockchain is older than 2 days in this example, then the - middleware will raise a ``StaleBlockchain`` exception on every call except - ``web3.eth.get_block()``. - - -.. _geth-poa: - -Proof of Authority -~~~~~~~~~~~~~~~~~~ - -.. py:class:: web3.middleware.ExtraDataToPOAMiddleware - -.. important:: - It is **crucial** that this middleware is injected at the 0th layer of the - middleware onion, using - ``w3.middleware_onion.inject(ExtraDataToPOAMiddleware, layer=0)``, to guarantee - it is the *first* middleware to process the response and modify the ``extraData`` - field. This ensures it processes the field before any other middleware attempts - to validate it. - -``ExtraDataToPOAMiddleware`` is required to connect to ``geth --dev`` and may -also be needed for other EVM compatible blockchains like Polygon or BNB Chain -(Binance Smart Chain). - -If the middleware is not injected at the 0th layer of the middleware onion, you may get -errors like the example below when interacting with your EVM node. - -.. code-block:: shell - - web3.exceptions.ExtraDataLengthError: The field extraData is 97 bytes, but should be - 32. It is quite likely that you are connected to a POA chain. Refer to - http://web3py.readthedocs.io/en/stable/middleware.html#proof-of-authority - for more details. The full extraData is: HexBytes('...') - -The easiest way to connect to a default ``geth --dev`` instance which loads the -middleware is: - -.. code-block:: python - - >>> from web3.auto.gethdev import w3 - - # confirm that the connection succeeded - >>> w3.client_version - 'Geth/v1.14.5-stable-4bb3c89d/linux-amd64/go1.22.4' - -This example connects to a local ``geth --dev`` instance on Linux with a -unique IPC location and loads the middleware: - -.. code-block:: python - - >>> from web3 import Web3, IPCProvider - - # connect to the IPC location started with 'geth --dev --datadir ~/mynode' - >>> w3 = Web3(IPCProvider('~/mynode/geth.ipc')) - - >>> from web3.middleware import ExtraDataToPOAMiddleware - - # inject the poa compatibility middleware to the innermost layer (0th layer) - >>> w3.middleware_onion.inject(ExtraDataToPOAMiddleware, layer=0) - - # confirm that the connection succeeded - >>> w3.client_version - 'Geth/v1.7.3-stable-4bb3c89d/linux-amd64/go1.9' - -Why is ``ExtraDataToPOAMiddleware`` necessary? -'''''''''''''''''''''''''''''''''''''''''''''' - -There is no strong community consensus on a single Proof-of-Authority (PoA) standard yet. -Some nodes have successful experiments running though. One is go-ethereum (geth), -which uses a prototype PoA for its development mode and the Goerli test network. - -Unfortunately, it does deviate from the yellow paper specification, which constrains the -``extraData`` field in each block to a maximum of 32-bytes. Geth is one such example -where PoA uses more than 32 bytes, so this middleware modifies the block data a bit -before returning it. - -.. _local-filter: - -Locally Managed Log and Block Filters -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -.. py:method:: web3.middleware.LocalFilterMiddleware - -This middleware provides an alternative to ethereum node managed filters. When used, Log and -Block filter logic are handled locally while using the same web3 filter api. Filter results are -retrieved using JSON-RPC endpoints that don't rely on server state. - -.. doctest:: - - >>> from web3 import Web3, EthereumTesterProvider - >>> w3 = Web3(EthereumTesterProvider()) - >>> from web3.middleware import LocalFilterMiddleware - >>> w3.middleware_onion.add(LocalFilterMiddleware) - -.. code-block:: python - - # Normal block and log filter apis behave as before. - >>> block_filter = w3.eth.filter("latest") - - >>> log_filter = myContract.events.myEvent.build_filter().deploy() - -Signing -~~~~~~~ - -.. py:method:: web3.middleware.SignAndSendRawMiddlewareBuilder - -This middleware automatically captures transactions, signs them, and sends them as raw transactions. -The ``from`` field on the transaction, or ``w3.eth.default_account`` must be set to the address of the private key for -this middleware to have any effect. - -The ``build`` method for this middleware builder takes a single argument: - - * ``private_key_or_account`` A single private key or a tuple, list or set of private keys. - - Keys can be in any of the following formats: - - * An ``eth_account.LocalAccount`` object - * An ``eth_keys.PrivateKey`` object - * A raw private key as a hex string or byte string - -.. important:: - Since this middleware signs transactions, it must always run after any middleware - that modifies the transaction. Therefore, it is recommended to inject the signing - middleware at the 0th layer of the middleware onion using - ``w3.middleware_onion.inject(SignAndSendRawMiddlewareBuilder.build(...), layer=0)``. - Ensure that any transaction-modifying middleware exists in a higher layer within the - onion so that it runs before the signing middleware. - -.. note:: - If used with ``ExtraDataToPOAMiddleware``, the injection order doesn't matter, as - the ``extraData`` field isn't involved in transaction signing. The key is ensuring - ``SignAndSendRawMiddlewareBuilder`` runs after any middleware that modifies the - transaction. - - -.. code-block:: python - - >>> from web3 import Web3, EthereumTesterProvider - >>> w3 = Web3(EthereumTesterProvider) - >>> from web3.middleware import SignAndSendRawMiddlewareBuilder - >>> from eth_account import Account - >>> acct = Account.create('KEYSMASH FJAFJKLDSKF7JKFDJ 1530') - >>> w3.middleware_onion.inject(SignAndSendRawMiddlewareBuilder.build(acct), layer=0) - >>> w3.eth.default_account = acct.address - -:ref:`Hosted nodes` (like Infura or Alchemy) only support signed -transactions. This often results in ``send_raw_transaction`` being used repeatedly. -Instead, we can automate this process with -``SignAndSendRawMiddlewareBuilder.build(private_key_or_account)``. - -.. code-block:: python - - >>> from web3 import Web3 - >>> w3 = Web3(Web3.HTTPProvider('HTTP_ENDPOINT')) - >>> from web3.middleware import SignAndSendRawMiddlewareBuilder - >>> from eth_account import Account - >>> import os - >>> acct = w3.eth.account.from_key(os.environ.get('PRIVATE_KEY')) - >>> w3.middleware_onion.inject(SignAndSendRawMiddlewareBuilder.build(acct), layer=0) - >>> w3.eth.default_account = acct.address - - >>> # use `eth_sendTransaction` to automatically sign and send the raw transaction - >>> w3.eth.send_transaction(tx_dict) - HexBytes('0x09511acf75918fd03de58141d2fd409af4fd6d3dce48eb3aa1656c8f3c2c5c21') - -Similarly, with AsyncWeb3: - -.. code-block:: python - - >>> from web3 import AsyncWeb3 - >>> async_w3 = AsyncWeb3(AsyncHTTPProvider('HTTP_ENDPOINT')) - >>> from web3.middleware import SignAndSendRawMiddlewareBuilder - >>> from eth_account import Account - >>> import os - >>> acct = async_w3.eth.account.from_key(os.environ.get('PRIVATE_KEY')) - >>> async_w3.middleware_onion.inject(SignAndSendRawMiddlewareBuilder.build(acct), layer=0) - >>> async_w3.eth.default_account = acct.address - - >>> # use `eth_sendTransaction` to automatically sign and send the raw transaction - >>> await async_w3.eth.send_transaction(tx_dict) - HexBytes('0x09511acf75918fd03de58141d2fd409af4fd6d3dce48eb3aa1656c8f3c2c5c21') - -Now you can send a transaction from acct.address without having to build and sign each raw transaction. - -When making use of this signing middleware, when sending dynamic fee transactions (recommended over legacy transactions), -the transaction ``type`` of ``2`` (or ``'0x2'``) is necessary. This is because transaction signing is validated based -on the transaction ``type`` parameter. This value defaults to ``'0x2'`` when ``maxFeePerGas`` and / or -``maxPriorityFeePerGas`` are present as parameters in the transaction as these params imply a dynamic fee transaction. -Since these values effectively replace the legacy ``gasPrice`` value, do not set a ``gasPrice`` for dynamic fee transactions. -Doing so will lead to validation issues. - -.. code-block:: python - - # dynamic fee transaction, introduced by EIP-1559: - >>> dynamic_fee_transaction = { - ... 'type': '0x2', # optional - defaults to '0x2' when dynamic fee transaction params are present - ... 'from': acct.address, # optional if w3.eth.default_account was set with acct.address - ... 'to': receiving_account_address, - ... 'value': 22, - ... 'maxFeePerGas': 2000000000, # required for dynamic fee transactions - ... 'maxPriorityFeePerGas': 1000000000, # required for dynamic fee transactions - ... } - >>> w3.eth.send_transaction(dynamic_fee_transaction) - -A legacy transaction still works in the same way as it did before EIP-1559 was introduced: - -.. code-block:: python - - >>> legacy_transaction = { - ... 'to': receiving_account_address, - ... 'value': 22, - ... 'gasPrice': 123456, # optional - if not provided, gas_price_strategy (if exists) or eth_gasPrice is used - ... } - >>> w3.eth.send_transaction(legacy_transaction) - - -Creating Custom Middleware --------------------------- - -To write your own middleware, create a class and extend from the base ``Web3Middleware`` -class, then override only the parts of the middleware that make sense for your use case. - -.. note:: The Middleware API borrows from the Django middleware API introduced - in version 1.10.0. - -If all you need is to modify the params before a request is made, you can override -the ``request_processor`` method, make the necessary tweaks to the params, and pass the -arguments to the next element in the middleware stack. Need to do some processing on the -response? Override the ``response_processor`` method and return the modified response. - -The pattern: - -.. code-block:: python - - from web3.middleware import Web3Middleware - - class CustomMiddleware(Web3Middleware): - - def request_processor(self, method, params): - # Pre-request processing goes here before passing to the next middleware. - return (method, params) - - def response_processor(self, method, response): - # Response processing goes here before passing to the next middleware. - return response - - # If your provider is asynchronous, override the async methods instead: - - async def async_request_processor(self, method, params): - # Pre-request processing goes here before passing to the next middleware. - return (method, params) - - async def async_response_processor(self, method, response): - # Response processing goes here before passing to the next middleware. - return response - - -If you wish to prevent making a call under certain conditions, you can override the -``wrap_make_request`` method. This allows for defining pre-request processing, -skipping or making the request under certain conditions, as well as response -processing before passing it to the next middleware. - - -.. code-block:: python - - from web3.middleware import Web3Middleware - - class CustomMiddleware(Web3Middleware): - - def wrap_make_request(self, make_request): - def middleware(method, params): - # pre-request processing goes here - response = make_request(method, params) # make the request - # response processing goes here - return response - - return middleware - - # If your provider is asynchronous, override the async method instead: - - async def async_wrap_make_request(self, make_request): - async def middleware(method, params): - # pre-request processing goes here - response = await make_request(method, params) - # response processing goes here - return response - - return middleware - - -Custom middleware can be added to the stack via the class itself, using the -:ref:`middleware_stack_api`. The ``name`` kwarg is optional. For example: - -.. code-block:: python - - from web3 import Web3 - from my_module import ( - CustomMiddleware, - ) - - w3 = Web3(HTTPProvider(endpoint_uri="...")) - - # add the middleware to the stack as the class - w3.middleware_onion.add(CustomMiddleware, name="custom_middleware") diff --git a/docs/migration.rst b/docs/migration.rst deleted file mode 100644 index b16df6e7cf..0000000000 --- a/docs/migration.rst +++ /dev/null @@ -1,779 +0,0 @@ -Migration Guide -=============== - -.. _migrating_v6_to_v7: - -Migrating from v6 to v7 ------------------------ - -web3.py follows `Semantic Versioning `_, which means that -version 7 introduced backwards-incompatible changes. If you're upgrading from -web3.py ``v6`` or earlier, you can expect to need to make some changes. Refer -to this guide for a summary of breaking changes when updating from ``v6`` to -``v7``. If you are more than one major version behind, you should also review -the migration guides for the versions in between. - - -Provider Updates -~~~~~~~~~~~~~~~~ - - -WebSocketProvider -````````````````` - -``WebsocketProviderV2``, introduced in web3.py ``v6``, has taken priority over the -legacy ``WebsocketProvider``. The ``LegacyWebSocketProvider`` has been deprecated in -``v7`` and is slated for removal in the next major version of the library. In summary: - -- ``WebsocketProvider`` -> ``LegacyWebSocketProvider`` (and deprecated) -- ``WebsocketProviderV2`` -> ``WebSocketProvider`` - -If migrating from ``WebSocketProviderV2`` to ``WebSocketProvider``, you can expect the -following changes: - -- Instantiation no longer requires the ``persistant_websocket`` method: - - .. code-block:: python - - # WebsocketsProviderV2: - AsyncWeb3.persistent_websocket(WebsocketProviderV2('...')) - - # WebSocketProvider: - AsyncWeb3(WebSocketProvider('...')) - -- Handling incoming subscription messages now occurs under a more flexible namespace: - ``socket``. The ``AsyncIPCProvider`` uses the same API to listen for messages via - an IPC socket. - - .. code-block:: python - - # WebsocketsProviderV2: - async for message in w3.ws.process_subscriptions(): - ... - - # WebSocketProvider: - async for message in w3.socket.process_subscriptions(): - ... - - -AsyncIPCProvider (non-breaking feature) -``````````````````````````````````````` - -An asynchronous IPC provider, ``AsyncIPCProvider``, is newly available in ``v7``. -This provider makes use of some of the same internals that the new ``WebSocketProvider`` -introduced, allowing it to also support ``eth_subscription``. - - -EthereumTesterProvider -`````````````````````` - -``EthereumTesterProvider`` now returns ``input`` instead of ``data`` for ``eth_getTransaction*`` -calls, as expected. - - -Middlewares -> Middleware -~~~~~~~~~~~~~~~~~~~~~~~~~ - -All references to ``middlewares`` have been replaced with the more grammatically -correct ``middleware``. Notably, this includes when a provider needs to be -instantiated with custom middleware. - - -Class-Based Middleware Model -~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -The middleware model has been changed to a class-based model. - -.. code-block:: python - - # v6 (no longer supported) - from web3.middleware import pythonic_middleware - w3.middleware_onion.add(pythonic_middleware) - - # v7 - from web3.middleware import PythonicMiddleware - w3.middleware_onion.add(PythonicMiddleware) - -Previously, middleware were defined as functions that tightly wrapped the provider's -``make_request`` function, where transformations could be conditionally applied before -and after the request was made. - -Now, middleware logic can be separated into ``request_processor`` and ``response_processor`` -functions that enable pre-request and post-response logic, respectively. This change offers -a simpler, clearer interface for defining middleware, gives more flexibility for -asynchronous operations and also paved the way for supporting :ref:`batch_requests`. - -Major changes for migration are highlighted in this section. Consult the -:ref:`middleware_internals` section of the documentation for specifics and examples on -the new class-based design. - - -Middleware Builder Classes -~~~~~~~~~~~~~~~~~~~~~~~~~~ - -In ``v6``, certain middleware needed to be constructed with parameters. This was done -by passing the parameters to a constructor method. - -.. code-block:: python - - # v6 (no longer supported) - from web3.middleware import construct_sign_and_send_raw_middleware - w3.middleware_onion.add(construct_sign_and_send_raw_middleware(private_key)) - -In the class-based ``v7`` middleware model, a middleware builder class is instantiated -with the necessary parameters via the ``build()`` method. - -.. code-block:: python - - # v7 - from web3.middleware import SignAndSendRawMiddlewareBuilder - w3.middleware_onion.inject(SignAndSendRawMiddlewareBuilder.build(private_key), layer=0) - - -Middleware Renaming and Removals -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -The following middleware have been renamed for generalization or clarity: - -- ``name_to_address_middleware`` -> ``ENSNameToAddressMiddleware`` -- ``geth_poa_middleware`` -> ``ExtraDataToPOAMiddleware`` - -The following middleware have been removed: - - -ABI Middleware -`````````````` - -``abi_middleware`` is no longer necessary and has been removed. All of the functionality -of the ``abi_middleware`` was already handled by web3.py's ABI formatters. For additional -context: a bug in the ENS name-to-address middleware would override the formatters. Fixing -this bug has removed the need for the ``abi_middleware``. - - -Caching Middleware -`````````````````` - -The following middleware have been removed: - -- ``simple_cache_middleware`` -- ``latest_block_based_cache_middleware`` -- ``time_based_cache_middleware`` - -All caching middleware has been removed in favor of a decorator/wrapper around the -``make_request`` methods of providers with configuration options on the provider class. -The configuration options are outlined in the documentation in the -:ref:`request_caching` section. - -If desired, the previous caching middleware can be re-created using the new class-based -middleware model overriding the ``wrap_make_request`` (or ``async_wrap_make_request``) -method in the middleware class. - - -Result Generating Middleware -```````````````````````````` -The following middleware have been removed: - -- ``fixture_middleware`` -- ``result_generator_middleware`` - -The ``fixture_middleware`` and ``result_generator_middleware`` which were used for -testing/mocking purposes have been removed. These have been replaced internally by the -``RequestMocker`` class, utilized for testing via a ``request_mocker`` pytest fixture. - - -HTTP Retry Request Middleware -````````````````````````````` - -The ``http_retry_request_middleware`` has been removed in favor of a configuration -option on the ``HTTPProvider`` and ``AsyncHTTPProvider`` classes. The configuration -options are outlined in the documentation in the :ref:`http_retry_requests` section. - - -Normalize Request Parameters Middleware -``````````````````````````````````````` - -The ``normalize_request_parameters`` middleware was not used anywhere internally and -has been removed. - - -Remaining camelCase -> snake_case Updates -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -The following arguments have been renamed across the library from camelCase to -snake_case in all methods where they are passed in as a kwarg. - -- ``fromBlock`` -> ``from_block`` -- ``toBlock`` -> ``to_block`` -- ``blockHash`` -> ``block_hash`` - -Note that if a dictionary is used instead, say to a call such as `eth_getLogs`, the -keys in the dictionary should be camelCase. This is because the dictionary is passed -directly to the JSON-RPC request, where the keys are expected to be in camelCase. - - -Changes to Exception Handling -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -All Python standard library exceptions that were raised from within web3.py have -been replaced with custom ``Web3Exception`` classes. This change allows for better -control over exception handling, being able to distinguish between exceptions raised -by web3.py and those raised from elsewhere in a codebase. The following exceptions -have been replaced: - -- ``AssertionError`` -> ``Web3AssertionError`` -- ``ValueError`` -> ``Web3ValueError`` -- ``TypeError`` -> ``Web3TypeError`` -- ``AttributeError`` -> ``Web3AttributeError`` - -A new ``MethodNotSupported`` exception is now raised when a method is not supported by -web3.py. This allows a user to distinguish between when a method is not available on -the current provider, ``MethodUnavailable``, and when a method is not supported by -web3.py under certain conditions, ``MethodNotSupported``. - -A ``MismatchedABI`` exception is now raised instead of a ``Web3ValidationError`` in -cases where an ABI is not compatible with the data being passed to it. This change -allows for more specific error handling when using certain ABI types. - - -JSON-RPC Error Handling -``````````````````````` - -Rather than a ``ValueError`` being replaced with a ``Web3ValueError`` when a JSON-RPC -response comes back with an ``error`` object, a new ``Web3RPCError`` exception is -now raised to provide more distinction for JSON-RPC error responses. Some previously -existing exceptions now extend from this class since they too are related to JSON-RPC -errors: - -- ``MethodUnavailable`` -- ``BlockNotFound`` -- ``TransactionNotFound`` -- ``TransactionIndexingInProgress`` - - -End of Support and Feature Removals -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Python 3.7 Support Dropped -`````````````````````````` - -Python 3.7 support has been dropped in favor of Python 3.8+. Python 3.7 is no longer -supported by the Python core team, and we want to focus our efforts on supporting -the latest versions of Python. - - -EthPM Module Removed -```````````````````` - -The EthPM module has been removed from the library. It was not widely used and has not -been functional since around October 2022. It was deprecated in ``v6`` and has been -completely removed in ``v7``. - -Types in the -`eth_typing.ethpm `_ -module have been deprecated and will be removed from ``eth-typing`` in the next major -release. - - -Geth Miner Namespace Removed -```````````````````````````` - -The ``geth.miner`` namespace, deprecated in ``v6``, has been removed in ``v7``. -The ``miner`` namespace was used for managing the concept of a miner in geth. This is -no longer a feature in geth and is planned for complete removal in the future, with -Ethereum having transitioned to proof-of-stake. - - -Geth Personal Namespace Removed -``````````````````````````````` - -The ``geth.personal`` namespace, deprecated in ``v6``, has been removed in ``v7``. -The ``personal`` namespace was used for managing accounts and keys and was deprecated -in geth in ``v1.11.0``. Geth has moved to using ``clef`` for account and key management. - - -ABI Types Removed -````````````````` - -The type definitions for ABIs, deprecated in ``v6``, have been removed in ``v7``. New -types have been introduced in the ``eth_typing`` ``v5`` package for ABIs. Improvements have -been made to make required types more explicit and to offer better semantics. - -The following types from ``web3.types`` have been removed: -- ``ABIEventParams`` is no longer avaiable. Use ``ABIComponentIndexed`` from -``eth_typing`` to represent event input components. -- ``ABIEvent`` now resides in ``eth_typing``. ``ABIEvent.type`` and ``ABIEvent.name`` -are now required fields. -- ``ABIFunctionComponents`` and ``ABIFunctionParams`` are no longer available. Use -``ABIComponent`` from ``eth_typing`` to represent function input components. -- ``ABIFunction`` now resides in ``eth_typing``. ``ABIFunction.type`` and -``ABIFunction.name`` are now required fields. -- ``ABIElement`` now resides in ``eth_typing`` and represents a ``Union`` of all valid -ABI element types, ``ABICallable``, ``ABIEvent`` and ``ABIError``. - - -Miscellaneous Changes -~~~~~~~~~~~~~~~~~~~~~ - -- ``LRU`` has been removed from the library and dependency on ``lru-dict`` library was - dropped. -- ``CallOverride`` type was changed to ``StateOverride`` since more methods than - ``eth_call`` utilize the state override params. -- ``User-Agent`` header was changed to a more readable format. -- ``BaseContractFunctions`` iterator now returns instances of ``ContractFunction`` rather - than the function names. -- ``BaseContractFunction`` class attribute ``function_identifier`` has been removed in - favor of the ``abi_element_identifier`` attribute. -- ``web3.contract.utils.call_contract_function()`` no longers uses ``fn_abi`` as a - parameter. Instead, the ``abi_callable`` parameter of type ``ABICallable`` is used. -- Beacon API filename change: ``beacon/main.py`` -> ``beacon/beacon.py``. -- The asynchronous version of ``w3.eth.wait_for_transaction_receipt()`` changes its - signature to use ``Optional[float]`` instead of ``float`` since it may be ``None``. -- ``get_default_ipc_path()`` and ``get_dev_ipc_path()`` now return the path value - without checking if the ``geth.ipc`` file exists. -- ``Web3.is_address()`` returns ``True`` for non-checksummed addresses. -- ``Contract.encodeABI()`` has been renamed to ``Contract.encode_abi()``. The ``fn_name`` - argument has been changed to ``abi_element_identifier``. -- JSON-RPC responses are now more strictly validated against the JSON-RPC 2.0 - specification while providing more informative error messages for invalid responses. - - -.. _migrating_v5_to_v6: - -Migrating from v5 to v6 ------------------------ - -web3.py follows `Semantic Versioning `_, which means -that version 6 introduced backwards-incompatible changes. If your -project depends on web3.py v6, then you'll probably need to make some changes. - -Breaking Changes: - -Strict Bytes Checking by Default -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -web3.py v6 moved to requiring strict bytes checking by default. This means that if an -ABI specifies a ``bytes4`` argument, web3.py will invalidate any entry that is not -encodable as a bytes type with length of 4. This means only 0x-prefixed hex strings with -a length of 4 and bytes types with a length of 4 will be considered valid. This removes -doubt that comes from inferring values and assuming they should be padded. - -This behavior was previously available in via the ``w3.enable_strict_bytes_checking()`` -method. This is now, however, a toggleable flag on the ``Web3`` instance via the -``w3.strict_bytes_type_checking`` property. As outlined above, this property is set to -``True`` by default but can be toggled on and off via the property's setter -(e.g. ``w3.strict_bytes_type_checking = False``). - - -Snake Case -~~~~~~~~~~ - -web3.py v6 moved to the more Pythonic convention of snake_casing wherever -possible. There are some exceptions to this pattern: - -- Contract methods and events use whatever is listed in the ABI. If the smart contract - convention is to use camelCase for method and event names, web3.py won't do - any magic to convert it to snake_casing. -- Arguments to JSON-RPC methods. For example: transaction and filter - parameters still use camelCasing. The reason for - this is primarily due to error messaging. It would be confusing to pass in a - snake_cased parameter and get an error message with a camelCased parameter. -- Data that is returned from JSON-RPC methods. For example: - The keys in a transaction receipt will still be returned as camelCase. - - -Python 3.10 and 3.11 Support -~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Support for Python 3.10 and 3.11 is here. In order to support Python 3.10, we had to -update the ``websockets`` dependency to v10+. - -Exceptions -~~~~~~~~~~ - -Exceptions inherit from a base class -```````````````````````````````````` - -In v5, some web3.py exceptions inherited from ``AttributeError``, namely: - -- ``NoABIFunctionsFound`` -- ``NoABIFound`` -- ``NoABIEventsFound`` - -Others inherited from ``ValueError``, namely: - -- ``InvalidAddress`` -- ``NameNotFound`` -- ``LogTopicError`` -- ``InvalidEventABI`` - -Now web3.py exceptions inherit from the same base ``Web3Exception``. - -As such, any code that was expecting a ``ValueError`` or an ``AttributeError`` from -web3.py must update to expecting one of the exceptions listed above, or -``Web3Exception``. - -Similarly, exceptions raised in the EthPM and ENS modules inherit from the base -``EthPMException`` and ``ENSException``, respectively. - -ValidationError -``````````````` - -The Python dev tooling ecosystem is moving towards standardizing -``ValidationError``, so users know that they're catching the correct -``ValidationError``. The base ``ValidationError`` is imported from -``eth_utils``. However, we also wanted to empower users to catch all errors emitted -by a particular module. So we now have a ``Web3ValidationError``, ``EthPMValidationError``, -and an ``ENSValidationError`` that all inherit from the generic -``eth_utils.exceptions.ValidationError``. - -Web3 class split into Web3 and AsyncWeb3 -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -The `Web3` class previously contained both sync and async methods. We've separated -`Web3` and `AsyncWeb3` functionality to tighten up typing. For example: - -.. code-block:: python - - from web3 import Web3, AsyncWeb3 - - w3 = Web3(Web3.HTTPProvider()) - async_w3 = AsyncWeb3(AsyncWeb3.AsyncHTTPProvider()) - -`dict` to `AttributeDict` conversion moved to middleware -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -`Eth` module data returned as key-value pairs was previously automatically converted to -an `AttributeDict` by result formatters, which could cause problems with typing. This -conversion has been moved to a default `attrdict_middleware` where it can be easily -removed if necessary. See the `Eth module `_ docs for more detail. - -Other Misc Changes -~~~~~~~~~~~~~~~~~~ - -- ``InfuraKeyNotFound`` exception has been changed to ``InfuraProjectIdNotFound`` -- ``SolidityError`` has been removed in favor of ``ContractLogicError`` -- When a method is unavailable from a node provider (i.e. a response error - code of -32601 is returned), a ``MethodUnavailable`` error is - now raised instead of ``ValueError`` -- Logs' `data` field was previously formatted with `to_ascii_if_bytes`, now formatted to `HexBytes` -- Receipts' `type` field was previously not formatted, now formatted with `to_integer_if_hex` - -Removals -~~~~~~~~ - -- Removed unused IBAN module -- Removed ``WEB3_INFURA_API_KEY`` environment variable in favor of ``WEB3_INFURA_PROJECT_ID`` -- Removed Kovan auto provider -- Removed deprecated ``sha3`` and ``soliditySha3`` methods in favor of ``keccak`` and ``solidityKeccak`` -- Remove Parity Module and References - - -Other notable changes -~~~~~~~~~~~~~~~~~~~~~ - -- The ``ipfshttpclient`` library is now opt-in via a web3 install extra. - This only affects the ethpm ipfs backends, which rely on the library. - - -.. _migrating_v4_to_v5: - -Migrating from v4 to v5 ------------------------ - -Web3.py follows `Semantic Versioning `_, which means -that version 5 introduced backwards-incompatible changes. If your -project depends on Web3.py v4, then you'll probably need to make some changes. - -Here are the most common required updates: - -Python 3.5 no longer supported -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -You will need to upgrade to either Python 3.6 or 3.7 - -``eth-abi`` v1 no longer supported -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -You will need to upgrade the ``eth-abi`` dependency to v2 - -Changes to base API -~~~~~~~~~~~~~~~~~~~ - -JSON-RPC Updates -```````````````` - -In v4, JSON-RPC calls that looked up transactions or blocks and -didn't find them, returned ``None``. Now if a transaction or -block is not found, a ``BlockNotFound`` or a ``TransactionNotFound`` -error will be thrown as appropriate. This applies to the -following web3 methods: - -- :meth:`~web3.eth.Eth.getTransaction` will throw a ``TransactionNotFound`` error -- :meth:`~web3.eth.Eth.getTransactionReceipt` will throw a ``TransactionNotFound`` error -- :meth:`~web3.eth.Eth.getTransactionByBlock` will throw a ``TransactionNotFound`` error -- :meth:`~web3.eth.Eth.getTransactionCount` will throw a ``BlockNotFound`` error -- :meth:`~web3.eth.Eth.getBlock` will throw a ``BlockNotFound`` error -- :meth:`~web3.eth.Eth.getUncleCount` will throw a ``BlockNotFound`` error -- :meth:`~web3.eth.Eth.getUncleByBlock` will throw a ``BlockNotFound`` error - -Removed Methods -``````````````` - -- ``contract.buildTransaction`` was removed for ``contract.functions.buildTransaction.`` -- ``contract.deploy`` was removed for ``contract.constructor.transact`` -- ``contract.estimateGas`` was removed for ``contract.functions..estimateGas`` -- ``contract.call`` was removed for ``contract...call`` -- ``contract.transact`` was removed for ``contract...transact`` -- ``contract.eventFilter`` was removed for ``contract.events..createFilter`` -- ``middleware_stack`` was renamed to :meth:`~Web3.middleware_onion` -- ``web3.miner.hashrate`` was a duplicate of :meth:`~web3.eth.Eth.hashrate` and was removed. -- ``web3.version.network`` was a duplicate of :meth:`~web3.net.Net.version` and was removed. -- ``web3.providers.tester.EthereumTesterProvider`` and ``web3.providers.tester.TestRPCProvider`` have been removed for :meth:`~web3.providers.eth_tester.EthereumTesterProvider` -- ``web3.eth.enableUnauditedFeatures`` was removed -- ``web3.txpool`` was moved to :meth:`~web3.geth.txpool` -- ``web3.version.node`` was removed for ``web3.clientVersion`` -- ``web3.version.ethereum`` was removed for :meth:`~web3.eth.Eth.protocolVersion` -- Relocated personal RPC endpoints to reflect Parity and Geth implementations: - - - ``web3.personal.listAccounts`` was removed for :meth:`~web3.geth.personal.listAccounts` or :meth:`~web3.parity.personal.listAccounts` - - ``web3.personal.importRawKey`` was removed for :meth:`~web3.geth.personal.importRawKey` or :meth:`~web3.parity.personal.importRawKey` - - ``web3.personal.newAccount`` was removed for :meth:`~web3.geth.personal.newAccount` or :meth:`~web3.parity.personal.newAccount` - - ``web3.personal.lockAccount`` was removed for :meth:`~web3.geth.personal.lockAccount` - - ``web3.personal.unlockAccount`` was removed for :meth:`~web3.geth.personal.unlockAccount` or :meth:`~web3.parity.personal.unlockAccount` - - ``web3.personal.sendTransaction`` was removed for :meth:`~web3.geth.personal.sendTransaction` or :meth:`~web3.parity.personal.sendTransaction` - -- Relocated ``web3.admin`` module to ``web3.geth`` namespace -- Relocated ``web3.miner`` module to ``web3.geth`` namespace - -Deprecated Methods -`````````````````` - -Expect the following methods to be removed in v6: - -- ``web3.sha3`` was deprecated for :meth:`~Web3.keccak` -- ``web3.soliditySha3`` was deprecated for :meth:`~Web3.solidityKeccak` -- :meth:`~web3.net.Net.chainId` was deprecated for :meth:`~web3.eth.Eth.chainId`. - Follow issue `#1293 `_ for details -- ``web3.eth.getCompilers()`` was deprecated and will not be replaced -- :meth:`~web3.eth.getTransactionFromBlock()` was deprecated for :meth:`~Web3.getTransactionByBlock` - -Deprecated ConciseContract and ImplicitContract -``````````````````````````````````````````````` -The ConciseContract and ImplicitContract have been deprecated and will be removed in v6. - -ImplicitContract instances will need to use the verbose syntax. For example: - -``contract.functions..transact({})`` - -ConciseContract has been replaced with the ContractCaller API. Instead of using the ConciseContract factory, you can now use: - -``contract.caller.`` - -or the classic contract syntax: - -``contract.functions..call()``. - -Some more concrete examples can be found in the `ContractCaller docs `_ - - -Manager Provider -~~~~~~~~~~~~~~~~ - -In v5, only a single provider will be allowed. While allowing -multiple providers is a feature we'd like to support in the future, -the way that multiple providers was handled in v4 wasn't ideal. -The only thing they could do was fall back. There was no mechanism for any -round robin, nor was there any control around which provider -was chosen. Eventually, the idea is to expand the Manager API -to support injecting custom logic into the provider selection process. - -For now, ``manager.providers`` has changed to ``manager.provider``. -Similarly, instances of ``web3.providers`` have been changed to -``web3.provider``. - -Testnet Changes -~~~~~~~~~~~~~~~ - -Web3.py will no longer automatically look up a testnet connection -in IPCProvider. - -ENS -~~~ - -Web3.py has stopped inferring the ``.eth`` TLD on domain names. -If a domain name is used instead of an address, you'll need -to specify the TLD. An ``InvalidTLD`` error will be thrown if -the TLD is missing. - -Required Infura API Key -~~~~~~~~~~~~~~~~~~~~~~~ - -In order to interact with Infura after March 27, 2019, you'll need to set an -environment variable called ``WEB3_INFURA_PROJECT_ID``. You can get a -project id by visiting https://infura.io/register. - - -Migrating from v3 to v4 ------------------------ - -Web3.py follows `Semantic Versioning `_, which means -that version 4 introduced backwards-incompatible changes. If your -project depends on Web3.py v3, then you'll probably need to make some changes. - -Here are the most common required updates: - -Python 2 to Python 3 -~~~~~~~~~~~~~~~~~~~~ - -Only Python 3 is supported in v4. If you are running in Python 2, -it's time to upgrade. We recommend using `2to3` which can make -most of your code compatible with Python 3, automatically. - -The most important update, relevant to Web3.py, is the new :class:`bytes` -type. It is used regularly, throughout the library, whenever dealing with data -that is not guaranteed to be text. - -Many different methods in Web3.py accept text or binary data, like contract methods, -transaction details, and cryptographic functions. The following example -uses :meth:`~Web3.sha3`, but the same pattern applies elsewhere. - -In v3 & Python 2, you might have calculated the hash of binary data this way: - -.. code-block:: python - - >>> Web3.sha3('I\xe2\x99\xa5SF') - '0x50a826df121f4d076a3686d74558f40082a8e70b3469d8e9a16ceb2a79102e5e' - -Or, you might have calculated the hash of text data this way: - -.. code-block:: python - - >>> Web3.sha3(text=u'I♥SF') - '0x50a826df121f4d076a3686d74558f40082a8e70b3469d8e9a16ceb2a79102e5e' - -After switching to Python 3, these would instead be executed as: - -.. code-block:: python - - >>> Web3.sha3(b'I\xe2\x99\xa5SF') - HexBytes('0x50a826df121f4d076a3686d74558f40082a8e70b3469d8e9a16ceb2a79102e5e') - - >>> Web3.sha3(text='I♥SF') - HexBytes('0x50a826df121f4d076a3686d74558f40082a8e70b3469d8e9a16ceb2a79102e5e') - -Note that the return value is different too: you can treat :class:`hexbytes.main.HexBytes` -like any other bytes value, but the representation on the console shows you the hex encoding of -those bytes, for easier visual comparison. - -It takes a little getting used to, but the new py3 types are much better. We promise. - -Filters -~~~~~~~ - -Filters usually don't work quite the way that people want them to. - -The first step toward fixing them was to simplify them by removing the polling -logic. Now, you must request an update on your filters explicitly. That -means that any exceptions during the request will bubble up into your code. - -In v3, those exceptions (like "filter is not found") were swallowed silently -in the automated polling logic. Here was the invocation for -printing out new block hashes as they appear: - -.. code-block:: python - - >>> def new_block_callback(block_hash): - ... print(f"New Block: {block_hash}") - ... - >>> new_block_filter = web3.eth.filter('latest') - >>> new_block_filter.watch(new_block_callback) - -In v4, that same logic: - -.. code-block:: python - - >>> new_block_filter = web3.eth.filter('latest') - >>> for block_hash in new_block_filter.get_new_entries(): - ... print(f"New Block: {block_hash}") - -The caller is responsible for polling the results from ``get_new_entries()``. -See :ref:`asynchronous_filters` for examples of filter-event handling with web3 v4. - -TestRPCProvider and EthereumTesterProvider -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -These providers are fairly uncommon. If you don't recognize the names, -you can probably skip the section. - -However, if you were using web3.py for testing contracts, -you might have been using TestRPCProvider or EthereumTesterProvider. - -In v4 there is a new :class:`EthereumTesterProvider`, and the old v3 implementation has been -removed. Web3.py v4 uses :class:`eth_tester.main.EthereumTester` under the hood, instead -of eth-testrpc. While ``eth-tester`` is still in beta, many parts are -already in better shape than testrpc, so we decided to replace it in v4. - -If you were using TestRPC, or were explicitly importing EthereumTesterProvider, like: -``from web3.providers.tester import EthereumTesterProvider``, then you will need to update. - -With v4 you should import with ``from web3 import EthereumTesterProvider``. As before, you'll -need to install Web3.py with the ``tester`` extra to get these features, like: - -.. code-block:: bash - - $ pip install web3[tester] - - -Changes to base API convenience methods -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Web3.toDecimal() -```````````````` - -In v4 ``Web3.toDecimal()`` is renamed: :meth:`~Web3.toInt` for improved clarity. It does not return a :class:`decimal.Decimal`, it returns an :class:`int`. - - -Removed Methods -``````````````` - -- ``Web3.toUtf8`` was removed for :meth:`~Web3.toText`. -- ``Web3.fromUtf8`` was removed for :meth:`~Web3.toHex`. -- ``Web3.toAscii`` was removed for :meth:`~Web3.toBytes`. -- ``Web3.fromAscii`` was removed for :meth:`~Web3.toHex`. -- ``Web3.fromDecimal`` was removed for :meth:`~Web3.toHex`. - -Provider Access -~~~~~~~~~~~~~~~~~ - -In v4, ``w3.currentProvider`` was removed, in favor of ``w3.providers``. - -Disambiguating String Inputs -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -There are a number of places where an arbitrary string input might be either -a byte-string that has been hex-encoded, or unicode characters in text. -These are named ``hexstr`` and ``text`` in Web3.py. -You specify which kind of :class:`str` you have by using the appropriate -keyword argument. See examples in :ref:`overview_type_conversions`. - -In v3, some methods accepted a :class:`str` as the first positional argument. -In v4, you must pass strings as one of ``hexstr`` or ``text`` keyword arguments. - -Notable methods that no longer accept ambiguous strings: - -- :meth:`~Web3.sha3` -- :meth:`~Web3.toBytes` - -Contracts -~~~~~~~~~ - -- When a contract returns the ABI type ``string``, Web3.py v4 now returns a :class:`str` - value by decoding the underlying bytes using UTF-8. -- When a contract returns the ABI type ``bytes`` (of any length), - Web3.py v4 now returns a :class:`bytes` value - -Personal API -~~~~~~~~~~~~ - -``w3.personal.signAndSendTransaction`` is no longer available. Use -:meth:`w3.personal.sendTransaction() ` instead. diff --git a/docs/overview.rst b/docs/overview.rst deleted file mode 100644 index 31a20e4844..0000000000 --- a/docs/overview.rst +++ /dev/null @@ -1,317 +0,0 @@ -.. _overview: - -Overview -======== - -The purpose of this page is to give you a sense of everything web3.py can do -and to serve as a quick reference guide. You'll find a summary of each feature -with links to learn more. - -Configuration -------------- - -After installing web3.py (via ``pip install web3``), you'll need to configure -a provider endpoint and any middleware you want to use beyond the defaults. - - -Providers -~~~~~~~~~ - -:doc:`providers` are how web3.py connects to a blockchain. The library comes with the -following built-in providers: - -- :class:`~web3.providers.rpc.HTTPProvider` for connecting to http and https based JSON-RPC servers. -- :class:`~web3.providers.ipc.IPCProvider` for connecting to ipc socket based JSON-RPC servers. -- :class:`~web3.providers.legacy_websocket.LegacyWebSocketProvider` (deprecated) for connecting to websocket based JSON-RPC servers. -- :class:`~web3.providers.async_rpc.AsyncHTTPProvider` for connecting to http and https based JSON-RPC servers asynchronously. -- :class:`~web3.providers.persistent.AsyncIPCProvider` for connecting to ipc socket based JSON-RPC servers asynchronously via a persistent connection. -- :class:`~web3.providers.persistent.WebSocketProvider` for connecting to websocket based JSON-RPC servers asynchronously via a persistent connection. - -Examples -```````` - -.. code-block:: python - - >>> from web3 import Web3, AsyncWeb3 - - # IPCProvider: - >>> w3 = Web3(Web3.IPCProvider('./path/to/filename.ipc')) - >>> w3.is_connected() - True - - # HTTPProvider: - >>> w3 = Web3(Web3.HTTPProvider('http://127.0.0.1:8545')) - >>> w3.is_connected() - True - - # AsyncHTTPProvider: - >>> w3 = AsyncWeb3(AsyncWeb3.AsyncHTTPProvider('http://127.0.0.1:8545')) - >>> await w3.is_connected() - True - - # -- Persistent Connection Providers -- # - - # WebSocketProvider: - >>> w3 = await AsyncWeb3(AsyncWeb3.WebSocketProvider('ws://127.0.0.1:8546')) - >>> await w3.is_connected() - True - - # AsyncIPCProvider - >>> w3 = await AsyncWeb3(AsyncWeb3.AsyncIPCProvider('./path/to/filename.ipc')) - >>> await w3.is_connected() - True - - -For more context, see the :doc:`providers` documentation. - - -Middleware -~~~~~~~~~~ - -Your web3.py instance may be further configured via :doc:`middleware`. - -web3.py middleware is described using an onion metaphor, where each layer of -middleware may affect both the incoming request and outgoing response from your -provider. The documentation includes a :ref:`visualization ` -of this idea. - -Several middleware are :ref:`included by default `. You may add to -(:meth:`add `, :meth:`inject `, -:meth:`replace `) or disable -(:meth:`remove `, -:meth:`clear `) any of these middleware. - - -Accounts and Private Keys -------------------------- - -Private keys are required to approve any transaction made on your behalf. The manner in -which your key is secured will determine how you create and send transactions in web3.py. - -A local node, like `Geth `_, may manage your keys for you. -You can reference those keys using the :attr:`web3.eth.accounts ` -property. - -A hosted node, like `Infura `_, will have no knowledge of your keys. -In this case, you'll need to have your private key available locally for signing -transactions. - -Full documentation on the distinction between keys can be found :ref:`here `. -The separate guide to :doc:`transactions` may also help clarify how to manage keys. - - -Base API --------- - -The :ref:`Web3 ` class includes a number of convenient utility functions: - - -Encoding and Decoding Helpers -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- :meth:`Web3.is_encodable() ` -- :meth:`Web3.to_bytes() ` -- :meth:`Web3.to_hex() ` -- :meth:`Web3.to_int() ` -- :meth:`Web3.to_json() ` -- :meth:`Web3.to_text() ` - - -Address Helpers -~~~~~~~~~~~~~~~ - -- :meth:`Web3.is_address() ` -- :meth:`Web3.is_checksum_address() ` -- :meth:`Web3.to_checksum_address() ` - - -Currency Conversions -~~~~~~~~~~~~~~~~~~~~ - -- :meth:`Web3.from_wei() ` -- :meth:`Web3.to_wei() ` - - -Cryptographic Hashing -~~~~~~~~~~~~~~~~~~~~~ - -- :meth:`Web3.keccak() ` -- :meth:`Web3.solidity_keccak() ` - - -web3.eth API ------------- - -The most commonly used APIs for interacting with Ethereum can be found under the -:ref:`web3-eth` namespace. - - -Fetching Data -~~~~~~~~~~~~~ - -Viewing account balances (:meth:`get_balance `), transactions -(:meth:`get_transaction `), and block data -(:meth:`get_block `) are some of the most common starting -points in web3.py. - - -API -``` - -- :meth:`web3.eth.get_balance() ` -- :meth:`web3.eth.get_block() ` -- :meth:`web3.eth.get_block_transaction_count() ` -- :meth:`web3.eth.get_code() ` -- :meth:`web3.eth.get_proof() ` -- :meth:`web3.eth.get_storage_at() ` -- :meth:`web3.eth.get_transaction() ` -- :meth:`web3.eth.get_transaction_by_block() ` -- :meth:`web3.eth.get_transaction_count() ` -- :meth:`web3.eth.get_uncle_by_block() ` -- :meth:`web3.eth.get_uncle_count() ` - - -Sending Transactions -~~~~~~~~~~~~~~~~~~~~ - -The most common use cases will be satisfied with -:meth:`send_transaction ` or the combination of -:meth:`sign_transaction ` and -:meth:`send_raw_transaction `. For more context, -see the full guide to :doc:`transactions`. - -.. note:: - - If interacting with a smart contract, a dedicated API exists. See the next - section, :ref:`Contracts `. - - -API -``` - -- :meth:`web3.eth.send_transaction() ` -- :meth:`web3.eth.sign_transaction() ` -- :meth:`web3.eth.send_raw_transaction() ` -- :meth:`web3.eth.replace_transaction() ` -- :meth:`web3.eth.modify_transaction() ` -- :meth:`web3.eth.wait_for_transaction_receipt() ` -- :meth:`web3.eth.get_transaction_receipt() ` -- :meth:`web3.eth.sign() ` -- :meth:`web3.eth.sign_typed_data() ` -- :meth:`web3.eth.estimate_gas() ` -- :meth:`web3.eth.generate_gas_price() ` -- :meth:`web3.eth.set_gas_price_strategy() ` - - -.. _overview_contracts: - -Contracts ---------- - -web3.py can help you deploy, read from, or execute functions on a deployed contract. - -Deployment requires that the contract already be compiled, with its bytecode and ABI -available. This compilation step can be done within -`Remix `_ or one of the many contract development -frameworks, such as `Ape `_. - -Once the contract object is instantiated, calling ``transact`` on the -:meth:`constructor ` method will deploy an -instance of the contract: - -.. code-block:: python - - >>> ExampleContract = w3.eth.contract(abi=abi, bytecode=bytecode) - >>> tx_hash = ExampleContract.constructor().transact() - >>> tx_receipt = w3.eth.wait_for_transaction_receipt(tx_hash) - >>> tx_receipt.contractAddress - '0x8a22225eD7eD460D7ee3842bce2402B9deaD23D3' - -Once a deployed contract is loaded into a Contract object, the functions of that -contract are available on the ``functions`` namespace: - -.. code-block:: python - - >>> deployed_contract = w3.eth.contract(address=tx_receipt.contractAddress, abi=abi) - >>> deployed_contract.functions.myFunction(42).transact() - -If you want to read data from a contract (or see the result of transaction locally, -without executing it on the network), you can use the -:meth:`ContractFunction.call ` method, or the -more concise :attr:`ContractCaller ` syntax: - -.. code-block:: python - - # Using ContractFunction.call - >>> deployed_contract.functions.getMyValue().call() - 42 - - # Using ContractCaller - >>> deployed_contract.caller().getMyValue() - 42 - -For more, see the full :ref:`Contracts` documentation. - - -API -~~~ - -- :meth:`web3.eth.contract() ` -- :attr:`Contract.address ` -- :attr:`Contract.abi ` -- :attr:`Contract.bytecode ` -- :attr:`Contract.bytecode_runtime ` -- :attr:`Contract.functions ` -- :attr:`Contract.events ` -- :attr:`Contract.fallback ` -- :meth:`Contract.constructor() ` -- :meth:`Contract.encode_abi() ` -- :attr:`web3.contract.ContractFunction ` -- :attr:`web3.contract.ContractEvents ` - - -Events, Logs, and Filters -------------------------- - -If you want to react to new blocks being mined or specific events being emitted by -a contract, you can leverage ``get_logs``, subscriptions, or filters. - -See the :doc:`filters` guide for more information. - - -API -~~~ - -- :meth:`web3.eth.subscribe() ` -- :meth:`web3.eth.filter() ` -- :meth:`web3.eth.get_filter_changes() ` -- :meth:`web3.eth.get_filter_logs() ` -- :meth:`web3.eth.uninstall_filter() ` -- :meth:`web3.eth.get_logs() ` -- :meth:`Contract.events.your_event_name.create_filter() ` -- :meth:`Contract.events.your_event_name.build_filter() ` -- :meth:`Filter.get_new_entries() ` -- :meth:`Filter.get_all_entries() ` -- :meth:`Filter.format_entry() ` -- :meth:`Filter.is_valid_entry() ` - - -Net API -------- - -Some basic network properties are available on the ``web3.net`` object: - -- :attr:`web3.net.listening` -- :attr:`web3.net.peer_count` -- :attr:`web3.net.version` - - -ENS ---- - -`Ethereum Name Service (ENS) `_ provides the infrastructure -for human-readable addresses. If an address is registered with the ENS registry, -the domain name can be used in place of the address itself. For example, the registered domain -name ``ethereum.eth`` will resolve to the address -``0xde0B295669a9FD93d5F28D9Ec85E40f4cb697BAe``. web3.py has support for ENS, documented -:ref:`here `. diff --git a/docs/providers.rst b/docs/providers.rst deleted file mode 100644 index 0e9a45854e..0000000000 --- a/docs/providers.rst +++ /dev/null @@ -1,593 +0,0 @@ -.. _providers: - -Providers -========= - -Using Ethereum requires access to an Ethereum node. If you have the means, you're -encouraged to `run your own node`_. (Note that you do not need to stake ether to -run a node.) If you're unable to run your own node, you can use a `remote node`_. - -Once you have access to a node, you can connect to it using a **provider**. -Providers generate `JSON-RPC`_ requests and return the response. This is done by submitting -the request to an HTTP, WebSocket, or IPC socket-based server. - -.. note:: - - web3.py supports one provider per instance. If you have an advanced use case - that requires multiple providers, create and configure a new web3 instance - per connection. - -If you are already happily connected to your Ethereum node, then you -can skip the rest of this providers section. - -.. _run your own node: https://ethereum.org/en/developers/docs/nodes-and-clients/run-a-node/ -.. _remote node: https://ethereum.org/en/developers/docs/nodes-and-clients/nodes-as-a-service/ -.. _JSON-RPC: https://ethereum.org/en/developers/docs/apis/json-rpc/ - -.. _choosing_provider: - -Choosing a Provider -------------------- - -Most nodes have a variety of ways to connect to them. Most commonly: - -1. IPC (uses local filesystem: fastest and most secure) -2. WebSocket (works remotely, faster than HTTP) -3. HTTP (more nodes support it) - -If you're not sure how to decide, choose this way: - -- If you have the option of running web3.py on the same machine as the node, choose IPC. -- If you must connect to a node on a different computer, use WebSocket. -- If your node does not support WebSocket, use HTTP. - -Once you have decided how to connect, you'll select and configure the appropriate provider -class: - -- :class:`~web3.providers.rpc.HTTPProvider` -- :class:`~web3.providers.ipc.IPCProvider` -- :class:`~web3.providers.async_rpc.AsyncHTTPProvider` -- :class:`~web3.providers.persistent.AsyncIPCProvider` (Persistent Connection Provider) -- :class:`~web3.providers.persistent.WebSocketProvider` (Persistent Connection Provider) - -Each provider above links to the documentation on how to properly initialize that -provider. Once you have reviewed the relevant documentation for the provider of your -choice, you are ready to :ref:`get started with web3.py`. - -Provider via Environment Variable -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Alternatively, you can set the environment variable ``WEB3_PROVIDER_URI`` -before starting your script, and web3 will look for that provider first. - -Valid formats for this environment variable are: - -- ``file:///path/to/node/rpc-json/file.ipc`` -- ``http://192.168.1.2:8545`` -- ``https://node.ontheweb.com`` -- ``ws://127.0.0.1:8546`` - - -Auto-initialization Provider Shortcuts --------------------------------------- - -Geth dev Proof of Authority -~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -To connect to a ``geth --dev`` Proof of Authority instance with -the POA middleware loaded by default: - -.. code-block:: python - - >>> from web3.auto.gethdev import w3 - - # confirm that the connection succeeded - >>> w3.is_connected() - True - -Or, connect to an async web3 instance: - -.. code-block:: python - - >>> from web3.auto.gethdev import async_w3 - >>> await async_w3.provider.connect() - - # confirm that the connection succeeded - >>> await async_w3.is_connected() - True - - -Built In Providers ------------------- - -Web3 ships with the following providers which are appropriate for connecting to -local and remote JSON-RPC servers. - - -HTTPProvider -~~~~~~~~~~~~ - -.. py:class:: web3.providers.rpc.HTTPProvider(endpoint_uri, request_kwargs={}, session=None, exception_retry_configuration=ExceptionRetryConfiguration()) - - This provider handles interactions with an HTTP or HTTPS based JSON-RPC server. - - * ``endpoint_uri`` should be the full URI to the RPC endpoint such as - ``'https://localhost:8545'``. For RPC servers behind HTTP connections - running on port 80 and HTTPS connections running on port 443 the port can - be omitted from the URI. - * ``request_kwargs`` should be a dictionary of keyword arguments which - will be passed onto each http/https POST request made to your node. - * ``session`` allows you to pass a ``requests.Session`` object initialized - as desired. - * ``exception_retry_configuration`` is an instance of the - :class:`~web3.providers.rpc.utils.ExceptionRetryConfiguration` - class which allows you to configure how the provider should handle exceptions - when making certain requests. Setting this to ``None`` will disable - exception retries. - - .. code-block:: python - - >>> from web3 import Web3 - >>> w3 = Web3(Web3.HTTPProvider("http://127.0.0.1:8545")) - - Note that you should create only one HTTPProvider with the same provider URL - per python process, as the HTTPProvider recycles underlying TCP/IP - network connections, for better performance. Multiple HTTPProviders with different - URLs will work as expected. - - Under the hood, the ``HTTPProvider`` uses the python requests library for - making requests. If you would like to modify how requests are made, you can - use the ``request_kwargs`` to do so. A common use case for this is increasing - the timeout for each request. - - - .. code-block:: python - - >>> from web3 import Web3 - >>> w3 = Web3(Web3.HTTPProvider("http://127.0.0.1:8545", request_kwargs={'timeout': 60})) - - - To tune the connection pool size, you can pass your own ``requests.Session``. - - .. code-block:: python - - >>> from web3 import Web3 - >>> adapter = requests.adapters.HTTPAdapter(pool_connections=20, pool_maxsize=20) - >>> session = requests.Session() - >>> session.mount('http://', adapter) - >>> session.mount('https://', adapter) - >>> w3 = Web3(Web3.HTTPProvider("http://127.0.0.1:8545", session=session)) - - -IPCProvider -~~~~~~~~~~~ - -.. py:class:: web3.providers.ipc.IPCProvider(ipc_path=None, timeout=10) - - This provider handles interaction with an IPC Socket based JSON-RPC - server. - - * ``ipc_path`` is the filesystem path to the IPC socket: - - .. code-block:: python - - >>> from web3 import Web3 - >>> w3 = Web3(Web3.IPCProvider("~/Library/Ethereum/geth.ipc")) - - If no ``ipc_path`` is specified, it will use a default depending on your operating - system. - - - On Linux and FreeBSD: ``~/.ethereum/geth.ipc`` - - On Mac OS: ``~/Library/Ethereum/geth.ipc`` - - On Windows: ``\\.\pipe\geth.ipc`` - - -AsyncHTTPProvider -~~~~~~~~~~~~~~~~~ - -.. py:class:: web3.providers.rpc.AsyncHTTPProvider(endpoint_uri, request_kwargs={}, exception_retry_configuration=ExceptionRetryConfiguration()) - - This provider handles interactions with an HTTP or HTTPS based JSON-RPC server asynchronously. - - * ``endpoint_uri`` should be the full URI to the RPC endpoint such as - ``'https://localhost:8545'``. For RPC servers behind HTTP connections - running on port 80 and HTTPS connections running on port 443 the port can - be omitted from the URI. - * ``request_kwargs`` should be a dictionary of keyword arguments which - will be passed onto each http/https POST request made to your node. - * ``exception_retry_configuration`` is an instance of the - :class:`~web3.providers.rpc.utils.ExceptionRetryConfiguration` - class which allows you to configure how the provider should handle exceptions - when making certain requests. Setting this to ``None`` will disable - exception retries. - - The ``cache_async_session()`` method allows you to use your own - ``aiohttp.ClientSession`` object. - - .. code-block:: python - - >>> from aiohttp import ClientSession - >>> from web3 import AsyncWeb3, AsyncHTTPProvider - - >>> w3 = AsyncWeb3(AsyncHTTPProvider(endpoint_uri)) - - >>> # If you want to pass in your own session: - >>> custom_session = ClientSession() - >>> await w3.provider.cache_async_session(custom_session) # This method is an async method so it needs to be handled accordingly - - Under the hood, the ``AsyncHTTPProvider`` uses the python - `aiohttp `_ library for making requests. - -Persistent Connection Providers -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Persistent Connection Base Class -++++++++++++++++++++++++++++++++ - -.. note:: - This class is not meant to be used directly. If your provider class inherits - from this class, look to these docs for additional configuration options. - -.. py:class:: web3.providers.persistent.PersistentConnectionProvider(\ - request_timeout: float = 50.0, \ - subscription_response_queue_size: int = 500, \ - silence_listener_task_exceptions: bool = False\ - ) - - This is a base provider class, inherited by the following providers: - - - :class:`~web3.providers.persistent.WebSocketProvider` - - :class:`~web3.providers.persistent.AsyncIPCProvider` - - It handles interactions with a persistent connection to a JSON-RPC server. Among - its configuration, it houses all of the - :class:`~web3.providers.persistent.request_processor.RequestProcessor` logic for - handling the asynchronous sending and receiving of requests and responses. See - the :ref:`internals__persistent_connection_providers` section for more details on - the internals of persistent connection providers. - - * ``request_timeout`` is the timeout in seconds, used when sending data over the - connection and waiting for a response to be received from the listener task. - Defaults to ``50.0``. - - * ``subscription_response_queue_size`` is the size of the queue used to store - subscription responses, defaults to ``500``. While messages are being consumed, - this queue should never fill up as it is a transient queue and meant to handle - asynchronous receiving and processing of responses. When in sync with the - socket stream, this queue should only ever store 1 to a few messages at a time. - - * ``silence_listener_task_exceptions`` is a boolean that determines whether - exceptions raised by the listener task are silenced. Defaults to ``False``, - raising any exceptions that occur in the listener task. - -AsyncIPCProvider -++++++++++++++++ - -.. py:class:: web3.providers.persistent.AsyncIPCProvider(ipc_path=None, max_connection_retries=5) - - This provider handles asynchronous, persistent interaction with an IPC Socket based - JSON-RPC server. - - * ``ipc_path`` is the filesystem path to the IPC socket: - * ``read_buffer_limit`` is the maximum size of data, in bytes, that can be read - from the socket at one time. Defaults to 20MB (20 * 1024 * 1024). Raises - ``ReadBufferLimitReached`` if the limit is reached, suggesting that the buffer - limit be increased. - - This provider inherits from the - :class:`~web3.providers.persistent.PersistentConnectionProvider` class. Refer to - the :class:`~web3.providers.persistent.PersistentConnectionProvider` documentation - for details on additional configuration options available for this provider. - - If no ``ipc_path`` is specified, it will use a default depending on your operating - system. - - - On Linux and FreeBSD: ``~/.ethereum/geth.ipc`` - - On Mac OS: ``~/Library/Ethereum/geth.ipc`` - - On Windows: ``\\.\pipe\geth.ipc`` - -WebSocketProvider -+++++++++++++++++ - -.. py:class:: web3.providers.persistent.WebSocketProvider(endpoint_uri: str, websocket_kwargs: Dict[str, Any] = {}) - - This provider handles interactions with an WS or WSS based JSON-RPC server. - - * ``endpoint_uri`` should be the full URI to the RPC endpoint such as - ``'ws://localhost:8546'``. - * ``websocket_kwargs`` this should be a dictionary of keyword arguments which - will be passed onto the ws/wss websocket connection. - - This provider inherits from the - :class:`~web3.providers.persistent.PersistentConnectionProvider` class. Refer to - the :class:`~web3.providers.persistent.PersistentConnectionProvider` documentation - for details on additional configuration options available for this provider. - - Under the hood, the ``WebSocketProvider`` uses the python websockets library for - making requests. If you would like to modify how requests are made, you can - use the ``websocket_kwargs`` to do so. See the `websockets documentation`_ for - available arguments. - - -.. _subscription-examples: - -Using Persistent Connection Providers -+++++++++++++++++++++++++++++++++++++ - -The ``AsyncWeb3`` class may be used as a context manager, utilizing the ``async with`` -syntax, when instantiating with a -:class:`~web3.providers.persistent.PersistentConnectionProvider`. This will -automatically close the connection when the context manager exits and is the -recommended way to initiate a persistent connection to the provider. - -A similar example using a ``websockets`` connection as an asynchronous context manager -can be found in the `websockets connection`_ docs. - -.. code-block:: python - - >>> import asyncio - >>> from web3 import AsyncWeb3 - >>> from web3.providers.persistent import ( - ... AsyncIPCProvider, - ... WebSocketProvider, - ... ) - - >>> LOG = True # toggle debug logging - >>> if LOG: - ... import logging - ... # logger = logging.getLogger("web3.providers.AsyncIPCProvider") # for the AsyncIPCProvider - ... logger = logging.getLogger("web3.providers.WebSocketProvider") # for the WebSocketProvider - ... logger.setLevel(logging.DEBUG) - ... logger.addHandler(logging.StreamHandler()) - - >>> async def context_manager_subscription_example(): - ... # async with AsyncWeb3(AsyncIPCProvider("./path/to.filename.ipc") as w3: # for the AsyncIPCProvider - ... async with AsyncWeb3(WebSocketProvider(f"ws://127.0.0.1:8546")) as w3: # for the WebSocketProvider - ... # subscribe to new block headers - ... subscription_id = await w3.eth.subscribe("newHeads") - ... - ... async for response in w3.socket.process_subscriptions(): - ... print(f"{response}\n") - ... # handle responses here - ... - ... if some_condition: - ... # unsubscribe from new block headers and break out of - ... # iterator - ... await w3.eth.unsubscribe(subscription_id) - ... break - ... - ... # still an open connection, make any other requests and get - ... # responses via send / receive - ... latest_block = await w3.eth.get_block("latest") - ... print(f"Latest block: {latest_block}") - ... - ... # the connection closes automatically when exiting the context - ... # manager (the `async with` block) - - >>> asyncio.run(context_manager_subscription_example()) - - -The ``AsyncWeb3`` class may also be used as an asynchronous iterator, utilizing the -``async for`` syntax, when instantiating with a -:class:`~web3.providers.persistent.PersistentConnectionProvider`. This may be used to -set up an indefinite websocket connection and reconnect automatically if the connection -is lost. - -A similar example using a ``websockets`` connection as an asynchronous iterator can -be found in the `websockets connection`_ docs. - -.. _`websockets connection`: https://websockets.readthedocs.io/en/stable/reference/asyncio/client.html#websockets.client.connect - -.. code-block:: python - - >>> import asyncio - >>> import websockets - >>> from web3 import AsyncWeb3 - >>> from web3.providers.persistent import ( - ... AsyncIPCProvider, - ... WebSocketProvider, - ... ) - - >>> async def subscription_iterator_example(): - ... # async for w3 in AsyncWeb3(AsyncIPCProvider("./path/to/filename.ipc")): # for the AsyncIPCProvider - ... async for w3 in AsyncWeb3(WebSocketProvider(f"ws://127.0.0.1:8546")): # for the WebSocketProvider - ... try: - ... ... - ... except websockets.ConnectionClosed: - ... continue - - # run the example - >>> asyncio.run(subscription_iterator_example()) - - -Awaiting the instantiation with a -:class:`~web3.providers.persistent.PersistentConnectionProvider`, or instantiating -and awaiting the ``connect()`` method is also possible. Both of these examples are -shown below. - -.. code-block:: python - - >>> async def await_instantiation_example(): - ... # w3 = await AsyncWeb3(AsyncIPCProvider("./path/to/filename.ipc")) # for the AsyncIPCProvider - ... w3 = await AsyncWeb3(WebSocketProvider(f"ws://127.0.0.1:8546")) # for the WebSocketProvider - ... - ... # some code here - ... - ... # manual cleanup - ... await w3.provider.disconnect() - - # run the example - >>> asyncio.run(await_instantiation_example) - -.. code-block:: python - - >>> async def await_provider_connect_example(): - ... # w3 = AsyncWeb3(AsyncIPCProvider("./path/to/filename.ipc")) # for the AsyncIPCProvider - ... w3 = AsyncWeb3(WebSocketProvider(f"ws://127.0.0.1:8546")) # for the WebSocketProvider - ... await w3.provider.connect() - ... - ... # some code here - ... - ... # manual cleanup - ... await w3.provider.disconnect() - - # run the example - >>> asyncio.run(await_provider_connect_example) - -:class:`~web3.providers.persistent.PersistentConnectionProvider` classes use the -:class:`~web3.providers.persistent.request_processor.RequestProcessor` class under the -hood to sync up the receiving of responses and response processing for one-to-one and -one-to-many request-to-response requests. Refer to the -:class:`~web3.providers.persistent.request_processor.RequestProcessor` -documentation for details. - -AsyncWeb3 with Persistent Connection Providers -++++++++++++++++++++++++++++++++++++++++++++++ - -When an ``AsyncWeb3`` class is connected to a -:class:`~web3.providers.persistent.PersistentConnectionProvider`, some attributes and -methods become available. - - .. py:attribute:: socket - - The public API for interacting with the websocket connection is available via - the ``socket`` attribute of the ``Asyncweb3`` class. This attribute is an - instance of the - :class:`~web3.providers.persistent.persistent_connection.PersistentConnection` - class and is the main interface for interacting with the socket connection. - - -Interacting with the Persistent Connection -++++++++++++++++++++++++++++++++++++++++++ - -.. py:class:: web3.providers.persistent.persistent_connection.PersistentConnection - - This class handles interactions with a persistent socket connection. It is available - via the ``socket`` attribute on the ``AsyncWeb3`` class. The - ``PersistentConnection`` class has the following methods and attributes: - - .. py:attribute:: subscriptions - - This attribute returns the current active subscriptions as a dict mapping - the subscription ``id`` to a dict of metadata about the subscription - request. - - .. py:method:: process_subscriptions() - - This method is available for listening to websocket subscriptions indefinitely. - It is an asynchronous iterator that yields strictly one-to-many - (e.g. ``eth_subscription`` responses) request-to-response messages from the - websocket connection. To receive responses for one-to-one request-to-response - calls, use the standard API for making requests via the appropriate module - (e.g. ``block_num = await w3.eth.block_number``) - - The responses from this method are formatted by *web3.py* formatters and run - through the middleware that were present at the time of subscription. - Examples on how to use this method can be seen above in the - `Using Persistent Connection Providers`_ section. - - .. py:method:: send(method: RPCEndpoint, params: Sequence[Any]) - - This method is available strictly for sending raw requests to the socket, - if desired. It is not recommended to use this method directly, as the - responses will not be formatted by *web3.py* formatters or run through the - middleware. Instead, use the methods available on the respective web3 - module. For example, use ``w3.eth.get_block("latest")`` instead of - ``w3.socket.send("eth_getBlockByNumber", ["latest", True])``. - - .. py:method:: recv() - - The ``recv()`` method can be used to receive the next response for a request - from the socket. The response from this method is the raw response. This is not - the recommended way to receive a response for a request, as it is not formatted - by *web3.py* formatters or run through the middleware. Instead, use the methods - available on the respective web3 module - (e.g. ``block_num = await w3.eth.block_number``) for retrieving responses for - one-to-one request-to-response calls. - - .. py:method:: make_request(method: RPCEndpoint, params: Sequence[Any]) - - This method is available for making requests to the socket and retrieving the - response. It is not recommended to use this method directly, as the responses - will not be properly formatted by *web3.py* formatters or run through the - middleware. Instead, use the methods available on the respective web3 module. - For example, use ``w3.eth.get_block("latest")`` instead of - ``w3.socket.make_request("eth_getBlockByNumber", ["latest", True])``. - - -LegacyWebSocketProvider -~~~~~~~~~~~~~~~~~~~~~~~ - -.. warning:: - - ``LegacyWebSocketProvider`` is deprecated and is likely to be removed in a - future major release. Please use ``WebSocketProvider`` instead. - -.. py:class:: web3.providers.legacy_websocket.LegacyWebSocketProvider(endpoint_uri[, websocket_timeout, websocket_kwargs]) - - This provider handles interactions with an WS or WSS based JSON-RPC server. - - * ``endpoint_uri`` should be the full URI to the RPC endpoint such as - ``'ws://localhost:8546'``. - * ``websocket_timeout`` is the timeout in seconds, used when receiving or - sending data over the connection. Defaults to 10. - * ``websocket_kwargs`` this should be a dictionary of keyword arguments which - will be passed onto the ws/wss websocket connection. - - .. code-block:: python - - >>> from web3 import Web3 - >>> w3 = Web3(Web3.LegacyWebSocketProvider("ws://127.0.0.1:8546")) - - Under the hood, ``LegacyWebSocketProvider`` uses the python ``websockets`` library for - making requests. If you would like to modify how requests are made, you can - use the ``websocket_kwargs`` to do so. See the `websockets documentation`_ for - available arguments. - - .. _`websockets documentation`: https://websockets.readthedocs.io/en/stable/reference/asyncio/client.html#websockets.client.WebSocketClientProtocol - - Unlike HTTP connections, the timeout for WS connections is controlled by a - separate ``websocket_timeout`` argument, as shown below. - - - .. code-block:: python - - >>> from web3 import Web3 - >>> w3 = Web3(Web3.LegacyWebSocketProvider("ws://127.0.0.1:8546", websocket_timeout=60)) - - -AutoProvider -~~~~~~~~~~~~ - -:class:`~web3.providers.auto.AutoProvider` is the default used when initializing -:class:`web3.Web3` without any providers. There's rarely a reason to use it -explicitly. - -.. py:currentmodule:: web3.providers.eth_tester - -EthereumTesterProvider -~~~~~~~~~~~~~~~~~~~~~~ - -.. warning:: Experimental: This provider is experimental. There are still significant - gaps in functionality. However it is being actively developed and supported. - -.. py:class:: EthereumTesterProvider(ethereum_tester=None, api_endpoints=None) -.. py:class:: AsyncEthereumTesterProvider(ethereum_tester=None, api_endpoints=None) - - This provider integrates with the ``eth-tester`` library. The ``ethereum_tester`` - constructor argument should be an instance of the :class:`~eth_tester.EthereumTester` - or a subclass of :class:`~eth_tester.backends.base.BaseChainBackend` class provided - by the ``eth-tester`` library. The ``api_endpoints`` argument should be a ``dict`` - of RPC endpoints. You can see the structure and defaults `here `_. - If you would like a custom ``eth-tester`` instance to test with, see the - ``eth-tester`` library `documentation `_ - for details. - - .. code-block:: python - - >>> from web3 import Web3, EthereumTesterProvider - >>> w3 = Web3(EthereumTesterProvider()) - -.. NOTE:: To install the needed dependencies to use EthereumTesterProvider, you can - install the pip extras package that has the correct interoperable versions of the - ``eth-tester`` and ``py-evm`` dependencies needed: e.g. ``pip install "web3[tester]"`` diff --git a/docs/quickstart.rst b/docs/quickstart.rst deleted file mode 100644 index 5f7c68daaa..0000000000 --- a/docs/quickstart.rst +++ /dev/null @@ -1,163 +0,0 @@ -.. _quickstart: - -Quickstart -========== - -.. contents:: :local: - -.. NOTE:: All code starting with a ``$`` is meant to run on your terminal. - All code starting with a ``>>>`` is meant to run in a python interpreter, - like `ipython `_. - -Installation ------------- - -web3.py can be installed (preferably in a :ref:`virtualenv `) -using ``pip`` as follows: - -.. code-block:: shell - - $ pip install web3 - - -.. NOTE:: If you run into problems during installation, you might have a - broken environment. See the troubleshooting guide to :ref:`setting up a - clean environment `. - - -Using Web3 ----------- - -This library depends on a connection to an Ethereum node. We call these connections -*Providers* and there are several ways to configure them. The full details can be found -in the :ref:`Providers` documentation. This Quickstart guide will highlight -a couple of the most common use cases. - - -Test Provider -************* - -If you're just learning the ropes or doing some quick prototyping, you can use a test -provider, `eth-tester `_. This provider includes -some accounts prepopulated with test ether and instantly includes each transaction into a block. -web3.py makes this test provider available via ``EthereumTesterProvider``. - -.. note:: - - The ``EthereumTesterProvider`` requires additional dependencies. Install them via - ``pip install "web3[tester]"``, then import and instantiate the provider as seen below. - -.. code-block:: python - - >>> from web3 import Web3, EthereumTesterProvider - >>> w3 = Web3(EthereumTesterProvider()) - >>> w3.is_connected() - True - - -Local Providers -*************** - -The hardware requirements are `steep `_, -but the safest way to interact with Ethereum is to run an Ethereum client on your own hardware. -For locally run nodes, an IPC connection is the most secure option, but HTTP and -websocket configurations are also available. By default, the popular `Geth client `_ -exposes port ``8545`` to serve HTTP requests and ``8546`` for websocket requests. Connecting -to this local node can be done as follows: - -.. code-block:: python - - >>> from web3 import Web3, AsyncWeb3 - - # IPCProvider: - >>> w3 = Web3(Web3.IPCProvider('./path/to/filename.ipc')) - >>> w3.is_connected() - True - - # HTTPProvider: - >>> w3 = Web3(Web3.HTTPProvider('http://127.0.0.1:8545')) - >>> w3.is_connected() - True - - # AsyncHTTPProvider: - >>> w3 = AsyncWeb3(AsyncWeb3.AsyncHTTPProvider('http://127.0.0.1:8545')) - >>> await w3.is_connected() - True - - # -- Persistent Connection Providers -- # - - # WebSocketProvider: - >>> w3 = await AsyncWeb3(AsyncWeb3.WebSocketProvider('ws://127.0.0.1:8546')) - >>> await w3.is_connected() - True - - # AsyncIPCProvider: - >>> w3 = await AsyncWeb3(AsyncWeb3.AsyncIPCProvider('./path/to/filename.ipc')) - >>> await w3.is_connected() - True - - -Remote Providers -**************** - -The quickest way to interact with the Ethereum blockchain is to use a `remote node provider `_. -You can connect to a remote node by specifying the endpoint, just like the previous local node example: - -.. code-block:: python - - >>> from web3 import Web3, AsyncWeb3 - - >>> w3 = Web3(Web3.HTTPProvider('https://')) - - >>> w3 = AsyncWeb3(AsyncWeb3.AsyncHTTPProvider('https://')) - - >>> w3 = await AsyncWeb3(AsyncWeb3.WebSocketProvider('wss://')) - -This endpoint is provided by the remote node service, typically after you create an account. - -.. _first_w3_use: - - -Getting Blockchain Info ------------------------ - -It's time to start using web3.py! Once properly configured, the ``w3`` instance will allow you -to interact with the Ethereum blockchain. Try getting all the information about the latest block: - -.. code-block:: python - - >>> w3.eth.get_block('latest') - {'difficulty': 1, - 'gasLimit': 6283185, - 'gasUsed': 0, - 'hash': HexBytes('0x53b983fe73e16f6ed8178f6c0e0b91f23dc9dad4cb30d0831f178291ffeb8750'), - 'logsBloom': HexBytes('0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'), - 'miner': '0x0000000000000000000000000000000000000000', - 'mixHash': HexBytes('0x0000000000000000000000000000000000000000000000000000000000000000'), - 'nonce': HexBytes('0x0000000000000000'), - 'number': 0, - 'parentHash': HexBytes('0x0000000000000000000000000000000000000000000000000000000000000000'), - 'proofOfAuthorityData': HexBytes('0x0000000000000000000000000000000000000000000000000000000000000000dddc391ab2bf6701c74d0c8698c2e13355b2e4150000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'), - 'receiptsRoot': HexBytes('0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421'), - 'sha3Uncles': HexBytes('0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347'), - 'size': 622, - 'stateRoot': HexBytes('0x1f5e460eb84dc0606ab74189dbcfe617300549f8f4778c3c9081c119b5b5d1c1'), - 'timestamp': 0, - 'totalDifficulty': 1, - 'transactions': [], - 'transactionsRoot': HexBytes('0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421'), - 'uncles': []} - -web3.py can help you read block data, sign and send transactions, deploy and interact with contracts, -and a number of other features. - -A few suggestions from here: - -- The :doc:`overview` page provides a summary of web3.py's features. -- The :class:`w3.eth ` API contains the most frequently used methods. -- A guide to :ref:`contracts` includes deployment and usage examples. -- The nuances of :doc:`transactions` are explained in another guide. - -.. NOTE:: It is recommended that your development environment have the ``PYTHONWARNINGS=default`` - environment variable set. Some deprecation warnings will not show up - without this variable being set. diff --git a/docs/release_notes.rst b/docs/release_notes.rst deleted file mode 100644 index 7d4efb9dec..0000000000 --- a/docs/release_notes.rst +++ /dev/null @@ -1,4460 +0,0 @@ -Release Notes -============= - -v7 Breaking Changes Summary - See the :ref:`v7 Migration Guide` - -.. towncrier release notes start - -web3.py v7.6.0 (2024-11-22) ---------------------------- - -Bugfixes -~~~~~~~~ - -- Update the `ContractEvents` class to raise a `NoABIFound` exception if the `Contract` is initialized without an `ABI` and an attempt to access an event is made. This exception makes `ContractEvents` consistent with `ContractFunctions`. (`#3491 `__) - - -Features -~~~~~~~~ - -- Contracts with overloaded functions or events are now supported. The Contract initializes functions and events using an identifier to distinguish between them. The identifier is the function or event signature, which consists of the name and the parameter types. (`#3491 `__) -- - Support for ``w3.eth.blob_base_fee`` - - Async support for ``w3.eth.blob_base_fee`` (`#3527 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Pin ``websockets<14`` due to breaking changes (`#3529 `__) - - -Miscellaneous Changes -~~~~~~~~~~~~~~~~~~~~~ - -- `#3491 `__ - - -web3.py v7.5.0 (2024-11-06) ---------------------------- - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Polish docs index page (`#3522 `__) - - -Features -~~~~~~~~ - -- Add support for Geth Debug traceTransaction. (`#3334 `__) -- New contract methods to obtain event elements from a contract ABI using a name, signature, selector, or topic. (`#3472 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Add python 3.13 support (`#3493 `__) -- Compile test contracts with newly released Solidity ``v0.8.28`` to ensure compatibility. (`#3515 `__) - - -web3.py v7.4.0 (2024-10-16) ---------------------------- - -Bugfixes -~~~~~~~~ - -- Fix a bug where CCIP-Read expected a ``{sender}`` in the url for a POST request. If ``{data}`` is missing from the url, assume a POST request is being made regardless of whether ``{sender}`` is present. (`#3291 `__) -- Fix a bug where non-mainnet chains could not cache requests based on missing ``finalized`` block number. (`#3508 `__) -- Send ``json``, not ``data`` with CCIP-Read POST requests. (`#3512 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Update the request caching documentation to clarify on when to reach for request caching and how to configure the request validation threshold for certain endpoints. (`#3508 `__) - - -Features -~~~~~~~~ - -- Allow a time interval, in seconds, to be used as the ``request_cache_validation_threshold`` for request caching. Keep a list of internal default values based on the chain id for some of the bigger chains. (`#3508 `__) - - -web3.py v7.3.1 (2024-10-14) ---------------------------- - -Bugfixes -~~~~~~~~ - -- Properly wrap ``AsyncBeacon.request_timeout`` float in a ``aiohttp.ClientTimeout`` when making requests. (`#3503 `__) -- Changes related to an `eth-typing` bugfix, input types for ``ABIEvent``: ``ABIComponent`` -> ``ABIComponentIndexed``. (`#3510 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Fix ``EthereumTesterProvider`` signature in docs, added an ``eth_tester`` example. (`#3500 `__) -- Fix `pip install -e ".[dev]"` command in linux README. (`#3505 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Update the ENSIP-15 to the latest spec and update the test suite. (`#3501 `__) - - -web3.py v7.3.0 (2024-09-25) ---------------------------- - -Bugfixes -~~~~~~~~ - -- Base default ``maxFeePerGas`` calculation off of existing ``maxPriorityFeePerGas`` key instead of separate RPC call (`#3052 `__) -- Add back dependency extra for 'tester'. (`#3480 `__) -- Fix a bug where sensitive requests that make use of block data should not be cached until some validation threshold deems it is safe to do so, when request caching is turned on. (`#3483 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Update ``contract.encode_abi`` signature in docs and migration guide (`#3473 `__) -- Update documentation around ``SignAndSendRawMiddlewareBuilder`` injection into the middleware onion. It should be injected lower in the stack than any middleware that modifies the transaction, in order to ensure those modified fields are signed. (`#3488 `__) -- Docs cleanups related to ``test`` vs ``tester`` install extras. (`#3496 `__) - - -Features -~~~~~~~~ - -- Add a configuration for request caching that sets a threshold for validating cached requests that make use of block data. This can be turned off altogether by setting the threshold to ``None``. (`#3483 `__) -- Add a configuration option for the ``read_buffer_limit`` for ``AsyncIPCProvider`` in order to control the expected message size limit (defaults to 20MB). Add ``ReadBufferLimitReached`` for when the read limit is reached, extend from ``PersistentConnectionError``. (`#3492 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Test warning cleanup (`#3468 `__) -- Re-compile test contracts with recently released Solidity ``v0.8.27``. (`#3475 `__) -- Re-organize the install extras. Re-define the ``test`` extra to always include the ``tester`` extra since it's needed for testing. (`#3495 `__) - - -Miscellaneous Changes -~~~~~~~~~~~~~~~~~~~~~ - -- `#3490 `__ - - -Performance Improvements -~~~~~~~~~~~~~~~~~~~~~~~~ - -- Improve logic for reading from the async IPC socket in order to properly handle and adjust the handling of large messages. This improves reading speeds in general. (`#3492 `__) - - -web3.py v7.2.0 (2024-08-29) ---------------------------- - -Bugfixes -~~~~~~~~ - -- Fix a bug with newer ``hexbytes`` versions that yield non-0x-prefixed hex for ``HexBytes``: ``raw_transaction.hex()`` -> ``raw_transaction.to_0x_hex()``. (`#3471 `__) - - -Features -~~~~~~~~ - -- HTTPProvider and AsyncHTTPProvider's get_request_headers is now available on both the class and the instance (`#3467 `__) - - -web3.py v7.1.0 (2024-08-28) ---------------------------- - -Bugfixes -~~~~~~~~ - -- Specify a unique ``__hash__()`` for unhashable ``Web3Middleware`` types and use this hash as the middleware onion key when a name is not provided for the middleware. This fixes a bug where different middleware were given the same name and therefore raised errors. (`#3463 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Fix bug in filters example code (`#3455 `__) -- Update ``v6`` -> ``v7`` migration guide with examples for importing and adding middleware, as well as examples on how to use the ``MiddlewareBuilder`` classes. (`#3462 `__) - - -Features -~~~~~~~~ - -- Add sync and async support for beacon ``/eth/v1/beacon/blob_sidecars`` endpoint. (`#3407 `__) -- Allow user to call ContractFunctions without parentheses (`#3444 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Refactor and DRY up CI run setup and reduce surface area for errors. Include pre-releases in CI runs for internally maintained libraries to try and catch any conflicts. (`#3452 `__) -- Bump `py-geth` to ``>=5.0.0`` from ``>=5.0.0b1`` now that stable has been released. This only matters for the ``test`` install extra (CI and dev purposes). (`#3458 `__) - - -web3.py v7.0.0 (2024-08-21) ---------------------------- - -Breaking Changes -~~~~~~~~~~~~~~~~ - -- Update `eth-utils` and `eth-typing` to latest major versions - - `eth-utils` v5 and `eth-typing` v5 (`#3450 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Improve batch request documentation. (`#3448 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Fix Release Notes formatting (`#3454 `__) - - -web3.py v7.0.0-beta.9 (2024-08-01) ----------------------------------- - -Breaking Changes -~~~~~~~~~~~~~~~~ - -* Upgrades to use latest ``ABI`` utilities and typings from ``eth-utils`` and ``eth-typing``. - - * Typings for ``ABI`` components are now available in the ``eth-typing`` package. ``ABI`` types previously in ``web3.types`` have been removed. - * New versions of existing ABI functions were added to ``eth-utils`` and are now exposed in `web3.py` via ``web3.utils.abi``. - * ABI exceptions have been renamed in ``web3.exceptions``. The ``ABIEventFunctionNotFound`` and ``FallbackNotFound`` exceptions have been removed. Use ``ABIEventNotFound`` and ``ABIFallbackNotFound`` instead. - * ``MismatchedABI`` exceptions are raised instead of a ``Web3ValidationError`` for ABI related errors. - * ``encode_abi`` arguments have been updated to use ``abi_element_name`` instead of ``fn_name``. (`#3408 `__) - -- Remove ``Web3ValidationError`` dependence / inheritance from `eth-utils` ``ValidationError``. (`#3443 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Use autodoc and update ABI functions with docstrings and doctests. (`#3408 `__) - - -Features -~~~~~~~~ - -* Utilities to extract function and event ``ABI`` attributes from a contract. Utilities in the ``web3.utils.abi`` module parse ABI elements and check encodability of provided arguments. ABI functions in ``eth-utils`` are exposed by the ``web3.utils.abi`` module. - - * ``get_abi_element_info`` returns an ``ABIElementInfo`` TypedDict with the ``abi``, ``selector``, and ``arguments``. - * ``get_abi_element`` returns the ``ABI`` of a function, event, or error given the name and arguments. - * ``check_if_arguments_can_be_encoded`` returns true if the arguments can be encoded with the given ABI. - * ``get_event_abi`` returns the ``ABI`` of an event given the name. - * ``get_event_log_topics`` returns the log topics of an event given the name. - * ``log_topics_to_bytes`` returns the log topics as bytes. (`#3408 `__) - -- Add explicit stream kwarg to HTTPProvider so that timeout can be more finely tuned. (`#3428 `__) -- Implement a ``RequestTimedOut`` exception, extending from ``Web3RPCError``, for when requests to the node time out. (`#3440 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Run ``mypy`` locally using ``pre-commit`` hook, instead of within ``pre-commit`` container (`#3414 `__) -- Mitigate inconsistently failing tests for CI runs with appropriate ``flaky`` or ``pytest.mark.xfail()`` decorators. (`#3440 `__) - - -Miscellaneous Changes -~~~~~~~~~~~~~~~~~~~~~ - -- `#3408 `__, `#3445 `__ - - -web3.py v7.0.0-beta.8 (2024-07-24) ----------------------------------- - -Breaking Changes -~~~~~~~~~~~~~~~~ - -- Refactor the public ``socket`` api for persistent connection providers to properly define ``send()``, ``recv()``, and ``make_request()`` (send and wait for response) methods for interacting with the open socket. (`#3433 `__) -- Format entries in ``accessList`` ``storageKeys`` to be ``HexStr`` instead of ``HexBytes`` (`#3434 `__) - - -Bugfixes -~~~~~~~~ - -- Handle ``ConnectionClosedOK`` case for ``WebSocketProvider``. If a persistent connection is closed gracefully, log and raise a silent ``PersistentConnectionClosedOK`` exception, triggering an end to the message listener task and breaking out of the ``process_subscriptions()`` iterator. (`#3432 `__) - - -Features -~~~~~~~~ - -- Add ``popitem()`` functionality to the ``SimpleCache`` class as well as an async utility method to wait for the next item, ``async_await_and_popitem()``. (`#3433 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Refactor some common logic for persistent connection providers back into the base ``PersistentConnectionProvider`` class to reduce code duplication and improve maintainability. (`#3433 `__) - - -web3.py v7.0.0-beta.7 (2024-06-26) ----------------------------------- - -Bugfixes -~~~~~~~~ - -- Change the ``exception_retry_configuration`` typing on http providers to be an ``Optional``, as setting this property to ``None`` effectively turns off retries on exceptions for requests. (`#3412 `__) -- A bugfix, pre-release, to update the ``Beacon`` APIs (sync and async) to properly use the new ``HTTPSessionManager``. (`#3421 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Add an ``eth_subscribe`` example to the events guide (`#3403 `__) - - -Features -~~~~~~~~ - -- Properly handle ``InsufficientDataBytes`` errors when processing receipts (`#3388 `__) -- Provide explicit ``__all__`` exports for providers in `web3/providers/__init__.py`; update `web3/__init__.py` to include all provider classes including base classes. (`#3409 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Re-compile test contracts with Solidity v0.8.25 to ensure compatibility. (`#3307 `__) -- Increase allowable range of eth-tester: 0.11.x and 0.12.x (`#3400 `__) -- Remove uses of signHash in tests, require eth-account >=0.13.0 in doctests (`#3404 `__) -- Use a ``HTTPSessionManager`` to manage sessions for http providers, rather than have them share a single session manager / cache. (`#3412 `__) - - -web3.py v7.0.0-beta.6 (2024-05-15) ----------------------------------- - -Bugfixes -~~~~~~~~ - -- Properly propagate exceptions from the message listener task to the main loop for persistent connection providers. (`#3378 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Prunes the node onboarding text (`#3371 `__) -- Stale example cleanup (`#3374 `__) -- Merge migration guides into one page (`#3379 `__) -- Simplify titles of docs guides (`#3381 `__) -- Move ABI Types guide into the Troubleshooting page (`#3382 `__) -- Distribute examples into relevant guides and delete Example page (`#3383 `__) -- Add subscribe/unsubscribe API (`#3386 `__) -- Introduces batch request API (`#3393 `__) - - -Features -~~~~~~~~ - -- Add support for request batching via ``w3.batch_requests()`` context manager (sync and async). (`#3370 `__) -- Allow request cache configuration on provider ``__init__()`` for all provider classes. (`#3395 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Merge the python project template, notably adding python 3.12 support (`#3363 `__) -- Increase python-asyncio dependency to be >=0.21.2,<0.23 (`#3369 `__) -- Bump to ``mypy==1.10.0`` for ``pre-commit`` (`#3377 `__) -- Move signed.rawTransaction -> signed.raw_transaction in eth module tests (`#3380 `__) - - -web3.py v7.0.0-beta.5 (2024-04-26) ----------------------------------- - -Breaking Changes -~~~~~~~~~~~~~~~~ - -- Snake-case remaining arguments ``fromBlock``, ``toBlock``, and ``blockHash`` in contract and filter methods where they are passed in as kwargs. (`#3353 `__) -- Employ an exponential backoff strategy using the ``backoff_factor`` in ``ExceptionRetryConfiguration`` for ``HTTPProvider`` and ``AsyncHTTPProvider``. Reduce the default initial delay to ``0.125`` seconds. (`#3358 `__) -- Validate JSON-RPC responses more strictly against the JSON-RPC 2.0 specifications. ``BlockNumberOutofRange`` -> ``BlockNumberOutOfRange``. (`#3359 `__) - - -Deprecations -~~~~~~~~~~~~ - -- ``messageHash`` and ``rawTransaction`` from ``eth-account`` have been deprecated for snake_case versions (`#3348 `__) - - -Features -~~~~~~~~ - -- Raise ``Web3RPCError`` on JSON-RPC errors rather than ``Web3ValueError``. Raise ``MethodNotSupported`` exception when a method is not supported within *web3.py*; keep ``MethodUnavailable`` for when a method is not available on the current provider (JSON-RPC error). (`#3359 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Bump ``eth-account`` dependency to ``>=0.12.2`` (`#3348 `__) - - -Removals -~~~~~~~~ - -- Remove the deprecated ``personal`` namespace and all references to it. (`#3350 `__) - - -web3.py v7.0.0-beta.4 (2024-04-11) ----------------------------------- - -Bugfixes -~~~~~~~~ - -- Fix misused call to `endpoint_uri` for all cases of ``PersistentConnectionProvider`` by being able to retrieve either the ``ipc_path`` or the ``endpoint_uri`` from the base class with ``endpoint_uri_or_ipc_path`` property. (`#3319 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Fix ``eth_createAccessList`` docs to reflect the correct behavior. (`#3327 `__) - - -Features -~~~~~~~~ - -- Use in-house exception wrappers for common Python exceptions, such as ``ValueError``, ``TypeError``, ``AttributeError``, and ``AssertionError``, for better control over exception handling. (`#3300 `__) -- Add request formatter for ``maxFeePerBlobGas`` when sending blob transactions. Add formatters for ``blobGasPrice`` and ``blobGasUsed`` for *eth_getTransactionReceipt*. (`#3322 `__) -- Add formatters to ensure that the result of a ``eth_createAccessList`` response can be plugged directly into an ``accessList`` in a transaction. (`#3327 `__) -- Add Cancun support to ``EthereumTesterProvider``; update Cancun-related fields in some internal types. (`#3332 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Use ``pre-commit`` for linting, run updated lint tools and fix errors (`#3297 `__) -- Dependency updates: ``eth-abi>=5.0.1``, ``eth-account>=0.12.0`` ``eth-typing>=4.0.0`` and ``hexbytes>=1.2.0`` with relevant changes to support these. (`#3298 `__) -- Remove code conditionally necessary for ``python<=3.7`` (`#3317 `__) - - -web3.py v7.0.0-beta.3 (2024-03-28) ----------------------------------- - -Bugfixes -~~~~~~~~ - -- Fix ``process_log()`` when parsing logs for events with indexed and non-indexed inputs. ``get_event_data()`` now compares log topics and event ABIs as hex values. (`#3289 `__) -- Fix ``process_log`` for ``HexStr`` inputs. Explicit type coercion of entry ``topics`` and ``data`` values. (`#3293 `__) -- Fix typing for json data argument to ``eth_signTypedData``. (`#3308 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Add note about middlewares change to v7 migration guide. (`#3277 `__) -- Rearrange v7 migration guide and include upgrade path from WebsocketProviderV2 (`#3310 `__) - - -Features -~~~~~~~~ - -- Add support for ``eth_getRawTransactionByHash`` RPC method (`#3247 `__) -- Add ``user_message`` kwarg for human readable ``Web3Exception`` messages. (`#3263 `__) -- Add formatters for type 3 transaction fields ``maxFeePerBlobGas`` and ``blobVersionedHashes``. (`#3314 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Add a daily CI run (`#3272 `__) -- Add linting for non-inclusive language with ``blocklint``. (`#3275 `__) - - -Miscellaneous Changes -~~~~~~~~~~~~~~~~~~~~~ - -- `#3304 `__ - - -Performance Improvements -~~~~~~~~~~~~~~~~~~~~~~~~ - -- Importing ``ens._normalization`` is deferred until the first call of ``ens.utils.normalize_name`` in order to speed up ``import web3``. (`#3285 `__) -- Utilize ``async`` functionality when popping responses from request manager cache for persistent connection providers. (`#3306 `__) - - -Removals -~~~~~~~~ - -- Remove ``Contract.encodeABI()`` in favor of ``Contract.encode_abi()`` to follow standard conventions. (`#3281 `__) - - -web3.py v7.0.0-beta.2 (2024-03-11) ----------------------------------- - -Breaking Changes -~~~~~~~~~~~~~~~~ - -- Move ``middlewares`` -> ``middleware`` (`#3276 `__) - - -Bugfixes -~~~~~~~~ - -- Fix/update methods and decorators in ``web3/_utils/abi.py`` to address issues raised by ``mypy`` (`#3269 `__) -- Catch all types of ``eth-abi`` ``DecodingError`` in ``EthereumTesterProvider->_make_request()`` (`#3271 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Remove annual user survey prompt from docs (`#3218 `__) -- Introduce feedback form banner prompt on docs (`#3253 `__) -- Refresh of the middleware docs (`#3266 `__) - - -Miscellaneous Changes -~~~~~~~~~~~~~~~~~~~~~ - -- `#3259 `__, `#3262 `__ - - -Removals -~~~~~~~~ - -- Remove the ``ethpm`` module and related docs, tests, and dependencies (`#3261 `__) - - -web3.py v7.0.0-beta.1 (2024-02-28) ----------------------------------- - -Breaking Changes -~~~~~~~~~~~~~~~~ - -- Refactor the middleware setup so that request processors and response processors are separated. This will allow for more flexibility in the future and aid in the implementation of features such as batched requests. This PR also closes out a few outstanding issues and will be the start of the breaking changes for `web3.py` ``v7``. Review PR for a full list of changes. (`#3169 `__) -- Use a message listener background task for ``WebsocketProviderV2`` rather than relying on ``ws.recv()`` blocking. Some breaking changes to API, notably ``listen_to_websocket`` -> ``process_subscriptions``. (`#3179 `__) -- Drop dependency on ``lru-dict`` library. (`#3196 `__) -- Drop support for python 3.7 (`#3198 `__) -- Return iterable of ``ABIFunction``s from the ``BaseContractFunctions`` iterator. (`#3200 `__) -- Name changes internal to the library related to ``v7``: ``WebsocketProvider`` -> ``LegacyWebSocketProvider``, ``WebsocketProviderV2`` -> ``WebSocketProvider`` (`#3225 `__) -- ``CallOverride`` type change to ``StateOverride`` to reflect better the type name for the state override. ``eth_call`` is also not the only method with this param, making the name more generic. (`#3227 `__) -- Rename `beacon/main.py` -> `beacon/beacon.py` (`#3233 `__) -- ``EthereumTesterProvider`` now returns ``input`` for `eth_getTransaction*` for better consistency with JSON-RPC spec. (`#3235 `__) -- Change the signature for the async version of ``wait_for_transaction_receipt()`` to use ``Optional[float]`` instead of ``float``. (`#3237 `__) -- ``get_default_ipc_path()`` and ``get_dev_ipc_path()`` now return the path value without checking if the ``geth.ipc`` file exists. (`#3245 `__) - - -Bugfixes -~~~~~~~~ - -- Fix return type of ``AsyncContract.constructor`` (`#3192 `__) -- Handle new geth errors related to waiting for a transaction receipt while transactions are still being indexed. (`#3216 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Documentation was updated to reflect early changes to ``v7`` from ``v6``. A ``v6`` -> ``v7`` migration guide was also started and will be added to as ``v7`` breaking changes are introduced. (`#3211 `__) -- Remove ENS v6 breaking change warning from v7 (`#3254 `__) - - -Features -~~~~~~~~ - -- Add AsyncIPCProvider (`#2984 `__) -- Implement ``state_override`` parameter for ``eth_estimateGas`` method. (`#3164 `__) -- Upgrade `eth-tester` to ``v0.10.0-b.1`` and turn on ``eth_feeHistory`` support for ``EthereumTesterProvider``. (`#3172 `__) -- Add formatters for new ``Cancun`` network upgrade block header fields: ``blobGasUsed``, ``excessBlobGas``, and ``parentBeaconBlockRoot``. (`#3223 `__) -- Contract event ``get_logs`` results sorted by each ``ContractEvent`` ``logIndex``. (`#3228 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Create test fixture for latest ``geth`` version. Run tests with ``geth`` in ``--dev`` mode. (`#3191 `__) -- Validate geth version used to generate the integration test fixture against the version in the binary that is used to run the tests. (`#3193 `__) -- Internal change to ``WebsocketProviderV2`` before release: raise exceptions in message listener task by default; opting to silence them via a flag. (`#3202 `__) -- Compile contracts with and test against new Solidity version ``v0.8.24``. (`#3204 `__) -- Formatting updates for ``black==24.1.0``. (`#3207 `__) -- Allow HTTP provider request retry configuration to be turned off appropriately. Internal change since ``v7`` has not yet been released. (`#3211 `__) -- Upgraded geth fixture version (`#3231 `__) - - -Miscellaneous Changes -~~~~~~~~~~~~~~~~~~~~~ - -- `#2964 `__, `#3248 `__ - - -Performance Improvements -~~~~~~~~~~~~~~~~~~~~~~~~ - -- Remove call to ``parse_block_identifier`` when initializing ``ContractCaller`` functions. (`#3257 `__) - - -Removals -~~~~~~~~ - -- ``normalize_request_parameters`` middleware was in a stale state and not being used or tested. This middleware has been removed. (`#3211 `__) -- Remove deprecated ``geth.miner`` namespace and methods. (`#3236 `__) - - -web3.py v6.14.0 (2024-01-10) ----------------------------- - -Bugfixes -~~~~~~~~ - -- Change ``fee_history`` default behavior. If ``reward_percentiles`` arg not included, pass it to the provider as an empty list instead of ``None``. (`#3185 `__) -- Use ``importlib.metadata`` for version info if python>=3.8 (`#3187 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Remove docs reference for removed ``protocol_version`` RPC method (`#3183 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Re-define how async vs sync core test suites are ran. (`#3180 `__) -- Add basic import and version tests for the ``web3`` module (`#3187 `__) - - -web3.py v6.13.0 (2023-12-20) ----------------------------- - -Features -~~~~~~~~ - -- Implement async ``eth_createAccessList`` RPC method to create an EIP-2930 access list. (`#3167 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Add flaky async Geth integration tests to CI (`#3170 `__) -- Fix wrong test reference for ``EthereumTesterProvider`` integration test suite. (`#3171 `__) -- Small fix for integration tests for ``tox`` to recognize independent patterns for each test run. (`#3173 `__) - - -web3.py v6.12.0 (2023-12-11) ----------------------------- - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Make downloadable versions of docs available in ``pdf``, ``htmlzip``, and ``epub`` formats (`#3153 `__) -- Add 2023 user survey fine art banner in the docs (`#3159 `__) -- Polish the community resources docs page (`#3162 `__) - - -Features -~~~~~~~~ - -- Implement ``createAccessList`` RPC endpoint to create an EIP-2930 access list. (`#2381 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Run flaky eth-tester tests on CI (`#3157 `__) -- Pin ``pytest-asyncio`` dependency to <0.23 (`#3160 `__) - - -web3.py v6.11.4 (2023-11-27) ----------------------------- - -Bugfixes -~~~~~~~~ - -- Fix collision of ``w3`` variable when initializing contract with function of the same name (`#3147 `__) - - -Miscellaneous Changes -~~~~~~~~~~~~~~~~~~~~~ - -- `#3148 `__ - - -web3.py v6.11.3 (2023-11-08) ----------------------------- - -Bugfixes -~~~~~~~~ - -- When coming back through the middleware onion after a request is made, we have the response ``id``. Use it to match to the cached request information and process the response accordingly. (`#3140 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Adds Discord bot template repo to Resources page (`#3143 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Additional contract ``abi`` documentation to make it a clear requirement for contract instances. (`#2539 `__) -- Fix type annotations for ``web3`` constants. (`#3138 `__) -- Add upper pin to deprecated dependency ``lru-dict`` whose new minor version release introduced a typing issue with CI lint builds. (`#3144 `__) -- Recompile test contracts with new Solidity version ``v0.8.23`` to ensure compatibility. (`#3146 `__) - - -web3.py v6.11.2 (2023-10-30) ----------------------------- - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Fix formatting in documentation for creating an account. (`#3128 `__) -- Fix broken links for Apeworx and Sepolia faucet (`#3130 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Speed up the core test suite by splitting up sync and async tests. This reduces the CI build times to ~8min from ~12min. (`#3111 `__) -- Re-compile test contracts with Solidity ``v0.8.22`` to ensure compatibility with this latest Solidity version. (`#3134 `__) -- Improvements on yielding to the event loop while searching in response caches and calling ``recv()`` on the websocket connection for ``WebSocketProviderV2``. (`#3135 `__) - - -web3.py v6.11.1 (2023-10-18) ----------------------------- - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Update ``WebsocketProviderV2`` documentation. Document a general overview of the ``RequestProcessor`` class and its internal caches. (`#3125 `__) - - -Features -~~~~~~~~ - -- Properly define an ``__await__()`` method on the ``_PersistentConnectionWeb3`` class so a persistent connection may be initialized using the ``await`` pattern. Integration tests added for initializing the persistent connection using the ``await`` pattern. (`#3125 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Updates and refactoring for the ``WebsocketProviderV2`` class and its internal supporting classes and logic. Separation of one-to-one and one-to-many request responses. Storing of one-to-many responses in a ``deque`` and one-to-one responses in a ``SimpleCache`` class. Provide an async lock around the websocket ``recv()``. (`#3125 `__) -- Add upper pin to ``hexbytes`` dependency to due incoming breaking change (`#3127 `__) - - -Miscellaneous Changes -~~~~~~~~~~~~~~~~~~~~~ - -- `#3114 `__, `#3129 `__ - - -web3.py v6.11.0 (2023-10-11) ----------------------------- - -Breaking Changes (to Beta APIs) -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Refactor the async iterator pattern for message streams from the websocket connection for ``WebsocketProviderV2`` to a proper async iterator. This allows for a more natural usage of the iterator pattern and mimics the behavior of the underlying ``websockets`` library. (`#3116 `__) - - -Bugfixes -~~~~~~~~ - -- Use hashes to compare equality of two ``AttributeDict`` classes (`#3104 `__) -- Fix issues with formatting middleware, such as ``async_geth_poa_middleware`` and subscription responses for ``WebsocketProviderV2``. (`#3116 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Change ``docker-compose`` to ``docker compose`` in the Contributing docs examples. (`#3107 `__) -- Updates to the ``WebsocketProviderV2`` documentation async iterator example for iterating over a persistent stream of messages from the websocket connection via ``async for``. (`#3116 `__) -- Update outdated node and private key management verbiage. (`#3117 `__) - - -Features -~~~~~~~~ - -- Allow passing in a ``float`` for a ``request_timeout`` for requests for the ``Beacon`` class. Update some Beacon API endpoints (sync and async). (`#3106 `__) -- Add ``allow_list`` kwarg for ``exception_retry_middleware`` to allow for a custom list of RPC endpoints. Add a sleep between retries and a customizable ``backoff_factor`` to control the sleep time between retry attempts. (`#3120 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Refactor logic for the ``input_munger()`` method on the ``Method`` class. (`#2987 `__) -- Pin mypy to v1.4.1, the last to support py37 (`#3122 `__) - - -web3.py v6.10.0 (2023-09-21) ----------------------------- - -Breaking Changes (to Beta APIs) -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Breaking change to the API for interacting with a persistent websocket connection via ``AsyncWeb3`` and ``WebsocketProviderV2``. This change internalizes the ``provider.ws`` property and opts for a ``w3.ws`` API achieved via a new ``WebsocketConnection`` class. With these changes, ``eth_subscription`` messages now return the subscription id as the ``subscription`` param and the formatted message as the ``result`` param. (`#3096 `__) - - -Bugfixes -~~~~~~~~ - -- Return `w3.eth.gas_price` when calculating time based gas price strategy for an empty chain. (`#1149 `__) -- Update `LogReceipt` and `TxReceipt` declarations. Remove `LogReceipt`'s `payload` and `topic` attributes. Refactor `LogEntry` to `LogReceipt`. (`#3043 `__) -- Fixes ``AsyncEth.max_priority_fee_per_gas``. It wasn't falling back to ``eth_feeHistory`` since the ``MethodUnavailable`` error was introduced. (`#3084 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Update ``WebsocketProviderV2`` documentation to reflect the new public websocket API via the ``WebsocketConnection`` class. (`#3096 `__) - - -Features -~~~~~~~~ - -- Improved error messaging for exceptions from malformed JSON-RPC responses. (`#3053 `__) -- Enable filtering by non-indexed arguments for contract event ``get_logs()``. (`#3078 `__) -- Add ``eth_maxPriorityFeePerGas`` to ``exception_retry_middleware`` whitelist (`#3090 `__) -- Sync responses for ``WebsocketProviderV2`` open connections with requests via matching RPC ``id`` values. (`#3096 `__) -- Properly JSON encode ``AttributeDict``, ``bytes``, and ``HexBytes`` when sending a JSON-RPC request by utilizing the in-house ``Web3JsonEncoder`` class. (`#3101 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Fix an issue with an IPC test present only on MacOSX. (`#929 `__) -- Ignore flake8 rule F401 (unused import) in all ``__init__.py`` files (`#3097 `__) - - -web3.py v6.9.0 (2023-08-23) ---------------------------- - -Bugfixes -~~~~~~~~ - -- Fix the type for ``input`` in ``TxData`` from ``HexStr`` -> ``HexBytes``. (`#3074 `__) -- Fix an issue with ``WebsocketProviderV2`` when responses to a request aren't found in the cache (``None`` values). (`#3075 `__) -- Re-expose some websockets constants found in ``web3.providers.websocket.websocket`` via ``web3.providers.websocket``. (`#3076 `__) -- Return ``NotImplemented`` constant, rather than raising ``NotImplementedError`` for ``NamedElementOnion.__add__()``, based on Python standards. (`#3080 `__) -- Only release ``async_lock`` if it's locked to begin with. (`#3083 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Add MEV blocking tutorial to Resources docs page (`#3072 `__) -- Fix documentation around current state of ``get_logs()`` usage and arguments. (`#3073 `__) -- Add an Ape hackathon kit to Resources documenation page (`#3082 `__) - - -web3.py v6.8.0 (2023-08-02) ---------------------------- - -Bugfixes -~~~~~~~~ - -- Fix the type for the optional param asking for "full transactions" when subscribing to ``newPendingTransactions`` via ``eth_subscribe`` to ``bool``. (`#3067 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Change docs to reflect AsyncHTTPProvider does accept ENS names now (`#3070 `__) - - -Features -~~~~~~~~ - -- Return structured JSON-RPC errors for missing or unimplemented eth-tester methods. (`#3061 `__) -- ENS name-to-address support for ``eth_subscribe``. (`#3066 `__) -- Asynchronous iterator support for ``AsyncWeb3`` with ``WebsocketProviderV2`` using ``async for`` syntax. (`#3067 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Minor fixes to type hinting in the core tests setup fixtures. (`#3069 `__) - - -web3.py v6.7.0 (2023-07-26) ---------------------------- - -Bugfixes -~~~~~~~~ - -- Test wheel build in separate directory and virtualenv (`#3046 `__) -- Handle case where data gets returned as ``None`` in a JSON-RPC error response (`#3054 `__) -- Fixed default windows IPC provider path to work with python 3.11 (`#3058 `__) -- Fix return type for ``rpc_gas_price_strategy`` to ``int`` but also only convert the ``strategy_based_gas_price`` to ``hex`` if it is an ``int`` in the ``gas_price_strategy_middleware``. (`#3065 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Add note to Release Notes about v5 end-of-life and v6.6.0 yank (`#3045 `__) -- Add documentation for ``WebsocketProviderV2`` (beta). (`#3048 `__) - - -Features -~~~~~~~~ - -- Add ENSIP-9 (Multichain Address Resolution) support for ``address()`` and ``setup_address()`` for ``ENS`` and ``AsyncENS`` classes. (`#3030 `__) -- Support for ``eth_subscribe`` and ``eth_unsubscribe`` methods has been added with the introduction of a new websocket provider, ``WebsocketProviderV2``. (`#3048 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Added recursive typing to ``ABIFunctionComponents`` type (`#3063 `__) -- Upgrade eth-tester requirement to v0.9.0-b.1 (`#3064 `__) - - -web3.py v6.6.1 (2023-07-12) ---------------------------- - -Bugfixes -~~~~~~~~ - -- Add ``ens/specs`` to MANIFEST.in (`#3039 `__) - - -web3.py v6.6.0 (2023-07-12) ---------------------------- - -**Note: This release was missing the required ``ens/specs`` directory, so it was yanked -from Pypi in favor of v6.6.1** - -Breaking Changes -~~~~~~~~~~~~~~~~ - -- ENS name normalization now uses ENSIP-15 by default. This is technically a breaking change introduced by ENS but, according to ENSIP-15, 99% of existing names should be unaffected. (`#3024 `__) - - -Bugfixes -~~~~~~~~ - -- Handle ``None`` in the formatting middleware (`#2546 `__) -- Fix for a possible bug in ``construct_sign_and_send_raw_middleware`` where the signed transaction was sent as bytes and expected to be converted to hex by formatting later on. It is now explicitly sent as the hex string hash within the middleware. (`#2936 `__) -- Fixes ``max_priority_fee_per_gas``. It wasn't falling back to ``eth_feeHistory`` since the ``MethodUnavailable`` error was introduced. (`#3002 `__) -- Properly initialize logger in ``AsyncHTTPProvider``. (`#3026 `__) -- Fix ``AsyncWeb3.solidity_keccak`` to match ``Web3.solidity_keccak``. (`#3034 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Replaced transaction examples with unused account addresses. (`#2011 `__) -- Removed obsolete docs for camelCase miner methods and ``deploy`` (`#2039 `__) -- Update documentation relating to ENS only being available on mainnet. ENS is available on all networks where the ENS contracts are deployed. (`#3012 `__) -- Add first steps section and tidy up learning resources (`#3013 `__) -- Replace references to ``jasoncarver.eth`` with ``ens.eth``. (`#3020 `__) -- Adds "Hackathon Helpers" section to Resources page (`#3035 `__) - - -Features -~~~~~~~~ - -- Update ENS Resolver ABI (`#1839 `__) -- ``async_http_retry_request_middleware``, an async http request retry middleware for ``AsyncHTTPProvider``. (`#3009 `__) -- Add ``eth_getStorageAt()`` support for ``EthereumTesterProvider``. (`#3011 `__) -- Add async support for ENS name-to-address resolution via ``async_name_to_address_middleware``. (`#3012 `__) -- Add async support for the sign-and-send raw transaction middleware via ``construct_async_sign_and_send_raw_middleware()``. (`#3025 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Remove some warnings from test output (`#2991 `__) -- Introduced the logic for ENSIP-15 ENS name normalization. Originally this was done via a flag in this PR but changed to the default behavior in #3024 before release. (`#3000 `__) - - -Miscellaneous Changes -~~~~~~~~~~~~~~~~~~~~~ - -- `#2997 `__, `#3011 `__, `#3023 `__, `#3037 `__ - - -Removals -~~~~~~~~ - -- Removed references to deprecated middlewares with new tests to check default middlewares (`#2972 `__) - - -web3.py v6.5.0 (2023-06-15) ---------------------------- - -Bugfixes -~~~~~~~~ - -- Properly create a fresh cache for each instance of ``simple_cache_middleware`` if no cache is provided. Fixes a bug when using this middleware with multiple instances of ``Web3``. (`#2979 `__) -- Fix potential race condition when writing cache entries in ``simple_cache_middleware`` (`#2981 `__) -- Catch ``UnicodeDecodeError`` for contract revert messages that cannot be decoded and issue a warning instead, raising a ``ContractLogicError`` with the raw ``data`` from the response. (`#2989 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Introduces resources page to documentation (`#2957 `__) -- Completed docstrings for ``ContractFunction`` and ``AsyncContractFunction`` classes (`#2960 `__) -- Added 'unsupported by any current clients' note to the ``Eth.sign_typed_data`` docs (`#2961 `__) -- Removed list of ``AsyncHTTPProvider``-supported methods, it supports them all now (`#2962 `__) -- Modernize the filtering guide, emphasizing ``get_logs`` (`#2968 `__) -- Removed references to defunct providers in ``IPCProvider`` docs (`#2971 `__) -- Update Matomo analytics script to move to cloud services (`#2978 `__) - - -Features -~~~~~~~~ - -- Add the ``sign_typed_data`` method to the ``AsyncEth`` class (`#2920 `__) -- Add support for Solidity ``Panic`` errors, available since Solidity 0.8.0. Raises ``ContractPanicError`` with appropriate messaging based on the known panic error codes. (`#2986 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- ``lint-roll`` - dropped ``isort`` ``--recursive`` flag, not needed as of their ``v5``, added black (`#2930 `__) -- Moved ``ethpm`` deprecation warning to only show when the module is explicitly enabled (`#2983 `__) -- Update make release to check remote upstream is pointing to ethereum/web3.py. (`#2988 `__) -- Removed `pluggy` from dev requirements (`#2992 `__) - - -Miscellaneous Changes -~~~~~~~~~~~~~~~~~~~~~ - -- `#2960 `__, `#2965 `__ - - -web3.py v6.4.0 (2023-05-15) ---------------------------- - -Bugfixes -~~~~~~~~ - -- fix AttributeDicts unhashable if they contain lists recursively tupleizing them (`#2908 `__) - - -Deprecations -~~~~~~~~~~~~ - -- add deprecation notice for the `ethPM` module (`#2953 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- remove reference to the ability to specify a list of providers - you can't anymore (`#2949 `__) -- add deprecation notice for the `ethPM` module (`#2953 `__) - - -Features -~~~~~~~~ - -- Update ``eth-tester`` to pull in Shanghai changes and make additional changes to fully support Shanghai with ``eth-tester``. (`#2958 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- bump sphinx and readthedocs py versions (`#2945 `__) -- re-compile test contracts with Solidity ``v0.8.20`` (`#2951 `__) -- Set towncrier settings in `pyproject.toml` to match the python project template and change newfragment type "doc" to "docs" (`#2959 `__) - - -v6.3.0 (2023-05-03) -------------------- - -Features -~~~~~~~~ - -- Add support for custom revert errors (`#2795 `__) -- Add the ``modify_transaction`` method to the ``AsyncEth`` class (`#2825 `__) -- add show_traceback flag to is_connected to allow user to see connection error reason (`#2912 `__) -- Add a ``data`` attribute on the ``ContractLogicError`` class that returns raw data returned by the node. (`#2922 `__) -- Add support via result formatters for ``reward`` type trace actions on tracing calls. (`#2929 `__) - - -Bugfixes -~~~~~~~~ - -- Typing was being ignored for the ``get_ipc_path`` and ``get_dev_ipc_path`` functions because of a missing ``None`` return. Those two methods now explicitly return ``None`` and have an ``Optional`` in their type definition. (`#2917 `__) -- fix AsyncEventFilterBuilder looking for Web3 instead of AsyncWeb3 (`#2931 `__) -- Add check for null withdrawal field on get_block response (`#2941 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Add a decision tree guide for sending transactions (`#2919 `__) -- Update references to master branch (`#2933 `__) -- Cleanup Quickstart guide and next steps (`#2935 `__) -- Cleanup Overview page links and context (`#2938 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Added ``build`` to towncrier commands in Makefile (`#2915 `__) -- Update win wheel CI builds to use ``python -m tox -r`` instead of specifying the ``tox`` executable directly. (`#2923 `__) -- update pip and tox install on CI containers (`#2927 `__) - - -v6.2.0 (2023-04-12) -------------------- - -Features -~~~~~~~~ - -- Adds async version of `eth_getUncleCount` methods (`#2822 `__) -- Add the ``sign_transaction`` method to the ``AsyncEth`` class (`#2827 `__) -- Add the ``replace_transaction`` method to the ``AsyncEth`` class (`#2847 `__) - - -Bugfixes -~~~~~~~~ - -- Use ``TraceFilterParams`` instead of ``FilterParams`` for ``trace_filter`` typing (`#2913 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Add welcome banner for Ethereum newcomers (`#2905 `__) -- Added breaking changes from pr2448 to v6 migration guide (`#2907 `__) - - -v6.1.0 (2023-04-05) -------------------- - -Features -~~~~~~~~ - -- Add tracing functionality back in via the ``tracing`` module, add formatters for human-readable input and output, and attach this module to ``Web3`` on init / make it a default module. (`#2851 `__) -- Add result formatters for ``withdrawals_root`` and ``withdrawals`` as part of ``Shanghai`` hard fork support. (`#2868 `__) -- add eth_chainId to exception_retry_middleware whitelist (`#2892 `__) - - -Bugfixes -~~~~~~~~ - -- Mark `test_async_eth_sign` with `@pytest.mark.asyncio` (`#2858 `__) -- fix readthedocs broken version selector (`#2883 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- remove camelCased method deprecation notices from web3.eth docs (`#2882 `__) -- Add doc blurb about multiple HTTPProviders with the same URL (`#2889 `__) -- fix styling and external link formatting (`#2897 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Bump pytest from 6.2.5 to 7+ because of CI ``DeprecationWarning`` (`#2863 `__) -- Require eth-abi v4 stable (`#2886 `__) -- remove unused docs dependencies and bump version of remaining (`#2890 `__) -- Update go-ethereum integration test fixture to use the latest version of geth - ``v1.11.5``. (`#2896 `__) -- Update ``geth_steps`` in CircleCI builds to pip install the proper version of ``py-geth``. (`#2898 `__) -- Update CircleCI windows orb path since it now uses python 3.11. (`#2899 `__) -- Bump go version used in CI jobs that install and run go-ethereum and parameterize the version in circleci config file for ease of configuration. (`#2900 `__) - - -Miscellaneous changes -~~~~~~~~~~~~~~~~~~~~~ - -- `#2887 `__ - - -v6.0.0 (2023-03-14) -------------------- - -Bugfixes -~~~~~~~~ - -- fix dict_to_namedtuple unable to handle empty dict as input (`#2867 - `__) - - -v6.0.0-beta.11 (2023-02-24) ---------------------------- - -Features -~~~~~~~~ - -- Add the ``sign`` method to the ``AsyncEth`` class (`#2833 - `__) - - -Bugfixes -~~~~~~~~ - -- More accurately define the ``eth_call`` return type as ``HexBytes`` since the - response is converted to ``HexBytes`` in the pythonic formatters and there - are differences between ``HexBytes`` and ``bytes`` types. (`#2842 - `__) -- Set default block_identifier in ContractFunction.call() to None (`#2846 - `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Remove unused module lines to instantiate the AsyncHTTPProvider (`#2789 - `__) -- Typos fix in docs (`#2817 - `__) -- Add/cleanup docs for the ``AsyncHTTPProvider`` in light of the new - ``AsyncWeb3`` class (`#2821 - `__) -- Remove user survey banner following close of survey (`#2831 - `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Do not invoke ``setup.py`` directly; use ``python -m build`` where - appropriate. (`#2714 `__) -- clean up ignored unused imports (`#2838 - `__) -- Recompile test contracts with the new Solidity version ``0.8.19``. (`#2840 - `__) -- Update ``py-geth`` version and re-generate integration test fixture with geth - ``v1.11.2``. (`#2841 `__) - - -Breaking changes -~~~~~~~~~~~~~~~~ - -- Use ``AsyncWeb3`` class and preserve typing for the async api calls. (`#2819 - `__) -- Fix typing for ``CallOverrideParams`` and add proper request formatters for - call state overrides. (`#2843 - `__) -- Remove python warning and doc notes related to unstable async providers. - (`#2845 `__) - - -v6.0.0-beta.10 (2023-02-15) ---------------------------- - -Features -~~~~~~~~ - -- add decode_tuples option to contract instantiation (`#2799 - `__) - - -Bugfixes -~~~~~~~~ - -- Fix ``ethpm`` import issues after making ``ipfshttpclient`` optional. (`#2775 - `__) -- Fix for recently-broken ``eth-tester`` exception message parsing for some - exception cases. (`#2783 - `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Added a v6 Migraion Guide (`#2778 - `__) -- Rebrand the library to lowercase "web3.py" (`#2804 - `__) -- remove references to Rinkeby or replace with Goerli (`#2815 - `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Organize the ``eth`` module into separate files for better readability. - (`#2753 `__) -- Rename the newly-split ``eth`` module files to match convention. (`#2772 - `__) -- Re-compile all test contracts with latest Solidity version. Refactor test - fixtures. Adds a script that compiles all test contracts to the same - directory with selected Solidity version. (`#2797 - `__) -- Updates to ``isort`` and ``black`` required some formatting changes and isort - config refactoring. (`#2802 - `__) -- Compile test contracts using newly-released Solidity version ``0.8.18``. - (`#2803 `__) - - -Breaking changes -~~~~~~~~~~~~~~~~ - -- All exceptions inherit from a custom class. EthPM exceptions inherit from - EthPMException, ENS exceptions inherit from ENSException, and all other - web3.py exceptions inherit from Web3Exception (`#1478 - `__) -- Reorganized contract to contract.py, async_contract.py, base_contract.py and - utils.py. In this change there was a small breaking change where the - constructor of BaseContractCaller contract_function_class was defaulting to a - ContractFunction now there is no default. This was done to separate the base - class from the implementation. (`#2567 - `__) -- When calling a contract, use ``w3.eth.default_block`` if no block_identifier - is specified instead of ``latest``. (`#2777 - `__) -- Strict bytes type checking is now default for ``web3.py``. This change also - adds a boolean flag on the ``Web3`` class for turning this feature on and - off, as well as a flag on the ``ENS`` class for control over a standalone - ``ENS`` instance. (`#2788 - `__) -- When a method is not supported by a node provider, raise a MethodUnavailable - error instead of the generic ValueError. (`#2796 - `__) -- ``dict`` to ``AttributeDict`` conversion is no longer a default result - formatter. This conversion is now done via a default middleware that may be - removed. (`#2805 `__) -- Removed deprecated ``manager.request_async`` and associated methods. (`#2810 - `__) -- removed Rinkeby from list of allowed chains in EthPM (`#2815 - `__) - - -v6.0.0-beta.9 (2023-01-03) --------------------------- - -Features -~~~~~~~~ - -- Add async ``w3.eth.get_block_transaction_count`` (`#2687 - `__) -- Support Python 3.11 (`#2699 - `__) -- Load the ``AsyncHTTPProvider`` with default async middleware and default - async modules, just as the ``HTTPProvider``. (`#2736 - `__) -- Add support for Nethermind/Gnosis revert reason formatting (`#2739 - `__) -- Added async functionality to filter (`#2744 - `__) -- Get contract address from ``CREATE`` and ``CREATE2`` opcodes (`#2762 - `__) - - -Bugfixes -~~~~~~~~ - -- Fixing abi encoding for multidimensional arrays. (`#2764 - `__) - - -Performance improvements -~~~~~~~~~~~~~~~~~~~~~~~~ - -- Some minor performance improvements to the ``SimpleCache`` class and simple - cache middlewares (sync and async). (`#2719 - `__) -- Remove unnecessary ``await`` for ``generate_gas_price()`` method as it does - not need to be awaited. Move this method to ``BaseEth`` to be used directly - by both ``Eth`` and ``AsyncEth`` modules. (`#2735 - `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Add user survey to docs banner (`#2720 - `__) -- Document improvements for private key info and account funding. (`#2722 - `__) -- Include eth-tester install note in quickstart (`#2755 - `__) - - -Deprecations and Removals -~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Removal of Infura auto provider support. (`#2706 - `__) -- Removal of ``version`` module. (`#2729 - `__) -- Remove already-deprecated ``start_rpc`` and ``stop_rpc`` from the - ``w3.geth.admin`` module. (`#2731 - `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Use regex pattern for ``black`` command for ``tox`` / ``make lint`` linting - commands. (`#2727 `__) -- Use regex pattern for ``mypy`` command for ``tox`` / ``make lint`` linting - commands. (`#2734 `__) -- Remove internal method ``apply_formatter_to_array`` and use the method with - the same name from the ``eth-utils`` library. (`#2737 - `__) - - -Miscellaneous changes -~~~~~~~~~~~~~~~~~~~~~ - -- `#2751 `__ - - -Breaking changes -~~~~~~~~~~~~~~~~ - -- Snakecase the processReceipt, processLog, createFilter, and getLogs methods - (`#2709 `__) -- Remove Parity module and references. (`#2718 - `__) -- Make the ``ipfshttpclient`` library opt-in via a web3 install extra. This - only affects the ``ethpm`` ``ipfs`` backends, which rely on the library. - (`#2730 `__) - - -v6.0.0-beta.8 (2022-11-14) --------------------------- - -Features -~~~~~~~~ - -- Async support for caching certain methods via - ``async_simple_cache_middleware`` as well as constructing custom async - caching middleware via ``async_construct_simple_cache_middleware``. - ``SimpleCache`` class was also added to the public ``utils`` module. (`#2579 - `__) -- Remove upper pins on dependencies (`#2648 - `__) -- Async support for beacon api. (`#2689 - `__) -- If the loop for a cached async session is closed, or the session itself was - closed, create a new session at that cache key and properly close and evict - the stale session. (`#2713 - `__) - - -Bugfixes -~~~~~~~~ - -- bump `sphinx_rtd_theme` version to fix missing unordered list bullets (`#2688 - `__) -- Fix bug to generate unique cache keys when multi-threading & with unique - event loops for async. (`#2690 - `__) -- Properly release ``async_lock`` for session requests if an exception is - raised during a task. (`#2695 - `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- move definition of RTD install requirements file from their dashboard into - `.readthedocs.yml`, and remove unused `sphinx-better-theme` from requirements - (`#2688 `__) - - -Miscellaneous changes -~~~~~~~~~~~~~~~~~~~~~ - -- `#2690 `__, `#2694 - `__ - - -Breaking changes -~~~~~~~~~~~~~~~~ - -- Remove support for dictionary-based caches, for simple-cache-middleware, in - favor of the internal ``SimpleCache`` class. (`#2579 - `__) -- Snakecase the clientVersion method (`#2686 - `__) -- change instances of `createFilter` to `create_filter` (`#2692 - `__) -- Remove ``SolidityError`` in favor of ``ContractLogicError`` (`#2697 - `__) -- Snakecase the solidityKeccak method (`#2702 - `__) -- Snakecase the fromWeb3 method (`#2703 - `__) -- Snakecase the toBytes, toHex, toInt, toJSON, and toText methods (`#2707 - `__) -- Snakecase the toAddress, isChecksumAddress, and toChecksumAddress methods - (`#2708 `__) - - -v6.0.0-beta.7 (2022-10-19) --------------------------- - -Bugfixes -~~~~~~~~ - -- Protobuf dependency had a DoS-able bug. It was fixed in v4.21.6. See: - https://nvd.nist.gov/vuln/detail/CVE-2022-1941 (`#2666 - `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Added Chainstack link to quickstart docs. (`#2677 - `__) - - -Deprecations and Removals -~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Remove Ropsten auto provider and the relevant references to Ropsten across - the repo (`#2672 `__) - - -Internal Changes - for web3.py Contributors -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Clean up remaining uses of deprecated ``eth_abi`` methods. (`#2668 - `__) - - -Miscellaneous changes -~~~~~~~~~~~~~~~~~~~~~ - -- `#2671 `__, `#2682 - `__ - - -v6.0.0-beta.6 (2022-09-26) --------------------------- - -Bugfixes -~~~~~~~~ - -- Protobuf dependency breaks at version ``3.20.2`` and above; pin to ``3.20.1`` - for now. (`#2657 `__) - - -Features -~~~~~~~~ - -- Add new predefined block identifiers ``safe`` and ``finalized``. (`#2652 - `__) - - -v6.0.0-beta.5 (2022-09-19) --------------------------- - -Breaking Changes -~~~~~~~~~~~~~~~~ - -- Removed IBAN since it was an unused feature (`#2537 - `__) -- Update eth-tester dependency to v0.7.0-beta.1; Update eth-account version to - >=0.7.0,<0.8.0 (`#2623 `__) -- Remove ``WEB3_INFURA_API_KEY`` environment variable in favor of - ``WEB3_INFURA_PROJECT_ID``. Change ``InfuraKeyNotFound`` exception to - ``InfuraProjectIdNotFound`` (`#2634 - `__) -- Remove Kovan auto provider (`#2635 - `__) -- Snakecase the `isConnected` method (`#2643 - `__) -- Snakecase the ``toWei`` and ``fromWei`` methods (`#2647 - `__) - - -Bugfixes -~~~~~~~~ - -- Fix ``eth-tester`` key remapping for ``logsBloom`` and ``receiptsRoot`` - (`#1630 `__) -- Improve upon issues with session caching - better support for multithreading - and make sure session eviction from cache does not happen prematurely. - (`#2409 `__) -- Allow classes to inherit from the ``Web3`` class by attaching modules - appropriately. (`#2592 `__) -- fixed bug in how async_eth_tester_middleware fills default fields (`#2600 - `__) -- Allow hex for ``value`` field when validating via ``validate_payable()`` - contracts method (`#2602 - `__) -- Update Beacon API to v2.3.0 (`#2616 - `__) -- Move ``flaky`` option to top-level conftest.py (`#2642 - `__) - - -Documentation Updates -~~~~~~~~~~~~~~~~~~~~~ - -- Update Proof of Authority middleware (`geth_poa_middleware`) documentation - for better clarity. (`#2538 - `__) -- Add some missing supported async middlewares to docs. (`#2574 - `__) -- Introduce AsyncENS and availability on w3 instance in ENS guide. (`#2585 - `__) -- Fix typo in eth.call docs (`#2613 - `__) -- remove section for deleted `account.recoverHash` method (`#2615 - `__) -- examples docs gave incorrect return type for `eth.get_transaction`, fixed - (`#2617 `__) -- minor typo fix in contracts overview (`#2628 - `__) -- fix bug in `Deploying new contracts` example (`#2646 - `__) - - -Features -~~~~~~~~ - -- Support for ``Account`` class access in ``AsyncEth`` via - ``async_w3.eth.account`` (`#2580 - `__) -- Expose public abi utility methods: ``get_abi_output_names()`` and - ``get_abi_input_names()`` (`#2596 - `__) -- update all references to deprecated `eth_abi.encode_abi` to `eth_abi.encode` - (`#2621 `__) -- update all references to deprecated `eth_abi.decode_abi` to `eth_abi.decode` - (`#2636 `__) -- Add Sepolia auto provider (`#2639 - `__) - - -Misc -~~~~ - -- `#2603 `__, `#2622 - `__, `#2630 - `__, `#2638 - `__ - - -v6.0.0-beta.4 (2022-07-13) --------------------------- - -Breaking Changes -~~~~~~~~~~~~~~~~ - -- sha3 and soliditySha3 were previously deprecated and now removed (`#2479 - `__) -- Remove deprecated methods from Geth, Parity and Net modules (`#2480 - `__) -- Provide better messaging to wrong arguments for contract functions, - especially for ``tuple`` argument types. (`#2556 - `__) - - -Bugfixes -~~~~~~~~ - -- Properly format ``block_number`` for ``eth_getTransactionCount`` when using - ``EthereumTesterProvider`` (`#1801 - `__) -- removed `Optional` type hints for `passphrase` arguments that aren't actually - optional (`#2511 `__) -- Fix `is_dynamic_fee_transaction` and `TRANSACTION_DEFAULTS` when - `gas_price_strategy` returns zero (`#2562 - `__) - - -Documentation Updates -~~~~~~~~~~~~~~~~~~~~~ - -- Remove deprecated methods from Geth, Parity, and Net modules (`#2480 - `__) -- replace double- with single-quotes to make f-string valid (`#2504 - `__) -- added geth personal_sign and personal_ec_recover documentation (`#2511 - `__) - - -Features -~~~~~~~~ - -- Add transaction result formatters for `type` and `chainId` to convert values - to ``int`` if ``hexadecimal`` if the field is not null (`#2491 - `__) -- Add a global flag on the provider for enabling / disabling CCIP Read for - calls: ``global_ccip_read_enabled`` (defaults to ``True``). (`#2499 - `__) -- Deprecate Geth Admin StartRPC and StopRPC for StartHTTP and StopHTTP (`#2507 - `__) -- Added Async support for ENS (`#2547 - `__) -- support multi-dimensional arrays for ABI tuples types (`#2555 - `__) - - -Misc -~~~~ - -- `#2345 `__, `#2483 - `__, `#2505 - `__, `#2513 - `__, `#2514 - `__, `#2515 - `__, `#2516 - `__, `#2518 - `__, `#2520 - `__, `#2521 - `__, `#2522 - `__, `#2523 - `__, `#2524 - `__, `#2525 - `__, `#2527 - `__, `#2530 - `__, `#2531 - `__, `#2534 - `__, `#2542 - `__, `#2544 - `__, `#2550 - `__, `#2551 - `__, `#2559 - `__ - - -v6.0.0-beta.3 (2022-06-01) --------------------------- - -Breaking Changes -~~~~~~~~~~~~~~~~ - -- Removed deprecated methods from eth and geth (`#1416 - `__) - - -Bugfixes -~~~~~~~~ - -- Fix bug in _is_latest_block_number_request in cache middleware (`#2185 - `__) -- Increase cache size to allow for 20 entries. (`#2477 - `__) -- format receipt.type to int and log.data to HexBytes (`#2482 - `__) -- Only thread lock for methods attempting to access the cache for caching - middleware. (`#2496 `__) - - -Documentation Updates -~~~~~~~~~~~~~~~~~~~~~ - -- Fix typo in simple_cache_middleware example (`#2449 - `__) -- Fix dict type hints in EventScanner example (`#2469 - `__) -- Add clarification around ValueError and Local Signing middleware (`#2474 - `__) - - -Features -~~~~~~~~ - -- Add async version of contract functionality (`#2270 - `__) -- ENSIP-10 / wildcard resolution support for ENS module (`#2411 - `__) -- CCIP Read support and finalize implementation of and add tests for ENS - offchain resolution support (`#2457 - `__) - - -Misc -~~~~ - -- `#2454 `__, `#2450 - `__, `#2462 - `__, `#2471 - `__, `#2478 - `__ - - -v6.0.0-beta.2 (2022-04-27) --------------------------- - -Breaking Changes -~~~~~~~~~~~~~~~~ - -- Audit ``.rst`` and ``.py`` files and convert all Web3 instance variable names - to ``w3`` to avoid confusion with the ``web3`` module. (`#1183 - `__) -- Update dependency requirements: - eth-utils - eth-abi - eth-tester - - eth-account - eth-typing (`#2342 - `__) -- Add ``attach_methods()`` to ``Module`` class to facilitate attaching methods - to modules. (`#2383 `__) -- Move IOError -> OSError (`#2434 - `__) - - -Documentation Updates -~~~~~~~~~~~~~~~~~~~~~ - -- Clarify info about Infura filters over HTTP (`#2322 - `__) -- Document reading private keys from environment variables (`#2380 - `__) -- Add example for the ``construct_sign_and_send_raw_middleware`` when connected - to a hosted node (`#2410 - `__) -- Doc fix: Pending transaction filter returns a ``TransactionFilter`` not a - ``BlockFilter`` (`#2444 `__) - - -Features -~~~~~~~~ - -- Add 'get_text' method to look up ENS text record values (`#2286 - `__) -- For ``ENS.name()``, validate that the forward resolution returns the same - address as provided by the user as per the ENS documentation recommendation - for Reverse Resolution. (`#2420 - `__) -- Add sync chain_id to ``simple_middleware_cache`` (`#2425 - `__) - - -Misc -~~~~ - -- `#2369 `__, `#2372 - `__, `#2418 - `__ - - -v6.0.0-beta.1 (2022-02-28) --------------------------- - -Breaking Changes -~~~~~~~~~~~~~~~~ - -- Update ``websockets`` dependency to v10+ (`#2324 - `__) -- Remove support for the unsupported Python 3.6 Also removes outdated Parity - tests (`#2343 `__) -- Update Sphinx requirement to ``>=4.2.0,<5`` (`#2362 - `__) - - -Bugfixes -~~~~~~~~ - -- Fix types for ``gas``, and ``gasLimit``: ``Wei -> int``. Also fix types for - ``effectiveGasPrice``: (``int -> Wei``) (`#2330 - `__) - - -Features -~~~~~~~~ - -- Added session caching to the AsyncHTTPProvider (`#2016 - `__) -- Add support for Python 3.10 (`#2175 - `__) -- Added 'Breaking Changes' and 'Deprecations' categories to our release notes - (`#2340 `__) -- Add async `eth.get_storage_at` method (`#2350 - `__) -- Upgrade ``jsonschema`` version to ``>=4.0.0<5`` (`#2361 - `__) - - -Misc -~~~~ - -- `#2353 `__, `#2365 - `__ - - -v5.28.0 (2022-02-09) --------------------- - -Features -~~~~~~~~ - -- Added Async functions for Geth Personal and Admin modules (`#1413 - `__) -- async support for formatting, validation, and geth poa middlewares (`#2098 - `__) -- Calculate a default ``maxPriorityFeePerGas`` using ``eth_feeHistory`` when - ``eth_maxPriorityFeePerGas`` is not available, since the latter is not a part - of the Ethereum JSON-RPC specs and only supported by certain clients. (`#2259 - `__) -- Allow NamedTuples in ABI inputs (`#2312 - `__) -- Add async `eth.syncing` method (`#2331 - `__) - - -Bugfixes -~~~~~~~~ - -- remove `ens.utils.dict_copy` decorator (`#1423 - `__) -- The exception retry middleware whitelist was missing a comma between - ``txpool`` and ``testing`` (`#2327 - `__) -- Properly initialize external modules that do not inherit from the - ``web3.module.Module`` class (`#2328 - `__) - - -v5.27.0 (2022-01-31) --------------------- - -Features -~~~~~~~~ - -- Added Async functions for Geth TxPool (`#1413 - `__) -- external modules are no longer required to inherit from the - ``web3.module.Module`` class (`#2304 - `__) -- Add async `eth.get_logs` method (`#2310 - `__) -- add Async access to `default_account` and `default_block` (`#2315 - `__) -- Update eth-tester and eth-account dependencies to pull in bugfix from - eth-keys (`#2320 `__) - - -Bugfixes -~~~~~~~~ - -- Fixed issues with parsing tuples and nested tuples in event logs (`#2211 - `__) -- In ENS the contract function to resolve an ENS address was being called twice - in error. One of those calls was removed. (`#2318 - `__) -- ``to_hexbytes`` block formatters no longer throw when value is ``None`` - (`#2321 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- fix typo in `eth.account` docs (`#2111 - `__) -- explicitly add `output_values` to contracts example (`#2293 - `__) -- update imports for `AsyncHTTPProvider` sample code (`#2302 - `__) -- fixed broken link to filter schema (`#2303 - `__) -- add github link to the main docs landing page (`#2313 - `__) -- fix typos and update referenced `geth` version (`#2326 - `__) - - -Misc -~~~~ - -- `#2217 `__ - - -v5.26.0 (2022-01-06) --------------------- - -Features -~~~~~~~~ - -- Add ``middlewares`` property to ``NamedElementOnion`` / - ``web3.middleware_onion``. Returns current middlewares in proper order for - importing into a new ``Web3`` instance (`#2239 - `__) -- Add async ``eth.hashrate`` method (`#2243 - `__) -- Add async ``eth.chain_id`` method (`#2251 - `__) -- Add async ``eth.mining`` method (`#2252 - `__) -- Add async ``eth.get_transaction_receipt`` and - ``eth.wait_for_transaction_receipt`` methods (`#2265 - `__) -- Add async `eth.accounts` method (`#2284 - `__) -- Support for attaching external modules to the ``Web3`` instance when - instantiating the ``Web3`` instance, via the ``external_modules`` argument, - or via the new ``attach_modules()`` method (`#2288 - `__) - - -Bugfixes -~~~~~~~~ - -- Fixed doctest that wasn't running in ``docs/contracts.rst`` (`#2213 - `__) -- Key mapping fix to eth-tester middleware for access list storage keys (`#2224 - `__) -- Inherit ``Web3`` instance middlewares when instantiating ``ENS`` with - ``ENS.fromWeb3()`` method (`#2239 - `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Fix example docs to show a TransactionNotFound error, instead of None (`#2199 - `__) -- fix typo in ethpm.rst (`#2277 - `__) -- Clarify provider usage in Quickstart docs (`#2287 - `__) -- Address common BSC usage question (`#2289 - `__) - - -Misc -~~~~ - -- `#1729 `__, `#2233 - `__, `#2242 - `__, `#2260 - `__, `#2261 - `__, `#2283 - `__ - - -v5.25.0 (2021-11-19) --------------------- - -Features -~~~~~~~~ - -- Support for ``w3.eth.get_raw_transaction_by_block``, and async support for - ``w3.eth.get_raw_transaction_by_block`` (`#2209 - `__) - - -Bugfixes -~~~~~~~~ - -- BadResponseFormat error thrown instead of KeyError when a response gets sent - back without a ``result`` key. (`#2188 - `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Correct link to Websocket library documentation (`#2173 - `__) -- Doc update to make it clearer that enable_unstable_package_management() - method is on the web3 instance (`#2208 - `__) - - -Misc -~~~~ - -- `#2102 `__, `#2179 - `__, `#2191 - `__, `#2201 - `__, `#2205 - `__, `#2212 - `__ - - -v5.24.0 (2021-09-27) --------------------- - -Features -~~~~~~~~ - -- Add async ``eth.send_raw_transaction`` method (`#2135 - `__) -- Updated eth-account version to v0.5.6 - adds support for signing typed - transactions without needing to explicitly set the transaction type and now - accepts correct JSON-RPC structure for accessList for typed transactions - (`#2157 `__) - - -Bugfixes -~~~~~~~~ - -- Encode block_count as hex before making eth_feeHistory RPC call (`#2117 - `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Fix typo in AsyncHTTPProvider docs (`#2131 - `__) -- Update AsyncHTTPProvider doc Supported Methods to include - ``web3.eth.send_raw_transaction()``. (`#2135 - `__) -- Improve messaging around usage and implementation questions, directing users - to the appropriate channel (`#2138 - `__) -- Clarify some contract ``ValueError`` error messages. (`#2146 - `__) -- Updated docs for w3.eth.account.sign_transaction to reflect that transaction - type is no longer needed to successfully sign typed transactions and to - illustrate how to structure an optional accessList parameter in a typed - transaction (`#2157 `__) - - -Misc -~~~~ - -- `#2105 `__ - - -v5.23.1 (2021-08-27) --------------------- - -Features -~~~~~~~~ - -- Add constants for the zero address, zero hash, max int, and wei per ether. (`#2109 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Renamed "1559 transaction" to "dynamic fee transaction" where appropriate to keep consistency among the general code base for 1559 transaction (type=2) naming (`#2118 `__) -- Update AsyncHTTPProvider doc example to include modules and middlewares keyword arguments (`#2123 `__) - - -Misc -~~~~ - -- `#2110 `__, `#2118 `__, `#2122 `__ - - -v5.23.0 (2021-08-12) --------------------- - -Features -~~~~~~~~ - -- Add support for eth_feeHistory RPC method (`#2038 `__) -- Add support for eth_maxPriorityFeePerGas RPC method (`#2100 `__) - - -Bugfixes -~~~~~~~~ - -- Hot fix for string interpolation issue with contract function call decoding exception to facilitate extracting a meaningful message from the eth_call response (`#2096 `__) -- Bypass adding a ``gasPrice`` via the gas price strategy, if one is set, when EIP-1559 transaction params are used for ``send_transaction`` (`#2099 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Update feeHistory docs (`#2104 `__) - - -v5.22.0 (2021-08-02) --------------------- - -Features -~~~~~~~~ - -- Add support for eth_getRawTransactionByHash RPC method (`#2039 `__) -- Add AsyncNet module (`#2044 `__) -- Add async ``eth.get_balance``, ``eth.get_code``, ``eth.get_transaction_count`` methods. (`#2056 `__) -- eth_signTransaction support for eip-1559 params 'maxFeePerGas' and 'maxPriorityFeePerGas' (`#2082 `__) -- Add support for async ``w3.eth.call``. (`#2083 `__) - - -Bugfixes -~~~~~~~~ - -- If a transaction hash was passed as a string rather than a HexByte to ``w3.eth.wait_for_transaction_receipt``, and the time was exhausted before the transaction is in the chain, the error being raised was a TypeError instead of the correct TimeExhausted error. This is because the ``to_hex`` method in the TimeExhausted error message expects a primitive as the first argument, and a string doesn't qualify as a primitive. Fixed by converting the transaction_hash to HexBytes instead. (`#2068 `__) -- Hot fix for a string interpolation issue in message when BadFunctionCallOutput is raised for call_contract_function() (`#2069 `__) -- ``fill_transaction_defaults()`` no longer sets a default ``gasPrice`` if 1559 fees are present in the transaction parameters. This fixes sign-and-send middleware issues with 1559 fees. (`#2092 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Clarify that ``send_transaction``, ``modify_transaction``, and ``replace_transaction`` return HexByte objects instead of strings. (`#2058 `__) -- Added troubleshooting section for Microsoft Visual C++ error on Windows machines (`#2077 `__) -- Updated the sign-and-send middleware docs to include EIP-1559 as well as legacy transaction examples (`#2092 `__) - - -Misc -~~~~ - -- `#2073 `__, `#2080 `__, `#2085 `__ - - -v5.21.0 (2021-07-12) --------------------- - -Features -~~~~~~~~ - -- Adds support for EIP 1559 transaction keys: `maxFeePerGas` and `maxPriorityFeePerGas` (`#2060 `__) - - -Bugfixes -~~~~~~~~ - -- Bugfix where an error response got passed to a function expecting a block identifier. - - Split out null result formatters from the error formatters and added some tests. (`#2022 `__) -- Fix broken tests and use the new 1559 params for most of our test transactions. (`#2053 `__) -- Set a default maxFeePerGas value consistent with Geth (`#2055 `__) -- Fix bug in geth PoA middleware where a ``None`` response should throw a ``BlockNotFound`` error, but was instead throwing an ``AttributeError`` (`#2064 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Added general documentation on unit and integration testing and how to contribute to our test suite. (`#2053 `__) - - -v5.20.1 (2021-07-01) --------------------- - -Bugfixes -~~~~~~~~ - -- Have the geth dev IPC auto connection check for the ``WEB3_PROVIDER_URI`` environment variable. (`#2023 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Remove reference to allowing multiple providers in docs (`#2018 `__) -- Update "Contract Deployment Example" docs to use ``py-solc-x`` as ``solc`` is no longer maintained. (`#2020 `__) -- Detail using unreleased Geth builds in CI (`#2037 `__) -- Clarify that a missing trie node error could occur when using ``block_identifier`` with ``.call()`` - on a node that isn't running in archive mode (`#2048 `__) - - -Misc -~~~~ - -- `#1938 `__, `#2015 `__, `#2021 `__, `#2025 `__, `#2028 `__, `#2029 `__, `#2035 `__ - - -v5.20.0 (2021-06-09) --------------------- - -Features -~~~~~~~~ - -- Add new AsyncHTTPProvider. No middleware or session caching support yet. - - Also adds async ``w3.eth.gas_price``, and async ``w3.isConnected()`` methods. (`#1978 `__) -- Add ability for AsyncHTTPProvider to accept middleware - - Also adds async gas_price_strategy middleware, and moves gas estimate to middleware. - - AsyncEthereumTesterProvider now inherits from AsyncBase (`#1999 `__) -- Support state_override in contract function call. (`#2005 `__) - - -Bugfixes -~~~~~~~~ - -- Test ethpm caching + bump Sphinx version. (`#1977 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Clarify solidityKeccak documentation. (`#1971 `__) -- Improve contributor documentation context and ordering. (`#2008 `__) -- Add docs for unstable AsyncHTTPProvider (`#2017 `__) - - -Misc -~~~~ - -- `#1979 `__, `#1980 `__, `#1993 `__, `#2002 `__ - - -v5.19.0 (2021-04-28) --------------------- - -Features -~~~~~~~~ - -- Handle optional ``eth_call`` state override param. (`#1921 `__) -- Add list_storage_keys deprecate listStorageKeys (`#1944 `__) -- Add net_peers deprecate netPeers (`#1946 `__) -- Add trace_replay_transaction deprecate traceReplayTransaction (`#1949 `__) -- Add add_reserved_peer deprecate addReservedPeer (`#1951 `__) -- Add ``parity.set_mode``, deprecate ``parity.setMode`` (`#1954 `__) -- Add ``parity.trace_raw_transaction``, deprecate ``parity.traceRawTransaction`` (`#1955 `__) -- Add ``parity.trace_call``, deprecate ``parity.traceCall`` (`#1957 `__) -- Add trace_filter deprecate traceFilter (`#1960 `__) -- Add trace_block, deprecate traceBlock (`#1961 `__) -- Add trace_replay_block_transactions, deprecate traceReplayBlockTransactions (`#1962 `__) -- Add ``parity.trace_transaction``, deprecate ``parity.traceTransaction`` (`#1963 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Document ``eth_call`` state overrides. (`#1965 `__) - - -Misc -~~~~ - -- `#1774 `__, `#1805 `__, `#1945 `__, `#1964 `__ - - -v5.18.0 (2021-04-08) --------------------- - -Features -~~~~~~~~ - -- Add ``w3.eth.modify_transaction`` deprecate ``w3.eth.modifyTransaction`` (`#1886 `__) -- Add ``w3.eth.get_transaction_receipt``, deprecate ``w3.eth.getTransactionReceipt`` (`#1893 `__) -- Add ``w3.eth.wait_for_transaction_receipt`` deprecate ``w3.eth.waitForTransactionReceipt`` (`#1896 `__) -- Add ``w3.eth.set_contract_factory`` deprecate ``w3.eth.setContractFactory`` (`#1900 `__) -- Add ``w3.eth.generate_gas_price`` deprecate ``w3.eth.generateGasPrice`` (`#1905 `__) -- Add ``w3.eth.set_gas_price_strategy`` deprecate ``w3.eth.setGasPriceStrategy`` (`#1906 `__) -- Add ``w3.eth.estimate_gas`` deprecate ``w3.eth.estimateGas`` (`#1913 `__) -- Add ``w3.eth.sign_typed_data`` deprecate ``w3.eth.signTypedData`` (`#1915 `__) -- Add ``w3.eth.get_filter_changes`` deprecate ``w3.eth.getFilterChanges`` (`#1916 `__) -- Add ``eth.get_filter_logs``, deprecate ``eth.getFilterLogs`` (`#1919 `__) -- Add ``eth.uninstall_filter``, deprecate ``eth.uninstallFilter`` (`#1920 `__) -- Add ``w3.eth.get_logs`` deprecate ``w3.eth.getLogs`` (`#1925 `__) -- Add ``w3.eth.submit_hashrate`` deprecate ``w3.eth.submitHashrate`` (`#1926 `__) -- Add ``w3.eth.submit_work`` deprecate ``w3.eth.submitWork`` (`#1927 `__) -- Add ``w3.eth.get_work``, deprecate ``w3.eth.getWork`` (`#1934 `__) -- Adds public get_block_number method. (`#1937 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Add ABI type examples to docs (`#1890 `__) -- Promote the new Ethereum Python Discord server on the README. (`#1898 `__) -- Escape reserved characters in install script of Contributing docs. (`#1909 `__) -- Add detailed event filtering examples. (`#1910 `__) -- Add docs example for tuning log levels. (`#1928 `__) -- Add some performance tips in troubleshooting docs. (`#1929 `__) -- Add existing contract interaction to docs examples. (`#1933 `__) -- Replace Gitter links with the Python Discord server. (`#1936 `__) - - -Misc -~~~~ - -- `#1887 `__, `#1907 `__, `#1917 `__, `#1930 `__, `#1935 `__ - - -v5.17.0 (2021-02-24) --------------------- - -Features -~~~~~~~~ - -- Added ``get_transaction_count``, and deprecated ``getTransactionCount`` (`#1844 `__) -- Add ``w3.eth.send_transaction``, deprecate ``w3.eth.sendTransaction`` (`#1878 `__) -- Add ``web3.eth.sign_transaction``, deprecate ``web3.eth.signTransaction`` (`#1879 `__) -- Add ``w3.eth.send_raw_transaction``, deprecate ``w3.eth.sendRawTransaction`` (`#1880 `__) -- Add ``w3.eth.replace_transaction`` deprecate ``w3.eth.replaceTransaction`` (`#1882 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Fix return type of ``send_transaction`` in docs. (`#686 `__) - - -v5.16.0 (2021-02-04) --------------------- - -Features -~~~~~~~~ - -- Added ``get_block_transaction_count``, and deprecated ``getBlockTransactionCount`` (`#1841 `__) -- Move ``defaultAccount`` to ``default_account``. Deprecate ``defaultAccount``. (`#1848 `__) -- Add ``eth.default_block``, deprecate ``eth.defaultBlock``. - Also adds ``parity.default_block``, and deprecates ``parity.defaultBlock``. (`#1849 `__) -- Add ``eth.gas_price``, deprecate ``eth.gasPrice`` (`#1850 `__) -- Added ``eth.block_number`` property. Deprecated ``eth.blockNumber`` (`#1851 `__) -- Add ``eth.chain_id``, deprecate ``eth.chainId`` (`#1852 `__) -- Add ``eth.protocol_version``, deprecate ``eth.protocolVersion`` (`#1853 `__) -- Add ``eth.get_code``, deprecate ``eth.getCode`` (`#1856 `__) -- Deprecate ``eth.getProof``, add ``eth.get_proof`` (`#1857 `__) -- Add ``eth.get_transaction``, deprecate ``eth.getTransaction`` (`#1858 `__) -- Add ``eth.get_transaction_by_block``, deprecate ``eth.getTransactionByBlock`` (`#1859 `__) -- Add get_uncle_by_block, deprecate getUncleByBlock (`#1862 `__) -- Add get_uncle_count, deprecate getUncleCount (`#1863 `__) - - -Bugfixes -~~~~~~~~ - -- Fix event filter creation if the event ABI contains a ``values`` key. (`#1807 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Remove v5 breaking changes link from the top of the release notes. (`#1837 `__) -- Add account creation troubleshooting docs. (`#1855 `__) -- Document passing a struct into a contract function. (`#1860 `__) -- Add instance configuration troubleshooting docs. (`#1865 `__) -- Clarify nonce lookup in sendRawTransaction docs. (`#1866 `__) -- Updated docs for web3.eth methods: eth.getTransactionReceipt and eth.waitForTransactionReceipt (`#1868 `__) - - -v5.15.0 (2021-01-15) --------------------- - -Features -~~~~~~~~ - -- Add ``get_storage_at`` method and deprecate ``getStorageAt``. (`#1828 `__) -- Add ``eth.get_block`` method and deprecate ``eth.getBlock``. (`#1829 `__) - - -Bugfixes -~~~~~~~~ - -- PR #1585 changed the error that was coming back from eth-tester when the Revert opcode was called, - which broke some tests in downstream libraries. This PR reverts back to raising the original error. (`#1813 `__) -- Added a new ``ContractLogicError`` for when a contract reverts a transaction. - ``ContractLogicError`` will replace ``SolidityError``, in v6. (`#1814 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Introduce Beacon API documentation (`#1836 `__) - - -Misc -~~~~ - -- `#1602 `__, `#1827 `__, `#1831 `__, `#1833 `__, `#1834 `__ - - -v5.14.0 (2021-01-05) --------------------- - -Bugfixes -~~~~~~~~ - -- Remove docs/web3.* from the gitignore to allow for the beacon docs to be added to git, - and add ``beacon`` to the default web3 modules that get loaded. (`#1824 `__) -- Remove auto-documenting from the Beacon API (`#1825 `__) - - -Features -~~~~~~~~ - -- Introduce experimental Ethereum 2.0 beacon node API (`#1758 `__) -- Add new get_balance method on Eth class. Deprecated getBalance. (`#1806 `__) - - -Misc -~~~~ - -- `#1815 `__, `#1816 `__ - - -v5.13.1 (2020-12-03) --------------------- - -Bugfixes -~~~~~~~~ - -- Handle revert reason parsing for Ganache (`#1794 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Document Geth and Parity/OpenEthereum fixture generation (`#1787 `__) - - -Misc -~~~~ - -- `#1778 `__, `#1780 `__, `#1790 `__, `#1791 `__, `#1796 `__ - - -v5.13.0 (2020-10-29) --------------------- - -Features -~~~~~~~~ - -- Raise `SolidityError` exceptions that contain the revert reason when a `call` fails. (`#941 `__) - - -Bugfixes -~~~~~~~~ - -- Update eth-tester dependency to fix tester environment install version conflict. (`#1782 `__) - - -Misc -~~~~ - -- `#1757 `__, `#1767 `__ - - -v5.12.3 (2020-10-21) --------------------- - -Misc -~~~~ - -- `#1752 `__, `#1759 `__, `#1773 `__, `#1775 `__ - - -v5.12.2 (2020-10-12) --------------------- - -Bugfixes -~~~~~~~~ - -- Address the use of multiple providers in the docs (`#1701 `__) -- Remove stale connection errors from docs (`#1737 `__) -- Allow ENS name resolution for methods that use the ``Method`` class (`#1749 `__) - - -Misc -~~~~ - -- `#1727 `__, `#1728 `__, `#1733 `__, `#1735 `__, `#1741 `__, `#1746 `__, `#1748 `__, `#1753 `__, `#1768 `__ - - -v5.12.1 (2020-09-02) --------------------- - -Misc -~~~~ - -- `#1708 `__, `#1709 `__, `#1715 `__, `#1722 `__, `#1724 `__ - - -v5.12.0 (2020-07-16) --------------------- - -Features -~~~~~~~~ - -- Update `web3.pm` and `ethpm` module to EthPM v3 specification. (`#1652 `__) -- Allow consumer to initialize `HttpProvider` with their own `requests.Session`. This allows the `HttpAdapter` connection pool to be tuned as desired. (`#1469 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Use ethpm v3 packages in examples documentation. (`#1683 `__) -- Modernize the deploy contract example. (`#1679 `__) -- Add contribution guidelines and a code of conduct. (`#1691 `__) - - -Misc -~~~~ - -- `#1687 `__ -- `#1690 `__ - - -v5.12.0-beta.3 (2020-07-15) ---------------------------- - -Bugfixes -~~~~~~~~ - -- Include ethpm-spec solidity examples in distribution. (`#1686 `__) - - -v5.12.0-beta.2 (2020-07-14) ---------------------------- - -Bugfixes -~~~~~~~~ - -- Support ethpm-spec submodule in distributions. (`#1682 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Modernize the deploy contract example. (`#1679 `__) -- Use ethpm v3 packages in examples documentation. (`#1683 `__) - - -v5.12.0-beta.1 (2020-07-09) ---------------------------- - -Features -~~~~~~~~ - -- Allow consumer to initialize `HttpProvider` with their own `requests.Session`. This allows the `HttpAdapter` connection pool to be tuned as desired. (`#1469 `__) -- Update `web3.pm` and `ethpm` module to EthPM v3 specification. (`#1652 `__) - - -Bugfixes -~~~~~~~~ - -- Update outdated reference url in ethpm docs and tests. (`#1680 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Add a :meth:`~web3.eth.Eth.getBalance` example and provide more context for using the `fromWei` and `toWei` utility methods. (`#1676 `__) -- Overhaul the Overview documentation to provide a tour of major features. (`#1681 `__) - - -v5.11.1 (2020-06-17) --------------------- - -Bugfixes -~~~~~~~~ - -- Added formatter rules for eth_tester middleware to allow :meth:`~web3.eth.Eth.getBalance` by using integer block numbers (`#1660 `__) -- Fix type annotations within the ``eth.py`` module. Several arguments that defaulted to ``None`` were not declared ``Optional``. (`#1668 `__) -- Fix type annotation warning when using string URI to instantiate an HTTP or WebsocketProvider. (`#1669 `__) -- Fix type annotations within the ``web3`` modules. Several arguments that defaulted to ``None`` were not declared ``Optional``. (`#1670 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Breaks up links into three categories (Intro, Guides, and API) and adds content to the index page: a lib introduction and some "Getting Started" links. (`#1671 `__) -- Fills in some gaps in the Quickstart guide and adds provider connection details for local nodes. (`#1673 `__) - - -v5.11.0 (2020-06-03) --------------------- - -Features -~~~~~~~~ - -- Accept a block identifier in the ``Contract.estimateGas`` method. Includes a related upgrade of eth-tester to v0.5.0-beta.1. (`#1639 `__) -- Introduce a more specific validation error, ``ExtraDataLengthError``. This enables tools to detect when someone may be connected to a POA network, for example, and provide a smoother developer experience. (`#1666 `__) - - -Bugfixes -~~~~~~~~ - -- Correct the type annotations of `FilterParams.address` (`#1664 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Corrects the return value of ``getTransactionReceipt``, description of caching middleware, and deprecated method names. (`#1663 `__) -- Corrects documentation of websocket timeout configuration. (`#1665 `__) - - -v5.10.0 (2020-05-18) --------------------- - -Features -~~~~~~~~ - -- An update of ``eth-tester`` includes a change of the default fork from Constantinople to Muir Glacier. `#1636 `__ - - -Bugfixes -~~~~~~~~ - -- ``my_contract.events.MyEvent`` was incorrectly annotated so that ``MyEvent`` was marked as a ``ContractEvent`` instance. Fixed to be a class type, i.e., ``Type[ContractEvent]``. (`#1646 `__) -- IPCProvider correctly handled ``pathlib.Path`` input, but warned against its type. Fixed to permit Path objects in addition to strings. (`#1647 `__) - - -Misc -~~~~ - -- `#1636 `__ - - -v5.9.0 (2020-04-30) -------------------- - -Features -~~~~~~~~ - -- Upgrade eth-account to use v0.5.2+. eth-account 0.5.2 adds support for hd accounts - - Also had to pin eth-keys to get dependencies to resolve. (`#1622 `__) - - -Bugfixes -~~~~~~~~ - -- Fix local_filter_middleware new entries bug (`#1514 `__) -- ENS ``name`` and ENS ``address`` can return ``None``. Fixes return types. (`#1633 `__) - - -v5.8.0 (2020-04-23) -------------------- - -Features -~~~~~~~~ - -- Introduced ``list_wallets`` method to the ``GethPersonal`` class. (`#1516 `__) -- Added block_identifier parameter to `ContractConstructor.estimateGas` method. (`#1588 `__) -- Add snake_case methods to Geth and Parity Personal Modules. - - Deprecate camelCase methods. (`#1589 `__) -- Added new weighted keyword argument to the time based gas price strategy. - - If ``True``, it will more give more weight to more recent block times. (`#1614 `__) -- Adds support for Solidity's new(ish) receive function. - - Adds a new contract API that mirrors the existing fallback API: ``contract.receive`` (`#1623 `__) - - -Bugfixes -~~~~~~~~ - -- Fixed hasattr overloader method in the web3.ContractEvent, web3.ContractFunction, - and web3.ContractCaller classes by implementing a try/except handler - that returns False if an exception is raised in the __getattr__ overloader method - (since __getattr__ HAS to be called in every __hasattr__ call). - - Created two new Exception classes, 'ABIEventFunctionNotFound' and 'ABIFunctionNotFound', - which inherit from both AttributeError and MismatchedABI, and replaced the MismatchedABI - raises in ContractEvent, ContractFunction, and ContractCaller with a raise to the created class - in the __getattr__ overloader method of the object. (`#1594 `__) -- Change return type of rpc_gas_price_strategy from int to Wei (`#1612 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Fix typo in "Internals" docs. Changed asyncronous --> asynchronous (`#1607 `__) -- Improve documentation that introduces and troubleshoots Providers. (`#1609 `__) -- Add documentation for when to use each transaction method. (`#1610 `__) -- Remove incorrect web3 for w3 in doc example (`#1615 `__) -- Add examples for using web3.contract via the ethpm module. (`#1617 `__) -- Add dark mode to documentation. Also fixes a bunch of formatting issues in docs. (`#1626 `__) - - -Misc -~~~~ - -- `#1545 `__ - - -v5.7.0 (2020-03-16) -------------------- - -Features -~~~~~~~~ - -- Add snake_case methods for the net module - - Also moved net module to use ModuleV2 instead of Module (`#1592 `__) - - -Bugfixes -~~~~~~~~ - -- Fix return type of eth_getCode. Changed from Hexstr to HexBytes. (`#1601 `__) - - -Misc -~~~~ - -- `#1590 `__ - - -v5.6.0 (2020-02-26) -------------------- - -Features -~~~~~~~~ - -- Add snake_case methods to Geth Miner class, deprecate camelCase methods (`#1579 `__) -- Add snake_case methods for the net module, deprecate camelCase methods (`#1581 `__) -- Add PEP561 type marker (`#1583 `__) - - -Bugfixes -~~~~~~~~ - -- Increase replacement tx minimum gas price bump - - Parity/OpenEthereum requires a replacement transaction's - gas to be a minimum of 12.5% higher than the original - (vs. Geth's 10%). (`#1570 `__) - - -v5.5.1 (2020-02-10) -------------------- - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Documents the `getUncleCount` method. (`#1534 `__) - - -Misc -~~~~ - -- `#1576 `__ - - -v5.5.0 (2020-02-03) -------------------- - -Features -~~~~~~~~ - -- ENS had to release a new registry to push a bugfix. See - `this article `_ - for background information. web3.py uses the new registry for all default ENS interactions, now. (`#1573 `__) - - -Bugfixes -~~~~~~~~ - -- Minor bugfix in how ContractCaller looks up abi functions. (`#1552 `__) -- Update modules to use compatible typing-extensions import. (`#1554 `__) -- Make 'from' and 'to' fields checksum addresses in returned transaction receipts (`#1562 `__) -- Use local Trinity's IPC socket if it is available, for newer versions of Trinity. (`#1563 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Add Matomo Tracking to Docs site. - - Matomo is an Open Source web analytics platform that allows us - to get better insights and optimize for our audience without - the negative consequences of other compareable platforms. - - Read more: https://matomo.org/why-matomo/ (`#1541 `__) -- Fix web3 typo in docs (`#1559 `__) - - -Misc -~~~~ - -- `#1521 `__, `#1546 `__, `#1571 `__ - - -v5.4.0 (2019-12-06) -------------------- - -Features -~~~~~~~~ - -- Add __str__ to IPCProvider (`#1536 `__) - - -Bugfixes -~~~~~~~~ - -- Add required typing-extensions library to setup.py (`#1544 `__) - - -v5.3.1 (2019-12-05) -------------------- - -Bugfixes -~~~~~~~~ - -- Only apply hexbytes formatting to r and s values in transaction if present (`#1531 `__) -- Update eth-utils dependency which contains mypy bugfix. (`#1537 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Update Contract Event documentation to show correct example (`#1515 `__) -- Add documentation to methods that raise an error in v5 instead of returning ``None`` (`#1527 `__) - - -Misc -~~~~ - -- `#1518 `__, `#1532 `__ - - -v5.3.0 (2019-11-14) -------------------- - -Features -~~~~~~~~ - -- Support handling ENS domains in ERC1319 URIs. (`#1489 `__) - - -Bugfixes -~~~~~~~~ - -- Make local block filter return empty list when when no blocks mined (`#1255 `__) -- Google protobuf dependency was updated to `3.10.0` (`#1493 `__) -- Infura websocket provider works when no secret key is present (`#1501 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Update Quickstart instructions to use the auto Infura module instead of the more complicated web3 auto module (`#1482 `__) -- Remove outdated py.test command from readme (`#1483 `__) - - -Misc -~~~~ - -- `#1461 `__, `#1471 `__, `#1475 `__, `#1476 `__, `#1479 `__, `#1488 `__, `#1492 `__, `#1498 `__ - - -v5.2.2 (2019-10-21) -------------------- - -Features -~~~~~~~~ - -- Add poll_latency to waitForTransactionReceipt (`#1453 `__) - - -Bugfixes -~~~~~~~~ - -- Fix flaky Parity whisper module test (`#1473 `__) - - -Misc -~~~~ - -- `#1472 `__, `#1474 `__ - - -v5.2.1 (2019-10-17) -------------------- - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Update documentation for unlock account duration (`#1464 `__) -- Clarify module installation command for OSX>=10.15 (`#1467 `__) - - -Misc -~~~~ - -- `#1468 `__ - - -v5.2.0 (2019-09-26) -------------------- - -Features -~~~~~~~~ - -- Add ``enable_strict_bytes_type_checking`` flag to web3 instance (`#1419 `__) -- Move Geth Whisper methods to snake case and deprecate camel case methods (`#1433 `__) - - -Bugfixes -~~~~~~~~ - -- Add null check to logsbloom formatter (`#1445 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Reformat autogenerated towncrier release notes (`#1460 `__) - - -Web3 5.1.0 (2019-09-18) ------------------------ - -Features -~~~~~~~~ - -- Add ``contract_types`` property to ``Package`` class. (`#1440 `__) - - -Bugfixes -~~~~~~~~ - -- Fix flaky parity integration test in the whisper module (`#1147 `__) - - -Improved Documentation -~~~~~~~~~~~~~~~~~~~~~~ - -- Remove whitespace, move ``topics`` key -> ``topic`` in Geth docs (`#1425 `__) -- Enforce stricter doc checking, turning warnings into errors to fail CI builds - to catch issues quickly. - - Add missing ``web3.tools.rst`` to the table of contents and fix incorrectly formatted - JSON example. (`#1437 `__) -- Add example using Geth POA Middleware with Infura Rinkeby Node (`#1444 `__) - - -Misc -~~~~ - -- `#1446 `__, `#1451 `__ - - -v5.0.2 ------- -Released August 22, 2019 - -- Bugfixes - - - [ethPM] Fix bug in package id and release id fetching strategy - - `#1427 `_ - -v5.0.1 ------- -Released August 15, 2019 - -- Bugfixes - - - [ethPM] Add begin/close chars to package name regex - - `#1418 `_ - - [ethPM] Update deployments to work when only abi available - - `#1417 `_ - - Fix tuples handled incorrectly in ``decode_function_input`` - - `#1410 `_ - -- Misc - - - Eliminate ``signTransaction`` warning - - `#1404 `_ - -v5.0.0 ------- -Released August 1, 2019 - -- Features - - - ``web3.eth.chainId`` now returns an integer instead of hex - - `#1394 `_ - -- Bugfixes - - - Deprecation Warnings now show for methods that have a - ``@combomethod`` decorator - - `#1401 `_ - -- Misc - - - [ethPM] Add ethPM to the docker file - - `#1405 `_ - -- Docs - - - Docs are updated to use checksummed addresses - - `#1390 `_ - - Minor doc formatting fixes - - `#1338 `_ & - `#1345 `_ - - - -v5.0.0-beta.5 -------------- -Released July 31, 2019 - -*This is intended to be the final release before the stable v5 release.* - -- Features - - - Parity operating mode can be read and set - - `#1355 `_ - - Process a single event log, instead of a whole transaction - receipt - - `#1354 `_ - -- Docs - - - Remove doctest dependency on ethtoken - - `#1395 `_ - -- Bugfixes - - - [ethPM] Bypass IPFS validation for large files - - `#1393 `_ - -- Misc - - - [ethPM] Update default Registry solidity contract - - `#1400 `_ - - [ethPM] Update web3.pm to use new simple Registry implementation - - `#1398 `_ - - Update dependency requirement formatting for releasing - - `#1403 `_ - - -v5.0.0-beta.4 -------------- -Released July 18,2019 - - - -- Features - - - [ethPM] Update registry uri to support basic uris w/o package id - - `#1389 `_ - -- Docs - - - Clarify in docs the return of ``Eth.sendRawTransaction()`` as - a HexBytes object, not a string. - - `#1384 `_ - -- Misc - - - [ethPM] Migrate tests over from pytest-ethereum - - `#1385 `_ - -v5.0.0-beta.3 -------------- -Released July 15, 2019 - -- Features - - - Add eth_getProof support - - `#1185 `_ - - Implement web3.pm.get_local_package() - - `#1372 `_ - - Update registry URIs to support chain IDs - - `#1382 `_ - - Add error flags to ``event.processReceipt`` - - `#1366 `_ - -- Bugfixes - - - Remove full IDNA processing in favor of UTS46 - - `#1364 `_ - -- Misc - - - Migrate py-ethpm library to web3/ethpm - - `#1379 `_ - - Relax canonical address requirement in ethPM - - `#1380 `_ - - Replace ethPM's infura strategy with web3's native infura support - - `#1383 `_ - - Change ``combine_argument_formatters`` to ``apply_formatters_to_sequence`` - - `#1360 `_ - - Move ``pytest.xfail`` instances to ``@pytest.mark.xfail`` - - `#1376 `_ - - Change ``net.version`` to ``eth.chainId`` in default - transaction params - - `#1378 `_ - - -v5.0.0-beta.2 -------------- -Released May 13, 2019 - -- Features - - - Mark deprecated sha3 method as static - - `#1350 `_ - - Upgrade to eth-account v0.4.0 - - `#1348 `_ - -- Docs - - - Add note about web3[tester] in documentation - - `#1325 `_ - -- Misc - - - Replace ``web3._utils.toolz`` imports with ``eth_utils.toolz`` - - `#1317 `_ - - -v5.0.0-beta.1 -------------- -Released May 6, 2019 - -- Features - - - Add support for tilda in provider IPC Path - - `#1049 `_ - - EIP 712 Signing Supported - - `#1319 `_ - -- Docs - - - Update contract example to use ``compile_standard`` - - `#1263 `_ - - Fix typo in middleware docs - - `#1339 `_ - - -v5.0.0-alpha.11 ---------------- -Released April 24, 2019 - -- Docs - - - Add documentation for web3.py unit tests - - `#1324 `_ - -- Misc - - - Update deprecated collections.abc imports - - `#1334 `_ - - Fix documentation typo - - `#1335 `_ - - Upgrade eth-tester version - - `#1332 `_ - - -v5.0.0-alpha.10 ---------------- -Released April 15, 2019 - -- Features - - - Add getLogs by blockHash - - `#1269 `_ - - Implement chainId endpoint - - `#1295 `_ - - Moved non-standard JSON-RPC endpoints to applicable - Parity/Geth docs. Deprecated ``web3.version`` for ``web3.api`` - - `#1290 `_ - - Moved Whisper endpoints to applicable Geth or Parity namespace - - `#1308 `_ - - Added support for Goerli provider - - `#1286 `_ - - Added addReservedPeer to Parity module - - `#1311 `_ - -- Bugfixes - - - Cast gas price values to integers in gas strategies - - `#1297 `_ - - Missing constructor function no longer ignores constructor args - - `#1316 `_ - -- Misc - - - Require eth-utils >= 1.4, downgrade Go version for integration tests - - `#1310 `_ - - Fix doc build warnings - - `#1331 `_ - - Zip Fixture data - - `#1307 `_ - - Update Geth version for integration tests - - `#1301 `_ - - Remove unneeded testrpc - - `#1322 `_ - - Add ContractCaller docs to v5 migration guide - - `#1323 `_ - - - -v5.0.0-alpha.9 --------------- -Released March 26, 2019 - -- Breaking Changes - - - Raise error if there is no Infura API Key - - `#1294 `_ & - - `#1299 `_ - -- Misc - - - Upgraded Parity version for integration testing - - `#1292 `_ - -v5.0.0-alpha.8 --------------- -Released March 20, 2019 - -- Breaking Changes - - - Removed ``web3/utils`` directory in favor of ``web3/_utils`` - - `#1282 `_ - - Relocated personal RPC endpoints to Parity and Geth class - - `#1211 `_ - - Deprecated ``web3.net.chainId()``, ``web3.eth.getCompilers()``, - and ``web3.eth.getTransactionFromBlock()``. Removed ``web3.eth.enableUnauditedFeatures()`` - - `#1270 `_ - - Relocated eth_protocolVersion and web3_clientVersion - - `#1274 `_ - - Relocated ``web3.txpool`` to ``web3.geth.txpool`` - - `#1275 `_ - - Relocated admin module to Geth namespace - - `#1288 `_ - - Relocated miner module to Geth namespace - - `#1287 `_ - -- Features - - - Implement ``eth_submitHashrate`` and ``eth_submitWork`` JSONRPC endpoints. - - `#1280 `_ - - Implement ``web3.eth.signTransaction`` - - `#1277 `_ - -- Docs - - - Added v5 migration docs - - `#1284 `_ - -v5.0.0-alpha.7 --------------- -Released March 11, 2019 - -- Breaking Changes - - - Updated JSON-RPC calls that lookup txs or blocks to raise - an error if lookup fails - - `#1218 `_ and - `#1268 `_ - -- Features - - - Tuple ABI support - - `#1235 `_ - -- Bugfixes - - - One last ``middleware_stack`` was still hanging on. - Changed to ``middleware_onion`` - - `#1262 `_ - -v5.0.0-alpha.6 --------------- -Released February 25th, 2019 - -- Features - - - New ``NoABIFound`` error for cases where there is no ABI - - `#1247 `_ - -- Misc - - - Interact with Infura using an API Key. Key will be required after March 27th. - - `#1232 `_ - - Remove ``process_type`` utility function in favor of - eth-abi functionality - - `#1249 `_ - - -v5.0.0-alpha.5 --------------- - -Released February 13th, 2019 - -- Breaking Changes - - - Remove deprecated ``buildTransaction``, ``call``, ``deploy``, - ``estimateGas``, and ``transact`` methods - - `#1232 `_ - -- Features - - - Adds ``Web3.toJSON`` method - - `#1173 `_ - - Contract Caller API Implemented - - `#1227 `_ - - Add Geth POA middleware to use Rinkeby with Infura Auto - - `#1234 `_ - - Add manifest and input argument validation to ``pm.release_package()`` - - `#1237 `_ - -- Misc - - - Clean up intro and block/tx sections in Filter docs - - `#1223 `_ - - Remove unnecessary ``EncodingError`` exception catching - - `#1224 `_ - - Improvements to ``merge_args_and_kwargs`` utility function - - `#1228 `_ - - Update vyper registry assets - - `#1242 `_ - - -v5.0.0-alpha.4 --------------- - -Released January 23rd, 2019 - -- Breaking Changes - - - Rename ``middleware_stack`` to ``middleware_onion`` - - `#1210 `_ - - Drop already deprecated ``web3.soliditySha3`` - - `#1217 `_ - - ENS: Stop inferring ``.eth`` TLD on domain names - - `#1205 `_ - -- Bugfixes - - - Validate ``ethereum_tester`` class in ``EthereumTesterProvider`` - - `#1217 `_ - - Support ``getLogs()`` method without creating filters - - `#1192 `_ - -- Features - - - Stablize the ``PM`` module - - `#1125 `_ - - Implement async ``Version`` module - - `#1166 `_ - -- Misc - - - Update .gitignore to ignore ``.DS_Store`` and ``.mypy_cache/`` - - `#1215 `_ - - Change CircleCI badge link to CircleCI project - - `#1214 `_ - - -v5.0.0-alpha.3 --------------- - -Released January 15th, 2019 - -- Breaking Changes - - - Remove ``web3.miner.hashrate`` and ``web3.version.network`` - - `#1198 `_ - - Remove ``web3.providers.tester.EthereumTesterProvider`` - and ``web3.providers.tester.TestRPCProvider`` - - `#1199 `_ - - Change ``manager.providers`` from list to single ``manager.provider`` - - `#1200 `_ - - Replace deprecated ``web3.sha3`` method with ``web3.keccak`` method - - `#1207 `_ - - Drop auto detect testnets for IPCProvider - - `#1206 `_ - -- Bugfixes - - - Add check to make sure blockHash exists - - `#1158 `_ - -- Misc - - - Remove some unreachable code in `providers/base.py` - - `#1160 `_ - - Migrate tester provider results from middleware to defaults - - `#1188 `_ - - Fix doc formatting for build_filter method - - `#1187 `_ - - Add ERC20 example in docs - - `#1178 `_ - - Code style improvements - - `#1194 `_ - & `#1191 `_ - - Convert Web3 instance variables to w3 - - `#1186 `_ - - Update eth-utils dependencies and clean up other dependencies - - `#1195 `_ - - -v5.0.0-alpha.2 --------------- - -Released December 20th, 2018 - -- Breaking Changes - - - Remove support for python3.5, drop support for eth-abi v1 - - `#1163 `_ -- Features - - - Support for custom ReleaseManager was fixed - - `#1165 `_ - -- Misc - - - Fix doctest nonsense with unicorn token - - `3b2047 `_ - - Docs for installing web3 in FreeBSD - - `#1156 `_ - - Use latest python in readthedocs - - `#1162 `_ - - Use twine in release script - - `#1164 `_ - - Upgrade eth-tester, for eth-abi v2 support - - `#1168 `_ - -v5.0.0-alpha.1 --------------- - -Released December 13th, 2018 - -- Features - - - Add Rinkeby and Kovan Infura networks; made mainnet the default - - `#1150 `_ - - Add parity-specific ``listStorageKeys`` RPC - - `#1145 `_ - - Deprecated ``Web3.soliditySha3``; use ``Web3.solidityKeccak`` instead. - - `#1139 `_ - - Add default trinity locations to IPC path guesser - - `#1121 `_ - - Add wss to ``AutoProvider`` - - `#1110 `_ - - Add timeout for ``WebsocketProvider`` - - `#1109 `_ - - Receipt timeout raises ``TimeExhausted`` - - `#1070 `_ - - Allow specification of block number for ``eth_estimateGas`` - - `#1046 `_ - - -- Misc - - - Removed ``web3._utils.six`` support - - `#1116 `_ - - Upgrade eth-utils to 1.2.0 - - `#1104 `_ - - Require Python version 3.5.3 or greater - - `#1095 `_ - - Bump websockets version to 7.0.0 - - `#1146 `_ - - Bump parity test binary to 1.11.11 - - `#1064 `_ - - -v4.8.2 --------- - -Released November 15, 2018 - -- Misc - - - Reduce unneeded memory usage - - `#1138 `_ - -v4.8.1 --------- - -Released October 28, 2018 - -- Features - - - Add timeout for WebsocketProvider - - `#1119 `_ - - Reject transactions that send ether to non-payable contract functions - - `#1115 `_ - - Add Auto Infura Ropsten support: ``from web3.auto.infura.ropsten import w3`` - - `#1124 `_ - - Auto-detect trinity IPC file location - - `#1129 `_ -- Misc - - - Require Python >=3.5.3 - - `#1107 `_ - - Upgrade eth-tester and eth-utils - - `#1085 `_ - - Configure readthedocs dependencies - - `#1082 `_ - - soliditySha3 docs fixup - - `#1100 `_ - - Update ropsten faucet links in troubleshooting docs - -v4.7.2 --------- - -Released September 25th, 2018 - -- Bugfixes - - - IPC paths starting with ``~`` are appropriately resolved to the home directory - - `#1072 `_ - - You can use the local signing middleware with :class:`bytes`-type addresses - - `#1069 `_ - -v4.7.1 --------- - -Released September 11th, 2018 - -- Bugfixes - - - `old pip bug `_ used during - release made it impossible for non-windows users to install 4.7.0. - -v4.7.0 --------- - -Released September 10th, 2018 - -- Features - - - Add traceFilter method to the parity module. - - `#1051 `_ - - Move :mod:`~web3.utils.datastructures` to public namespace :mod:`~web3.datastructures` - to improve support for type checking. - - `#1038 `_ - - Optimization to contract calls - - `#944 `_ -- Bugfixes - - - ENS name resolution only attempted on mainnet by default. - - `#1037 `_ - - Fix attribute access error when attributedict middleware is not used. - - `#1040 `_ -- Misc - - Upgrade eth-tester to 0.1.0-beta.32, and remove integration tests for py-ethereum. - - Upgrade eth-hash to 0.2.0 with pycryptodome 3.6.6 which resolves a vulnerability. - -v4.6.0 --------- - -Released Aug 24, 2018 - -- Features - - - Support for Python 3.7, most notably in :class:`~web3.providers.websocket.WebsocketProvider` - - `#996 `_ - - You can now decode a transaction's data to its original function call and arguments with: - :meth:`contract.decode_function_input() ` - `#991 - `_ - - Support for :class:`~web3.providers.ipc.IPCProvider` in FreeBSD (and more readme docs) - `#1008 - `_ -- Bugfixes - - - Fix crash in time-based gas strategies with small number of transactions - `#983 - `_ - - Fx crash when passing multiple addresses to :meth:`w3.eth.getLogs() ` - - `#1005 `_ -- Misc - - - Disallow configuring filters with both manual and generated topic lists - `#976 - `_ - - Add support for the upcoming eth-abi v2, which does ABI string decoding differently - `#974 - `_ - - Add a lot more filter tests - `#997 - `_ - - Add more tests for filtering with ``None``. Note that geth & parity differ here. - `#985 - `_ - - Follow-up on Parity bug that we reported upstream (`parity#7816 - `_): they resolved in 1.10. We - removed xfail on that test. - `#992 - `_ - - Docs: add an example of interacting with an ERC20 contract - `#995 - `_ - - A couple doc typo fixes - - - `#1006 `_ - - `#1010 `_ - -v4.5.0 --------- - -Released July 30, 2018 - -- Features - - - Accept addresses supplied in :class:`bytes` format (which does not provide checksum validation) - - Improve estimation of gas prices -- Bugfixes - - - Can now use a block number with :meth:`~web3.eth.Eth.getCode` when connected to - :class:`~web3.providers.eth_tester.EthereumTesterProvider` (without crashing) -- Misc - - - Test Parity 1.11.7 - - Parity integration tests upgrade to use sha256 instead of md5 - - Fix some filter docs - - eth-account upgrade to v0.3.0 - - eth-tester upgrade to v0.1.0-beta.29 - -v4.4.1 --------- - -Released June 29, 2018 - -- Bugfixes - - - eth-pm package was renamed (old one deleted) which broke the web3 release. - eth-pm was removed from the web3.py install until it's stable. - -- Misc - - - :class:`~web3.providers.ipc.IPCProvider` now accepts a :class:`pathlib.Path` - argument for the IPC path - - Docs explaining the new custom autoproviders in web3 - -v4.4.0 --------- - -Released June 21, 2018 - -- Features - - - Add support for https in WEB3_PROVIDER_URI environment variable - - Can send websocket connection parameters in :class:`~web3.providers.websocket.WebsocketProvider` - - Two new auto-initialization options: - - - ``from web3.auto.gethdev import w3`` - - ``from web3.auto.infura import w3`` - (After setting the ``INFURA_API_KEY`` environment variable) - - Alpha support for a new package management tool based on ethpm-spec -- Bugfixes - - - Can now receive large responses in :class:`~web3.providers.websocket.WebsocketProvider` by - specifying a large ``max_size`` in the websocket connection parameters. -- Misc - - - Websockets dependency upgraded to v5 - - Raise deprecation warning on :meth:`~web3.eth.Eth.getTransactionFromBlock` - - Fix docs for :meth:`~web3.eth.Eth.waitForTransactionReceipt` - - Developer Dockerfile now installs testing dependencies - -v4.3.0 --------- - -Released June 6, 2018 - -- Features - - - Support for the ABI types like: `fixedMxN - `_ - which is used by Vyper. - - In-flight transaction-signing middleware: Use local keys as if they were hosted keys - using the new ``sign_and_send_raw_middleware`` - - New :meth:`~web3.eth.Eth.getUncleByBlock` API - - New name :meth:`~web3.eth.Eth.getTransactionByBlock`, which replaces the deprecated - :meth:`~web3.eth.Eth.getTransactionFromBlock` - - Add several new Parity trace functions - - New API to resolve ambiguous function calls, for example: - - - Two functions with the same name that accept similar argument types, like - ``myfunc(uint8)`` and ``myfunc(int8)``, and you want to call - ``contract.functions.myfunc(1).call()`` - - See how to use it at: :ref:`ambiguous-contract-functions` -- Bugfixes - - - Gas estimation doesn't crash, when 0 blocks are available. (ie~ on the genesis block) - - Close out all HTTPProvider sessions, to squash warnings on exit - - Stop adding Contract address twice to the filter. It was making some nodes unhappy -- Misc - - - Friendlier json encoding/decoding failure error messages - - Performance improvements, when the responses from the node are large - (by reducing the number of times we evaluate if the response is valid json) - - Parity CI test fixes (ugh, environment setup hell, thanks to the - community for cleaning this up!) - - Don't crash when requesting a transaction that was created with the parity bug - (which allowed an unsigned transaction to be included, so ``publicKey`` is ``None``) - - Doc fixes: addresses must be checksummed (or ENS names on mainnet) - - Enable local integration testing of parity on non-Debian OS - - README: - - - Testing setup for devs - - Change the build badge from Travis to Circle CI - - Cache the parity binary in Circle CI, to reduce the impact of their binary API going down - - Dropped the dot: ``py.test`` -> ``pytest`` - -v4.2.1 --------- - -Released May 9, 2018 - -- Bugfixes - - - When :meth:`getting a transaction ` - with data attached and trying to :meth:`modify it ` - (say, to increase the gas price), the data was not being reattached in - the new transaction. - - :meth:`web3.personal.sendTransaction` was crashing when using a transaction - generated with ``buildTransaction()`` -- Misc - - - Improved error message when connecting to a geth-style PoA network - - Improved error message when address is not checksummed - - Started in on support for ``fixedMxN`` ABI arguments - - Lots of documentation upgrades, including: - - - Guide for understanding nodes/networks/connections - - Simplified Quickstart with notes for common issues - - A new Troubleshooting section - - Potential pypy performance improvements (use toolz instead of cytoolz) - - eth-tester upgraded to beta 24 - -v4.2.0 --------- - -Released Apr 25, 2018 - -- Removed audit warning and opt-in requirement for ``w3.eth.account``. See more in: - :ref:`eth-account` -- Added an API to look up contract functions: ``fn = contract.functions['function_name_here']`` -- Upgrade Whisper (shh) module to use v6 API -- Bugfix: set 'to' field of transaction to empty when using - ``transaction = contract.constructor().buildTransaction()`` -- You can now specify `nonce` in ``buildTransaction()`` -- Distinguish between chain id and network id -- currently always return `None` for - :attr:`~web3.net.Net.chainId` -- Better error message when trying to use a contract function that has 0 or >1 matches -- Better error message when trying to install on a python version <3.5 -- Installs pypiwin32 during pip install, for a better Windows experience -- Cleaned up a lot of test warnings by upgrading from deprecated APIs, especially - from the deprecated ``contract.deploy(txn_dict, args=contract_args)`` - to the new ``contract.constructor(*contract_args).transact(txn_dict)`` -- Documentation typo fixes -- Better template for Pull Requests - -v4.1.0 --------- - -Released Apr 9, 2018 - -- New :class:`~web3.providers.websocket.WebsocketProvider`. - If you're looking for better performance than HTTP, check out websockets. -- New :meth:`w3.eth.waitForTransactionReceipt() ` -- Added name collision detection to ConciseContract and ImplicitContract -- Bugfix to allow fromBlock set to 0 in createFilter, like - ``contract.events.MyEvent.createFilter(fromBlock=0, ...)`` -- Bugfix of ENS automatic connection -- eth-tester support for Byzantium -- New migration guide for v3 -> v4 upgrade -- Various documentation updates -- Pinned eth-account to older version - -v4.0.0 ------------------ - -Released Apr 2, 2018 - -- Marked beta.13 as stable -- Documentation tweaks - -v4.0.0-beta.13 ------------------ - -Released Mar 27, 2018 - -*This is intended to be the final release before the stable v4 release.* - -- Add support for geth 1.8 (fixed error on :meth:`~web3.eth.Eth.getTransactionReceipt`) -- You can now call a contract method at a specific block - with the ``block_identifier`` keyword argument, see: - :meth:`~web3.contract.ContractFunction.call` -- In preparation for stable release, disable ``w3.eth.account`` by default, - until a third-party audit is complete & resolved. -- New API for contract deployment, which enables gas estimation, local signing, etc. - See :meth:`~web3.contract.Contract.constructor`. -- Find contract events with :ref:`contract.events.$my_event.createFilter() ` -- Support auto-complete for contract methods. -- Upgrade most dependencies to stable - - - eth-abi - - eth-utils - - hexbytes - - *not included: eth-tester and eth-account* -- Switch the default EthereumTesterProvider backend from eth-testrpc to eth-tester: - :class:`web3.providers.eth_tester.EthereumTesterProvider` -- A lot of documentation improvements -- Test node integrations over a variety of providers -- geth 1.8 test suite - - -v4.0.0-beta.12 ------------------ - -A little hiccup on release. Skipped. - -v4.0.0-beta.11 ------------------ - -Released Feb 28, 2018 - -- New methods to modify or replace pending transactions -- A compatibility option for connecting to ``geth --dev`` -- see :ref:`geth-poa` -- A new :attr:`web3.net.chainId` -- Create a filter object from an existing filter ID. -- eth-utils v1.0.1 (stable) compatibility - - -v4.0.0-beta.10 ------------------ - -Released Feb 21, 2018 - -- bugfix: Compatibility with eth-utils v1-beta2 - (the incompatibility was causing fresh web3.py installs to fail) -- bugfix: crash when sending the output of ``contract.functions.myFunction().buildTransaction()`` - to :meth:`~web3.eth.Eth.sendTransaction`. Now, having a chainID key does not crash - sendTransaction. -- bugfix: a TypeError when estimating gas like: - ``contract.functions.myFunction().estimateGas()`` is fixed -- Added parity integration tests to the continuous integration suite! -- Some py3 and docs cleanup - -v4.0.0-beta.9 -------------- - -Released Feb 8, 2018 - -- Access event log parameters as attributes -- Support for specifying nonce in eth-tester -- `Bugfix `_ - dependency conflicts between eth-utils, eth-abi, and eth-tester -- Clearer error message when invalid keywords provided to contract constructor function -- New docs for working with private keys + set up doctests -- First parity integration tests -- replace internal implementation of w3.eth.account with - :class:`eth_account.account.Account` - -v4.0.0-beta.8 -------------- - -Released Feb 7, 2018, then recalled. It added 32MB of test data to git history, -so the tag was deleted, as well as the corresponding release. -(Although the release would not have contained that test data) - -v4.0.0-beta.7 -------------- - -Released Jan 29, 2018 - -- Support for :meth:`web3.eth.Eth.getLogs` in eth-tester with py-evm -- Process transaction receipts with Event ABI, using - `Contract.events.myEvent(*args, **kwargs).processReceipt(transaction_receipt)` - see :ref:`event-log-object` for the new type. -- Add timeout parameter to :class:`web3.providers.ipc.IPCProvider` -- bugfix: make sure `idna` package is always installed -- Replace ethtestrpc with py-evm, in all tests -- Dockerfile fixup -- Test refactoring & cleanup -- Reduced warnings during tests - -v4.0.0-beta.6 -------------- - -Released Jan 18, 2018 - -- New contract function call API: `my_contract.functions.my_func().call()` is preferred over the now - deprecated `my_contract.call().my_func()` API. -- A new, sophisticated gas estimation algorithm, based on the https://ethgasstation.info approach. - You must opt-in to the new approach, because it's quite slow. We recommend using the new caching middleware. - See :meth:`web3.gas_strategies.time_based.construct_time_based_gas_price_strategy` -- New caching middleware that can cache based on time, block, or indefinitely. -- Automatically retry JSON-RPC requests over HTTP, a few times. -- ConciseContract now has the address directly -- Many eth-tester fixes. :class:`web3.providers.eth_tester.main.EthereumTesterProvider` is now a - legitimate alternative to :class:`web3.providers.tester.EthereumTesterProvider`. -- ethtest-rpc removed from testing. Tests use eth-tester only, on pyethereum. Soon it will be - eth-tester with py-evm. -- Bumped several dependencies, like eth-tester -- Documentation updates - -v4.0.0-beta.5 -------------- - -Released Dec 28, 2017 - -* Improvements to working with eth-tester, using :class:`~web3.providers.eth_tester.EthereumTesterProvider`: - - * Bugfix the key names in event logging - * Add support for :meth:`~web3.eth.Eth.sendRawTransaction` -* :class:`~web3.providers.ipc.IPCProvider` now automatically retries on a broken connection, like when you restart your node -* New gas price engine API, laying groundwork for more advanced gas pricing strategies - -v4.0.0-beta.4 -------------- - -Released Dec 7, 2017 - -* New :meth:`~web3.contract.Contract.buildTransaction` method to prepare contract transactions, offline -* New automatic provider detection, for ``w3 = Web3()`` initialization -* Set environment variable `WEB3_PROVIDER_URI` to suggest a provider for automatic detection -* New API to set providers like: ``w3.providers = [IPCProvider()]`` -* Crashfix: :meth:`web3.eth.Eth.filter` when retrieving logs with the argument 'latest' -* Bump eth-tester to v0.1.0-beta.5, with bugfix for filtering by topic -* Removed GPL lib ``pylru``, now believed to be in full MIT license compliance. - -v4.0.0-beta.3 -------------- - -Released Dec 1, 2017 - -* Fix encoding of ABI types: ``bytes[]`` and ``string[]`` -* Windows connection error bugfix -* Bugfix message signatures that were broken ~1% of the time (zero-pad ``r`` and ``s``) -* Autoinit web3 now produces None instead of raising an exception on ``from web3.auto import w3`` -* Clearer errors on formatting failure (includes field name that failed) -* Python modernization, removing Py2 compatibility cruft -* Update dependencies with changed names, now: - - * ``eth-abi`` - * ``eth-keyfile`` - * ``eth-keys`` - * ``eth-tester`` - * ``eth-utils`` -* Faster Travis CI builds, with cached geth binary - -v4.0.0-beta.2 -------------- - -Released Nov 22, 2017 - -Bug Fixes: - -* :meth:`~web3.eth.Eth.sendRawTransaction` accepts raw bytes -* :meth:`~web3.eth.Eth.contract` accepts an ENS name as contract address -* :meth:`~web3.account.Account.signTransaction` returns the expected hash (*after* signing the transaction) -* :class:`~web3.account.Account` methods can all be called statically, like: ``Account.sign(...)`` -* :meth:`~web3.eth.Eth.getTransactionReceipt` returns the ``status`` field as an ``int`` -* :meth:`Web3.soliditySha3` looks up ENS names if they are supplied with an "address" ABI -* If running multiple threads with the same w3 instance, ``ValueError: Recursively called ...`` is no longer raised - -Plus, various python modernization code cleanups, and testing against geth 1.7.2. - -v4.0.0-beta.1 -------------- - -* Python 3 is now required -* ENS names can be used anywhere that a hex address can -* Sign transactions and messages with local private keys -* New filter mechanism: :meth:`~web3.utils.filters.Filter.get_all_entries` and :meth:`~web3.utils.filters.Filter.get_new_entries` -* Quick automatic initialization with ``from web3.auto import w3`` -* All addresses must be supplied with an EIP-55 checksum -* All addresses are returned with a checksum -* Renamed ``Web3.toDecimal()`` to ``toInt()``, see: :ref:`overview_type_conversions` -* All filter calls are synchronous, gevent integration dropped -* Contract :meth:`~web3.contract.Contract.eventFilter` has replaced both ``Contract.on()`` and ``Contract.pastEvents()`` -* Contract arguments of ``bytes`` ABI type now accept hex strings. -* Contract arguments of ``string`` ABI type now accept python ``str``. -* Contract return values of ``string`` ABI type now return python ``str``. -* Many methods now return a ``bytes``-like object where they used to return a hex string, like in :meth:`Web3.sha3()` -* IPC connection left open and reused, rather than opened and closed on each call -* A number of deprecated methods from v3 were removed - -3.16.1 ------- - -* Addition of ``ethereum-tester`` as a dependency - - -3.16.0 ------- - -* Addition of *named* middlewares for easier manipulation of middleware stack. -* Provider middlewares can no longer be modified during runtime. -* Experimental custom ABI normalization API for Contract objects. - - -3.15.0 ------- - -* Change docs to use RTD theme -* Experimental new ``EthereumTesterProvider`` for the ``ethereum-tester`` library. -* Bugfix for ``function`` type abi encoding via ``ethereum-abi-utils`` upgrade to ``v0.4.1`` -* Bugfix for ``Web3.toHex`` to conform to RPC spec. - - -3.14.2 ------- - -* Fix PyPi readme text. - - -3.14.1 ------- - -* Fix PyPi readme text. - -3.14.0 ------- - -* New ``stalecheck_middleware`` -* Improvements to ``Web3.toHex`` and ``Web3.toText``. -* Improvements to ``Web3.sha3`` signature. -* Bugfixes for ``Web3.eth.sign`` api - - -3.13.5 ------- - -* Add experimental ``fixture_middleware`` -* Various bugfixes introduced in middleware API introduction and migration to - formatter middleware. - - -3.13.4 ------- - -* Bugfix for formatter handling of contract creation transaction. - - - -3.13.3 ------- - -* Improved testing infrastructure. - - -3.13.2 ------- - -* Bugfix for retrieving filter changes for both new block filters and pending - transaction filters. - - -3.13.1 ------- - -* Fix mispelled ``attrdict_middleware`` (was spelled ``attrdict_middlware``). - - -3.13.0 ------- - -* New Middleware API -* Support for multiple providers -* New ``web3.soliditySha3`` -* Remove multiple functions that were never implemented from the original web3. -* Deprecated ``web3.currentProvider`` accessor. Use ``web3.provider`` now instead. -* Deprecated password prompt within ``web3.personal.newAccount``. - - -3.12.0 ------- - -* Bugfix for abi filtering to correctly handle ``constructor`` and ``fallback`` type abi entries. - -3.11.0 ------- - -* All web3 apis which accept ``address`` parameters now enforce checksums if the address *looks* like it is checksummed. -* Improvements to error messaging with when calling a contract on a node that may not be fully synced -* Bugfix for ``web3.eth.syncing`` to correctly handle ``False`` - -3.10.0 ------- - -* Web3 now returns ``web3.utils.datastructures.AttributeDict`` in places where it previously returned a normal ``dict``. -* ``web3.eth.contract`` now performs validation on the ``address`` parameter. -* Added ``web3.eth.getWork`` API - -3.9.0 ------ - -* Add validation for the ``abi`` parameter of ``eth`` -* Contract return values of ``bytes``, ``bytesXX`` and ``string`` are no longer converted to text types and will be returned in their raw byte-string format. - -3.8.1 ------ - -* Bugfix for ``eth_sign`` double hashing input. -* Removed deprecated ``DelegatedSigningManager`` -* Removed deprecate ``PrivateKeySigningManager`` - -3.8.0 ------ - -* Update pyrlp dependency to ``>=0.4.7`` -* Update eth-testrpc dependency to ``>=1.2.0`` -* Deprecate ``DelegatedSigningManager`` -* Deprecate ``PrivateKeySigningManager`` - -3.7.1 ------ - -* upstream version bump for bugfix in eth-abi-utils - -3.7.0 ------ - -* deprecate ``eth.defaultAccount`` defaulting to the coinbase account. - -3.6.2 ------ - -* Fix error message from contract factory creation. -* Use ``ethereum-utils`` for utility functions. - -3.6.1 ------ - -* Upgrade ``ethereum-abi-utils`` dependency for upstream bugfix. - -3.6.0 ------ - -* Deprecate ``Contract.code``: replaced by ``Contract.bytecode`` -* Deprecate ``Contract.code_runtime``: replaced by ``Contract.bytecode_runtime`` -* Deprecate ``abi``, ``code``, ``code_runtime`` and ``source`` as arguments for the ``Contract`` object. -* Deprecate ``source`` as a property of the ``Contract`` object -* Add ``Contract.factory()`` API. -* Deprecate the ``construct_contract_factory`` helper function. - -3.5.3 ------ - -* Bugfix for how ``requests`` library is used. Now reuses session. - -3.5.2 ------ - -* Bugfix for construction of ``request_kwargs`` within HTTPProvider - -3.5.1 ------ - -* Allow ``HTTPProvider`` to be imported from ``web3`` module. -* make ``HTTPProvider`` accessible as a property of ``web3`` instances. - -3.5.0 ------ - -* Deprecate ``web3.providers.rpc.RPCProvider`` -* Deprecate ``web3.providers.rpc.KeepAliveRPCProvider`` -* Add new ``web3.providers.rpc.HTTPProvider`` -* Remove hard dependency on gevent. - -3.4.4 ------ - -* Bugfix for ``web3.eth.getTransaction`` when the hash is unknown. - -3.4.3 ------ - -* Bugfix for event log data decoding to properly handle dynamic sized values. -* New ``web3.tester`` module to access extra RPC functionality from ``eth-testrpc`` - -3.4.2 ------ - -* Fix package so that ``eth-testrpc`` is not required. - -3.4.1 ------ - -* Force gevent<1.2.0 until this issue is fixed: https://github.com/gevent/gevent/issues/916 - -3.4.0 ------ - -* Bugfix for contract instances to respect ``web3.eth.defaultAccount`` -* Better error reporting when ABI decoding fails for contract method response. - -3.3.0 ------ - -* New ``EthereumTesterProvider`` now available. Faster test runs than ``TestRPCProvider`` -* Updated underlying eth-testrpc requirement. - -3.2.0 ------ - -* ``web3.shh`` is now implemented. -* Introduced ``KeepAliveRPCProvider`` to correctly recycle HTTP connections and use HTTP keep alive - -3.1.1 ------ - -* Bugfix for contract transaction sending not respecting the - ``web3.eth.defaultAccount`` configuration. - -3.1.0 ------ - -* New DelegatedSigningManager and PrivateKeySigningManager classes. - -3.0.2 ------ - -* Bugfix or IPCProvider not handling large JSON responses well. - -3.0.1 ------ - -* Better RPC compliance to be compatable with the Parity JSON-RPC server. - -3.0.0 ------ - -* ``Filter`` objects now support controlling the interval through which they poll - using the ``poll_interval`` property - -2.9.0 ------ - -* Bugfix generation of event topics. -* Web3.Iban now allows access to Iban address tools. - -2.8.1 ------ - -* Bugfix for ``geth.ipc`` path on linux systems. - -2.8.0 ------ - -* Changes to the ``Contract`` API: - * ``Contract.deploy()`` parameter arguments renamed to args - * ``Contract.deploy()`` now takes args and kwargs parameters to allow - constructing with keyword arguments or positional arguments. - * ``Contract.pastEvents`` now allows you to specify a ``fromBlock or - ``toBlock.`` Previously these were forced to be ``'earliest'`` and - ``web3.eth.blockNumber`` respectively. - * ``Contract.call``, ``Contract.transact`` and ``Contract.estimateGas`` are now - callable as class methods as well as instance methods. When called this - way, an address must be provided with the transaction parameter. - * ``Contract.call``, ``Contract.transact`` and ``Contract.estimateGas`` now allow - specifying an alternate address for the transaction. -* ``RPCProvider`` now supports the following constructor arguments. - * ``ssl`` for enabling SSL - * ``connection_timeout`` and ``network_timeout`` for controlling the timeouts - for requests. - -2.7.1 ------ - -* Bugfix: Fix KeyError in merge_args_and_kwargs helper fn. - -2.7.0 ------ - -* Bugfix for usage of block identifiers 'latest', 'earliest', 'pending' -* Sphinx documentation -* Non-data transactions now default to 90000 gas. -* Web3 object now has helpers set as static methods rather than being set at - initialization. -* RPCProvider now takes a ``path`` parameter to allow configuration for requests - to go to paths other than ``/``. - -2.6.0 ------ - -* TestRPCProvider no longer dumps logging output to stdout and stderr. -* Bugfix for return types of ``address[]`` -* Bugfix for event data types of ``address`` - -2.5.0 ------ - -* All transactions which contain a ``data`` element will now have their gas - automatically estimated with 100k additional buffer. This was previously - only true with transactions initiated from a ``Contract`` object. - -2.4.0 ------ - -* Contract functions can now be called using keyword arguments. - -2.3.0 ------ - -* Upstream fixes for filters -* Filter APIs ``on`` and ``pastEvents`` now callable as both instance and class methods. - -2.2.0 ------ - -* The filters that come back from the contract ``on`` and ``pastEvents`` methods - now call their callbacks with the same data format as ``web3.js``. - -2.1.1 ------ - -* Cast RPCProvider port to an integer. - -2.1.0 ------ - -* Remove all monkeypatching - -2.0.0 ------ - -* Pull in downstream updates to proper gevent usage. -* Fix ``eth_sign`` -* Bugfix with contract operations mutating the transaction object that is passed in. -* More explicit linting ignore statements. - -1.9.0 ------ - -* BugFix: fix for python3 only ``json.JSONDecodeError`` handling. - -1.8.0 ------ - -* BugFix: ``RPCProvider`` not sending a content-type header -* Bugfix: ``web3.toWei`` now returns an integer instead of a decimal.Decimal - -1.7.1 ------ - -* ``TestRPCProvider`` can now be imported directly from ``web3`` - -1.7.0 ------ - -* Add ``eth.admin`` interface. -* Bugfix: Format the return value of ``web3.eth.syncing`` -* Bugfix: IPCProvider socket interactions are now more robust. - -1.6.0 ------ - -* Downstream package upgrades for ``eth-testrpc`` and ``ethereum-tester-client`` to - handle configuration of the Homestead and DAO fork block numbers. - -1.5.0 ------ - -* Rename ``web3.contract._Contract`` to ``web3.contract.Contract`` - to expose it for static analysis and auto completion tools -* Allow passing string parameters to functions -* Automatically compute gas requirements for contract deployment and -* transactions. -* Contract Filters -* Block, Transaction, and Log filters -* ``web3.eth.txpool`` interface -* ``web3.eth.mining`` interface -* Fixes for encoding. - -1.4.0 ------ - -* Bugfix to allow address types in constructor arguments. - -1.3.0 ------ - -* Partial implementation of the ``web3.eth.contract`` interface. - -1.2.0 ------ - -* Restructure project modules to be more *flat* -* Add ability to run test suite without the *slow* tests. -* Breakup ``encoding`` utils into smaller modules. -* Basic pep8 formatting. -* Apply python naming conventions to internal APIs -* Lots of minor bugfixes. -* Removal of dead code left behind from ``1.0.0`` refactor. -* Removal of ``web3/solidity`` module. - -1.1.0 ------ - -* Add missing ``isConnected()`` method. -* Add test coverage for ``setProvider()`` - -1.0.1 ------ - -* Specify missing ``pyrlp`` and ``gevent`` dependencies - -1.0.0 ------ - -* Massive refactor to the majority of the app. - -0.1.0 ------ - -* Initial release diff --git a/docs/resources.rst b/docs/resources.rst deleted file mode 100644 index 00abc0a6d1..0000000000 --- a/docs/resources.rst +++ /dev/null @@ -1,98 +0,0 @@ -.. _resources: - - -Resources and Learning Material -=============================== - -web3.py and the Ethereum Python ecosystem have an active community of developers and educators. -Here you'll find libraries, tutorials, examples, courses and other learning material. - -.. warning :: - - Links on this page are community submissions and are not vetted by the team that maintains - web3.py. As always, DYOR (Do Your Own Research). - - -First Steps ------------ - -Resources for those brand new to Ethereum: - -- `A Developer's Guide to Ethereum, Pt. 1 `__ -- `Ethereum Python Ecosystem Tour `__ - - -Courses -------- - -- `freeCodeCamp Solidity and Python Course (2022) `__ -- `Blockchain Python Programming Tutorial (2019) `__ - - -Tutorials ---------- - -- Intro to `Ape development framework `__ -- Intro to `websockets `__ and web3.py -- Intro to `asynchronous web3.py `__ -- Intro to `threaded web3.py `__ -- Sign `typed data messages `__ (EIP 712) -- Look up offchain data via `CCIP Read `__ -- Configure and `customize web3.py `__ -- `Decode a signed transaction `__ -- Find a historical contract `revert reason `__ -- Generate a `vanity address `__ -- Similate transactions with `call state overrides `__ -- Configure web3 for `JSON-RPC fallback and MEV blocker providers `__ - - -Conference Presentations and Videos ------------------------------------ - -- `Web3.Py - Now And Near Future by Marc Garreau (2022, 15 mins) `__ -- `Python and DeFi by Curve Finance (2022, 15 mins) `__ -- `Working with MetaMask in Python by Rishab Kattimani (2022, 15 mins) `__ - - -Smart Contract Programming Languages ------------------------------------- - -- `Vyper `__ - Contract-oriented, pythonic programming language that targets EVM - - -Frameworks and Tooling ----------------------- - -- `Ape `__ - The Ethereum development framework for Python Developers, Data Scientists, and Security Professionals -- `Titanoboa `__ - A Vyper interpreter and testing framework -- `Wake `__ - A Python-based development and testing framework for Solidity -- `Brownie `__ - [No longer actively maintained] A Python-based development and testing framework for smart contracts targeting EVM - - -Libraries ---------- - -- `Web3 Ethereum DeFi `__ - Library for DeFi trading and protocols (Uniswap, PancakeSwap, Sushi, Aave, Chainlink) -- `lighter-v1-python `__ - Lighter.xyz DEX client for Python -- `uniswap-python `__ - Library lets you easily retrieve prices and make trades on all Uniswap versions. -- `pyWalletConnect `__ - WalletConnect implementation for wallets in Python -- `dydx-v3-python `__ - Python client for dYdX v3 -- `Lido Python SDK `__ - Library with which you can get all Lido validator's signatures and check their validity - - -Applications ------------- - -- `Curve Finance `__ -- `Yearn Finance `__ -- `StakeWise Oracle `__ - - -Hackathon Helpers ------------------ - -- `ape-hackathon-kit `__ - Ape project template with a web front-end (Next.js, Tailwind, RainbowKit, wagmi) -- `eth-flogger `__ - Sample web app utilizing async web3.py, Flask, SQLite, Sourcify -- `Temo `__ - Sample terminal app utilizing async web3py, Textual, Anvil -- `web3py-discord-bot `__ - Sample Discord bot utilizing websockets, ``eth_subscribe``, and discord.py -- `py-signer `__ - Demo of typed data message signing (EIP-712) with eth-account and Ape diff --git a/docs/toc.rst b/docs/toc.rst deleted file mode 100644 index 30c0180d50..0000000000 --- a/docs/toc.rst +++ /dev/null @@ -1,55 +0,0 @@ -Table of Contents ------------------ - -.. toctree:: - :maxdepth: 1 - :caption: Intro - - quickstart - overview - release_notes - -.. toctree:: - :maxdepth: 1 - :caption: Guides - - providers - web3.eth.account - transactions - web3.contract - filters - middleware - internals - ens_overview - troubleshooting - migration - -.. toctree:: - :maxdepth: 1 - :caption: API - - web3.main - web3.eth - web3.beacon - web3.net - web3.geth - web3.tracing - web3.utils - gas_price - ens - constants - -.. toctree:: - :maxdepth: 1 - :caption: Community - - resources - contributing - code_of_conduct - -Indices and tables ------------------- - -* :ref:`genindex` -* :ref:`modindex` -* :ref:`search` diff --git a/docs/transactions.rst b/docs/transactions.rst deleted file mode 100644 index b0066b29c6..0000000000 --- a/docs/transactions.rst +++ /dev/null @@ -1,196 +0,0 @@ -Transactions -============ - -There are a handful of ways to interact with transactions in web3.py. See the -:ref:`Web3.eth module ` for a full list of transaction-related methods. Note that you may also :ref:`batch requests ` that read transaction data, but not send new transactions in a batch request. - -The rest of this guide covers the decision tree for how to send a transaction. - -.. note:: - - Prefer to view this code in a Jupyter Notebook? View the repo `here `_. - -There are two methods for sending transactions using web3.py: :meth:`~web3.eth.Eth.send_transaction` and :meth:`~web3.eth.Eth.send_raw_transaction`. A brief guide: - -#. Want to sign a transaction offline or send pre-signed transactions? - - * use :meth:`sign_transaction ` + :meth:`~web3.eth.Eth.send_raw_transaction` - -#. Are you primarily using the same account for all transactions and would you prefer to save a few lines of code? - - * configure the ``build`` method for :class:`~web3.middleware.SignAndSendRawMiddlewareBuilder`, then - * use :meth:`~web3.eth.Eth.send_transaction` - -#. Otherwise: - - * load account via eth-account (:meth:`w3.eth.account.from_key(pk) `), then - * use :meth:`~web3.eth.Eth.send_transaction` - -Interacting with or deploying a contract? - -* Option 1: :meth:`~web3.contract.ContractFunction.transact` uses :meth:`~web3.eth.Eth.send_transaction` under the hood -* Option 2: :meth:`~web3.contract.ContractFunction.build_transaction` + :meth:`sign_transaction ` + :meth:`~web3.eth.Eth.send_raw_transaction` - -An example for each can be found below. - - -Chapter 0: ``w3.eth.send_transaction`` with ``eth-tester`` -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Many tutorials use ``eth-tester`` (via EthereumTesterProvider) for convenience and speed -of conveying ideas/building a proof of concept. Transactions sent by test accounts are -auto-signed. - -.. code-block:: python - - from web3 import Web3, EthereumTesterProvider - - w3 = Web3(EthereumTesterProvider()) - - # eth-tester populates accounts with test ether: - acct1 = w3.eth.accounts[0] - - some_address = "0x0000000000000000000000000000000000000000" - - # when using one of its generated test accounts, - # eth-tester signs the tx (under the hood) before sending: - tx_hash = w3.eth.send_transaction({ - "from": acct1, - "to": some_address, - "value": 123123123123123 - }) - - tx = w3.eth.get_transaction(tx_hash) - assert tx["from"] == acct1 - - -Chapter 1: ``w3.eth.send_transaction`` + signer middleware -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -The :meth:`~web3.eth.Eth.send_transaction` method is convenient and to-the-point. -If you want to continue using the pattern after graduating from ``eth-tester``, you can -utilize web3.py middleware to sign transactions from a particular account: - -.. code-block:: python - - from web3.middleware import SignAndSendRawMiddlewareBuilder - import os - - # Note: Never commit your key in your code! Use env variables instead: - pk = os.environ.get('PRIVATE_KEY') - - # Instantiate an Account object from your key: - acct2 = w3.eth.account.from_key(pk) - - # For the sake of this example, fund the new account: - w3.eth.send_transaction({ - "from": acct1, - "value": w3.to_wei(3, 'ether'), - "to": acct2.address - }) - - # Add acct2 as auto-signer: - w3.middleware_onion.inject(SignAndSendRawMiddlewareBuilder.build(acct2), layer=0) - # pk also works: w3.middleware_onion.inject(SignAndSendRawMiddlewareBuilder.build(pk), layer=0) - - # Transactions from `acct2` will then be signed, under the hood, in the middleware: - tx_hash = w3.eth.send_transaction({ - "from": acct2.address, - "value": 3333333333, - "to": some_address - }) - - tx = w3.eth.get_transaction(tx_hash) - assert tx["from"] == acct2.address - - # Optionally, you can set a default signer as well: - # w3.eth.default_account = acct2.address - # Then, if you omit a "from" key, acct2 will be used. - - -Chapter 2: ``w3.eth.send_raw_transaction`` -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -if you don't opt for the middleware, you'll need to: - -- build each transaction, -- :meth:`sign_transaction `, and -- then use :meth:`~web3.eth.Eth.send_raw_transaction`. - -.. code-block:: python - - # 1. Build a new tx - transaction = { - 'from': acct2.address, - 'to': some_address, - 'value': 1000000000, - 'nonce': w3.eth.get_transaction_count(acct2.address), - 'gas': 200000, - 'maxFeePerGas': 2000000000, - 'maxPriorityFeePerGas': 1000000000, - } - - # 2. Sign tx with a private key - signed = w3.eth.account.sign_transaction(transaction, pk) - - # 3. Send the signed transaction - tx_hash = w3.eth.send_raw_transaction(signed.raw_transaction) - tx = w3.eth.get_transaction(tx_hash) - assert tx["from"] == acct2.address - - -Chapter 3: Contract transactions -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -The same concepts apply for contract interactions, at least under the hood. - -Executing a function on a smart contract requires sending a transaction, which is typically done in one of two ways: - -- executing the :meth:`~web3.contract.ContractFunction.transact` function, or -- :meth:`~web3.contract.ContractFunction.build_transaction`, then signing and sending the raw transaction. - -.. code-block:: python - - ######################################### - #### SMOL CONTRACT FOR THIS EXAMPLE: #### - ######################################### - # // SPDX-License-Identifier: MIT - # pragma solidity 0.8.17; - # - # contract Billboard { - # string public message; - # - # constructor(string memory _message) { - # message = _message; - # } - # - # function writeBillboard(string memory _message) public { - # message = _message; - # } - # } - - # After compiling the contract, initialize the contract factory: - init_bytecode = "60806040523480156200001157600080fd5b5060..." - abi = '[{"inputs": [{"internalType": "string","name": "_message",...' - Billboard = w3.eth.contract(bytecode=init_bytecode, abi=abi) - - # Deploy a contract using `transact` + the signer middleware: - tx_hash = Billboard.constructor("gm").transact({"from": acct2.address}) - receipt = w3.eth.get_transaction_receipt(tx_hash) - deployed_addr = receipt["contractAddress"] - - # Reference the deployed contract: - billboard = w3.eth.contract(address=deployed_addr, abi=abi) - - # Manually build and sign a transaction: - unsent_billboard_tx = billboard.functions.writeBillboard("gn").build_transaction({ - "from": acct2.address, - "nonce": w3.eth.get_transaction_count(acct2.address), - }) - signed_tx = w3.eth.account.sign_transaction(unsent_billboard_tx, private_key=acct2.key) - - # Send the raw transaction: - assert billboard.functions.message().call() == "gm" - tx_hash = w3.eth.send_raw_transaction(signed_tx.raw_transaction) - w3.eth.wait_for_transaction_receipt(tx_hash) - assert billboard.functions.message().call() == "gn" diff --git a/docs/troubleshooting.rst b/docs/troubleshooting.rst deleted file mode 100644 index 98d1c9d38c..0000000000 --- a/docs/troubleshooting.rst +++ /dev/null @@ -1,478 +0,0 @@ -Troubleshooting -=============== - -.. _setup_environment: - -Set up a clean environment --------------------------- - -Many things can cause a broken environment. You might be on an unsupported version of Python. -Another package might be installed that has a name or version conflict. -Often, the best way to guarantee a correct environment is with ``virtualenv``, like: - -.. code-block:: shell - - # Install pip if it is not available: - $ which pip || curl https://bootstrap.pypa.io/get-pip.py | python - - # Install virtualenv if it is not available: - $ which virtualenv || pip install --upgrade virtualenv - - # *If* the above command displays an error, you can try installing as root: - $ sudo pip install virtualenv - - # Create a virtual environment: - $ virtualenv -p python3 ~/.venv-py3 - - # Activate your new virtual environment: - $ source ~/.venv-py3/bin/activate - - # With virtualenv active, make sure you have the latest packaging tools - $ pip install --upgrade pip setuptools - - # Now we can install web3.py... - $ pip install --upgrade web3 - -.. NOTE:: Remember that each new terminal session requires you to reactivate your virtualenv, like: - ``$ source ~/.venv-py3/bin/activate`` - - -.. _instance_troubleshooting: - -Why can't I use a particular function? --------------------------------------- - -Note that a web3.py instance must be configured before you can use most of its capabilities. -One symptom of not configuring the instance first is an error that looks something like this: -``AttributeError: type object 'Web3' has no attribute 'eth'``. - -To properly configure your web3.py instance, specify which provider you're using to connect to the -Ethereum network. An example configuration, if you're connecting to a locally run node, might be: - -.. code-block:: python - - >>> from web3 import Web3 - >>> w3 = Web3(Web3.HTTPProvider('http://localhost:8545')) - - # now `w3` is available to use: - >>> w3.is_connected() - True - >>> w3.eth.send_transaction(...) - -Refer to the :ref:`providers` documentation for further help with configuration. - - -.. _use_metamask_accounts: - -Why isn't my web3 instance connecting to the network? ------------------------------------------------------ -You can check that your instance is connected via the ``is_connected`` method: - -.. code-block:: python - - >>> w3.is_connected() - False - -There are a variety of explanations for why you may see ``False`` here. To help you -diagnose the problem, ``is_connected`` has an optional ``show_traceback`` argument: - -.. code-block:: python - - >>> w3.is_connected(show_traceback=True) - # this is an example, your error may differ - - # - ProviderConnectionError: Problem connecting to provider with error: : cannot connect to IPC socket at path: None - -If you're running a local node, such as Geth, double-check that you've indeed started -the binary and that you've started it from the intended directory - particularly if -you've specified a relative path to its ipc file. - -If that does not address your issue, it's probable that you still have a -Provider configuration issue. There are several options for configuring -a Provider, detailed :ref:`here`. - -.. _faucets: - -How do I get ether for my test network? ---------------------------------------- - -Test networks usually have something called a "faucet" to -help get test ether to people who want to use it. The faucet -simply sends you test ether when you visit a web page, or ping a chat bot, etc. - -Each test network has its own version of test ether, so each one must maintain -its own faucet. Faucet mechanisms tend to come and go, so a web search for -"ethereum testnet faucet" should give you the most up-to-date options. - -How do I use my MetaMask accounts from web3.py? ------------------------------------------------ - -Export your private key from MetaMask, and use -the local private key tools in web3.py to sign and send transactions. - -See `how to export your private key -`_ -and :ref:`eth-account`. - -.. _account_troubleshooting: - -How do I create an account? ---------------------------- - -In general, your options for accounts are: - -- Import a keystore file for an account and :ref:`extract the private key`. -- Create an account via the :ref:`eth-account ` API, e.g., ``new_acct = w3.eth.account.create()``. -- Use an external service (e.g. Metamask) to generate a new account, then securely import its private key. - -.. Warning:: Don't store real value in an account until you are familiar with security best practices. - If you lose your private key, you lose your account! - -Why doesn't my transaction work on another network? ---------------------------------------------------- - -web3.py is an Ethereum-specific library, which defaults to -`"type 2" EIP-1559 transactions `_ -as of the London network upgrade. Some chains (including Ethereum L2s) do not support -the same transaction types. - -If your chain doesn't support this transaction type, you likely need to create a -"legacy" transaction, i.e., include ``gasPrice``, but not ``type``, ``maxFeePerGas``, -or ``maxPriorityFeePerGas`` in your transaction body. - -If that doesn't resolve your issue, open a GitHub issue or reach out for help in the community -`Discord`_ server if you're having trouble with an Ethereum-ecosystem chain. If you're -debugging in an alternative ecosystem, please find another appropriate forum to raise -your question. - -.. _Discord: https://discord.gg/GHryRvPB84 - - -How do I conform to ABI types? ------------------------------- - -The web3 library follows the following conventions: - -Bytes vs Text -~~~~~~~~~~~~~ - -* The term *bytes* is used to refer to the binary representation of a string. -* The term *text* is used to refer to unicode representations of strings. - -Hexadecimal Representations -~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -* All hexadecimal values will be returned as text. -* All hexadecimal values will be ``0x`` prefixed. - -Ethereum Addresses -~~~~~~~~~~~~~~~~~~ - -All addresses must be supplied in one of three ways: - -* A 20-byte hexadecimal that is checksummed using the `EIP-55 - `_ spec. -* A 20-byte binary address (python bytes type). -* While connected to an Ethereum Name Service (ENS) supported chain, an ENS name - (often in the form ``myname.eth``). - -Disabling Strict Bytes Type Checking -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -There is a boolean flag on the ``Web3`` class and the ``ENS`` class that will disable -strict bytes type checking. This allows bytes values of Python strings and allows byte -strings less than the specified byte size, appropriately padding values that need -padding. To disable stricter checks, set the ``w3.strict_bytes_type_checking`` -(or ``ns.strict_bytes_type_checking``) flag to ``False``. This will no longer cause -the ``Web3`` / ``ENS`` instance to raise an error if a Python string is passed in -without a "0x" prefix. It will also render valid byte strings or hex strings -that are below the exact number of bytes specified by the ABI type by padding the value -appropriately, according to the ABI type. See the :ref:`disable-strict-byte-check` -section for an example on using the flag and more details. - -.. note:: - If a standalone ``ENS`` instance is instantiated from a ``Web3`` instance, i.e. - ``ns = ENS.from_web3(w3)``, it will inherit the value of the - ``w3.strict_bytes_type_checking`` flag from the ``Web3`` instance at the time of - instantiation. - - Also of note, all modules on the ``Web3`` class will inherit the value of this flag, - since all modules use the parent ``w3`` object reference under the hood. This means - that ``w3.eth.w3.strict_bytes_type_checking`` will always have the same value as - ``w3.strict_bytes_type_checking``. - - -For more details on the ABI -specification, refer to the -`Solidity ABI Spec `_. - - -Types by Example -~~~~~~~~~~~~~~~~ - -Let's use a contrived contract to demonstrate input types in web3.py: - -.. code-block:: none - - contract ManyTypes { - // booleans - bool public b; - - // unsigned ints - uint8 public u8; - uint256 public u256; - uint256[] public u256s; - - // signed ints - int8 public i8; - - // addresses - address public addr; - address[] public addrs; - - // bytes - bytes1 public b1; - - // structs - struct S { - address sa; - bytes32 sb; - } - mapping(address => S) addrStructs; - - function updateBool(bool x) public { b = x; } - function updateUint8(uint8 x) public { u8 = x; } - function updateUint256(uint256 x) public { u256 = x; } - function updateUintArray(uint256[] memory x) public { u256s = x; } - function updateInt8(int8 x) public { i8 = x; } - function updateAddr(address x) public { addr = x; } - function updateBytes1(bytes1 x) public { b1 = x; } - function updateMapping(S memory x) public { addrStructs[x.sa] = x; } - } - -Booleans -```````` - -.. code-block:: python - - contract_instance.functions.updateBool(True).transact() - -Unsigned Integers -````````````````` - -.. code-block:: python - - contract_instance.functions.updateUint8(255).transact() - contract_instance.functions.updateUint256(2**256 - 1).transact() - contract_instance.functions.updateUintArray([1, 2, 3]).transact() - -Signed Integers -``````````````` - -.. code-block:: python - - contract_instance.functions.updateInt8(-128).transact() - -Addresses -````````` - -.. code-block:: python - - contract_instance.functions.updateAddr("0x0000000000000000000000000000000000000000").transact() - -Bytes -````` - -.. code-block:: python - - contract_instance.functions.updateBytes1(HexBytes(255)).transact() - -Structs -``````` - -.. code-block:: python - - contract_instance.functions.updateMapping({"sa": "0x0000000000000000000000000000000000000000", "sb": HexBytes(123)}).transact() - - -How can I optimize Ethereum JSON-RPC API access? ------------------------------------------------- - -Your Ethereum node JSON-RPC API might be slow when fetching multiple and large requests, especially when running batch jobs. Here are some tips for how to speed up your web3.py application. - -- Run your client locally, e.g., `Go Ethereum `_ or `TurboGeth `_. The network latency and speed are the major limiting factors for fast API access. - -- Use IPC communication instead of HTTP/WebSockets. See :ref:`choosing_provider`. - -- Use an optimised JSON decoder. A future iteration of web3.py may change the default decoder or provide an API to configure one, but for now, you may patch the provider class to use `ujson `_. - -.. code-block:: python - - """JSON-RPC decoding optimised for web3.py""" - - from typing import cast - - import ujson - - from web3.providers import JSONBaseProvider - from web3.types import RPCResponse - - - def _fast_decode_rpc_response(raw_response: bytes) -> RPCResponse: - decoded = ujson.loads(raw_response) - return cast(RPCResponse, decoded) - - - def patch_provider(provider: JSONBaseProvider): - """Monkey-patch web3.py provider for faster JSON decoding. - - Call this on your provider after construction. - - This greatly improves JSON-RPC API access speeds, when fetching - multiple and large responses. - """ - provider.decode_rpc_response = _fast_decode_rpc_response - -Why am I getting Visual C++ or Cython not installed error? ----------------------------------------------------------- - -Some Windows users that do not have Microsoft Visual C++ version 14.0 or greater installed may see an error message -when installing web3.py as shown below: - -.. code-block:: shell - - error: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": https://visualstudio.microsoft.com/visual-cpp-build-tools/ - - -To fix this error, download and install Microsoft Visual C++ from here : - -`Microsoft Visual C++ Redistributable for Visual Studio `_ - -- `x64 Visual C++ `_ - -- `x86 Visual C++ `_ - -- `ARM64 Visual C++ `_ - - -How do I convert currency denominations? ----------------------------------------- - -The following denominations are supported: - -+--------------+---------------------------------+ -| denomination | amount in wei | -+--------------+---------------------------------+ -| wei | 1 | -+--------------+---------------------------------+ -| kwei | 1000 | -+--------------+---------------------------------+ -| babbage | 1000 | -+--------------+---------------------------------+ -| femtoether | 1000 | -+--------------+---------------------------------+ -| mwei | 1000000 | -+--------------+---------------------------------+ -| lovelace | 1000000 | -+--------------+---------------------------------+ -| picoether | 1000000 | -+--------------+---------------------------------+ -| gwei | 1000000000 | -+--------------+---------------------------------+ -| shannon | 1000000000 | -+--------------+---------------------------------+ -| nanoether | 1000000000 | -+--------------+---------------------------------+ -| nano | 1000000000 | -+--------------+---------------------------------+ -| szabo | 1000000000000 | -+--------------+---------------------------------+ -| microether | 1000000000000 | -+--------------+---------------------------------+ -| micro | 1000000000000 | -+--------------+---------------------------------+ -| finney | 1000000000000000 | -+--------------+---------------------------------+ -| milliether | 1000000000000000 | -+--------------+---------------------------------+ -| milli | 1000000000000000 | -+--------------+---------------------------------+ -| ether | 1000000000000000000 | -+--------------+---------------------------------+ -| kether | 1000000000000000000000 | -+--------------+---------------------------------+ -| grand | 1000000000000000000000 | -+--------------+---------------------------------+ -| mether | 1000000000000000000000000 | -+--------------+---------------------------------+ -| gether | 1000000000000000000000000000 | -+--------------+---------------------------------+ -| tether | 1000000000000000000000000000000 | -+--------------+---------------------------------+ - -You can use the :meth:`~web3.from_wei` method -to convert a balance to ether (or another denomination). - -.. code-block:: python - - >>> web3.from_wei(3841357360894980500000001, 'ether') - Decimal('3841357.360894980500000001') - -To convert back to wei, you can use the inverse function, :meth:`~web3.to_wei`. -Note that Python's default floating point precision is insufficient for this -use case, so it's necessary to cast the value to a -`Decimal `_ if it isn't already. - -.. code-block:: python - - >>> from decimal import Decimal - >>> web3.to_wei(Decimal('3841357.360894980500000001'), 'ether') - 3841357360894980500000001 - -Best practice: If you need to work with multiple currency denominations, default -to wei. A typical workflow may require a conversion from some denomination to -wei, then from wei to whatever you need. - -.. code-block:: python - - >>> web3.to_wei(Decimal('0.000000005'), 'ether') - 5000000000 - >>> web3.from_wei(5000000000, 'gwei') - Decimal('5') - - -How do I adjust the log levels? -------------------------------- - -web3.py internally uses `Python logging subsystem `_. - -If you want to run your application logging in debug mode, below is an example of how to make some JSON-RPC traffic quieter. - -.. code-block:: python - - import logging - import coloredlogs - - def setup_logging(log_level=logging.DEBUG): - """Setup root logger and quiet some levels.""" - logger = logging.getLogger() - - # Set log format to display the logger name to hunt down verbose logging modules - fmt = "%(name)-25s %(levelname)-8s %(message)s" - - # Use colored logging output for console with the coloredlogs package - # https://pypi.org/project/coloredlogs/ - coloredlogs.install(level=log_level, fmt=fmt, logger=logger) - - # Disable logging of JSON-RPC requests and replies - logging.getLogger("web3.RequestManager").setLevel(logging.WARNING) - logging.getLogger("web3.providers.HTTPProvider").setLevel(logging.WARNING) - # logging.getLogger("web3.RequestManager").propagate = False - - # Disable all internal debug logging of requests and urllib3 - # E.g. HTTP traffic - logging.getLogger("requests").setLevel(logging.WARNING) - logging.getLogger("urllib3").setLevel(logging.WARNING) - - return logger diff --git a/docs/web3.beacon.rst b/docs/web3.beacon.rst deleted file mode 100644 index 6520df8e42..0000000000 --- a/docs/web3.beacon.rst +++ /dev/null @@ -1,559 +0,0 @@ -Beacon API -========== - -.. warning:: This API Is experimental. Client support is incomplete and the API itself is still evolving. - -To use this API, you'll need a beacon node running locally or remotely. To set that up, refer to the documentation of your specific client. - -Once you have a running beacon node, import and configure your beacon instance: - -.. code-block:: python - - >>> from web3.beacon import Beacon - >>> beacon = Beacon("http://localhost:5051") - -Methods -------- - -.. py:method:: Beacon.get_genesis() - - .. code-block:: python - - >>> beacon.get_genesis() - { - 'data': { - 'genesis_time': '1605700807', - 'genesis_validators_root': '0x9436e8a630e3162b7ed4f449b12b8a5a368a4b95bc46b941ae65c11613bfa4c1', - 'genesis_fork_version': '0x00002009' - } - } - -.. py:method:: Beacon.get_hash_root(state_id="head") - - .. code-block:: python - - >>> beacon.get_hash_root() - { - "data": { - "root":"0xbb399fda70617a6f198b3d9f1c1cdbd70077677231b84f34e58568c9dc903558" - } - } - -.. py:method:: Beacon.get_fork_data(state_id="head") - - .. code-block:: python - - >>> beacon.get_fork_data() - { - 'data': { - 'previous_version': '0x00002009', - 'current_version': '0x00002009', - 'epoch': '0' - } - } - -.. py:method:: Beacon.get_finality_checkpoint(state_id="head") - - .. code-block:: python - - >>> beacon.get_finality_checkpoint() - { - 'data': { - 'previous_justified': { - 'epoch': '5024', - 'root': '0x499ba555e8e8be639dd84be1be6d54409738facefc662f37d97065aa91a1a8d4' - }, - 'current_justified': { - 'epoch': '5025', - 'root': '0x34e8a230f11536ab2ec56a0956e1f3b3fd703861f96d4695877eaa48fbacc241' - }, - 'finalized': { - 'epoch': '5024', - 'root': '0x499ba555e8e8be639dd84be1be6d54409738facefc662f37d97065aa91a1a8d4' - } - } - } - -.. py:method:: Beacon.get_validators(state_id="head") - - .. code-block:: python - - >>> beacon.get_validators() - { - 'data': [ - { - 'index': '110280', - 'balance': '32000000000', - 'status': 'pending_queued', - 'validator': { - 'pubkey': '0x99d37d1f7dd15859995330f75c158346f86d298e2ffeedfbf1b38dcf3df89a7dbd1b34815f3bcd1b2a5588592a35b783', - 'withdrawal_credentials': '0x00f338cfdb0c22bb85beed9042bd19fff58ad6421c8a833f8bc902b7cca06f5f', - 'effective_balance': '32000000000', - 'slashed': False, - 'activation_eligibility_epoch': '5029', - 'activation_epoch': '18446744073709551615', - 'exit_epoch': '18446744073709551615', - 'withdrawable_epoch': '18446744073709551615' - } - }, - ... - ] - } - -.. py:method:: Beacon.get_validator(validator_id, state_id="head") - - .. code-block:: python - - >>> beacon.get_validator(110280) - { - 'data': { - 'index': '110280', - 'balance': '32000000000', - 'status': 'pending_queued', - 'validator': { - 'pubkey': '0x99d37d1f7dd15859995330f75c158346f86d298e2ffeedfbf1b38dcf3df89a7dbd1b34815f3bcd1b2a5588592a35b783', - 'withdrawal_credentials': '0x00f338cfdb0c22bb85beed9042bd19fff58ad6421c8a833f8bc902b7cca06f5f', - 'effective_balance': '32000000000', - 'slashed': False, - 'activation_eligibility_epoch': '5029', - 'activation_epoch': '18446744073709551615', - 'exit_epoch': '18446744073709551615', - 'withdrawable_epoch': '18446744073709551615' - } - } - } - -.. py:method:: Beacon.get_validator_balances(state_id="head") - - .. code-block:: python - - >>> beacon.get_validator_balances() - { - 'data': [ - { - 'index': '110278', - 'balance': '32000000000' - }, - ... - ] - } - -.. py:method:: Beacon.get_epoch_committees(state_id="head") - - .. code-block:: python - - >>> beacon.get_epoch_committees() - { - 'data': [ - { - 'slot': '162367', - 'index': '25', - 'validators': ['50233', '36829', '84635', ...], - }, - ... - ] - } - -.. py:method:: Beacon.get_block_headers() - - .. code-block:: python - - >>> beacon.get_block_headers() - { - 'data': [ - { - 'root': '0xa3873e7b1e0bcc7c59013340cfea59dff16e42e79825e7b8ab6c243dbafd4fe0', - 'canonical': True, - 'header': { - 'message': { - 'slot': '163587', - 'proposer_index': '69198', - 'parent_root': '0xc32558881dbb791ef045c48e3709a0978dc445abee4ae34d30df600eb5fbbb3d', - 'state_root': '0x4dc0a72959803a84ee0231160b05dda76a91b8f8b77220b4cfc7db160840b8a8', - 'body_root': '0xa3873e7b1e0bcc7c59013340cfea59dff16e42e79825e7b8ab6c243dbafd4fe0' - }, - 'signature': '0x87b549448d36e5e8b1783944b5511a05f34bb78ad3fcbf71a1adb346eed363d46e50d51ac53cd23bd03d0107d064e05913a6ef10f465f9171aba3b2b8a7a4d621c9e18d5f148813295a2d5aa5053029ccbd88cec72130833de2b4b7addf7faca' - } - } - ] - } - -.. py:method:: Beacon.get_block_header(block_id) - - .. code-block:: python - - >>> beacon.get_block_header(1) - { - 'data': { - root': '0x30c04689dd4f6cd4d56eb78f72727d2d16d8b6346724e4a88f546875f11b750d', - 'canonical': True, - 'header': { - 'message': { - 'slot': '1', - 'proposer_index': '61090', - 'parent_root': '0x6a89af5df908893eedbed10ba4c13fc13d5653ce57db637e3bfded73a987bb87', - 'state_root': '0x7773ed5a7e944c6238cd0a5c32170663ef2be9efc594fb43ad0f07ecf4c09d2b', - 'body_root': '0x30c04689dd4f6cd4d56eb78f72727d2d16d8b6346724e4a88f546875f11b750d' - }, - 'signature': '0xa30d70b3e62ff776fe97f7f8b3472194af66849238a958880510e698ec3b8a470916680b1a82f9d4753c023153fbe6db10c464ac532c1c9c8919adb242b05ef7152ba3e6cd08b730eac2154b9802203ead6079c8dfb87f1e900595e6c00b4a9a' - } - } - } - -.. py:method:: Beacon.get_block(block_id) - - .. code-block:: python - - >>> beacon.get_block(1) - { - 'data': { - 'message': { - 'slot': '1', - 'proposer_index': '61090', - 'parent_root': '0x6a89af5df908893eedbed10ba4c13fc13d5653ce57db637e3bfded73a987bb87', - 'state_root': '0x7773ed5a7e944c6238cd0a5c32170663ef2be9efc594fb43ad0f07ecf4c09d2b', - 'body': { - 'randao_reveal': '0x8e245a52a0a680fcfe789013e123880c321f237de10cad108dc55dd47290d7cfe50cdaa003c6f783405efdac48cef44e152493abba40d9f9815a060dd6151cb0635906c9e3c1ad4859cada73ccd2d6b8747e4aeeada7d75d454bcc8672afa813', - 'eth1_data': { - 'deposit_root': '0x4e910ac762815c13e316e72506141f5b6b441d58af8e0a049cd3341c25728752', - 'deposit_count': '100596', - 'block_hash': '0x89cb78044843805fb4dab8abd743fc96c2b8e955c58f9b7224d468d85ef57130' - }, - 'graffiti': '0x74656b752f76302e31322e31342b34342d673863656562663600000000000000', - 'proposer_slashings': [], - 'attester_slashings': [], - 'attestations': [ - { - 'aggregation_bits': '0x0080020004000000008208000102000905', - 'data': { - 'slot': '0', - 'index': '7', - 'beacon_block_root': '0x6a89af5df908893eedbed10ba4c13fc13d5653ce57db637e3bfded73a987bb87', - 'source': { - 'epoch': '0', - 'root': '0x0000000000000000000000000000000000000000000000000000000000000000' - }, - 'target': { - 'epoch': '0', - 'root': '0x6a89af5df908893eedbed10ba4c13fc13d5653ce57db637e3bfded73a987bb87' - } - }, - 'signature': '0x967dd2946358db7e426ed19d4576bc75123520ef6a489ca50002222070ee4611f9cef394e5e3071236a93b825f18a4ad07f1d5a1405e6c984f1d71e03f535d13a2156d6ba22cb0c2b148df23a7b8a7293315d6e74b9a26b64283e8393f2ad4c5' - } - ], - 'deposits': [], - 'voluntary_exits': [] - } - }, - 'signature': '0xa30d70b3e62ff776fe97f7f8b3472194af66849238a958880510e698ec3b8a470916680b1a82f9d4753c023153fbe6db10c464ac532c1c9c8919adb242b05ef7152ba3e6cd08b730eac2154b9802203ead6079c8dfb87f1e900595e6c00b4a9a' - } - } - -.. py:method:: Beacon.get_block_root(block_id) - - .. code-block:: python - - >>> beacon.get_block_root(1) - { - 'data': { - 'root': '0x30c04689dd4f6cd4d56eb78f72727d2d16d8b6346724e4a88f546875f11b750d' - } - } - -.. py:method:: Beacon.get_block_attestations(block_id) - - .. code-block:: python - - >>> beacon.get_block_attestations(1) - { - 'data': [ - { - 'aggregation_bits': '0x0080020004000000008208000102000905', - 'data': { - 'slot': '0', - 'index': '7', - 'beacon_block_root': '0x6a89af5df908893eedbed10ba4c13fc13d5653ce57db637e3bfded73a987bb87', - 'source': { - 'epoch': '0', - 'root': '0x0000000000000000000000000000000000000000000000000000000000000000' - }, - 'target': { - 'epoch': '0', - 'root': '0x6a89af5df908893eedbed10ba4c13fc13d5653ce57db637e3bfded73a987bb87' - } - }, - 'signature': '0x967dd2946358db7e426ed19d4576bc75123520ef6a489ca50002222070ee4611f9cef394e5e3071236a93b825f18a4ad07f1d5a1405e6c984f1d71e03f535d13a2156d6ba22cb0c2b148df23a7b8a7293315d6e74b9a26b64283e8393f2ad4c5' - }, - ... - ] - } - -.. py:method:: Beacon.get_attestations() - - .. code-block:: python - - >>> beacon.get_attestations() - {'data': []} - - -.. py:method:: Beacon.get_attester_slashings() - - .. code-block:: python - - >>> beacon.get_attester_slashings() - {'data': []} - -.. py:method:: Beacon.get_proposer_slashings() - - .. code-block:: python - - >>> beacon.get_proposer_slashings() - {'data': []} - -.. py:method:: Beacon.get_voluntary_exits() - - .. code-block:: python - - >>> beacon.get_voluntary_exits() - {'data': []} - - -.. py:method:: Beacon.get_fork_schedule() - - .. code-block:: python - - >>> beacon.get_fork_schedule() - { - 'data': [ - { - 'previous_version': '0x00002009', - 'current_version': '0x00002009', - 'epoch': '0' - } - ] - } - -.. py:method:: Beacon.get_spec() - - .. code-block:: python - - >>> beacon.get_spec() - { - 'data': { - 'DEPOSIT_CONTRACT_ADDRESS': '0x8c5fecdC472E27Bc447696F431E425D02dd46a8c', - 'MIN_ATTESTATION_INCLUSION_DELAY': '1', - 'SLOTS_PER_EPOCH': '32', - 'SHUFFLE_ROUND_COUNT': '90', - 'MAX_EFFECTIVE_BALANCE': '32000000000', - 'DOMAIN_BEACON_PROPOSER': '0x00000000', - 'MAX_ATTESTER_SLASHINGS': '2', - 'DOMAIN_SELECTION_PROOF': '0x05000000', - ... - } - } - -.. py:method:: Beacon.get_deposit_contract() - - .. code-block:: python - - >>> beacon.get_deposit_contract() - { - 'data': { - 'chain_id': '5', - 'address': '0x8c5fecdC472E27Bc447696F431E425D02dd46a8c' - } - } - -.. py:method:: Beacon.get_beacon_state(state_id="head") - - .. code-block:: python - - >>> beacon.get_beacon_state() - { - 'data': { - 'genesis_time': '1', - 'genesis_validators_root': '0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2', - 'slot': '1', - 'fork': { - 'previous_version': '0x00000000', - 'current_version': '0x00000000', - 'epoch': '1' - }, - 'latest_block_header': { - 'slot': '1', - 'proposer_index': '1', - 'parent_root': '0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2', - 'state_root': '0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2', - 'body_root': '0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2' - }, - 'block_roots': ['0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2'], - 'state_roots': ['0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2'], - 'historical_roots': ['0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2'], - 'eth1_data': { - 'deposit_root': '0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2', - 'deposit_count': '1', - 'block_hash': '0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2' - }, - 'eth1_data_votes': [...], - 'eth1_deposit_index': '1', - 'validators': [...], - 'balances': [...], - 'randao_mixes': [...], - 'slashings': [...], - 'previous_epoch_attestations': [...], - 'current_epoch_attestations': [...], - 'justification_bits': '0x0f', - 'previous_justified_checkpoint': { - 'epoch': '5736', - 'root': '0xec7ef54f1fd81bada8170dd0cb6be8216f8ee2f445e6936f95f5c6894a4a3b38' - }, - 'current_justified_checkpoint': { - 'epoch': '5737', - 'root': '0x781f0166e34c361ce2c88070c1389145abba2836edcb446338a2ca2b0054826e' - }, - 'finalized_checkpoint': { - 'epoch': '5736', - 'root': '0xec7ef54f1fd81bada8170dd0cb6be8216f8ee2f445e6936f95f5c6894a4a3b38' - } - } - } - -.. py:method:: Beacon.get_beacon_heads() - - .. code-block:: python - - >>> beacon.get_beacon_heads() - { - 'data': [ - { - 'slot': '221600', - 'root': '0x9987754077fe6100a60c75d81a51b1ef457d019404d1546a66f4f5d6c23fae45' - } - ] - } - -.. py:method:: Beacon.get_blob_sidecars(block_id, indices=[]) - - .. code-block:: python - - >>> beacon.get_blob_sidecars(1, indices=[1]) - { - "data": [ - { - "index": "1", - "blob": ..., # ommitted - "kzg_commitment": "0x93247f2209abcacf57b75a51dafae777f9dd38bc7053d1af526f220a7489a6d3a2753e5f3e8b1cfe39b56f43611df74a", - "kzg_proof": "0x7FB0A12D11Ffe8A48c2fF80dCA17adbCC1da5F6aADaAEF2b338717dcDEECf6DaB9FD7C4e4265CfBc097cD31dCB19E836", - "signed_block_header": { - "message": { - "slot": "1", - "proposer_index": "1", - "parent_root": "0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2", - "state_root": "0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2", - "body_root": "0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2" - }, - "signature": "0x1b66ac1fb663c9bc59509846d6ec05345bd908eda73e670af888da41af171505cc411d61252fb6cb3fa0017b679f8bb2305b26a285fa2737f175668d0dff91cc1b66ac1fb663c9bc59509846d6ec05345bd908eda73e670af888da41af171505" - }, - "kzg_commitment_inclusion_proof": [ - "0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2", - "0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2", - "0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2", - "0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2", - "0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2", - "0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2", - "0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2", - "0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2", - "0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2", - "0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2", - "0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2", - "0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2", - "0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2", - "0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2", - "0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2", - "0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2", - "0xcf8e0d4e9587369b2301d0790347320302cc0943d5a1884560367e8208d920f2" - ] - } - ] - } - -.. py:method:: Beacon.get_node_identity() - - .. code-block:: python - - >>> beacon.get_node_identity() - { - 'data': { - 'peer_id': '16Uiu2HAmLZ1CYVFKpa3wwn4cnknZqosum8HX3GHDhUpEULQc9ixE', - 'enr': 'enr:-KG4QCIp6eCZ6hG_fd93qsw12qmbfsl2rUTfQvwVP4FOTlWeNXYo0Gg9y3WVYIdF6FQC6R0E8CbK0Ywq_6TKMx1BpGlAhGV0aDKQOwiHlQAAIAn__________4JpZIJ2NIJpcIR_AAABiXNlY3AyNTZrMaEDdVT4g1gw86BfbrtLCq2fRBlG0AnMxsXtAQgA327S5FeDdGNwgiMog3VkcIIjKA', - 'p2p_addresses': ['/ip4/127.0.0.1/tcp/9000/p2p/16Uiu2HAmLZ1CYVFKpa3wwn4cnknZqosum8HX3GHDhUpEULQc9ixE'], - 'discovery_addresses': ['/ip4/127.0.0.1/udp/9000/p2p/16Uiu2HAmLZ1CYVFKpa3wwn4cnknZqosum8HX3GHDhUpEULQc9ixE'], - 'metadata': {'seq_number': '0', 'attnets': '0x0000000000000000'} - } - } - -.. py:method:: Beacon.get_peers() - - .. code-block:: python - - >>> beacon.get_peers() - { - 'data': [ - { - 'peer_id': '16Uiu2HAkw1yVqF3RtMCBHMbkLZbNhfGcTUdD6Uo4X3wfzPhGVnqv', - 'address': '/ip4/3.127.23.51/tcp/9000', - 'state': 'connected', - 'direction': 'outbound' - }, - { - 'peer_id': '16Uiu2HAmEJHiCzgS8GwiEYLyM3d148mzvZ9iZzsz8yqayWVPANMG', - 'address': '/ip4/3.88.7.240/tcp/9000', - 'state': 'connected', - 'direction': 'outbound' - } - ] - } - -.. py:method:: Beacon.get_peer(peer_id) - - .. code-block:: python - - >>> beacon.get_peer('16Uiu2HAkw1yVqF3RtMCBHMbkLZbNhfGcTUdD6Uo4X3wfzPhGVnqv') - { - 'data': { - 'peer_id': '16Uiu2HAkw1yVqF3RtMCBHMbkLZbNhfGcTUdD6Uo4X3wfzPhGVnqv', - 'address': '/ip4/3.127.23.51/tcp/9000', - 'state': 'connected', - 'direction': 'outbound' - } - } - -.. py:method:: Beacon.get_health() - - .. code-block:: python - - >>> beacon.get_health() - 200 - -.. py:method:: Beacon.get_version() - - .. code-block:: python - - >>> beacon.get_version() - { - 'data': { - 'version': 'teku/v20.12.0+9-g9392008/osx-x86_64/adoptopenjdk-java-15' - } - } - -.. py:method:: Beacon.get_syncing() - - .. code-block:: python - - >>> beacon.get_syncing() - { - 'data': { - 'head_slot': '222270', - 'sync_distance': '190861' - } - } diff --git a/docs/web3.contract.rst b/docs/web3.contract.rst deleted file mode 100644 index b3a936cc6b..0000000000 --- a/docs/web3.contract.rst +++ /dev/null @@ -1,1673 +0,0 @@ -.. _contracts: - -Contracts -========= - -.. py:module:: web3.contract - -Smart contracts are programs deployed to the Ethereum network. See the -`ethereum.org docs `_ -for a proper introduction. - -Interacting with deployed contracts ------------------------------------ - -In order to use an existing contract, you'll need its deployed address and its ABI. -Both can be found using block explorers, like Etherscan. Once you instantiate a contract -instance, you can read data and execute transactions. - -.. code-block:: python - - # Configure w3, e.g., w3 = Web3(...) - address = '0x1f9840a85d5aF5bf1D1762F925BDADdC4201F988' - abi = '[{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"minter_","type":"address"},...' - contract_instance = w3.eth.contract(address=address, abi=abi) - - # read state: - contract_instance.functions.storedValue().call() - # 42 - - # update state: - tx_hash = contract_instance.functions.updateValue(43).transact() - -.. _contract_example: - -Contract Deployment Example ---------------------------- - -To run this example, you will need to install a few extra features: - -- The sandbox node provided by eth-tester. You can install it with: - -.. code-block:: bash - - $ pip install -U "web3[tester]" - -- ``py-solc-x``. This is the supported route to installing the solidity compiler ``solc``. You can install it with: - -.. code-block:: bash - - $ pip install py-solc-x - -After ``py-solc-x`` is installed, you will need to install a version of ``solc``. You can install the latest version via a new REPL with: - -.. code-block:: python - - >>> from solcx import install_solc - >>> install_solc(version='latest') - -You should now be set up to compile and deploy a contract. - -The following example runs through these steps: - -#. Compile Solidity contract into bytecode and an ABI -#. Initialize a Contract instance -#. Deploy the contract using the Contract instance to initiate a transaction -#. Interact with the contract functions using the Contract instance - -.. code-block:: python - - >>> from web3 import Web3 - >>> from solcx import compile_source - - # Solidity source code - >>> compiled_sol = compile_source( - ... ''' - ... pragma solidity >0.5.0; - ... - ... contract Greeter { - ... string public greeting; - ... - ... constructor() public { - ... greeting = 'Hello'; - ... } - ... - ... function setGreeting(string memory _greeting) public { - ... greeting = _greeting; - ... } - ... - ... function greet() view public returns (string memory) { - ... return greeting; - ... } - ... } - ... ''', - ... output_values=['abi', 'bin'] - ... ) - - # retrieve the contract interface - >>> contract_id, contract_interface = compiled_sol.popitem() - - # get bytecode / bin - >>> bytecode = contract_interface['bin'] - - # get abi - >>> abi = contract_interface['abi'] - - # web3.py instance - >>> w3 = Web3(Web3.EthereumTesterProvider()) - - # set pre-funded account as sender - >>> w3.eth.default_account = w3.eth.accounts[0] - - >>> Greeter = w3.eth.contract(abi=abi, bytecode=bytecode) - - # Submit the transaction that deploys the contract - >>> tx_hash = Greeter.constructor().transact() - - # Wait for the transaction to be mined, and get the transaction receipt - >>> tx_receipt = w3.eth.wait_for_transaction_receipt(tx_hash) - - >>> greeter = w3.eth.contract( - ... address=tx_receipt.contractAddress, - ... abi=abi - ... ) - - >>> greeter.functions.greet().call() - 'Hello' - - >>> tx_hash = greeter.functions.setGreeting('Nihao').transact() - >>> tx_receipt = w3.eth.wait_for_transaction_receipt(tx_hash) - >>> greeter.functions.greet().call() - 'Nihao' - - -Contract Factories ------------------- - -These factories are not intended to be initialized directly. -Instead, create contract objects using the :meth:`w3.eth.contract() ` -method. By default, the contract factory is :class:`Contract`. - -.. py:class:: Contract(address) - - Contract provides a default interface for deploying and interacting with - Ethereum smart contracts. - - The address parameter can be a hex address or an ENS name, like ``mycontract.eth``. - - -Properties ----------- - -Each Contract Factory exposes the following properties. - - -.. py:attribute:: Contract.address - - The hexadecimal encoded 20-byte address of the contract, or an ENS name. - May be ``None`` if not provided during factory creation. - - -.. py:attribute:: Contract.abi - - The contract ``abi``, or Application Binary Interface, specifies how a contract can - be interacted with. Without an ``abi``, the contract cannot be decoded. The ``abi`` - enables the Contract instance to expose functions and events as object properties. - - For further details, see the `Solidity ABI specification `_. - - -.. py:attribute:: Contract.bytecode - - The contract bytecode string. May be ``None`` if not provided during - factory creation. - - -.. py:attribute:: Contract.bytecode_runtime - - The runtime part of the contract bytecode string. May be ``None`` if not - provided during factory creation. - - -.. py:attribute:: Contract.decode_tuples - - If a Tuple/Struct is returned by a contract function, this flag defines whether - to apply the field names from the ABI to the returned data. - If False, the returned value will be a normal Python ``Tuple``. If True, the returned - value will be a Python ``NamedTuple`` of the class ``ABIDecodedNamedTuple``. - - NamedTuples have some restrictions regarding field names. - web3.py sets ``NamedTuple``'s ``rename=True``, so disallowed field names may be - different than expected. See the `Python docs `_ - for more information. - - Defaults to ``False`` if not provided during factory creation. - - -.. py:attribute:: Contract.functions - - This provides access to contract functions as attributes. For example: - ``myContract.functions.MyMethod()``. The exposed contract functions are classes of the - type :py:class:`ContractFunction`. - - -.. py:attribute:: Contract.events - - This provides access to contract events as attributes. For example: - ``myContract.events.MyEvent()``. The exposed contract events are classes of the - type :py:class:`ContractEvent`. - -Methods -------- - -Method doctests use the following ABI and bytecode. - -.. code-block:: python - - >>> bytecode = '6060604052341561000c57fe5b604051602080610acb833981016040528080519060200190919050505b620f42408114151561003b5760006000fd5b670de0b6b3a76400008102600281905550600254600060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505b610a27806100a46000396000f30060606040523615610097576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde0314610099578063095ea7b31461013257806318160ddd1461018957806323b872dd146101af578063313ce5671461022557806370a082311461025157806395d89b411461029b578063a9059cbb14610334578063dd62ed3e1461038b575bfe5b34156100a157fe5b6100a96103f4565b60405180806020018281038252838181518152602001915080519060200190808383600083146100f8575b8051825260208311156100f8576020820191506020810190506020830392506100d4565b505050905090810190601f1680156101245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561013a57fe5b61016f600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803590602001909190505061042e565b604051808215151515815260200191505060405180910390f35b341561019157fe5b610199610521565b6040518082815260200191505060405180910390f35b34156101b757fe5b61020b600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091908035906020019091905050610527565b604051808215151515815260200191505060405180910390f35b341561022d57fe5b610235610791565b604051808260ff1660ff16815260200191505060405180910390f35b341561025957fe5b610285600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610796565b6040518082815260200191505060405180910390f35b34156102a357fe5b6102ab6107e0565b60405180806020018281038252838181518152602001915080519060200190808383600083146102fa575b8051825260208311156102fa576020820191506020810190506020830392506102d6565b505050905090810190601f1680156103265780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561033c57fe5b610371600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803590602001909190505061081a565b604051808215151515815260200191505060405180910390f35b341561039357fe5b6103de600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610973565b6040518082815260200191505060405180910390f35b604060405190810160405280600981526020017f54657374546f6b656e000000000000000000000000000000000000000000000081525081565b600081600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a3600190505b92915050565b60025481565b600081600060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410806105f1575081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b156105fc5760006000fd5b81600060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555081600060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190505b9392505050565b601281565b6000600060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b919050565b604060405190810160405280600481526020017f544553540000000000000000000000000000000000000000000000000000000081525081565b600081600060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156108695760006000fd5b81600060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555081600060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190505b92915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b929150505600a165627a7a723058205071371ee2a4a1be3c96e77d939cdc26161a256fdd638efc08bd33dfc65d3b850029' - >>> abi = '[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function","stateMutability":"view"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function","stateMutability":"nonpayable"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function","stateMutability":"view"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function","stateMutability":"nonpayable"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function","stateMutability":"view"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function","stateMutability":"view"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function","stateMutability":"view"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function","stateMutability":"nonpayable"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function","stateMutability":"view"},{"inputs":[{"name":"_totalSupply","type":"uint256"}],"payable":false,"type":"constructor","stateMutability":"nonpayable"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]' - >>> contract = w3.eth.contract(abi=abi, bytecode=bytecode) - -Each Contract Factory exposes the following methods. - -.. testsetup:: contractmethods - - from web3 import Web3 - w3 = Web3(Web3.EthereumTesterProvider()) - bytecode = '6060604052341561000c57fe5b604051602080610acb833981016040528080519060200190919050505b620f42408114151561003b5760006000fd5b670de0b6b3a76400008102600281905550600254600060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505b610a27806100a46000396000f30060606040523615610097576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde0314610099578063095ea7b31461013257806318160ddd1461018957806323b872dd146101af578063313ce5671461022557806370a082311461025157806395d89b411461029b578063a9059cbb14610334578063dd62ed3e1461038b575bfe5b34156100a157fe5b6100a96103f4565b60405180806020018281038252838181518152602001915080519060200190808383600083146100f8575b8051825260208311156100f8576020820191506020810190506020830392506100d4565b505050905090810190601f1680156101245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561013a57fe5b61016f600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803590602001909190505061042e565b604051808215151515815260200191505060405180910390f35b341561019157fe5b610199610521565b6040518082815260200191505060405180910390f35b34156101b757fe5b61020b600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091908035906020019091905050610527565b604051808215151515815260200191505060405180910390f35b341561022d57fe5b610235610791565b604051808260ff1660ff16815260200191505060405180910390f35b341561025957fe5b610285600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610796565b6040518082815260200191505060405180910390f35b34156102a357fe5b6102ab6107e0565b60405180806020018281038252838181518152602001915080519060200190808383600083146102fa575b8051825260208311156102fa576020820191506020810190506020830392506102d6565b505050905090810190601f1680156103265780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561033c57fe5b610371600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803590602001909190505061081a565b604051808215151515815260200191505060405180910390f35b341561039357fe5b6103de600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610973565b6040518082815260200191505060405180910390f35b604060405190810160405280600981526020017f54657374546f6b656e000000000000000000000000000000000000000000000081525081565b600081600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a3600190505b92915050565b60025481565b600081600060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410806105f1575081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b156105fc5760006000fd5b81600060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555081600060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190505b9392505050565b601281565b6000600060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b919050565b604060405190810160405280600481526020017f544553540000000000000000000000000000000000000000000000000000000081525081565b600081600060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156108695760006000fd5b81600060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555081600060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190505b92915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b929150505600a165627a7a723058205071371ee2a4a1be3c96e77d939cdc26161a256fdd638efc08bd33dfc65d3b850029' - abi = '[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function","stateMutability":"view"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function","stateMutability":"nonpayable"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function","stateMutability":"view"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function","stateMutability":"nonpayable"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function","stateMutability":"view"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function","stateMutability":"view"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function","stateMutability":"view"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function","stateMutability":"nonpayable"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function","stateMutability":"view"},{"inputs":[{"name":"_totalSupply","type":"uint256"}],"payable":false,"type":"constructor","stateMutability":"nonpayable"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]' - contract = w3.eth.contract(abi=abi, bytecode=bytecode) - -.. py:classmethod:: Contract.constructor(*args, **kwargs).transact(transaction=None) - - Construct and deploy a contract by sending a new public transaction. - - If provided ``transaction`` should be a dictionary conforming to the - ``web3.eth.send_transaction(transaction)`` method. This value may not - contain the keys ``data`` or ``to``. - - If the contract takes constructor parameters they should be provided as - positional arguments or keyword arguments. - - If any of the arguments specified in the ABI are an ``address`` type, they - will accept ENS names. - - If a ``gas`` value is not provided, then the ``gas`` value for the - deployment transaction will be created using the ``web3.eth.estimate_gas()`` - method. - - Returns the transaction hash for the deploy transaction. - - .. doctest:: contractmethods - - >>> deploy_txn = contract.constructor(1000000).transact({'from': w3.eth.accounts[0], 'gas': 899000, 'gasPrice': Web3.to_wei(1, 'gwei')}) - >>> txn_receipt = w3.eth.get_transaction_receipt(deploy_txn) - >>> txn_receipt['contractAddress'] - '0xF2E246BB76DF876Cef8b38ae84130F4F55De395b' - - -.. py:classmethod:: Contract.constructor(*args, **kwargs).estimate_gas(transaction=None, block_identifier=None) - :noindex: - - Estimate gas for constructing and deploying the contract. - - This method behaves the same as the - :py:meth:`Contract.constructor(*args, **kwargs).transact` method, - with transaction details being passed into the end portion of the - function call, and function arguments being passed into the first portion. - - The ``block_identifier`` parameter is passed directly to the call at the end portion - of the function call. - - Returns the amount of gas consumed which can be used as a gas estimate for - executing this transaction publicly. - - Returns the gas needed to deploy the contract. - - .. doctest:: contractmethods - - >>> contract.constructor(1000000).estimate_gas() - 664971 - -.. py:classmethod:: Contract.constructor(*args, **kwargs).build_transaction(transaction=None) - :noindex: - - Construct the contract deploy transaction bytecode data. - - If the contract takes constructor parameters they should be provided as - positional arguments or keyword arguments. - - If any of the ``args`` specified in the ABI are an ``address`` type, they - will accept ENS names. - - Returns the transaction dictionary that you can pass to send_transaction method. - - .. doctest:: contractmethods - - >>> transaction = { - ... 'gas': 664971, - ... 'chainId': 131277322940537 - ... } - >>> contract_data = contract.constructor(1000000).build_transaction(transaction) - >>> w3.eth.send_transaction(contract_data) - HexBytes('0x40c51804800dee88e14e69826cfe51bc5f25f61935331e8aa6d8d7771fb36350') - -.. _contract_create_filter: - -.. py:classmethod:: Contract.events.your_event_name.create_filter(from_block=None, to_block="latest", argument_filters={}, topics=[]) - - Creates a new event filter, an instance of :py:class:`web3.utils.filters.LogFilter`. - - - ``from_block`` is a mandatory field. Defines the starting block (exclusive) filter block range. It can be either the starting block number, or 'latest' for the last mined block, or 'pending' for unmined transactions. In the case of ``from_block``, 'latest' and 'pending' set the 'latest' or 'pending' block as a static value for the starting filter block. - - ``to_block`` optional. Defaults to 'latest'. Defines the ending block (inclusive) in the filter block range. Special values 'latest' and 'pending' set a dynamic range that always includes the 'latest' or 'pending' blocks for the filter's upper block range. - - ``address`` optional. Defaults to the contract address. The filter matches the event logs emanating from ``address``. - - ``argument_filters``, optional. Expects a dictionary of argument names and values. When provided event logs are filtered for the event argument values. Event arguments can be both indexed or unindexed. Indexed values will be translated to their corresponding topic arguments. Unindexed arguments will be filtered using a regular expression. - - ``topics`` optional, accepts the standard JSON-RPC topics argument. See the JSON-RPC documentation for `eth_newFilter `_ more information on the ``topics`` parameters. - - .. doctest:: contractmethods - - >>> filter = contract.events.Transfer.create_filter(from_block='latest') - -.. py:classmethod:: Contract.events.your_event_name.build_filter() - - Creates a EventFilterBuilder instance with the event abi, and the contract address if called from a deployed contract instance. The EventFilterBuilder provides a convenient way to construct the filter parameters with value checking against the event abi. It allows for defining multiple match values or of single values through the match_any and match_single methods. - - .. doctest:: contractmethods - - >>> filter_builder = contract.events.Transfer.build_filter() - >>> filter_builder.from_block = "latest" - >>> filter_builder.args['from'].match_any(w3.eth.accounts[0]) - >>> filter_builder.args['to'].match_single(w3.eth.accounts[1]) - >>> filter_builder.args['value'].match_single(10000) - >>> filter_instance = filter_builder.deploy(w3) - - The ``deploy`` method returns a :py:class:`web3.utils.filters.LogFilter` instance from the filter parameters generated by the filter builder. Defining multiple match values for array arguments can be accomplished easily with the filter builder: - - .. doctest:: contractmethods - - >>> filter_builder = contract.events.Transfer.build_filter() - >>> filter_builder.args['to'].match_any(w3.eth.accounts[0], w3.eth.accounts[1]) - - The filter builder blocks already defined filter parameters from being changed. - - .. doctest:: contractmethods - - >>> filter_builder = contract.events.Transfer.build_filter() - >>> filter_builder.from_block = "latest" - >>> filter_builder.from_block = 0 - Traceback (most recent call last): - web3.exceptions.Web3ValueError: from_block is already set to 'latest'. Resetting filter parameters is not permitted - -.. py:classmethod:: Contract.encode_abi(abi_element_identifier, args=None, kwargs=None, data=None) - - Encodes the arguments using the Ethereum ABI for the contract function that - matches the given ``abi_element_identifier`` and arguments ``args``. The ``data`` parameter - defaults to the function selector. - - .. doctest:: contractmethods - - >>> contract.encode_abi("approve", args=[w3.eth.accounts[0], 10]) - '0x095ea7b30000000000000000000000007e5f4552091a69125d5dfcb7b8c2659029395bdf000000000000000000000000000000000000000000000000000000000000000a' - -.. py:classmethod:: Contract.all_events() - - Returns a list of all the events present in a Contract where every event is - an instance of :py:class:`ContractEvent`. - - .. doctest:: contractmethods - - >>> contract.all_events() - [, ] - - -.. py:classmethod:: Contract.get_event_by_signature(signature) - - Searches for a distinct event with matching signature. Returns an instance of - :py:class:`ContractEvent` upon finding a match. Raises ``Web3ValueError`` if no - match is found. - - .. doctest:: contractmethods - - >>> contract.get_event_by_signature('Transfer(address,address,uint256)') - - - -.. py:classmethod:: Contract.find_events_by_name(name) - - Searches for all events matching the provided name. Returns a list of matching - events where every event is an instance of :py:class:`ContractEvent`. Returns an - empty list when no match is found. - - .. doctest:: contractmethods - - >>> contract.find_events_by_name('Transfer') - [] - - -.. py:classmethod:: Contract.get_event_by_name(name) - - Searches for a distinct event matching the name. Returns an instance of - :py:class:`ContractEvent` upon finding a match. Raises ``Web3ValueError`` if no - match is found or if multiple matches are found. - - .. doctest:: contractmethods - - >>> contract.get_event_by_name('Approval') - - -.. py:classmethod:: Contract.find_events_by_selector(selector) - - Searches for all events matching the provided selector. Returns a list of matching - events where every event is an instance of :py:class:`ContractEvent`. Returns an - empty list when no match is found. - - .. doctest:: contractmethods - - >>> contract.find_events_by_selector('0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925') - [] - -.. py:classmethod:: Contract.get_event_by_selector(selector) - - Searches for a distinct event with matching selector. - The selector can be a hexadecimal string, bytes or int. - Returns an instance of :py:class:`ContractEvent` upon finding a match. - Raises ``Web3ValueError`` if no match is found. - - .. doctest:: contractmethods - - >>> contract.get_event_by_selector('0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925') - - >>> contract.get_event_by_selector(b'\x8c[\xe1\xe5\xeb\xec}[\xd1OqB}\x1e\x84\xf3\xdd\x03\x14\xc0\xf7\xb2)\x1e[ \n\xc8\xc7\xc3\xb9%') - - >>> contract.get_event_by_selector(0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925) - - -.. py:classmethod:: Contract.find_events_by_topic(topic) - - Searches for all events matching the provided topic. Returns a list of matching - events where every event is an instance of :py:class:`ContractEvent`. Returns an - empty list when no match is found. - - .. doctest:: contractmethods - - >>> contract.find_events_by_topic('0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925') - [] - -.. py:classmethod:: Contract.get_event_by_topic(topic) - - Searches for a distinct event with matching topic. - The topic is a hexadecimal string. - Returns an instance of :py:class:`ContractEvent` upon finding a match. - Raises ``Web3ValueError`` if no match is found. - - .. doctest:: contractmethods - - >>> contract.get_event_by_topic('0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925') - - -.. py:classmethod:: Contract.all_functions() - - Returns a list of all the functions present in a Contract where every function is - an instance of :py:class:`ContractFunction`. - - .. doctest:: contractmethods - - >>> contract.all_functions() - [, , , , , , , , ] - - -.. py:classmethod:: Contract.get_function_by_signature(signature) - - Searches for a distinct function with matching signature. Returns an instance of - :py:class:`ContractFunction` upon finding a match. Raises ``Web3ValueError`` if no - match is found. - - .. doctest:: contractmethods - - >>> contract.get_function_by_signature('approve(address,uint256)') - - - -.. py:classmethod:: Contract.find_functions_by_name(name) - - Searches for all functions matching the name. Returns a list of matching functions - where every function is an instance of :py:class:`ContractFunction`. Returns an empty - list when no match is found. - - .. doctest:: contractmethods - - >>> contract.find_functions_by_name('transferFrom') - [] - - -.. py:classmethod:: Contract.get_function_by_name(name) - - Searches for a distinct function with matching name. Returns an instance of - :py:class:`ContractFunction` upon finding a match. Raises ``Web3ValueError`` if no - match is found or if multiple matches are found. - - .. doctest:: contractmethods - - >>> contract.get_function_by_name('decimals') - - - -.. py:classmethod:: Contract.get_function_by_selector(selector) - - Searches for a distinct function with matching selector. - The selector can be a hexadecimal string, bytes or int. - Returns an instance of :py:class:`ContractFunction` upon finding a match. - Raises ``Web3ValueError`` if no match is found. - - .. doctest:: contractmethods - - >>> contract.get_function_by_selector('0xdd62ed3e') - - >>> contract.get_function_by_selector(b'\xddb\xed>') - - >>> contract.get_function_by_selector(0xdd62ed3e) - - - -.. py:classmethod:: Contract.find_functions_by_args(*args) - - Searches for all function with matching args. Returns a list of matching functions - where every function is an instance of :py:class:`ContractFunction`. Returns an empty - list when no match is found. - - .. doctest:: contractmethods - - >>> contract.find_functions_by_args(w3.eth.accounts[0], 10000) - [, ] - - -.. py:classmethod:: Contract.get_function_by_args(*args) - - Searches for a distinct function with matching args. Returns an instance of - :py:class:`ContractFunction` upon finding a match. Raises ``ValueError`` if no - match is found or if multiple matches are found. - - .. doctest:: contractmethods - - >>> contract.get_function_by_args(w3.eth.accounts[0], w3.eth.accounts[1], 10000) - - - -.. note:: - ``Contract`` methods ``all_functions``, ``get_function_by_signature``, ``find_functions_by_name``, - ``get_function_by_name``, ``get_function_by_selector``, ``find_functions_by_args`` and - ``get_function_by_args`` can only be used when abi is provided to the contract. - - -.. note:: - web3.py rejects the initialization of contracts that have more than one function - with the same selector or signature. - eg. ``blockHashAddendsInexpansible(uint256)`` and ``blockHashAskewLimitary(uint256)`` have the - same selector value equal to ``0x00000000``. A contract containing both of these functions - will be rejected. - - -.. _disable-strict-byte-check: - -Disabling Strict Checks for Bytes Types ---------------------------------------- - -By default, web3 is strict when it comes to hex and bytes values, as of ``v6``. -If an abi specifies a byte size, but the value that gets passed in is not the specified -size, web3 will invalidate the value. For example, if an abi specifies a type of -``bytes4``, web3 will invalidate the following values: - -.. list-table:: Invalid byte and hex strings with strict (default) bytes4 type checking - :widths: 25 75 - :header-rows: 1 - - * - Input - - Reason - * - ``''`` - - Needs to be prefixed with a "0x" to be interpreted as an empty hex string - * - ``2`` - - Wrong type - * - ``'ah'`` - - String is not valid hex - * - ``'1234'`` - - Needs to either be a bytestring (b'1234') or be a hex value of the right size, prefixed with 0x (in this case: '0x31323334') - * - ``b''`` - - Needs to have exactly 4 bytes - * - ``b'ab'`` - - Needs to have exactly 4 bytes - * - ``'0xab'`` - - Needs to have exactly 4 bytes - * - ``'0x6162636464'`` - - Needs to have exactly 4 bytes - - -However, you may want to be less strict with acceptable values for bytes types. -This may prove useful if you trust that values coming through are what they are -meant to be with respect to the ABI. In this case, the automatic padding might be -convenient for inferred types. For this, you can set the -:meth:`w3.strict_bytes_type_checking` flag to ``False``, which is available on the -Web3 instance. A Web3 instance which has this flag set to ``False`` will have a less -strict set of rules on which values are accepted. A ``bytes`` type will allow values as -a hex string, a bytestring, or a regular Python string that can be decoded as a hex. -0x-prefixed hex strings are also not required. - - - A Python string that is not prefixed with ``0x`` is valid. - - A bytestring whose length is less than the specified byte size is valid. - -.. list-table:: Valid byte and hex strings for a non-strict bytes4 type - :widths: 25 75 - :header-rows: 1 - - * - Input - - Normalizes to - * - ``''`` - - ``b'\x00\x00\x00\x00'`` - * - ``'0x'`` - - ``b'\x00\x00\x00\x00'`` - * - ``b''`` - - ``b'\x00\x00\x00\x00'`` - * - ``b'ab'`` - - ``b'ab\x00\x00'`` - * - ``'0xab'`` - - ``b'\xab\x00\x00\x00'`` - * - ``'1234'`` - - ``b'\x124\x00\x00'`` - * - ``'0x61626364'`` - - ``b'abcd'`` - * - ``'1234'`` - - ``b'1234'`` - - -Taking the following contract code as an example: - -.. testsetup:: arrayscontract - - from web3 import Web3 - w3 = Web3(Web3.EthereumTesterProvider()) - bytecode = "608060405234801561001057600080fd5b506040516106103803806106108339810180604052602081101561003357600080fd5b81019080805164010000000081111561004b57600080fd5b8281019050602081018481111561006157600080fd5b815185602082028301116401000000008211171561007e57600080fd5b5050929190505050806000908051906020019061009c9291906100a3565b505061019c565b82805482825590600052602060002090600f0160109004810192821561015a5791602002820160005b8382111561012a57835183826101000a81548161ffff02191690837e010000000000000000000000000000000000000000000000000000000000009004021790555092602001926002016020816001010492830192600103026100cc565b80156101585782816101000a81549061ffff021916905560020160208160010104928301926001030261012a565b505b509050610167919061016b565b5090565b61019991905b8082111561019557600081816101000a81549061ffff021916905550600101610171565b5090565b90565b610465806101ab6000396000f3fe608060405260043610610051576000357c0100000000000000000000000000000000000000000000000000000000900480633b3230ee14610056578063d7c8a410146100e7578063dfe3136814610153575b600080fd5b34801561006257600080fd5b5061008f6004803603602081101561007957600080fd5b8101908080359060200190929190505050610218565b60405180827dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200191505060405180910390f35b3480156100f357600080fd5b506100fc61026c565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561013f578082015181840152602081019050610124565b505050509050019250505060405180910390f35b34801561015f57600080fd5b506102166004803603602081101561017657600080fd5b810190808035906020019064010000000081111561019357600080fd5b8201836020820111156101a557600080fd5b803590602001918460208302840111640100000000831117156101c757600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610326565b005b60008181548110151561022757fe5b9060005260206000209060109182820401919006600202915054906101000a90047e010000000000000000000000000000000000000000000000000000000000000281565b6060600080548060200260200160405190810160405280929190818152602001828054801561031c57602002820191906000526020600020906000905b82829054906101000a90047e01000000000000000000000000000000000000000000000000000000000000027dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190600201906020826001010492830192600103820291508084116102a95790505b5050505050905090565b806000908051906020019061033c929190610340565b5050565b82805482825590600052602060002090600f016010900481019282156103f75791602002820160005b838211156103c757835183826101000a81548161ffff02191690837e01000000000000000000000000000000000000000000000000000000000000900402179055509260200192600201602081600101049283019260010302610369565b80156103f55782816101000a81549061ffff02191690556002016020816001010492830192600103026103c7565b505b5090506104049190610408565b5090565b61043691905b8082111561043257600081816101000a81549061ffff02191690555060010161040e565b5090565b9056fea165627a7a72305820a8f9f1f4815c1eedfb8df31298a5cd13b198895de878871328b5d96296b69b4e0029" - abi = ''' - [ - { - "constant": true, - "inputs": [ - { - "name": "", - "type": "uint256" - } - ], - "name": "bytes2Value", - "outputs": [ - { - "name": "", - "type": "bytes2" - } - ], - "payable": false, - "stateMutability": "view", - "type": "function" - }, - { - "constant": true, - "inputs": [], - "name": "getBytes2Value", - "outputs": [ - { - "name": "", - "type": "bytes2[]" - } - ], - "payable": false, - "stateMutability": "view", - "type": "function" - }, - { - "constant": false, - "inputs": [ - { - "name": "_bytes2Value", - "type": "bytes2[]" - } - ], - "name": "setBytes2Value", - "outputs": [], - "payable": false, - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "name": "_bytes2Value", - "type": "bytes2[]" - } - ], - "payable": false, - "stateMutability": "nonpayable", - "type": "constructor" - } - ] - '''.strip() - -.. code-block:: python - - >>> # pragma solidity >=0.4.22 <0.6.0; - ... - ... # contract ArraysContract { - ... # bytes2[] public bytes2Value; - - ... # constructor(bytes2[] memory _bytes2Value) public { - ... # bytes2Value = _bytes2Value; - ... # } - - ... # function setBytes2Value(bytes2[] memory _bytes2Value) public { - ... # bytes2Value = _bytes2Value; - ... # } - - ... # function getBytes2Value() public view returns (bytes2[] memory) { - ... # return bytes2Value; - ... # } - ... # } - - >>> # abi = "..." - >>> # bytecode = "6080..." - -.. doctest:: arrayscontract - - >>> arrays_contract_instance = w3.eth.contract(abi=abi, bytecode=bytecode) - - >>> tx_hash = arrays_contract_instance.constructor([b'bb']).transact() - >>> tx_receipt = w3.eth.wait_for_transaction_receipt(tx_hash) - >>> arrays_contract = w3.eth.contract( - ... address=tx_receipt.contractAddress, - ... abi=abi - ... ) - >>> arrays_contract.functions.getBytes2Value().call() - [b'bb'] - - >>> # set value with appropriate byte size - >>> arrays_contract.functions.setBytes2Value([b'aa']).transact({'gas': 420000, "maxPriorityFeePerGas": 10 ** 9, "maxFeePerGas": 10 ** 9}) - HexBytes('0xcb95151142ea56dbf2753d70388aef202a7bb5a1e323d448bc19f1d2e1fe3dc9') - >>> # check value - >>> arrays_contract.functions.getBytes2Value().call() - [b'aa'] - - >>> # trying to set value without appropriate size (bytes2) is not valid - >>> arrays_contract.functions.setBytes2Value([b'b']).transact() - Traceback (most recent call last): - ... - web3.exceptions.MismatchedABI: - Could not identify the intended function with name - >>> # check value is still b'aa' - >>> arrays_contract.functions.getBytes2Value().call() - [b'aa'] - - >>> # disabling strict byte checking... - >>> w3.strict_bytes_type_checking = False - - >>> tx_hash = arrays_contract_instance.constructor([b'b']).transact() - >>> tx_receipt = w3.eth.wait_for_transaction_receipt(tx_hash) - >>> arrays_contract = w3.eth.contract( - ... address=tx_receipt.contractAddress, - ... abi=abi - ... ) - >>> # check value is zero-padded... i.e. b'b\x00' - >>> arrays_contract.functions.getBytes2Value().call() - [b'b\x00'] - - >>> # set the flag back to True - >>> w3.strict_bytes_type_checking = True - - >>> arrays_contract.functions.setBytes2Value([b'a']).transact() - Traceback (most recent call last): - ... - web3.exceptions.MismatchedABI: - Could not identify the intended function with name - -.. _contract-functions: - -Contract Functions ------------------- - -.. py:class:: ContractFunction - -The named functions exposed through the :py:attr:`Contract.functions` property are -of the ContractFunction type. This class is not to be used directly, -but instead through :py:attr:`Contract.functions`. - -For example: - - .. code-block:: python - - myContract = web3.eth.contract(address=contract_address, abi=contract_abi) - twentyone = myContract.functions.multiply7(3).call() - -If you have the function name in a variable, you might prefer this alternative: - - .. code-block:: python - - func_to_call = 'multiply7' - contract_func = myContract.functions[func_to_call] - twentyone = contract_func(3).call() - -You can also interact with contract functions without parentheses if the function doesn't -take any arguments. For example: - - .. code-block:: python - - >>> myContract.functions.return13.call() - 13 - >>> myContract.functions.return13().call() - 13 - -:py:class:`ContractFunction` provides methods to interact with contract functions. -Positional and keyword arguments supplied to the contract function subclass -will be used to find the contract function by signature, -and forwarded to the contract function when applicable. - -`EIP-3668 `_ introduced support for the ``OffchainLookup`` revert / -CCIP Read support. CCIP Read is set to ``True`` for calls by default, as recommended in EIP-3668. This is done via a -global ``global_ccip_read_enabled`` flag on the provider. If raising the ``OffchainLookup`` revert is preferred for a -specific call, the ``ccip_read_enabled`` flag on the call may be set to ``False``. - - .. code-block:: python - - >>> # raises the revert instead of handling the offchain lookup - >>> myContract.functions.revertsWithOffchainLookup(myData).call(ccip_read_enabled=False) - *** web3.exceptions.OffchainLookup - -Disabling CCIP Read support can be useful if a transaction needs to be sent to the callback function. In such cases, -"preflighting" with an ``eth_call``, handling the ``OffchainLookup``, and sending the data via a transaction may be -necessary. See :ref:`ccip-read-example` in the examples section for how to preflight a transaction with a contract call. - -Similarly, if CCIP Read is globally set to ``False`` via the ``global_ccip_read_enabled`` flag on the provider, it may be -enabled on a per-call basis - overriding the global flag. This ensures only explicitly enabled calls will handle the -``OffchainLookup`` revert appropriately. - - .. code-block:: python - - >>> # global flag set to `False` - >>> w3.provider.global_ccip_read_enabled = False - - >>> # does not raise the revert since explicitly enabled on the call: - >>> response = myContract.functions.revertsWithOffchainLookup(myData).call(ccip_read_enabled=True) - -If the function called results in a ``revert`` error, a ``ContractLogicError`` will be raised. -If there is an error message with the error, web3.py attempts to parse the -message that comes back and return it to the user as the error string. -As of v6.3.0, the raw data is also returned and -can be accessed via the ``data`` attribute on ``ContractLogicError``. - - -Methods -~~~~~~~ - -.. py:method:: ContractFunction.transact(transaction) - - Execute the specified function by sending a new public transaction. - - Refer to the following invocation: - - .. code-block:: python - - myContract.functions.myMethod(*args, **kwargs).transact(transaction) - - The first portion of the function call ``myMethod(*args, **kwargs)`` - selects the appropriate contract function based on the name and provided - argument. Arguments can be provided as positional arguments, keyword - arguments, or a mix of the two. - - The end portion of this function call ``transact(transaction)`` takes a - single parameter which should be a python dictionary conforming to - the same format as the ``web3.eth.send_transaction(transaction)`` method. - This dictionary may not contain the keys ``data``. - - If any of the ``args`` or ``kwargs`` specified in the ABI are an ``address`` type, they - will accept ENS names. - - If a ``gas`` value is not provided, then the ``gas`` value for the - method transaction will be created using the ``web3.eth.estimate_gas()`` - method. - - Returns the transaction hash. - - .. code-block:: python - - >>> token_contract.functions.transfer(web3.eth.accounts[1], 12345).transact() - "0x4e3a3754410177e6937ef1f84bba68ea139e8d1a2258c5f85db9f1cd715a1bdd" - - -.. py:method:: ContractFunction.call(transaction, block_identifier='latest') - - Call a contract function, executing the transaction locally using the - ``eth_call`` API. This will not create a new public transaction. - - Refer to the following invocation: - - .. code-block:: python - - myContract.functions.myMethod(*args, **kwargs).call(transaction) - - This method behaves the same as the :py:meth:`ContractFunction.transact` method, - with transaction details being passed into the end portion of the - function call, and function arguments being passed into the first portion. - - Returns the return value of the executed function. - - .. code-block:: python - - >>> my_contract.functions.multiply7(3).call() - 21 - >>> token_contract.functions.myBalance().call({'from': web3.eth.accounts[0]}) - 12345 # the token balance for `web3.eth.accounts[0]` - >>> token_contract.functions.myBalance().call({'from': web3.eth.accounts[1]}) - 54321 # the token balance for the account `web3.eth.accounts[1]` - - You can call the method at a historical block using ``block_identifier``. Some examples: - - .. code-block:: python - - # You can call your contract method at a block number: - >>> token_contract.functions.myBalance().call(block_identifier=10) - - # or a number of blocks back from pending, - # in this case, the block just before the latest block: - >>> token_contract.functions.myBalance().call(block_identifier=-2) - - # or a block hash: - >>> token_contract.functions.myBalance().call(block_identifier='0x4ff4a38b278ab49f7739d3a4ed4e12714386a9fdf72192f2e8f7da7822f10b4d') - >>> token_contract.functions.myBalance().call(block_identifier=b'O\xf4\xa3\x8b\'\x8a\xb4\x9fw9\xd3\xa4\xedN\x12qC\x86\xa9\xfd\xf7!\x92\xf2\xe8\xf7\xdax"\xf1\x0bM') - - # Latest is the default, so this is redundant: - >>> token_contract.functions.myBalance().call(block_identifier='latest') - - # You can check the state after your pending transactions (if supported by your node): - >>> token_contract.functions.myBalance().call(block_identifier='pending') - - Passing the ``block_identifier`` parameter for past block numbers requires that your Ethereum API node - is running in the more expensive archive node mode. Normally synced Ethereum nodes will fail with - a "missing trie node" error, because Ethereum node may have purged the past state from its database. - `More information about archival nodes here `_. - -.. py:method:: ContractFunction.estimate_gas(transaction, block_identifier=None) - - Call a contract function, executing the transaction locally using the - ``eth_call`` API. This will not create a new public transaction. - - Refer to the following invocation: - - .. code-block:: python - - myContract.functions.myMethod(*args, **kwargs).estimate_gas(transaction) - - This method behaves the same as the :py:meth:`ContractFunction.transact` method, - with transaction details being passed into the end portion of the - function call, and function arguments being passed into the first portion. - - Returns the amount of gas consumed which can be used as a gas estimate for - executing this transaction publicly. - - .. code-block:: python - - >>> my_contract.functions.multiply7(3).estimate_gas() - 42650 - - .. note:: - The parameter ``block_identifier`` is not enabled in geth nodes, - hence passing a value of ``block_identifier`` when connected to a geth - nodes would result in an error like: ``ValueError: {'code': -32602, 'message': 'too many arguments, want at most 1'}`` - -.. py:method:: ContractFunction.build_transaction(transaction) - - Builds a transaction dictionary based on the contract function call specified. - - Refer to the following invocation: - - .. code-block:: python - - myContract.functions.myMethod(*args, **kwargs).build_transaction(transaction) - - This method behaves the same as the :py:meth:`Contract.transact` method, - with transaction details being passed into the end portion of the - function call, and function arguments being passed into the first portion. - - .. note:: - `nonce` is not returned as part of the transaction dictionary unless it is - specified in the first portion of the function call: - - .. code-block:: python - - >>> math_contract.functions.increment(5).build_transaction({'nonce': 10}) - - You may use :meth:`~web3.eth.Eth.getTransactionCount` to get the current nonce - for an account. Therefore a shortcut for producing a transaction dictionary with - nonce included looks like: - - .. code-block:: python - - >>> math_contract.functions.increment(5).build_transaction({'nonce': web3.eth.get_transaction_count('0xF5...')}) - - Returns a transaction dictionary. This transaction dictionary can then be sent using - :meth:`~web3.eth.Eth.send_transaction`. - - Additionally, the dictionary may be used for offline transaction signing using - :meth:`~web3.eth.account.Account.sign_transaction`. - - .. code-block:: python - - >>> math_contract.functions.increment(5).build_transaction({'maxFeePerGas': 2000000000, 'maxPriorityFeePerGas': 1000000000}) - { - 'to': '0x582AC4D8929f58c217d4a52aDD361AE470a8a4cD', - 'data': '0x7cf5dab00000000000000000000000000000000000000000000000000000000000000005', - 'value': 0, - 'gas': 43242, - 'maxFeePerGas': 2000000000, - 'maxPriorityFeePerGas': 1000000000, - 'chainId': 1 - } - -.. _fallback-function: - -Fallback Function -~~~~~~~~~~~~~~~~~ - - The Contract Factory also offers an API to interact with the fallback function, which supports four methods like - normal functions: - -.. py:method:: Contract.fallback.call(transaction) - - Call fallback function, executing the transaction locally using the - ``eth_call`` API. This will not create a new public transaction. - -.. py:method:: Contract.fallback.estimate_gas(transaction) - - Call fallback function and return the gas estimation. - -.. py:method:: Contract.fallback.transact(transaction) - - Execute fallback function by sending a new public transaction. - -.. py:method:: Contract.fallback.build_transaction(transaction) - - Builds a transaction dictionary based on the contract fallback function call. - -Events ------- - -.. py:class:: ContractEvents - -The named events exposed through the :py:attr:`Contract.events` property are of the ContractEvents type. This class is not to be used directly, but instead through :py:attr:`Contract.events`. - -For example: - - .. code-block:: python - - myContract = web3.eth.contract(address=contract_address, abi=contract_abi) - tx_hash = myContract.functions.myFunction().transact() - receipt = web3.eth.get_transaction_receipt(tx_hash) - myContract.events.myEvent().process_receipt(receipt) - -:py:class:`ContractEvent` provides methods to interact with contract events. Positional and keyword arguments supplied to the contract event subclass will be used to find the contract event by signature. - -.. _contract_get_logs: - -.. py:method:: ContractEvents.myEvent(*args, **kwargs).get_logs(from_block=None, to_block="latest", block_hash=None, argument_filters={}) - :noindex: - - Fetches all logs for a given event within the specified block range or block hash. - - Returns a list of decoded event logs sorted by ``logIndex``. - - ``argument_filters`` is an optional dictionary argument that can be used to filter - for logs where the event's argument values match the values provided in the - dictionary. The keys must match the event argument names as they exist in the ABI. - The values can either be a single value or a list of values to match against. If a - list is provided, the logs will be filtered for any logs that match any of the - values in the list. Indexed arguments are filtered pre-call by building specific - ``topics`` to filter for. Non-indexed arguments are filtered by the library after - the logs are fetched from the node. - - .. code-block:: python - - my_contract = web3.eth.contract(address=contract_address, abi=contract_abi) - - # get ``myEvent`` logs from block 1337 to block 2337 where the value for the - # event argument "eventArg1" is either 1, 2, or 3 - my_contract.events.myEvent().get_logs( - argument_filters={"eventArg1": [1, 2, 3]}, - from_block=1337, - to_block=2337, - ) - -.. _process_receipt: - -.. py:method:: ContractEvents.myEvent(*args, **kwargs).process_receipt(transaction_receipt, errors=WARN) - :noindex: - - Extracts the pertinent logs from a transaction receipt. - - If there are no errors, ``process_receipt`` returns a tuple of :ref:`Event Log Objects `, emitted from the event (e.g. ``myEvent``), - with decoded output. - - .. code-block:: python - - >>> tx_hash = contract.functions.myFunction(12345).transact({'to':contract_address}) - >>> tx_receipt = w3.eth.get_transaction_receipt(tx_hash) - >>> rich_logs = contract.events.myEvent().process_receipt(tx_receipt) - >>> rich_logs[0]['args'] - {'myArg': 12345} - - If there are errors, the logs will be handled differently depending on the flag that is passed in: - - - ``WARN`` (default) - logs a warning to the console for the log that has an error, and discards the log. Returns any logs that are able to be processed. - - ``STRICT`` - stops all processing and raises the error encountered. - - ``IGNORE`` - returns any raw logs that raised an error with an added "errors" field, along with any other logs were able to be processed. - - ``DISCARD`` - silently discards any logs that have errors, and returns processed logs that don't have errors. - - An event log error flag needs to be imported from ``web3/logs.py``. - - .. code-block:: python - - >>> tx_hash = contract.functions.myFunction(12345).transact({'to':contract_address}) - >>> tx_receipt = w3.eth.get_transaction_receipt(tx_hash) - >>> processed_logs = contract.events.myEvent().process_receipt(tx_receipt) - >>> processed_logs - ( - AttributeDict({ - 'args': AttributeDict({}), - 'event': 'myEvent', - 'logIndex': 0, - 'transactionIndex': 0, - 'transactionHash': HexBytes('0xfb95ccb6ab39e19821fb339dee33e7afe2545527725b61c64490a5613f8d11fa'), - 'address': '0xF2E246BB76DF876Cef8b38ae84130F4F55De395b', - 'blockHash': HexBytes('0xd74c3e8bdb19337987b987aee0fa48ed43f8f2318edfc84e3a8643e009592a68'), - 'blockNumber': 3 - }) - ) - - - # Or, if there were errors encountered during processing: - >>> from web3.logs import STRICT, IGNORE, DISCARD, WARN - >>> processed_logs = contract.events.myEvent().process_receipt(tx_receipt, errors=IGNORE) - >>> processed_logs - ( - AttributeDict({ - 'type': 'mined', - 'logIndex': 0, - 'transactionIndex': 0, - 'transactionHash': HexBytes('0x01682095d5abb0270d11a31139b9a1f410b363c84add467004e728ec831bd529'), - 'blockHash': HexBytes('0x92abf9325a3959a911a2581e9ea36cba3060d8b293b50e5738ff959feb95258a'), - 'blockNumber': 5, - 'address': '0xF2E246BB76DF876Cef8b38ae84130F4F55De395b', - 'data': '0x0000000000000000000000000000000000000000000000000000000000003039', - 'topics': [ - HexBytes('0xf70fe689e290d8ce2b2a388ac28db36fbb0e16a6d89c6804c461f65a1b40bb15') - ], - 'errors': LogTopicError('Expected 1 log topics. Got 0')}) - }) - ) - >>> processed_logs = contract.events.myEvent().process_receipt(tx_receipt, errors=DISCARD) - >>> assert processed_logs == () - True - -.. py:method:: ContractEvents.myEvent(*args, **kwargs).process_log(log) - - Similar to process_receipt_, but only processes one log at a time, instead of a whole transaction receipt. - Will return a single :ref:`Event Log Object ` if there are no errors encountered during processing. If an error is encountered during processing, it will be raised. - - .. code-block:: python - - >>> tx_hash = contract.functions.myFunction(12345).transact({'to':contract_address}) - >>> tx_receipt = w3.eth.get_transaction_receipt(tx_hash) - >>> log_to_process = tx_receipt['logs'][0] - >>> processed_log = contract.events.myEvent().process_log(log_to_process) - >>> processed_log - AttributeDict({ - 'args': AttributeDict({}), - 'event': 'myEvent', - 'logIndex': 0, - 'transactionIndex': 0, - 'transactionHash': HexBytes('0xfb95ccb6ab39e19821fb339dee33e7afe2545527725b61c64490a5613f8d11fa'), - 'address': '0xF2E246BB76DF876Cef8b38ae84130F4F55De395b', - 'blockHash': HexBytes('0xd74c3e8bdb19337987b987aee0fa48ed43f8f2318edfc84e3a8643e009592a68'), - 'blockNumber': 3 - }) - - -.. _event-log-object: - -Event Log Object -~~~~~~~~~~~~~~~~ - - The Event Log Object is a python dictionary with the following keys: - - * ``args``: Dictionary - The arguments coming from the event. - * ``event``: String - The event name. - * ``logIndex``: Number - integer of the log index position in the block. - * ``transactionIndex``: Number - integer of the transactions index position - log was created from. - * ``transactionHash``: String, 32 Bytes - hash of the transactions this log - was created from. - * ``address``: String, 32 Bytes - address from which this log originated. - * ``blockHash``: String, 32 Bytes - hash of the block where this log was - in. null when it's pending. - * ``blockNumber``: Number - the block number where this log was in. null - when it's pending. - -.. testsetup:: create_filter - - from web3 import Web3 - from hexbytes import HexBytes - w3 = Web3(Web3.EthereumTesterProvider()) - bytecode = '6060604052341561000c57fe5b604051602080610acb833981016040528080519060200190919050505b620f42408114151561003b5760006000fd5b670de0b6b3a76400008102600281905550600254600060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505b610a27806100a46000396000f30060606040523615610097576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde0314610099578063095ea7b31461013257806318160ddd1461018957806323b872dd146101af578063313ce5671461022557806370a082311461025157806395d89b411461029b578063a9059cbb14610334578063dd62ed3e1461038b575bfe5b34156100a157fe5b6100a96103f4565b60405180806020018281038252838181518152602001915080519060200190808383600083146100f8575b8051825260208311156100f8576020820191506020810190506020830392506100d4565b505050905090810190601f1680156101245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561013a57fe5b61016f600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803590602001909190505061042e565b604051808215151515815260200191505060405180910390f35b341561019157fe5b610199610521565b6040518082815260200191505060405180910390f35b34156101b757fe5b61020b600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091908035906020019091905050610527565b604051808215151515815260200191505060405180910390f35b341561022d57fe5b610235610791565b604051808260ff1660ff16815260200191505060405180910390f35b341561025957fe5b610285600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610796565b6040518082815260200191505060405180910390f35b34156102a357fe5b6102ab6107e0565b60405180806020018281038252838181518152602001915080519060200190808383600083146102fa575b8051825260208311156102fa576020820191506020810190506020830392506102d6565b505050905090810190601f1680156103265780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561033c57fe5b610371600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803590602001909190505061081a565b604051808215151515815260200191505060405180910390f35b341561039357fe5b6103de600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610973565b6040518082815260200191505060405180910390f35b604060405190810160405280600981526020017f54657374546f6b656e000000000000000000000000000000000000000000000081525081565b600081600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a3600190505b92915050565b60025481565b600081600060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410806105f1575081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b156105fc5760006000fd5b81600060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555081600060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190505b9392505050565b601281565b6000600060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b919050565b604060405190810160405280600481526020017f544553540000000000000000000000000000000000000000000000000000000081525081565b600081600060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156108695760006000fd5b81600060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555081600060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190505b92915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b929150505600a165627a7a723058205071371ee2a4a1be3c96e77d939cdc26161a256fdd638efc08bd33dfc65d3b850029' - ABI = '[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function","stateMutability":"view"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function","stateMutability":"nonpayable"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function","stateMutability":"view"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function","stateMutability":"nonpayable"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function","stateMutability":"view"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function","stateMutability":"view"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function","stateMutability":"view"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function","stateMutability":"nonpayable"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function","stateMutability":"view"},{"inputs":[{"name":"_totalSupply","type":"uint256"}],"payable":false,"type":"constructor","stateMutability":"nonpayable"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]' - my_token_contract = w3.eth.contract(abi=ABI, bytecode=bytecode) - alice, bob = w3.eth.accounts[0], w3.eth.accounts[1] - assert alice == '0x7E5F4552091A69125d5DfCb7b8C2659029395Bdf', alice - assert bob == '0x2B5AD5c4795c026514f8317c7a215E218DcCD6cF', bob - tx_hash = my_token_contract.constructor(1000000).transact({'from': alice, 'gas': 899000, 'gasPrice': Web3.to_wei(1, 'gwei')}) - assert tx_hash == HexBytes('0x49e3da72a95e4074a9eaea7b438c73ca154627d317e58abeae914e3769a15044'), tx_hash - txn_receipt = w3.eth.wait_for_transaction_receipt(tx_hash) - assert txn_receipt['contractAddress'] == '0xF2E246BB76DF876Cef8b38ae84130F4F55De395b', txn_receipt['contractAddress'] - contract_address = txn_receipt['contractAddress'] - contract = w3.eth.contract(contract_address, abi=ABI) - total_supply = contract.functions.totalSupply().call() - decimals = 10 ** 18 - assert total_supply == 1000000 * decimals, total_supply - tx_hash = contract.functions.transfer(alice, 10).transact({'gas': 899000, 'gasPrice': Web3.to_wei(1, 'gwei')}) - tx_receipt = w3.eth.wait_for_transaction_receipt(tx_hash) - -.. doctest:: create_filter - - >>> transfer_filter = my_token_contract.events.Transfer.create_filter(from_block="0x0", argument_filters={'from': '0x7E5F4552091A69125d5DfCb7b8C2659029395Bdf'}) - >>> transfer_filter.get_new_entries() - [AttributeDict({'args': AttributeDict({'from': '0x7E5F4552091A69125d5DfCb7b8C2659029395Bdf', - 'to': '0x7E5F4552091A69125d5DfCb7b8C2659029395Bdf', - 'value': 10}), - 'event': 'Transfer', - 'logIndex': 0, - 'transactionIndex': 0, - 'transactionHash': HexBytes('0x9da859237e7259832b913d51cb128c8d73d1866056f7a41b52003c953e749678'), - 'address': '0xF2E246BB76DF876Cef8b38ae84130F4F55De395b', - 'blockHash': HexBytes('...'), - 'blockNumber': 2})] - >>> transfer_filter.get_new_entries() - [] - >>> tx_hash = contract.functions.transfer(alice, 10).transact({'gas': 899000, 'gasPrice': 1000000000}) - >>> tx_receipt = w3.eth.wait_for_transaction_receipt(tx_hash) - >>> transfer_filter.get_new_entries() - [AttributeDict({'args': AttributeDict({'from': '0x7E5F4552091A69125d5DfCb7b8C2659029395Bdf', - 'to': '0x7E5F4552091A69125d5DfCb7b8C2659029395Bdf', - 'value': 10}), - 'event': 'Transfer', - 'logIndex': 0, - 'transactionIndex': 0, - 'transactionHash': HexBytes('...'), - 'address': '0xF2E246BB76DF876Cef8b38ae84130F4F55De395b', - 'blockHash': HexBytes('...'), - 'blockNumber': 3})] - >>> transfer_filter.get_all_entries() - [AttributeDict({'args': AttributeDict({'from': '0x7E5F4552091A69125d5DfCb7b8C2659029395Bdf', - 'to': '0x7E5F4552091A69125d5DfCb7b8C2659029395Bdf', - 'value': 10}), - 'event': 'Transfer', - 'logIndex': 0, - 'transactionIndex': 0, - 'transactionHash': HexBytes('...'), - 'address': '0xF2E246BB76DF876Cef8b38ae84130F4F55De395b', - 'blockHash': HexBytes('...'), - 'blockNumber': 2}), - AttributeDict({'args': AttributeDict({'from': '0x7E5F4552091A69125d5DfCb7b8C2659029395Bdf', - 'to': '0x7E5F4552091A69125d5DfCb7b8C2659029395Bdf', - 'value': 10}), - 'event': 'Transfer', - 'logIndex': 0, - 'transactionIndex': 0, - 'transactionHash': HexBytes('...'), - 'address': '0xF2E246BB76DF876Cef8b38ae84130F4F55De395b', - 'blockHash': HexBytes('...'), - 'blockNumber': 3})] - -Utils ------ - -.. py:classmethod:: Contract.decode_function_input(data) - - Decodes the transaction data used to invoke a smart contract function, and returns - :py:class:`ContractFunction` and decoded parameters as :py:class:`dict`. - - .. code-block:: python - - >>> transaction = w3.eth.get_transaction('0x5798fbc45e3b63832abc4984b0f3574a13545f415dd672cd8540cd71f735db56') - >>> transaction.input - '0x612e45a3000000000000000000000000b656b2a9c3b2416437a811e07466ca712f5a5b5a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000093a80000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000116c6f6e656c792c20736f206c6f6e656c7900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' - >>> contract.decode_function_input(transaction.input) - (, - {'_recipient': '0xB656b2a9c3b2416437A811e07466cA712F5a5b5a', - '_amount': 0, - '_description': b'lonely, so lonely', - '_transactionData': b'', - '_debatingPeriod': 604800, - '_newCurator': True}) - -ContractCaller --------------- - -.. py:class:: ContractCaller - -The ``ContractCaller`` class provides an API to call functions in a contract. This class -is not to be used directly, but instead through ``Contract.caller``. - -There are a number of different ways to invoke the ``ContractCaller``. - -For example: - -.. testsetup:: contractcaller - - import json - from web3 import Web3 - w3 = Web3(Web3.EthereumTesterProvider()) - bytecode = "0x606060405261022e806100126000396000f360606040523615610074576000357c01000000000000000000000000000000000000000000000000000000009004806316216f391461007657806361bc221a146100995780637cf5dab0146100bc578063a5f3c23b146100e8578063d09de08a1461011d578063dcf537b11461014057610074565b005b610083600480505061016c565b6040518082815260200191505060405180910390f35b6100a6600480505061017f565b6040518082815260200191505060405180910390f35b6100d26004808035906020019091905050610188565b6040518082815260200191505060405180910390f35b61010760048080359060200190919080359060200190919050506101ea565b6040518082815260200191505060405180910390f35b61012a6004805050610201565b6040518082815260200191505060405180910390f35b6101566004808035906020019091905050610217565b6040518082815260200191505060405180910390f35b6000600d9050805080905061017c565b90565b60006000505481565b6000816000600082828250540192505081905550600060005054905080507f3496c3ede4ec3ab3686712aa1c238593ea6a42df83f98a5ec7df9834cfa577c5816040518082815260200191505060405180910390a18090506101e5565b919050565b6000818301905080508090506101fb565b92915050565b600061020d6001610188565b9050610214565b90565b60006007820290508050809050610229565b91905056" - ABI = json.loads('[{"constant":false,"inputs":[],"name":"return13","outputs":[{"name":"result","type":"int256"}],"type":"function"},{"constant":true,"inputs":[],"name":"counter","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"amt","type":"uint256"}],"name":"increment","outputs":[{"name":"result","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"a","type":"int256"},{"name":"b","type":"int256"}],"name":"add","outputs":[{"name":"result","type":"int256"}],"type":"function"},{"constant":false,"inputs":[],"name":"increment","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"a","type":"int256"}],"name":"multiply7","outputs":[{"name":"result","type":"int256"}],"type":"function"},{"anonymous":false,"inputs":[{"indexed":false,"name":"value","type":"uint256"}],"name":"increased","type":"event"}]') - contract = w3.eth.contract(abi=ABI, bytecode=bytecode) - deploy_txn = contract.constructor().transact() - deploy_receipt = w3.eth.wait_for_transaction_receipt(deploy_txn) - address = deploy_receipt.contractAddress - -.. doctest:: contractcaller - - >>> myContract = w3.eth.contract(address=address, abi=ABI) - >>> twentyone = myContract.caller.multiply7(3) - >>> twentyone - 21 - -It can also be invoked using parentheses: - -.. doctest:: contractcaller - - >>> twentyone = myContract.caller().multiply7(3) - >>> twentyone - 21 - -And a transaction dictionary, with or without the ``transaction`` keyword. -You can also optionally include a block identifier. For example: - -.. doctest:: contractcaller - - >>> from_address = w3.eth.accounts[1] - >>> twentyone = myContract.caller({'from': from_address}).multiply7(3) - >>> twentyone - 21 - >>> twentyone = myContract.caller(transaction={'from': from_address}).multiply7(3) - >>> twentyone - 21 - >>> twentyone = myContract.caller(block_identifier='latest').multiply7(3) - >>> twentyone - 21 - -Like :py:class:`ContractFunction`, :py:class:`ContractCaller` -provides methods to interact with contract functions. -Positional and keyword arguments supplied to the contract caller subclass -will be used to find the contract function by signature, -and forwarded to the contract function when applicable. - - -Examples --------- - -Working with an ERC-20 Token Contract -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Most fungible tokens on the Ethereum blockchain conform to the `ERC-20`_ -standard. This section of the guide covers interacting with an existing token -contract which conforms to this standard. - -.. testsetup:: - - from web3 import Web3 - from hexbytes import HexBytes - w3 = Web3(Web3.EthereumTesterProvider()) - bytecode = '6060604052341561000c57fe5b604051602080610acb833981016040528080519060200190919050505b620f42408114151561003b5760006000fd5b670de0b6b3a76400008102600281905550600254600060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505b610a27806100a46000396000f30060606040523615610097576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde0314610099578063095ea7b31461013257806318160ddd1461018957806323b872dd146101af578063313ce5671461022557806370a082311461025157806395d89b411461029b578063a9059cbb14610334578063dd62ed3e1461038b575bfe5b34156100a157fe5b6100a96103f4565b60405180806020018281038252838181518152602001915080519060200190808383600083146100f8575b8051825260208311156100f8576020820191506020810190506020830392506100d4565b505050905090810190601f1680156101245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561013a57fe5b61016f600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803590602001909190505061042e565b604051808215151515815260200191505060405180910390f35b341561019157fe5b610199610521565b6040518082815260200191505060405180910390f35b34156101b757fe5b61020b600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091908035906020019091905050610527565b604051808215151515815260200191505060405180910390f35b341561022d57fe5b610235610791565b604051808260ff1660ff16815260200191505060405180910390f35b341561025957fe5b610285600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610796565b6040518082815260200191505060405180910390f35b34156102a357fe5b6102ab6107e0565b60405180806020018281038252838181518152602001915080519060200190808383600083146102fa575b8051825260208311156102fa576020820191506020810190506020830392506102d6565b505050905090810190601f1680156103265780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561033c57fe5b610371600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803590602001909190505061081a565b604051808215151515815260200191505060405180910390f35b341561039357fe5b6103de600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610973565b6040518082815260200191505060405180910390f35b604060405190810160405280600981526020017f54657374546f6b656e000000000000000000000000000000000000000000000081525081565b600081600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a3600190505b92915050565b60025481565b600081600060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410806105f1575081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b156105fc5760006000fd5b81600060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555081600060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190505b9392505050565b601281565b6000600060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b919050565b604060405190810160405280600481526020017f544553540000000000000000000000000000000000000000000000000000000081525081565b600081600060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156108695760006000fd5b81600060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555081600060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190505b92915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b929150505600a165627a7a723058205071371ee2a4a1be3c96e77d939cdc26161a256fdd638efc08bd33dfc65d3b850029' - ABI = '[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function","stateMutability":"view"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function","stateMutability":"nonpayable"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function","stateMutability":"view"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function","stateMutability":"nonpayable"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function","stateMutability":"view"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function","stateMutability":"view"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function","stateMutability":"view"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function","stateMutability":"nonpayable"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function","stateMutability":"view"},{"inputs":[{"name":"_totalSupply","type":"uint256"}],"payable":false,"type":"constructor","stateMutability":"nonpayable"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]' - factory = w3.eth.contract(abi=ABI, bytecode=bytecode) - alice, bob = w3.eth.accounts[0], w3.eth.accounts[1] - assert alice == '0x7E5F4552091A69125d5DfCb7b8C2659029395Bdf', alice - assert bob == '0x2B5AD5c4795c026514f8317c7a215E218DcCD6cF', bob - tx_hash = factory.constructor(1000000).transact({'from': alice, 'gas': 899000, 'gasPrice': Web3.to_wei(1, 'gwei')}) - assert tx_hash == HexBytes('0x49e3da72a95e4074a9eaea7b438c73ca154627d317e58abeae914e3769a15044'), tx_hash - txn_receipt = w3.eth.wait_for_transaction_receipt(tx_hash) - assert txn_receipt['contractAddress'] == '0xF2E246BB76DF876Cef8b38ae84130F4F55De395b', txn_receipt['contractAddress'] - contract_address = txn_receipt['contractAddress'] - contract = w3.eth.contract(contract_address, abi=ABI) - total_supply = contract.functions.totalSupply().call() - decimals = 10 ** 18 - assert total_supply == 1000000 * decimals, total_supply - - -In this guide we will interact with an existing token contract that we have -already deployed to a local testing chain. This guide assumes: - -1. An existing token contract at a known address. -2. Access to the proper ``ABI`` for the given contract. -3. A ``web3.main.Web3`` instance connected to a provider with an unlocked account which can send transactions. - - -Creating the contract factory -````````````````````````````` - -First we need to create a contract instance with the address of our token -contract and the ``ERC-20`` ABI. - -.. doctest:: - - >>> contract = w3.eth.contract(contract_address, abi=ABI) - >>> contract.address - '0xF2E246BB76DF876Cef8b38ae84130F4F55De395b' - - -Querying token metadata -``````````````````````` - -Each token will have a total supply which represents the total number of tokens -in circulation. In this example we've initialized the token contract to have 1 -million tokens. Since this token contract is setup to have 18 decimal places, -the raw total supply returned by the contract is going to have 18 additional -decimal places. - -.. doctest:: - - >>> contract.functions.name().call() - 'TestToken' - >>> contract.functions.symbol().call() - 'TEST' - >>> decimals = contract.functions.decimals().call() - >>> decimals - 18 - >>> DECIMALS = 10 ** decimals - >>> contract.functions.totalSupply().call() // DECIMALS - 1000000 - - -Query account balances -`````````````````````` - -Next we can query some account balances using the contract's ``balanceOf`` -function. The token contract we are using starts with a single account which -we'll refer to as ``alice`` holding all of the tokens. - -.. doctest:: - - >>> alice = '0x7E5F4552091A69125d5DfCb7b8C2659029395Bdf' - >>> bob = '0x2B5AD5c4795c026514f8317c7a215E218DcCD6cF' - >>> raw_balance = contract.functions.balanceOf(alice).call() - >>> raw_balance - 1000000000000000000000000 - >>> raw_balance // DECIMALS - 1000000 - >>> contract.functions.balanceOf(bob).call() - 0 - - -Sending tokens -`````````````` - -Next we can transfer some tokens from ``alice`` to ``bob`` using the contract's -``transfer`` function. - - -.. doctest:: - - >>> tx_hash = contract.functions.transfer(bob, 100).transact({'from': alice}) - >>> tx_receipt = w3.eth.wait_for_transaction_receipt(tx_hash) - >>> contract.functions.balanceOf(alice).call() - 999999999999999999999900 - >>> contract.functions.balanceOf(bob).call() - 100 - - -Creating an approval for external transfers -``````````````````````````````````````````` - -Alice could also *approve* someone else to spend tokens from her account using -the ``approve`` function. We can also query how many tokens we're approved to -spend using the ``allowance`` function. - -.. doctest:: - - >>> contract.functions.allowance(alice, bob).call() - 0 - >>> tx_hash = contract.functions.approve(bob, 200).transact({'from': alice}) - >>> tx_receipt = w3.eth.wait_for_transaction_receipt(tx_hash) - >>> contract.functions.allowance(alice, bob).call() - 200 - - -Performing an external transfer -``````````````````````````````` - -When someone has an allowance they can transfer those tokens using the -``transferFrom`` function. - -.. doctest:: - - >>> contract.functions.allowance(alice, bob).call() - 200 - >>> contract.functions.balanceOf(bob).call() - 100 - >>> tx_hash = contract.functions.transferFrom(alice, bob, 75).transact({'from': bob}) - >>> tx_receipt = w3.eth.wait_for_transaction_receipt(tx_hash) - >>> contract.functions.allowance(alice, bob).call() - 125 - >>> contract.functions.balanceOf(bob).call() - 175 - - -.. _ERC-20: https://github.com/ethereum/ERCs/blob/master/ERCS/erc-20.md - - -Using a struct as a function argument -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -web3.py accepts struct arguments as dictionaries. This format also supports nested structs. -Let's take a look at a quick example. Given the following Solidity contract: - -.. code-block:: none - - contract Example { - address addr; - - struct S1 { - address a1; - address a2; - } - - struct S2 { - bytes32 b1; - bytes32 b2; - } - - struct X { - S1 s1; - S2 s2; - address[] users; - } - - function update(X memory x) public { - addr = x.s1.a2; - } - - function retrieve() public view returns (address) { - return addr; - } - } - -You can interact with the web3.py contract API as follows: - -.. code-block:: python - - # deploy or lookup the deployed contract, then: - - >>> deployed_contract.functions.retrieve().call() - '0x0000000000000000000000000000000000000000' - - >>> deployed_contract.functions.update({'s1': ['0x0000000000000000000000000000000000000001', '0x0000000000000000000000000000000000000002'], 's2': [b'0'*32, b'1'*32], 'users': []}).transact() - - >>> deployed_contract.functions.retrieve().call() - '0x0000000000000000000000000000000000000002' - - -.. _ambiguous-contract-functions: - -Invoke Ambiguous Contract Functions -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Calling overloaded functions can be done as you would expect. Passing arguments will -disambiguate which function you want to call. - -For example, if you have a contract with two functions with the name ``identity`` that -accept different types of arguments, you can call them like this: - -.. code-block:: python - - >>> ambiguous_contract = w3.eth.contract(address=..., abi=...) - >>> ambiguous_contract.functions.identity(1, True).call() - 1 - >>> ambiguous_contract.functions.identity("one", 1, True).call() - 1 - -If there is a need to first retrieve the function, you can use the contract instance's -``get_function_by_signature`` method to get the function you want to call. - -Below is an example of a contract that has multiple functions of the same name, -and the arguments are ambiguous. You can use the :meth:`Contract.get_function_by_signature` -method to reference the intended function and call it with the correct arguments. - -.. code-block:: python - - >>> contract_source_code = """ - pragma solidity ^0.8.24; - contract AmbiguousDuo { - function identity(uint256 input, bool uselessFlag) public pure returns (uint256) { - return input; - } - function identity(int256 input, bool uselessFlag) public pure returns (int256) { - return input; - } - } - """ - # fast forward all the steps of compiling and deploying the contract. - - >>> identity_func = ambiguous_contract.get_function_by_signature('identity(uint256,bool)') - >>> identity_func(1, True) - - >>> identity_func(1, True).call() - 1 - - -.. _ccip-read-example: - -CCIP Read support for offchain lookup -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Contract calls support CCIP Read by default, via a ``ccip_read_enabled`` flag on the call and, more globally, a -``global_ccip_read_enabled`` flag on the provider. The following should work by default without raising an -``OffchainLookup`` and instead handling it appropriately as per the specification outlined in -`EIP-3668 `_. - -.. code-block:: python - - myContract.functions.revertsWithOffchainLookup(myData).call() - -If the offchain lookup requires the user to send a transaction rather than make a call, this may be handled -appropriately in the following way: - -.. code-block:: python - - from web3 import Web3, WebSocketProvider - from web3.utils import handle_offchain_lookup - - w3 = Web3(WebSocketProvider(...)) - - myContract = w3.eth.contract(address=...) - myData = b'data for offchain lookup function call' - - # preflight with an `eth_call` and handle the exception - try: - myContract.functions.revertsWithOffchainLookup(myData).call(ccip_read_enabled=False) - except OffchainLookup as ocl: - tx = {'to': myContract.address, 'from': my_account} - data_for_callback_function = handle_offchain_lookup(ocl.payload) - tx['data'] = data_for_callback_function - - # send the built transaction with `eth_sendTransaction` or sign and send with `eth_sendRawTransaction` - tx_hash = w3.eth.send_transaction(tx) - -Contract Unit Tests in Python -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Here is an example of how one can use the `pytest`_ framework in python, web3.py, -eth-tester, and PyEVM to perform unit tests entirely in python without any -additional need for a full featured ethereum node/client. To install needed -dependencies you can use the pinned extra for testing: - -.. _pytest: https://docs.pytest.org/en/latest/ - -.. code-block:: bash - - $ pip install web3[test] pytest - -Once you have an environment set up for testing, you can then write your tests -like so: - -.. include:: ../tests/core/contracts/test_contract_example.py - :code: python - :start-line: 1 diff --git a/docs/web3.eth.account.rst b/docs/web3.eth.account.rst deleted file mode 100644 index ad0cec455c..0000000000 --- a/docs/web3.eth.account.rst +++ /dev/null @@ -1,454 +0,0 @@ -.. _eth-account: - -Accounts -======== - -.. _local_vs_hosted: - -Local vs Hosted Nodes ---------------------- - -Hosted Node - A **hosted** node is controlled by someone else. You may also see these referred to - as **remote** nodes. View a list of commercial `node providers `_. - -Local Node - A **local** node is started and controlled by you on your computer. For several reasons - (e.g., privacy, security), this is the recommended path, but it requires more resources - and work to set up and maintain. See `ethereum.org `_ for a guided tour. - -Local vs Hosted Keys --------------------- - -An Ethereum private key is a 256-bit (32 bytes) random integer. -For each private key, you get one Ethereum address, -also known as an Externally Owned Account (EOA). - -In Python, the private key is expressed as a 32-byte long Python ``bytes`` object. -When a private key is presented to users in a hexadecimal format, it may or may -not contain a starting ``0x`` hexadecimal prefix. - -Local Private Key - A local private key is a locally stored secret you import to your Python application. - Please read below how you can create and import a local private key - and use it to sign transactions. - -Hosted Private Key - This is a legacy way to use accounts when working with unit test backends like - ``EthereumTesterProvider`` or `Anvil `_. - Calling ``web3.eth.accounts`` gives you a - predefined list of accounts that have been funded with test ETH. - You can use :meth:`~web3.eth.Eth.send_transaction` on any of these accounts - without further configuration. - - In the past, around 2015, this was also a way to use private keys - in a locally hosted node, but this practice is now discouraged. - -.. warning:: - - ``web3.eth.send_transaction`` does not work with modern node providers, - because they relied on a node state and all modern nodes are stateless. - You must always use local private keys when working with nodes hosted by - someone else. - - -Some Common Uses for Local Private Keys ---------------------------------------- - -A very common reason to work with local private keys is to interact -with a hosted node. - -Some common things you might want to do with a `Local Private Key` are: - -- `Sign a Transaction`_ -- `Sign a Contract Transaction`_ -- `Sign a Message`_ -- `Verify a Message`_ - -Using private keys usually involves ``w3.eth.account`` in one way or another. Read on for more, -or see a full list of things you can do in the docs for -:class:`eth_account.Account `. - - -Creating a Private Key ----------------------- - -Each Ethereum address has a matching private key. To create a new Ethereum -account you can just generate a random number that acts as a private key. - -- A private key is just a random unguessable, or cryptographically safe, 256-bit integer number - -- A valid private key is > 0 and < max private key value (a number above the elliptic curve order FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFE BAAEDCE6 AF48A03B BFD25E8C D0364141) - -- Private keys do not have checksums. - -To create a private key using web3.py and command line you can do: - -.. code-block:: shell - - python -c "from web3 import Web3; w3 = Web3(); acc = w3.eth.account.create(); print(f'private key={w3.to_hex(acc.key)}, account={acc.address}')" - -Which outputs a new private key and an account pair:: - - private key=0x480c4aec9fa..., account=0x9202a9d5D2d129CB400a40e00aC822a53ED81167 - -- *Never store private key with your source*. Use environment variables - to store the key. Read more below. - -- You can also import the raw hex private key to MetaMask and any other - wallet - the private key can be shared between your Python code - and any number of wallets. - - -Funding a New Account ---------------------- - -If you create a private key, it comes with its own Ethereum address. -By default, the balance of this address is zero. -Before you can send any transactions with your account, -you need to top up. - -- For a local test environment (e.g., ``EthereumTesterProvider``), any - environment is bootstrapped with accounts that have test ETH in them. - Move ETH from default accounts to your newly created account. - -- For public mainnet, you need to buy ETH in a cryptocurrency exchange - and send it to your privately controlled account. - -- For a testnet, find a relevant testnet :ref:`faucet `. - - -Reading a Private Key from an Environment Variable --------------------------------------------------- - -In this example we pass the private key to our Python application in an -`environment variable `_. -This private key is then added to the transaction signing keychain -with ``Signing`` middleware. - -If unfamiliar, note that you can `export your private keys from Metamask and other wallets `_. - -.. warning :: - - - **Never** share your private keys. - - **Never** put your private keys in source code. - - **Never** commit private keys to a Git repository. - -Example ``account_test_script.py`` - -.. code-block:: python - - import os - from eth_account import Account - from eth_account.signers.local import LocalAccount - from web3 import Web3, EthereumTesterProvider - from web3.middleware import SignAndSendRawMiddlewareBuilder - - w3 = Web3(EthereumTesterProvider()) - - private_key = os.environ.get("PRIVATE_KEY") - assert private_key is not None, "You must set PRIVATE_KEY environment variable" - assert private_key.startswith("0x"), "Private key must start with 0x hex prefix" - - account: LocalAccount = Account.from_key(private_key) - w3.middleware_onion.inject(SignAndSendRawMiddlewareBuilder.build(account), layer=0) - - print(f"Your hot wallet address is {account.address}") - - # Now you can use web3.eth.send_transaction(), Contract.functions.xxx.transact() functions - # with your local private key through middleware and you no longer get the error - # "ValueError: The method eth_sendTransaction does not exist/is not available - -Example how to run this in UNIX shell: - -.. code-block:: shell - - # Generate a new 256-bit random integer using openssl UNIX command that acts as a private key. - # You can also do: - # python -c "from web3 import Web3; w3 = Web3(); acc = w3.eth.account.create(); print(f'private key={w3.to_hex(acc.key)}, account={acc.address}')" - # Store this in a safe place, like in your password manager. - export PRIVATE_KEY=0x`openssl rand -hex 32` - - # Run our script - python account_test_script.py - - -This will print:: - - Your hot wallet address is 0x27C8F899bb69E1501BBB96d09d7477a2a7518918 - - -.. _extract_geth_pk: - -Extract private key from geth keyfile -------------------------------------- - -.. NOTE:: - The amount of available ram should be greater than 1GB. - -.. code-block:: python - - with open('~/.ethereum/keystore/UTC--...--5ce9454909639D2D17A3F753ce7d93fa0b9aB12E') as keyfile: - encrypted_key = keyfile.read() - private_key = w3.eth.account.decrypt(encrypted_key, 'correcthorsebatterystaple') - # tip: do not save the key or password anywhere, especially into a shared source file - - -Sign a Message --------------- - -.. WARNING:: There is no single message format that is broadly adopted - with community consensus. Keep an eye on several options, - like `EIP-683 `_, - `EIP-712 `_, and - `EIP-719 `_. Consider - the :meth:`w3.eth.sign() ` approach be deprecated. - -For this example, we will use the same message hashing mechanism that -is provided by :meth:`w3.eth.sign() `. - -.. doctest:: - - >>> from web3 import Web3, EthereumTesterProvider - >>> from eth_account.messages import encode_defunct - - >>> w3 = Web3(EthereumTesterProvider()) - >>> msg = "I♥SF" - >>> private_key = b"\xb2\\}\xb3\x1f\xee\xd9\x12''\xbf\t9\xdcv\x9a\x96VK-\xe4\xc4rm\x03[6\xec\xf1\xe5\xb3d" - >>> message = encode_defunct(text=msg) - >>> signed_message = w3.eth.account.sign_message(message, private_key=private_key) - >>> signed_message - SignedMessage(message_hash=HexBytes('0x1476abb745d423bf09273f1afd887d951181d25adc66c4834a70491911b7f750'), - r=104389933075820307925104709181714897380569894203213074526835978196648170704563, - s=28205917190874851400050446352651915501321657673772411533993420917949420456142, - v=28, - signature=HexBytes('0xe6ca9bba58c88611fad66a6ce8f996908195593807c4b38bd528d2cff09d4eb33e5bfbbf4d3e39b1a2fd816a7680c19ebebaf3a141b239934ad43cb33fcec8ce1c')) - - -Verify a Message ----------------- - -With the original message text and a signature: - -.. doctest:: - - >>> message = encode_defunct(text="I♥SF") - >>> w3.eth.account.recover_message(message, signature=signed_message.signature) - '0x5ce9454909639D2D17A3F753ce7d93fa0b9aB12E' - - -Prepare message for ecrecover in Solidity ------------------------------------------ - -Let's say you want a contract to validate a signed message, -like if you're making payment channels, and you want to -validate the value in Remix or web3.js. - -You might have produced the signed_message locally, as in -`Sign a Message`_. If so, this will prepare it for Solidity: - -.. doctest:: - - >>> from web3 import Web3 - - # ecrecover in Solidity expects v as a uint8, but r and s as left-padded bytes32 - # Remix / web3.js expect r and s to be encoded to hex - # This convenience method will do the pad & hex for us: - >>> def to_32byte_hex(val): - ... return Web3.to_hex(Web3.to_bytes(val).rjust(32, b'\0')) - - >>> ec_recover_args = (msghash, v, r, s) = ( - ... Web3.to_hex(signed_message.message_hash), - ... signed_message.v, - ... to_32byte_hex(signed_message.r), - ... to_32byte_hex(signed_message.s), - ... ) - >>> ec_recover_args - ('0x1476abb745d423bf09273f1afd887d951181d25adc66c4834a70491911b7f750', - 28, - '0xe6ca9bba58c88611fad66a6ce8f996908195593807c4b38bd528d2cff09d4eb3', - '0x3e5bfbbf4d3e39b1a2fd816a7680c19ebebaf3a141b239934ad43cb33fcec8ce') - -Instead, you might have received a message and a signature encoded to hex. Then -this will prepare it for Solidity: - -.. doctest:: - - >>> from web3 import Web3 - >>> from eth_account.messages import encode_defunct, _hash_eip191_message - - >>> hex_message = '0x49e299a55346' - >>> hex_signature = '0xe6ca9bba58c88611fad66a6ce8f996908195593807c4b38bd528d2cff09d4eb33e5bfbbf4d3e39b1a2fd816a7680c19ebebaf3a141b239934ad43cb33fcec8ce1c' - - # ecrecover in Solidity expects an encoded version of the message - - # - encode the message - >>> message = encode_defunct(hexstr=hex_message) - - # - hash the message explicitly - >>> message_hash = _hash_eip191_message(message) - - # Remix / web3.js expect the message hash to be encoded to a hex string - >>> hex_message_hash = Web3.to_hex(message_hash) - - # ecrecover in Solidity expects the signature to be split into v as a uint8, - # and r, s as a bytes32 - # Remix / web3.js expect r and s to be encoded to hex - >>> sig = Web3.to_bytes(hexstr=hex_signature) - >>> v, hex_r, hex_s = Web3.to_int(sig[-1]), Web3.to_hex(sig[:32]), Web3.to_hex(sig[32:64]) - - # ecrecover in Solidity takes the arguments in order = (msghash, v, r, s) - >>> ec_recover_args = (hex_message_hash, v, hex_r, hex_s) - >>> ec_recover_args - ('0x1476abb745d423bf09273f1afd887d951181d25adc66c4834a70491911b7f750', - 28, - '0xe6ca9bba58c88611fad66a6ce8f996908195593807c4b38bd528d2cff09d4eb3', - '0x3e5bfbbf4d3e39b1a2fd816a7680c19ebebaf3a141b239934ad43cb33fcec8ce') - - -Verify a message with ecrecover in Solidity -------------------------------------------- - -Create a simple ecrecover contract in `Remix `_: - -.. code-block:: none - - pragma solidity ^0.4.19; - - contract Recover { - function ecr (bytes32 msgh, uint8 v, bytes32 r, bytes32 s) public pure - returns (address sender) { - return ecrecover(msgh, v, r, s); - } - } - -Then call ecr with these arguments from `Prepare message for ecrecover in Solidity`_ in Remix, -``"0x1476abb745d423bf09273f1afd887d951181d25adc66c4834a70491911b7f750", 28, "0xe6ca9bba58c88611fad66a6ce8f996908195593807c4b38bd528d2cff09d4eb3", "0x3e5bfbbf4d3e39b1a2fd816a7680c19ebebaf3a141b239934ad43cb33fcec8ce"`` - -The message is verified, because we get the correct sender of -the message back in response: ``0x5ce9454909639d2d17a3f753ce7d93fa0b9ab12e``. - - -.. _local-sign-transaction: - -Sign a Transaction ------------------- - -Create a transaction, sign it locally, and then send it to your node for broadcasting, -with :meth:`~web3.eth.Eth.send_raw_transaction`. - -.. doctest:: - - >>> transaction = { - ... 'to': '0xF0109fC8DF283027b6285cc889F5aA624EaC1F55', - ... 'value': 1000000000, - ... 'gas': 2000000, - ... 'maxFeePerGas': 2000000000, - ... 'maxPriorityFeePerGas': 1000000000, - ... 'nonce': 0, - ... 'chainId': 1, - ... 'type': '0x2', # the type is optional and, if omitted, will be interpreted based on the provided transaction parameters - ... 'accessList': ( # accessList is optional for dynamic fee transactions - ... { - ... 'address': '0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae', - ... 'storageKeys': ( - ... '0x0000000000000000000000000000000000000000000000000000000000000003', - ... '0x0000000000000000000000000000000000000000000000000000000000000007', - ... ) - ... }, - ... { - ... 'address': '0xbb9bc244d798123fde783fcc1c72d3bb8c189413', - ... 'storageKeys': () - ... }, - ... ) - ... } - >>> key = '0x4c0883a69102937d6231471b5dbb6204fe5129617082792ae468d01a3f362318' - >>> signed = w3.eth.account.sign_transaction(transaction, key) - >>> signed.raw_transaction - HexBytes('0x02f8e20180843b9aca008477359400831e848094f0109fc8df283027b6285cc889f5aa624eac1f55843b9aca0080f872f85994de0b295669a9fd93d5f28d9ec85e40f4cb697baef842a00000000000000000000000000000000000000000000000000000000000000003a00000000000000000000000000000000000000000000000000000000000000007d694bb9bc244d798123fde783fcc1c72d3bb8c189413c001a0b9ec671ccee417ff79e06e9e52bfa82b37cf1145affde486006072ca7a11cf8da0484a9beea46ff6a90ac76e7bbf3718db16a8b4b09cef477fb86cf4e123d98fde') - >>> signed.hash - HexBytes('0xe85ce7efa52c16cb5c469c7bde54fbd4911639fdfde08003f65525a85076d915') - >>> signed.r - 84095564551732371065849105252408326384410939276686534847013731510862163857293 - >>> signed.s - 32698347985257114675470251181312399332782188326270244072370350491677872459742 - >>> signed.v - 1 - - # When you run send_raw_transaction, you get back the hash of the transaction: - >>> w3.eth.send_raw_transaction(signed.raw_transaction) # doctest: +SKIP - '0xe85ce7efa52c16cb5c469c7bde54fbd4911639fdfde08003f65525a85076d915' - - -Sign a Contract Transaction ---------------------------- - -To sign a transaction locally that will invoke a smart contract: - -#. Initialize your :meth:`Contract ` object -#. Build the transaction -#. Sign the transaction, with :meth:`w3.eth.account.sign_transaction() - ` -#. Broadcast the transaction with :meth:`~web3.eth.Eth.send_raw_transaction` - -.. testsetup:: - - import json - - nonce = 0 - - EIP20_ABI = json.loads('[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]') # noqa: 501 - - -.. doctest:: - - # When running locally, execute the statements found in the file linked below to load the EIP20_ABI variable. - # See: https://github.com/carver/ethtoken.py/blob/v0.0.1-alpha.4/ethtoken/abi.py - - >>> from web3 import Web3, EthereumTesterProvider - >>> w3 = Web3(EthereumTesterProvider()) - - >>> unicorns = w3.eth.contract(address="0xfB6916095ca1df60bB79Ce92cE3Ea74c37c5d359", abi=EIP20_ABI) - - >>> nonce = w3.eth.get_transaction_count('0x5ce9454909639D2D17A3F753ce7d93fa0b9aB12E') # doctest: +SKIP - - # Build a transaction that invokes this contract's function, called transfer - >>> unicorn_txn = unicorns.functions.transfer( - ... '0xfB6916095ca1df60bB79Ce92cE3Ea74c37c5d359', - ... 1, - ... ).build_transaction({ - ... 'chainId': 1, - ... 'gas': 70000, - ... 'maxFeePerGas': w3.to_wei('2', 'gwei'), - ... 'maxPriorityFeePerGas': w3.to_wei('1', 'gwei'), - ... 'nonce': nonce, - ... }) - - >>> unicorn_txn - {'value': 0, - 'chainId': 1, - 'gas': 70000, - 'maxFeePerGas': 2000000000, - 'maxPriorityFeePerGas': 1000000000, - 'nonce': 0, - 'to': '0xfB6916095ca1df60bB79Ce92cE3Ea74c37c5d359', - 'data': '0xa9059cbb000000000000000000000000fb6916095ca1df60bb79ce92ce3ea74c37c5d3590000000000000000000000000000000000000000000000000000000000000001'} - - >>> private_key = b"\xb2\\}\xb3\x1f\xee\xd9\x12''\xbf\t9\xdcv\x9a\x96VK-\xe4\xc4rm\x03[6\xec\xf1\xe5\xb3d" - >>> signed_txn = w3.eth.account.sign_transaction(unicorn_txn, private_key=private_key) - >>> signed_txn.hash - HexBytes('0x748db062639a45e519dba934fce09c367c92043867409160c9989673439dc817') - >>> signed_txn.raw_transaction - HexBytes('0x02f8b00180843b9aca0084773594008301117094fb6916095ca1df60bb79ce92ce3ea74c37c5d35980b844a9059cbb000000000000000000000000fb6916095ca1df60bb79ce92ce3ea74c37c5d3590000000000000000000000000000000000000000000000000000000000000001c001a0cec4150e52898cf1295cc4020ac0316cbf186071e7cdc5ec44eeb7cdda05afa2a06b0b3a09c7fb0112123c0bef1fd6334853a9dcf3cb5bab3ccd1f5baae926d449') - >>> signed_txn.r - 93522894155654168208483453926995743737629589441154283159505514235904280342434 - >>> signed_txn.s - 48417310681110102814014302147799665717176259465062324746227758019974374282313 - >>> signed_txn.v - 1 - - >>> w3.eth.send_raw_transaction(signed_txn.raw_transaction) # doctest: +SKIP - - # When you run send_raw_transaction, you get the same result as the hash of the transaction: - >>> w3.to_hex(w3.keccak(signed_txn.raw_transaction)) - '0x748db062639a45e519dba934fce09c367c92043867409160c9989673439dc817' diff --git a/docs/web3.eth.rst b/docs/web3.eth.rst deleted file mode 100644 index 7cb0c131eb..0000000000 --- a/docs/web3.eth.rst +++ /dev/null @@ -1,1335 +0,0 @@ -.. _web3-eth: - -web3.eth API -============ - -.. py:module:: web3.eth - -.. py:class:: Eth - -The ``web3.eth`` object exposes the following properties and methods to -interact with the RPC APIs under the ``eth_`` namespace. - -By default, when a property or method returns a mapping of keys to values, it -will return an ``AttributeDict`` which acts like a ``dict`` but you can -access the keys as attributes and cannot modify its fields. For example, -you can find the latest block number in these two ways: - - .. code-block:: python - - >>> block = web3.eth.get_block('latest') - AttributeDict({ - 'hash': '0xe8ad537a261e6fff80d551d8d087ee0f2202da9b09b64d172a5f45e818eb472a', - 'number': 4022281, - # ... etc ... - }) - - >>> block['number'] - 4022281 - >>> block.number - 4022281 - - >>> block.number = 4022282 - Traceback # ... etc ... - TypeError: This data is immutable -- create a copy instead of modifying - -This feature is available via the ``AttributeDictMiddleware`` which is a default -middleware. - -.. note:: - Accessing an ``AttributeDict`` property via attribute will break type hinting. If - typing is crucial for your application, accessing via key / value, as well as - removing the ``AttributeDictMiddleware`` altogether, may be desired. - - -Properties ----------- - -The following properties are available on the ``web3.eth`` namespace. - - -.. py:attribute:: Eth.default_account - - The ethereum address that will be used as the default ``from`` address for - all transactions. Defaults to empty. - - -.. py:attribute:: Eth.default_block - - The default block number that will be used for any RPC methods that accept - a block identifier. Defaults to ``'latest'``. - - -.. py:attribute:: Eth.syncing - - * Delegates to ``eth_syncing`` RPC Method - - Returns either ``False`` if the node is not syncing or a dictionary - showing sync status. - - .. code-block:: python - - >>> web3.eth.syncing - AttributeDict({ - 'currentBlock': 2177557, - 'highestBlock': 2211611, - 'knownStates': 0, - 'pulledStates': 0, - 'startingBlock': 2177365, - }) - - -.. py:attribute:: Eth.max_priority_fee - - * Delegates to ``eth_maxPriorityFeePerGas`` RPC Method - - Returns a suggestion for a max priority fee for dynamic fee transactions in Wei. - - .. code-block:: python - - >>> web3.eth.max_priority_fee - 2000000000 - - -.. py:attribute:: Eth.gas_price - - * Delegates to ``eth_gasPrice`` RPC Method - - Returns the current gas price in Wei. - - .. code-block:: python - - >>> web3.eth.gas_price - 20000000000 - - -.. py:attribute:: Eth.accounts - - * Delegates to ``eth_accounts`` RPC Method - - Returns the list of known accounts. - - .. code-block:: python - - >>> web3.eth.accounts - ['0x582AC4D8929f58c217d4a52aDD361AE470a8a4cD'] - - -.. py:attribute:: Eth.block_number - - * Delegates to ``eth_blockNumber`` RPC Method - - Returns the number of the most recent block - - Alias for :meth:`~web3.eth.Eth.get_block_number` - - .. code-block:: python - - >>> web3.eth.block_number - 2206939 - - -.. py:attribute:: Eth.chain_id - - * Delegates to ``eth_chainId`` RPC Method - - Returns an integer value for the currently configured "Chain Id" value introduced in `EIP-155 `_. Returns ``None`` if no Chain Id is available. - - .. code-block:: python - - >>> web3.eth.chain_id - 61 - - .. note:: - - This property gets called frequently in validation middleware, but `eth_chainId` - is an allowed method for caching by default. Simply turn on request caching to - avoid repeated calls to this method. - - .. code-block:: python - - >>> w3.provider.cache_allowed_requests = True - - -.. _web3-eth-methods: - -Methods -------- - -The following methods are available on the ``web3.eth`` namespace. - - -.. py:method:: Eth.get_balance(account, block_identifier=eth.default_block) - - * Delegates to ``eth_getBalance`` RPC Method - - Returns the balance of the given ``account`` at the block specified by - ``block_identifier``. - - ``account`` may be a checksum address or an ENS name - - .. code-block:: python - - >>> web3.eth.get_balance('0xd3CdA913deB6f67967B99D67aCDFa1712C293601') - 77320681768999138915 - - -.. py:method:: Eth.get_block_number() - - * Delegates to ``eth_blockNumber`` RPC Method - - Returns the number of the most recent block. - - .. code-block:: python - - >>> web3.eth.get_block_number() - 2206939 - - -.. py:method:: Eth.get_storage_at(account, position, block_identifier=eth.default_block) - - * Delegates to ``eth_getStorageAt`` RPC Method - - Returns the value from a storage position for the given ``account`` at the - block specified by ``block_identifier``. - - ``account`` may be a checksum address or an ENS name - - .. code-block:: python - - >>> web3.eth.get_storage_at('0x6C8f2A135f6ed072DE4503Bd7C4999a1a17F824B', 0) - '0x00000000000000000000000000000000000000000000000000120a0b063499d4' - -.. py:method:: Eth.blob_base_fee - - Fetches the expected base fee for blobs in the next block. - - * Delegates to ``eth_blobBaseFee`` RPC Method - - Returns the expected base fee in Wei. - - .. code-block:: python - - >>> web3.eth.blob_base_fee() - 537070730 - - -.. py:method:: Eth.get_proof(account, positions, block_identifier=eth.default_block) - - * Delegates to ``eth_getProof`` RPC Method - - Returns the values from an array of storage positions for the given ``account`` at the - block specified by ``block_identifier``. - - ``account`` may be a checksum address or an ENS name - - .. code-block:: python - - >>> web3.eth.get_proof('0x6C8f2A135f6ed072DE4503Bd7C4999a1a17F824B', [0], 3391) - AttributeDict({ - 'address': '0x4CB06C43fcdABeA22541fcF1F856A6a296448B6c', - 'accountProof': ['0xf90211a03841a7ddd65c70c94b8efa79190d00f0ab134b26f18dcad508f60a7e74559d0ba0464b07429a05039e22931492d6c6251a860c018ea390045d596b1ac11b5c7aa7a011f4b89823a03c9c4b5a8ab079ee1bc0e2a83a508bb7a5dc7d7fb4f2e95d3186a0b5f7c51c3b2d51d97f171d2b38a4df1a7c0acc5eb0de46beeff4d07f5ed20e19a0b591a2ce02367eda31cf2d16eca7c27fd44dbf0864b64ea8259ad36696eb2a04a02b646a7552b8392ae94263757f699a27d6e9176b4c06b9fc0a722f893b964795a02df05d68bceb88eebf68aafde61d10ab942097afc1c58b8435ffd3895358a742a0c2f16143c4d1db03276c433696dddb3e9f3b113bcd854b127962262e98f43147a0828820316cc02bfefd899aba41340659fd06df1e0a0796287ec2a4110239f6d2a050496598670b04df7bbff3718887fa36437d6d8c7afb4eff86f76c5c7097dcc4a0c14e9060c6b3784e35b9e6ae2ad2984142a75910ccc89eb89dc1e2f44b6c58c2a009804db571d0ce07913e1cbacc4f1dc4fb8265c936f5c612e3a47e91c64d8e9fa063d96f38b3cb51b1665c6641e25ffe24803f2941e5df79942f6a53b7169647e4a0899f71abb18c6c956118bf567fac629b75f7e9526873e429d3d8abb6dbb58021a00fd717235298742623c0b3cafb3e4bd86c0b5ab1f71097b4dd19f3d6925d758da0096437146c16097f2ccc1d3e910d65a4132803baee2249e72c8bf0bcaaeb37e580', - '0xf90151a097b17a89fd2c03ee98cb6459c08f51b269da5cee46650e84470f62bf83b43efe80a03b269d284a4c3cf8f8deacafb637c6d77f607eec8d75e8548d778e629612310480a01403217a7f1416830c870087c524dabade3985271f6f369a12b010883c71927aa0f592ac54c879817389663be677166f5022943e2fe1b52617a1d15c2f353f27dda0ac8d015a9e668f5877fcc391fae33981c00577096f0455b42df4f8e8089ece24a003ba34a13e2f2fb4bf7096540b42d4955c5269875b9cf0f7b87632585d44c9a580a0b179e3230b07db294473ae57f0170262798f8c551c755b5665ace1215cee10ca80a0552d24252639a6ae775aa1df700ffb92c2411daea7286f158d44081c8172d072a0772a87d08cf38c4c68bfde770968571abd16fd3835cb902486bd2e515d53c12d80a0413774f3d900d2d2be7a3ad999ffa859a471dc03a74fb9a6d8275455f5496a548080', - '0xf869a020d13b52a61d3c1325ce3626a51418adebd6323d4840f1bdd93906359d11c933b846f8440180a01ab7c0b0a2a4bbb5a1495da8c142150891fc64e0c321e1feb70bd5f881951f7ea0551332d96d085185ab4019ad8bcf89c45321e136c261eb6271e574a2edf1461f' - ], - 'balance': 0, - 'codeHash': '0x551332d96d085185ab4019ad8bcf89c45321e136c261eb6271e574a2edf1461f', - 'nonce': 1, - 'storageHash': '0x1ab7c0b0a2a4bbb5a1495da8c142150891fc64e0c321e1feb70bd5f881951f7e', - 'storageProof': [ - AttributeDict({ - 'key': '0x00', - 'value': '0x48656c6c6f00000000000000000000000000000000000000000000000000000a', - 'proof': ['0xf9019180a01ace80e7bed79fbadbe390876bd1a7d9770edf9462049ef8f4b555d05715d53ea049347a3c2eac6525a3fd7e3454dab19d73b4adeb9aa27d29493b9843f3f88814a085079b4abcd07fd4a5d6c52d35f4c4574aecc85830e90c478ca8c18fcbe590de80a02e3f8ad7ea29e784007f51852b9c3e470aef06b11bac32586a8b691134e4c27da064d2157a14bc31f195f73296ea4dcdbe7698edbf3ca81c44bf7730179d98d94ca09e7dc2597c9b7f72ddf84d7eebb0fe2a2fa2ab54fe668cd14fee44d9b40b1a53a0aa5d4acc7ac636d16bc9655556770bc325e1901fb62dc53770ef9110009e080380a0d5fde962bd2fb5326ddc7a9ca7fe0ee47c5bb3227f838b6d73d3299c22457596a08691410eff46b88f929ef649ea25025f62a5362ca8dc8876e5e1f4fc8e79256d80a0673e88d3a8a4616f676793096b5ae87cff931bd20fb8dd466f97809a1126aad8a08b774a45c2273553e2daf4bbc3a8d44fb542ea29b6f125098f79a4d211b3309ca02fed3139c1791269acb9365eddece93e743900eba6b42a6a8614747752ba268f80', - '0xf891808080a0c7d094301e0c54da37b696d85f72de5520b224ab2cf4f045d8db1a3374caf0488080a0fc5581783bfe27fab9423602e1914d719fd71433e9d7dd63c95fe7e58d10c9c38080a0c64f346fc7a21f6679cba8abdf37ca2de8c4fcd8f8bcaedb261b5f77627c93908080808080a0ddef2936a67a3ac7d3d4ff15a935a45f2cc4976c8f0310aed85daf763780e2b480', - '0xf843a0200decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563a1a048656c6c6f00000000000000000000000000000000000000000000000000000a' - ] - }) - ] - }) - - * Merkle proof verification using py-trie. - - The following example verifies that the values returned in the ``AttributeDict`` - are included in the state of given trie ``root``. - - .. code-block:: python - - from eth_utils import ( - keccak, - ) - import rlp - from rlp.sedes import ( - Binary, - big_endian_int, - ) - from trie import ( - HexaryTrie, - ) - from web3._utils.encoding import ( - pad_bytes, - ) - - def format_proof_nodes(proof): - trie_proof = [] - for rlp_node in proof: - trie_proof.append(rlp.decode(bytes(rlp_node))) - return trie_proof - - def verify_eth_get_proof(proof, root): - trie_root = Binary.fixed_length(32, allow_empty=True) - hash32 = Binary.fixed_length(32) - - class _Account(rlp.Serializable): - fields = [ - ('nonce', big_endian_int), - ('balance', big_endian_int), - ('storage', trie_root), - ('code_hash', hash32) - ] - acc = _Account( - proof.nonce, proof.balance, proof.storageHash, proof.codeHash - ) - rlp_account = rlp.encode(acc) - trie_key = keccak(bytes.fromhex(proof.address[2:])) - - assert rlp_account == HexaryTrie.get_from_proof( - root, trie_key, format_proof_nodes(proof.accountProof) - ), f"Failed to verify account proof {proof.address}" - - for storage_proof in proof.storageProof: - trie_key = keccak(pad_bytes(b'\x00', 32, storage_proof.key)) - root = proof.storageHash - if storage_proof.value == b'\x00': - rlp_value = b'' - else: - rlp_value = rlp.encode(storage_proof.value) - - assert rlp_value == HexaryTrie.get_from_proof( - root, trie_key, format_proof_nodes(storage_proof.proof) - ), f"Failed to verify storage proof {storage_proof.key}" - - return True - - block = w3.eth.get_block(3391) - proof = w3.eth.get_proof('0x6C8f2A135f6ed072DE4503Bd7C4999a1a17F824B', [0, 1], 3391) - assert verify_eth_get_proof(proof, block.stateRoot) - - -.. py:method:: Eth.get_code(account, block_identifier=eth.default_block) - - * Delegates to ``eth_getCode`` RPC Method - - Returns the bytecode for the given ``account`` at the block specified by - ``block_identifier``. - - ``account`` may be a checksum address or an ENS name - - .. code-block:: python - - # For a contract address. - >>> web3.eth.get_code('0x6C8f2A135f6ed072DE4503Bd7C4999a1a17F824B') - '0x6060604052361561027c5760e060020a60003504630199.....' - # For a private key address. - >>> web3.eth.get_code('0xd3CdA913deB6f67967B99D67aCDFa1712C293601') - '0x' - - -.. py:method:: Eth.get_block(block_identifier=eth.default_block, full_transactions=False) - - * Delegates to ``eth_getBlockByNumber`` or ``eth_getBlockByHash`` RPC Methods - - Returns the block specified by ``block_identifier``. Delegates to - ``eth_getBlockByNumber`` if ``block_identifier`` is an integer or one of - the predefined block parameters ``'latest', 'earliest', 'pending', - 'safe', 'finalized'`` - otherwise delegates to ``eth_getBlockByHash``. - Throws ``BlockNotFound`` error if the block is not found. - - If ``full_transactions`` is ``True`` then the ``'transactions'`` key will - contain full transactions objects. Otherwise it will be an array of - transaction hashes. - - .. code-block:: python - - >>> web3.eth.get_block(2000000) - AttributeDict({ - 'difficulty': 49824742724615, - 'extraData': '0xe4b883e5bda9e7a59ee4bb99e9b1bc', - 'gasLimit': 4712388, - 'gasUsed': 21000, - 'hash': '0xc0f4906fea23cf6f3cce98cb44e8e1449e455b28d684dfa9ff65426495584de6', - 'logsBloom': '0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000', - 'miner': '0x61c808d82a3ac53231750dadc13c777b59310bd9', - 'nonce': '0x3b05c6d5524209f1', - 'number': 2000000, - 'parentHash': '0x57ebf07eb9ed1137d41447020a25e51d30a0c272b5896571499c82c33ecb7288', - 'receiptsRoot': '0x84aea4a7aad5c5899bd5cfc7f309cc379009d30179316a2a7baa4a2ea4a438ac', - 'sha3Uncles': '0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347', - 'size': 650, - 'stateRoot': '0x96dbad955b166f5119793815c36f11ffa909859bbfeb64b735cca37cbf10bef1', - 'timestamp': 1470173578, - 'totalDifficulty': 44010101827705409388, - 'transactions': ['0xc55e2b90168af6972193c1f86fa4d7d7b31a29c156665d15b9cd48618b5177ef'], - 'transactionsRoot': '0xb31f174d27b99cdae8e746bd138a01ce60d8dd7b224f7c60845914def05ecc58', - 'uncles': [], - }) - - -.. py:method:: Eth.get_block_transaction_count(block_identifier) - - * Delegates to ``eth_getBlockTransactionCountByNumber`` or - ``eth_getBlockTransactionCountByHash`` RPC Methods - - Returns the number of transactions in the block specified by - ``block_identifier``. Delegates to - ``eth_getBlockTransactionCountByNumber`` if ``block_identifier`` is an - integer or one of the predefined block parameters ``'latest', 'earliest', - 'pending', 'safe', 'finalized'``, - otherwise delegates to ``eth_getBlockTransactionCountByHash``. - Throws ``BlockNotFoundError`` if transactions are not found. - - .. code-block:: python - - >>> web3.eth.get_block_transaction_count(46147) - 1 - >>> web3.eth.get_block_transaction_count('0x4e3a3754410177e6937ef1f84bba68ea139e8d1a2258c5f85db9f1cd715a1bdd') # block 46147 - 1 - - -.. py:method:: Eth.get_uncle_by_block(block_identifier, uncle_index) - - * Delegates to ``eth_getUncleByBlockHashAndIndex`` or - ``eth_getUncleByBlockNumberAndIndex`` RPC methods - - Returns the uncle at the index specified by ``uncle_index`` - from the block specified by ``block_identifier``. Delegates to - ``eth_getUncleByBlockNumberAndIndex`` if ``block_identifier`` is an - integer or one of the predefined block parameters ``'latest', 'earliest', - 'pending'``, otherwise delegates to - ``eth_getUncleByBlockHashAndIndex``. Throws ``BlockNotFound`` if the block is not found. - - .. code-block:: python - - >>> web3.eth.get_uncle_by_block(56160, 0) - AttributeDict({ - 'author': '0xbe4532e1b1db5c913cf553be76180c1777055403', - 'difficulty': '0x17dd9ca0afe', - 'extraData': '0x476574682f686261722f76312e302e312f6c696e75782f676f312e342e32', - 'gasLimit': '0x2fefd8', - 'gasUsed': '0x0', - 'hash': '0xc78c35720d930f9ef34b4e6fb9d02ffec936f9b02a8f0fa858456e4afd4d5614', - 'logsBloom':'0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000', - 'miner': '0xbe4532e1b1db5c913cf553be76180c1777055403', - 'mixHash': '0x041e14603f35a82f6023802fec96ef760433292434a39787514f140950597e5e', - 'nonce': '0x5d2b7e3f1af09995', - 'number': '0xdb5e', - 'parentHash': '0xcc30e8a9b15c548d5bf113c834143a8f0e1909fbfea96b2a208dc154293a78cf', - 'receiptsRoot': '0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421', - 'sealFields': ['0xa0041e14603f35a82f6023802fec96ef760433292434a39787514f140950597e5e', '0x885d2b7e3f1af09995'], - 'sha3Uncles': '0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347', - 'size': None, 'stateRoot': '0x8ce2b1bf8e25a06a8ca34c647ff5fd0fa48ac725cc07f657ae1645ab8ef68c91', - 'timestamp': '0x55c6a972', - 'totalDifficulty': '0xce4c4f0a0b810b', - 'transactions': [], - 'transactionsRoot': '0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421', - 'uncles': [] - }) - - # You can also refer to the block by hash: - >>> web3.eth.get_uncle_by_block('0x685b2226cbf6e1f890211010aa192bf16f0a0cba9534264a033b023d7367b845', 0) - AttributeDict({ - ... - }) - - -.. py:method:: Eth.get_uncle_count(block_identifier) - - * Delegates to ``eth_getUncleCountByBlockHash`` or - ``eth_getUncleCountByBlockNumber`` RPC methods - - Returns the (integer) number of uncles associated with the block specified by ``block_identifier``. - Delegates to ``eth_getUncleCountByBlockNumber`` if ``block_identifier`` is an - integer or one of the predefined block parameters ``'latest', 'earliest', - 'pending'``, otherwise delegates to ``eth_getUncleCountByBlockHash``. - Throws ``BlockNotFound`` if the block is not found. - - .. code-block:: python - - >>> web3.eth.get_uncle_count(56160) - 1 - - # You can also refer to the block by hash: - >>> web3.eth.get_uncle_count('0x685b2226cbf6e1f890211010aa192bf16f0a0cba9534264a033b023d7367b845') - 1 - - -.. py:method:: Eth.get_transaction(transaction_hash) - - * Delegates to ``eth_getTransactionByHash`` RPC Method - - Returns the transaction specified by ``transaction_hash``. If the transaction cannot be found throws :class:`web3.exceptions.TransactionNotFound`. - - .. code-block:: python - - >>> web3.eth.get_transaction('0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060') - AttributeDict({'blockHash': HexBytes('0x4e3a3754410177e6937ef1f84bba68ea139e8d1a2258c5f85db9f1cd715a1bdd'), - 'blockNumber': 46147, - 'from': '0xA1E4380A3B1f749673E270229993eE55F35663b4', - 'gas': 21000, - 'gasPrice': 50000000000000, - 'hash': HexBytes('0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060'), - 'input': HexBytes('0x'), - 'nonce': 0, - 'r': HexBytes('0x88ff6cf0fefd94db46111149ae4bfc179e9b94721fffd821d38d16464b3f71d0'), - 's': HexBytes('0x45e0aff800961cfce805daef7016b9b675c137a6a41a548f7b60a3484c06a33a'), - 'to': '0x5DF9B87991262F6BA471F09758CDE1c0FC1De734', - 'transactionIndex': 0, - 'type': 0, - 'v': 28, - 'value': 31337 - }) - - -.. py:method:: Eth.get_raw_transaction(transaction_hash) - - * Delegates to ``eth_getRawTransactionByHash`` RPC Method - - Returns the raw form of transaction specified by ``transaction_hash``. - - If no transaction is found, ``TransactionNotFound`` is raised. - - .. code-block:: python - - >>> web3.eth.get_raw_transaction('0x86fbfe56cce542ff0a2a2716c31675a0c9c43701725c4a751d20ee2ddf8a733d') - HexBytes('0xf86907843b9aca0082520894dc544d1aa88ff8bbd2f2aec754b1f1e99e1812fd018086eecac466e115a0f9db4e25484b28f486b247a372708d4cd0643fc63e604133afac577f4cc1eab8a044841d84e799d4dc18ba146816a937e8a0be8bc296bd8bb8aea126de5e627e06') - - -.. py:method:: Eth.get_transaction_by_block(block_identifier, transaction_index) - - * Delegates to ``eth_getTransactionByBlockNumberAndIndex`` or - ``eth_getTransactionByBlockHashAndIndex`` RPC Methods - - Returns the transaction at the index specified by ``transaction_index`` - from the block specified by ``block_identifier``. Delegates to - ``eth_getTransactionByBlockNumberAndIndex`` if ``block_identifier`` is an - integer or one of the predefined block parameters ``'latest', 'earliest', - 'pending', 'safe', 'finalized'``, otherwise delegates to - ``eth_getTransactionByBlockHashAndIndex``. - If a transaction is not found at specified arguments, throws :class:`web3.exceptions.TransactionNotFound`. - - .. code-block:: python - - >>> web3.eth.get_transaction_by_block(46147, 0) - AttributeDict({ - 'blockHash': '0x4e3a3754410177e6937ef1f84bba68ea139e8d1a2258c5f85db9f1cd715a1bdd', - 'blockNumber': 46147, - 'from': '0xA1E4380A3B1f749673E270229993eE55F35663b4', - 'gas': 21000, - 'gasPrice': None, - 'hash': '0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060', - 'input': '0x', - 'maxFeePerGas': 2000000000, - 'maxPriorityFeePerGas': 1000000000, - 'nonce': 0, - 'to': '0x5DF9B87991262F6BA471F09758CDE1c0FC1De734', - 'transactionIndex': 0, - 'value': 31337, - }) - >>> web3.eth.get_transaction_by_block('0x4e3a3754410177e6937ef1f84bba68ea139e8d1a2258c5f85db9f1cd715a1bdd', 0) - AttributeDict({ - 'blockHash': '0x4e3a3754410177e6937ef1f84bba68ea139e8d1a2258c5f85db9f1cd715a1bdd', - 'blockNumber': 46147, - 'from': '0xA1E4380A3B1f749673E270229993eE55F35663b4', - 'gas': 21000, - 'gasPrice': None, - 'hash': '0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060', - 'input': '0x', - 'maxFeePerGas': 2000000000, - 'maxPriorityFeePerGas': 1000000000, - 'nonce': 0, - 'to': '0x5DF9B87991262F6BA471F09758CDE1c0FC1De734', - 'transactionIndex': 0, - 'value': 31337, - }) - - -.. py:method:: Eth.get_raw_transaction_by_block(block_identifier, transaction_index) - - * Delegates to ``eth_getRawTransactionByBlockNumberAndIndex`` or - ``eth_getRawTransactionByBlockHashAndIndex`` RPC Methods - - Returns the raw transaction at the index specified by ``transaction_index`` - from the block specified by ``block_identifier``. Delegates to - ``eth_getRawTransactionByBlockNumberAndIndex`` if ``block_identifier`` is an - integer or one of the predefined block parameters ``'latest', 'earliest', - 'pending', 'safe', 'finalized'``, otherwise delegates to - ``eth_getRawTransactionByBlockHashAndIndex``. - If a transaction is not found at specified arguments, throws :class:`web3.exceptions.TransactionNotFound`. - - .. code-block:: python - - >>> web3.eth.get_raw_transaction_by_block('latest', 0) - HexBytes('0x02f87582053901843b9aca00843b9aca008301d8a894e2dfcfa89a45abdc3de91f7a2844b276b8451d2e888ac7230489e8000080c001a028dcd2e11682288c00237f377280bc6a478a6b27e9c2d745262152add1b1dfcba04e7a33b7ce2a37fc3cd3af7bdc7d7beff721664d56508defa188df35afd77c2c') - >>> web3.eth.get_raw_transaction_by_block(2, 0) - HexBytes('0x02f87582053901843b9aca00843b9aca008301d8a894e2dfcfa89a45abdc3de91f7a2844b276b8451d2e888ac7230489e8000080c001a028dcd2e11682288c00237f377280bc6a478a6b27e9c2d745262152add1b1dfcba04e7a33b7ce2a37fc3cd3af7bdc7d7beff721664d56508defa188df35afd77c2c') - >>> web3.eth.get_raw_transaction_by_block('0xca609fb606a04ce6aaec76415cd0b9d8c2bc83ad2a4d17db7fd403ee7d97bf40', 0) - HexBytes('0x02f87582053901843b9aca00843b9aca008301d8a894e2dfcfa89a45abdc3de91f7a2844b276b8451d2e888ac7230489e8000080c001a028dcd2e11682288c00237f377280bc6a478a6b27e9c2d745262152add1b1dfcba04e7a33b7ce2a37fc3cd3af7bdc7d7beff721664d56508defa188df35afd77c2c') - -.. py:method:: Eth.wait_for_transaction_receipt(transaction_hash, timeout=120, poll_latency=0.1) - - Waits for the transaction specified by ``transaction_hash`` to be included in a block, then - returns its transaction receipt. - - Optionally, specify a ``timeout`` in seconds. If timeout elapses before the transaction - is added to a block, then :meth:`~Eth.wait_for_transaction_receipt` raises a - :class:`web3.exceptions.TimeExhausted` exception. - - .. code-block:: python - - >>> web3.eth.wait_for_transaction_receipt('0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060') - # If transaction is not yet in a block, time passes, while the thread sleeps... - # ... - # Then when the transaction is added to a block, its receipt is returned: - AttributeDict({ - 'blockHash': HexBytes('0x4e3a3754410177e6937ef1f84bba68ea139e8d1a2258c5f85db9f1cd715a1bdd'), - 'blockNumber': 46147, - 'contractAddress': None, - 'cumulativeGasUsed': 21000, - 'from': '0xA1E4380A3B1f749673E270229993eE55F35663b4', - 'gasUsed': 21000, - 'logs': [], - 'logsBloom': HexBytes('0x000000000000000000000000000000000000000000000000...0000'), - 'status': 1, - 'to': '0x5DF9B87991262F6BA471F09758CDE1c0FC1De734', - 'transactionHash': HexBytes('0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060'), - 'transactionIndex': 0, - }) - - -.. py:method:: Eth.get_transaction_receipt(transaction_hash) - - * Delegates to ``eth_getTransactionReceipt`` RPC Method - - Returns the transaction receipt specified by ``transaction_hash``. If the transaction cannot be found throws :class:`web3.exceptions.TransactionNotFound`. - - If ``status`` in response equals 1 the transaction was successful. If it is equals 0 the transaction was reverted by EVM. - - .. code-block:: python - - >>> web3.eth.get_transaction_receipt('0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060') # not yet mined - Traceback # ... etc ... - TransactionNotFound: Transaction with hash: 0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060 not found. - - # wait for it to be mined.... - >>> web3.eth.get_transaction_receipt('0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060') - AttributeDict({ - 'blockHash': '0x4e3a3754410177e6937ef1f84bba68ea139e8d1a2258c5f85db9f1cd715a1bdd', - 'blockNumber': 46147, - 'contractAddress': None, - 'cumulativeGasUsed': 21000, - 'from': '0xA1E4380A3B1f749673E270229993eE55F35663b4', - 'gasUsed': 21000, - 'logs': [], - 'logsBloom': '0x000000000000000000000000000000000000000000000000...0000', - 'status': 1, # 0 or 1 - 'to': '0x5DF9B87991262F6BA471F09758CDE1c0FC1De734', - 'transactionHash': '0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060', - 'transactionIndex': 0, - }) - - -.. py:method:: Eth.get_transaction_count(account, block_identifier=web3.eth.default_block) - - * Delegates to ``eth_getTransactionCount`` RPC Method - - Returns the number of transactions that have been sent from ``account`` as - of the block specified by ``block_identifier``. - - ``account`` may be a checksum address or an ENS name - - .. code-block:: python - - >>> web3.eth.get_transaction_count('0xd3CdA913deB6f67967B99D67aCDFa1712C293601') - 340 - - -.. py:method:: Eth.send_transaction(transaction) - - * Delegates to ``eth_sendTransaction`` RPC Method - - Signs and sends the given ``transaction`` - - The ``transaction`` parameter should be a dictionary with the following fields. - - * ``from``: ``bytes or text``, checksum address or ENS name - (optional, default: - ``web3.eth.defaultAccount``) The address the transaction is sent from. - * ``to``: ``bytes or text``, checksum address or ENS name - (optional when creating new - contract) The address the transaction is directed to. - * ``gas``: ``integer`` - (optional) Integer of the gas - provided for the transaction execution. It will return unused gas. - * ``maxFeePerGas``: ``integer or hex`` - (optional) maximum amount you're willing - to pay, inclusive of ``baseFeePerGas`` and ``maxPriorityFeePerGas``. The difference - between ``maxFeePerGas`` and ``baseFeePerGas + maxPriorityFeePerGas`` is refunded - to the user. - * ``maxPriorityFeePerGas``: ``integer or hex`` - (optional) the part of the fee - that goes to the miner - * ``gasPrice``: ``integer`` - Integer of the gasPrice used for each paid gas - **LEGACY** - unless you have a good reason to use ``gasPrice``, use ``maxFeePerGas`` - and ``maxPriorityFeePerGas`` instead. - * ``value``: ``integer`` - (optional) Integer of the value send with this - transaction - * ``data``: ``bytes or text`` - The compiled code of a contract OR the hash - of the invoked method signature and encoded parameters. For details see - `Ethereum Contract ABI `_. - * ``nonce``: ``integer`` - (optional) Integer of a nonce. This allows to - overwrite your own pending transactions that use the same nonce. - - If the ``transaction`` specifies a ``data`` value but does not specify - ``gas`` then the ``gas`` value will be populated using the - :meth:`~web3.eth.Eth.estimate_gas()` function with an additional buffer of ``100000`` - gas up to the ``gasLimit`` of the latest block. In the event that the - value returned by :meth:`~web3.eth.Eth.estimate_gas()` method is greater than the - ``gasLimit`` a ``ValueError`` will be raised. - - - .. code-block:: python - - # simple example (web3.py and / or client determines gas and fees, typically defaults to a dynamic fee transaction post London fork) - >>> web3.eth.send_transaction({ - 'to': '0x582AC4D8929f58c217d4a52aDD361AE470a8a4cD', - 'from': web3.eth.accounts[0], - 'value': 12345 - }) - - # Dynamic fee transaction, introduced by EIP-1559: - HexBytes('0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331') - >>> web3.eth.send_transaction({ - 'to': '0x582AC4D8929f58c217d4a52aDD361AE470a8a4cD', - 'from': web3.eth.accounts[0], - 'value': 12345, - 'gas': 21000, - 'maxFeePerGas': web3.to_wei(250, 'gwei'), - 'maxPriorityFeePerGas': web3.to_wei(2, 'gwei'), - }) - HexBytes('0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331') - - # Legacy transaction (less efficient) - HexBytes('0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331') - >>> web3.eth.send_transaction({ - 'to': '0x582AC4D8929f58c217d4a52aDD361AE470a8a4cD', - 'from': web3.eth.accounts[0], - 'value': 12345, - 'gas': 21000, - 'gasPrice': web3.to_wei(50, 'gwei'), - }) - HexBytes('0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331') - - -.. py:method:: Eth.sign_transaction(transaction) - - * Delegates to ``eth_signTransaction`` RPC Method. - - Returns a transaction that's been signed by the node's private key, but not yet submitted. - The signed tx can be submitted with ``Eth.send_raw_transaction`` - - .. code-block:: python - - >>> signed_txn = w3.eth.sign_transaction(dict( - nonce=w3.eth.get_transaction_count(w3.eth.accounts[0]), - maxFeePerGas=2000000000, - maxPriorityFeePerGas=1000000000, - gas=100000, - to='0xd3CdA913deB6f67967B99D67aCDFa1712C293601', - value=1, - data=b'', - ) - ) - b"\xf8d\x80\x85\x040\xe24\x00\x82R\x08\x94\xdcTM\x1a\xa8\x8f\xf8\xbb\xd2\xf2\xae\xc7T\xb1\xf1\xe9\x9e\x18\x12\xfd\x01\x80\x1b\xa0\x11\r\x8f\xee\x1d\xe5=\xf0\x87\x0en\xb5\x99\xed;\xf6\x8f\xb3\xf1\xe6,\x82\xdf\xe5\x97lF|\x97%;\x15\xa04P\xb7=*\xef \t\xf0&\xbc\xbf\tz%z\xe7\xa3~\xb5\xd3\xb7=\xc0v\n\xef\xad+\x98\xe3'" # noqa: E501 - - -.. py:method:: Eth.send_raw_transaction(raw_transaction) - - * Delegates to ``eth_sendRawTransaction`` RPC Method - - Sends a signed and serialized transaction. Returns the transaction hash as a HexBytes object. - - .. code-block:: python - - >>> signed_txn = w3.eth.account.sign_transaction(dict( - nonce=w3.eth.get_transaction_count(public_address_of_senders_account), - maxFeePerGas=3000000000, - maxPriorityFeePerGas=2000000000, - gas=100000, - to='0x582AC4D8929f58c217d4a52aDD361AE470a8a4cD', - value=12345, - data=b'', - type=2, # (optional) the type is now implicitly set based on appropriate transaction params - chainId=1, - ), - private_key_for_senders_account, - ) - >>> w3.eth.send_raw_transaction(signed_txn.raw_transaction) - HexBytes('0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331') - - -.. py:method:: Eth.replace_transaction(transaction_hash, new_transaction) - - * Delegates to ``eth_sendTransaction`` RPC Method - - Sends a transaction that replaces the transaction with ``transaction_hash``. - - The ``transaction_hash`` must be the hash of a pending transaction. - - The ``new_transaction`` parameter should be a dictionary with transaction fields - as required by :meth:`~web3.eth.Eth.send_transaction`. It will be used to entirely - replace the transaction of ``transaction_hash`` without using any of the pending - transaction's values. - - If the ``new_transaction`` specifies a ``nonce`` value, it must match the pending - transaction's nonce. - - If the ``new_transaction`` specifies ``maxFeePerGas`` and ``maxPriorityFeePerGas`` - values, they must be greater than the pending transaction's values for each field, - respectively. - - * Legacy Transaction Support (Less Efficient - Not Recommended) - - If the pending transaction specified a ``gasPrice`` value (legacy transaction), the - ``gasPrice`` value for the ``new_transaction`` must be greater than the pending - transaction's ``gasPrice``. - - If the ``new_transaction`` does not specify any of ``gasPrice``, ``maxFeePerGas``, or - ``maxPriorityFeePerGas`` values, one of the following will happen: - - * If the pending transaction has a ``gasPrice`` value, this value will be used with a - multiplier of 1.125 - This is typically the minimum ``gasPrice`` increase a node requires - before it accepts a replacement transaction. - * If a gas price strategy is set, the ``gasPrice`` value from the gas price - strategy(See :ref:`Gas_Price`) will be used. - * If none of the above, the client will ultimately decide appropriate values for ``maxFeePerGas`` - and ``maxPriorityFeePerGas``. These will likely be default values and may result in an - unsuccessful replacement of the pending transaction. - - This method returns the transaction hash of the replacement transaction as a HexBytes object. - - .. code-block:: python - - >>> tx = web3.eth.send_transaction({ - 'to': '0x582AC4D8929f58c217d4a52aDD361AE470a8a4cD', - 'from': web3.eth.accounts[0], - 'value': 1000 - }) - HexBytes('0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331') - >>> web3.eth.replace_transaction('0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331', { - 'to': '0x582AC4D8929f58c217d4a52aDD361AE470a8a4cD', - 'from': web3.eth.accounts[0], - 'value': 2000 - }) - HexBytes('0x4177e670ec6431606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1528989') - - -.. py:method:: Eth.modify_transaction(transaction_hash, **transaction_params) - - * Delegates to ``eth_sendTransaction`` RPC Method - - Sends a transaction that modifies the transaction with ``transaction_hash``. - - ``transaction_params`` are keyword arguments that correspond to valid transaction - parameters as required by :meth:`~web3.eth.Eth.send_transaction`. The parameter values - will override the pending transaction's values to create the replacement transaction - to send. - - The same validation and defaulting rules of :meth:`~web3.eth.Eth.replace_transaction` apply. - - This method returns the transaction hash of the newly modified transaction as a HexBytes object. - - .. code-block:: python - - >>> tx = web3.eth.send_transaction({ - 'to': '0x582AC4D8929f58c217d4a52aDD361AE470a8a4cD', - 'from': web3.eth.accounts[0], - 'value': 1000 - }) - HexBytes('0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331') - >>> web3.eth.modify_transaction('0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331', value=2000) - HexBytes('0xec6434e6701771606e55d6b4ca35a1a6b75ee3d73315145a921026d15299d05') - - -.. py:method:: Eth.sign(account, data=None, hexstr=None, text=None) - - * Delegates to ``eth_sign`` RPC Method - - Caller must specify exactly one of: ``data``, ``hexstr``, or ``text``. - - Signs the given data with the private key of the given ``account``. - The account must be unlocked. - - ``account`` may be a checksum address or an ENS name - - .. code-block:: python - - >>> web3.eth.sign( - '0x582AC4D8929f58c217d4a52aDD361AE470a8a4cD', - text='some-text-tö-sign') - '0x1a8bbe6eab8c72a219385681efefe565afd3accee35f516f8edf5ae82208fbd45a58f9f9116d8d88ba40fcd29076d6eada7027a3b412a9db55a0164547810cc401' - - >>> web3.eth.sign( - '0x582AC4D8929f58c217d4a52aDD361AE470a8a4cD', - data=b'some-text-t\xc3\xb6-sign') - '0x1a8bbe6eab8c72a219385681efefe565afd3accee35f516f8edf5ae82208fbd45a58f9f9116d8d88ba40fcd29076d6eada7027a3b412a9db55a0164547810cc401' - - >>> web3.eth.sign( - '0xd3CdA913deB6f67967B99D67aCDFa1712C293601', - hexstr='0x736f6d652d746578742d74c3b62d7369676e') - '0x1a8bbe6eab8c72a219385681efefe565afd3accee35f516f8edf5ae82208fbd45a58f9f9116d8d88ba40fcd29076d6eada7027a3b412a9db55a0164547810cc401' - - -.. py:method:: Eth.sign_typed_data(account, jsonMessage) - - * Delegates to ``eth_signTypedData`` RPC Method - - .. note:: - - ``eth_signTypedData`` is not currently supported by any major client (Besu, Erigon, Geth, or Nethermind) - - Please note that the ``jsonMessage`` argument is the loaded JSON Object - and **NOT** the JSON String itself. - - Signs the ``Structured Data`` (or ``Typed Data``) with the private key of the given ``account``. - The account must be unlocked. - - ``account`` may be a checksum address or an ENS name - - -.. py:method:: Eth.call(transaction, block_identifier=web3.eth.default_block, state_override=None, ccip_read_enabled=True) - - * Delegates to ``eth_call`` RPC Method - - Executes the given transaction locally without creating a new transaction - on the blockchain. Returns the return value of the executed contract. - - The ``transaction`` parameter is handled in the same manner as the - :meth:`~web3.eth.Eth.send_transaction()` method. - - .. code-block:: python - - >>> myContract.functions.setVar(1).transact() - HexBytes('0x79af0c7688afba7588c32a61565fd488c422da7b5773f95b242ea66d3d20afda') - >>> myContract.functions.getVar().call() - 1 - # The above call equivalent to the raw call: - >>> web3.eth.call({'value': 0, 'gas': 21736, 'maxFeePerGas': 2000000000, 'maxPriorityFeePerGas': 1000000000, 'to': '0xc305c901078781C232A2a521C2aF7980f8385ee9', 'data': '0x477a5c98'}) - HexBytes('0x0000000000000000000000000000000000000000000000000000000000000001') - - In most cases it is better to make contract function call through the :py:class:`web3.contract.Contract` interface. - - Overriding state is a debugging feature available in Geth clients. - View their `usage documentation `_ - for a list of possible parameters. - - `EIP-3668 `_ introduced support for the ``OffchainLookup`` revert / CCIP - Read support. In order to properly handle a call to a contract function that reverts with an ``OffchainLookup`` - error for offchain data retrieval, the ``ccip_read_enabled`` flag has been added to the ``eth_call`` method. - ``ccip_read_enabled`` is optional, yielding the default value for CCIP Read on calls to a global - ``global_ccip_read_enabled`` flag on the provider which is set to ``True`` by default. This means CCIP Read is - enabled by default for calls, as is recommended in EIP-3668. Therefore, calls to contract functions that revert with - an ``OffchainLookup`` will be handled appropriately by default. - - The ``ccip_read_enabled`` flag on the call will always override the value of the global flag on the provider for - explicit control over specific calls. If the flag on the call is set to ``False``, the call will raise the - ``OffchainLookup`` instead of properly handling the exception according to EIP-3668. This may be useful for - "preflighting" a transaction with a call (see :ref:`ccip-read-example` within the examples section). - - If the function called results in a ``revert`` error, a ``ContractLogicError`` will be raised. - If there is an error message with the error, web3.py attempts to parse the - message that comes back and return it to the user as the error string. - As of v6.3.0, the raw data is also returned and - can be accessed via the ``data`` attribute on ``ContractLogicError``. - - -.. py:method:: Eth.create_access_list(transaction, block_identifier=web3.eth.default_block) - - * Delegates to ``eth_createAccessList`` RPC Method - - This method creates an `EIP-2930 `_ type ``accessList`` based on a given - ``transaction``. The ``accessList`` contains all storage slots and addresses read and written by the transaction, - except for the sender account and the precompiles. This method uses the same ``transaction`` call object and - ``block_identifier`` object as :meth:`~web3.eth.Eth.call()`. An ``accessList`` can be used to access contracts that - became inaccessible due to gas cost increases. - - The ``transaction`` parameter is handled in the same manner as the - :meth:`~web3.eth.Eth.send_transaction()` method. - The optional ``block_identifier`` parameter is a block_number or ``latest`` or ``pending``. Default is ``latest``. - - .. code-block:: python - - >>> w3.eth.create_access_list( - ... { - ... "to": to_checksum_address("0xF0109fC8DF283027b6285cc889F5aA624EaC1F55"), - ... "gasPrice": 10**11, - ... "value": 0, - ... "data": "0x608060806080608155", - ... }, - ... "pending", - ... ) - AttributeDict({ - "accessList": [ - AttributeDict({ - "address": "0xde0B295669a9FD93d5F28D9Ec85E40f4cb697BAe", - "storageKeys": [ - "0x0000000000000000000000000000000000000000000000000000000000000003", - "0x0000000000000000000000000000000000000000000000000000000000000007", - ] - }), - AttributeDict({ - "address": "0xBB9bc244D798123fDe783fCc1C72d3Bb8C189413", - "storageKeys": [] - }), - ], - "gasUsed": 21000 - }) - - The method ``eth_createAccessList`` returns a list of addresses and storage keys used by the transaction, plus the gas - consumed when the ``accessList`` is included. Like ``eth_estimateGas``, this is an estimation; the list could change when - the transaction is actually finalized. Adding an ``accessList`` to your transaction does not necessarily result in lower - gas usage compared to a transaction without an ``accessList``. - -.. py:method:: Eth.fee_history(block_count, newest_block, reward_percentiles=None) - - * Delegates to ``eth_feeHistory`` RPC Method - - Returns transaction fee data for up to 1,024 blocks. - - :param block_count: The number of blocks in the requested range. Depending on the client, this - value should be either a :py:class:`int` between 1 and 1024 or a hexstring. - Less than requested may be returned if not all blocks are available. - :type block_count: int or hexstring - :param newest_block: The newest, highest-numbered, block in the requested range. This value may be an - :py:class:`int` or one of the predefined block parameters ``'latest'``, ``'earliest'``, or ``'pending'``. - :type newest_block: int or BlockParams - :param reward_percentiles: *(optional)* A monotonically increasing list of percentile :py:class:`float` values to - sample from each block's effective priority fees per gas in ascending order, weighted by gas used. - :type reward_percentiles: List[float] or None - :return: An ``AttributeDict`` containing the following keys: - - * **oldestBlock** *(int)* -- The oldest, lowest-numbered, block in the range requested as a ``BlockNumber`` type - with :py:class:`int` value. - * **baseFeePerGas** *(List[Wei])* -- An array of block base fees per gas. This includes the next block after the - newest of the returned range, because this value can be derived from the newest block. Zeroes are returned for - pre-EIP-1559 blocks. - * **gasUsedRatio** *(List[float])* -- An array of ``gasUsed``/``gasLimit`` float values for the requested blocks. - * **reward** *(List[List[Wei]])* -- *(optional)* A two-dimensional array of effective priority fees per gas at the - requested block percentiles. - - .. code-block:: python - - >>> w3.eth.fee_history(4, 'latest', [10, 90]) - AttributeDict({ - 'oldestBlock': 3, - 'reward': [[220, 7145389], [1000000, 6000213], [550, 550], [125, 12345678]], - 'baseFeePerGas': [202583058, 177634473, 155594425, 136217133, 119442408], - 'gasUsedRatio': [0.007390479689642084, 0.0036988514889990873, 0.0018512333048507866, 0.00741217041320997] - }) - - -.. py:method:: Eth.estimate_gas(transaction, block_identifier=None, state_override=None) - - * Delegates to ``eth_estimateGas`` RPC Method - - Executes the given transaction locally without creating a new transaction - on the blockchain. Returns amount of gas consumed by execution which can - be used as a gas estimate. - - The ``transaction`` and ``block_identifier`` parameters are handled in the - same manner as the :meth:`~web3.eth.Eth.send_transaction()` method. - - The ``state_override`` is useful when there is a chain of transaction calls. - It overrides state so that the gas estimate of a transaction is accurate in - cases where prior calls produce side effects. - - .. code-block:: python - - >>> web3.eth.estimate_gas({'to': '0xd3CdA913deB6f67967B99D67aCDFa1712C293601', 'from':web3.eth.accounts[0], 'value': 12345}) - 21000 - - -.. py:method:: Eth.generate_gas_price(transaction_params=None) - - Uses the selected gas price strategy to calculate a gas price. This method - returns the gas price denominated in wei. - - The ``transaction_params`` argument is optional however some gas price strategies - may require it to be able to produce a gas price. - - .. code-block:: python - - >>> web3.eth.generate_gas_price() - 20000000000 - - .. note:: - For information about how gas price can be customized in web3 see - :ref:`Gas_Price`. - - -.. py:method:: Eth.set_gas_price_strategy(gas_price_strategy) - - Set the selected gas price strategy. It must be a method of the signature - ``(web3, transaction_params)`` and return a gas price denominated in wei. - - -.. py:method:: Eth.subscribe(subscription_identifier, subscription_params) - - * Delegates to ``eth_subscribe`` RPC Method - - Only available on persistent connection providers: - :class:`~web3.providers.persistent.WebSocketProvider` and - :class:`~web3.providers.persistent.AsyncIPCProvider`. - - Returns a subscription ID that can be used to track a particular subscription to, or unsubscribe from, an event. - For usage examples see the docs on :ref:`subscription-examples`. - - .. code-block:: python - - >>> subscription_id = await web3.eth.subscribe('newHeaders') - >>> subscription_id - '0xbd63bb89e7475591a0a6fc9014307bc4' - - -.. py:method:: Eth.unsubscribe(subscription_id) - - * Delegates to ``eth_unsubscribe`` RPC Method - - Only available on persistent connection providers: - :class:`~web3.providers.persistent.WebSocketProvider` and - :class:`~web3.providers.persistent.AsyncIPCProvider`. - - Returns ``True`` if successfully unsubscribed. For usage examples see the docs on - :ref:`subscription-examples`. - - .. code-block:: python - - >>> result = await web3.eth.unsubscribe(subscription_id) - >>> result - True - - -Filters -------- - -The following methods are available on the ``web3.eth`` object for interacting -with the filtering API. - - -.. py:method:: Eth.filter(filter_params) - - * Delegates to ``eth_newFilter``, ``eth_newBlockFilter``, and - ``eth_newPendingTransactionFilter`` RPC Methods. - - This method delegates to one of three RPC methods depending on the value of - ``filter_params``. - - * If ``filter_params`` is the string ``'pending'`` then a new filter is - registered using the ``eth_newPendingTransactionFilter`` RPC method. - This will create a new filter that will be called for each new unmined - transaction that the node receives. - * If ``filter_params`` is the string ``'latest'`` then a new filter is - registered using the ``eth_newBlockFilter`` RPC method. This will create - a new filter that will be called each time the node receives a new block. - * If ``filter_params`` is a dictionary then a new filter is registered - using the ``eth_newFilter`` RPC method. This will create a new filter - that will be called for all log entries that match the provided - ``filter_params``. - - This method returns a ``web3.utils.filters.Filter`` object which can then - be used to either directly fetch the results of the filter or to register - callbacks which will be called with each result of the filter. - - When creating a new log filter, the ``filter_params`` should be a - dictionary with the following keys. Note that the keys are camel-cased - strings, as is expected in a JSON-RPC request. - - * ``fromBlock``: ``integer/tag`` - (optional, default: "latest") Integer - block number, or one of predefined block identifiers - "latest", "pending", "earliest", "safe", or "finalized". - * ``toBlock``: ``integer/tag`` - (optional, default: "latest") Integer - block number, or one of predefined block identifiers - "latest", "pending", "earliest", "safe", or "finalized". - * ``address``: ``string`` or list of ``strings``, each 20 Bytes - - (optional) Contract address or a list of addresses from which logs should - originate. - * ``topics``: list of 32 byte ``strings`` or ``null`` - (optional) Array of - topics that should be used for filtering. Topics are order-dependent. - This parameter can also be a list of topic lists in which case filtering - will match any of the provided topic arrays. - - .. note:: - - Though ``"latest"`` and ``"safe"`` block identifiers are not yet part of the - specifications for ``eth_newFilter``, they are supported by web3.py and may or - may not yield expected results depending on the node being accessed. - - See :doc:`./filters` for more information about filtering. - - .. code-block:: python - - >>> web3.eth.filter('latest') - - >>> web3.eth.filter('pending') - - >>> web3.eth.filter({'fromBlock': 1000000, 'toBlock': 1000100, 'address': '0x6C8f2A135f6ed072DE4503Bd7C4999a1a17F824B'}) - - -.. py:method:: Eth.get_filter_changes(self, filter_id) - - * Delegates to ``eth_getFilterChanges`` RPC Method. - - Returns all new entries which occurred since the last call to this method - for the given ``filter_id`` - - .. code-block:: python - - >>> filter = web3.eth.filter() - >>> web3.eth.get_filter_changes(filter.filter_id) - [ - { - 'address': '0xDc3A9Db694BCdd55EBaE4A89B22aC6D12b3F0c24', - 'blockHash': '0xb72256286ca528e09022ffd408856a73ef90e7216ac560187c6e43b4c4efd2f0', - 'blockNumber': 2217196, - 'data': '0x0000000000000000000000000000000000000000000000000000000000000001', - 'logIndex': 0, - 'topics': ['0xe65b00b698ba37c614af350761c735c5f4a82b4ab365a1f1022d49d9dfc8e930', - '0x000000000000000000000000754c50465885f1ed1fa1a55b95ee8ecf3f1f4324', - '0x296c7fb6ccafa3e689950b947c2895b07357c95b066d5cdccd58c301f41359a3'], - 'transactionHash': '0xfe1289fd3915794b99702202f65eea2e424b2f083a12749d29b4dd51f6dce40d', - 'transactionIndex': 1, - }, - ... - ] - - -.. py:method:: Eth.get_filter_logs(self, filter_id) - - * Delegates to ``eth_getFilterLogs`` RPC Method. - - Returns all entries for the given ``filter_id`` - - .. code-block:: python - - >>> filter = web3.eth.filter() - >>> web3.eth.get_filter_logs(filter.filter_id) - [ - { - 'address': '0xDc3A9Db694BCdd55EBaE4A89B22aC6D12b3F0c24', - 'blockHash': '0xb72256286ca528e09022ffd408856a73ef90e7216ac560187c6e43b4c4efd2f0', - 'blockNumber': 2217196, - 'data': '0x0000000000000000000000000000000000000000000000000000000000000001', - 'logIndex': 0, - 'topics': ['0xe65b00b698ba37c614af350761c735c5f4a82b4ab365a1f1022d49d9dfc8e930', - '0x000000000000000000000000754c50465885f1ed1fa1a55b95ee8ecf3f1f4324', - '0x296c7fb6ccafa3e689950b947c2895b07357c95b066d5cdccd58c301f41359a3'], - 'transactionHash': '0xfe1289fd3915794b99702202f65eea2e424b2f083a12749d29b4dd51f6dce40d', - 'transactionIndex': 1, - }, - ... - ] - - -.. py:method:: Eth.uninstall_filter(self, filter_id) - - * Delegates to ``eth_uninstallFilter`` RPC Method. - - Uninstalls the filter specified by the given ``filter_id``. Returns - boolean as to whether the filter was successfully uninstalled. - - .. code-block:: python - - >>> filter = web3.eth.filter() - >>> web3.eth.uninstall_filter(filter.filter_id) - True - >>> web3.eth.uninstall_filter(filter.filter_id) - False # already uninstalled. - - -.. py:method:: Eth.get_logs(filter_params) - - This is the equivalent of: creating a new - filter, running :meth:`~Eth.get_filter_logs`, and then uninstalling the filter. See - :meth:`~Eth.filter` for details on allowed filter parameters. - - -Contracts ---------- - -.. py:method:: Eth.contract(address=None, contract_name=None, ContractFactoryClass=Contract, **contract_factory_kwargs) - - If ``address`` is provided, then this method will return an instance of the - contract defined by ``abi``. The address may be a checksum string, - or an ENS name like ``'mycontract.eth'``. - - .. code-block:: python - - from web3 import Web3 - - w3 = Web3(...) - - contract = w3.eth.contract(address='0x000000000000000000000000000000000000dEaD', abi=...) - - # alternatively: - contract = w3.eth.contract(address='mycontract.eth', abi=...) - - .. note:: - - If you use an ENS name to initialize a contract, the contract will be looked up by - name on each use. If the name could ever change maliciously, first - :ref:`ens_get_address`, and then create the contract with the checksum address. - - - If ``address`` is *not* provided, the newly created contract class will be returned. That - class will then be initialized by supplying the address. - - .. code-block:: python - - from web3 import Web3 - - w3 = Web3(...) - - Contract = w3.eth.contract(abi=...) - - # later, initialize contracts with the same metadata at different addresses: - contract1 = Contract(address='0x000000000000000000000000000000000000dEaD') - contract2 = Contract(address='mycontract.eth') - - ``contract_name`` will be used as the name of the contract class. If it is - ``None`` then the name of the ``ContractFactoryClass`` will be used. - - ``ContractFactoryClass`` will be used as the base Contract class. - - The following arguments are accepted for contract class creation. - - :param abi: Application Binary Interface. Usually provided since an ``abi`` is required to interact with any contract. - :type abi: ABI - :param asm: Assembly code generated by the compiler - :param ast: Abstract Syntax Tree of the contract generated by the compiler - :param bytecode: Bytecode of the contract generated by the compiler - :param bytecode_runtime: Bytecode stored at the contract address, excludes the constructor and initialization code - :param clone_bin: - :param dev_doc: - :param decode_tuples: Optionally convert tuples/structs to named tuples - :param interface: - :param metadata: Contract Metadata generated by the compiler - :param opcodes: Opcodes for the contract generated by the compiler - :param src_map: - :param src_map_runtime: - :param user_doc: - :return: Instance of the contract - :rtype: Contract - :raises TypeError: If the address is not provided - :raises AttributeError: If the contract class is not initialized - - See the :doc:`web3.contract` documentation for more information about Contracts. - - -.. py:method:: Eth.set_contract_factory(contractFactoryClass) - - Modify the default contract factory from ``Contract`` to ``contractFactoryClass``. - Future calls to ``Eth.contract()`` will then default to ``contractFactoryClass``. diff --git a/docs/web3.geth.rst b/docs/web3.geth.rst deleted file mode 100644 index 8eaf29fa8c..0000000000 --- a/docs/web3.geth.rst +++ /dev/null @@ -1,541 +0,0 @@ -Geth API -======== - -.. py:module:: web3.geth - -The ``web3.geth`` object exposes modules that enable you to interact with the JSON-RPC endpoints supported by `Geth `_ that are not defined in the standard set of Ethereum JSONRPC endpoints according to `EIP 1474 `_. - -GethAdmin API -~~~~~~~~~~~~~ - -The following methods are available on the ``web3.geth.admin`` namespace. - -.. py:module:: web3.geth.admin - -The ``web3.geth.admin`` object exposes methods to interact with the RPC APIs under the -``admin_`` namespace that are supported by the Geth client. - -.. py:method:: datadir() - - * Delegates to ``admin_datadir`` RPC Method - - Returns the system path of the node's data directory. - - .. code-block:: python - - >>> web3.geth.admin.datadir() - '/Users/snakecharmers/Library/Ethereum' - - -.. py:method:: node_info() - - * Delegates to ``admin_nodeInfo`` RPC Method - - Returns information about the currently running node. - - .. code-block:: python - - >>> web3.geth.admin.node_info() - { - 'enode': 'enode://e54eebad24dce1f6d246bea455ffa756d97801582420b9ed681a2ea84bf376d0bd87ae8dd6dc06cdb862a2ca89ecabe1be1050be35b4e70d62bc1a092cb7e2d3@[::]:30303', - 'id': 'e54eebad24dce1f6d246bea455ffa756d97801582420b9ed681a2ea84bf376d0bd87ae8dd6dc06cdb862a2ca89ecabe1be1050be35b4e70d62bc1a092cb7e2d3', - 'ip': '::', - 'listenAddr': '[::]:30303', - 'name': 'Geth/v1.4.11-stable-fed692f6/darwin/go1.7', - 'ports': {'discovery': 30303, 'listener': 30303}, - 'protocols': { - 'eth': { - 'difficulty': 57631175724744612603, - 'genesis': '0xd4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3', - 'head': '0xaaef6b9dd0d34088915f4c62b6c166379da2ad250a88f76955508f7cc81fb796', - 'network': 1, - }, - }, - } - - -.. py:method:: peers() - - * Delegates to ``admin_peers`` RPC Method - - Returns the current peers the node is connected to. - - .. code-block:: python - - >>> web3.geth.admin.peers() - [ - { - 'caps': ['eth/63'], - 'id': '146e8e3e2460f1e18939a5da37c4a79f149c8b9837240d49c7d94c122f30064e07e4a42ae2c2992d0f8e7e6f68a30e7e9ad31d524349ec9d17effd2426a37b40', - 'name': 'Geth/v1.4.10-stable/windows/go1.6.2', - 'network': { - 'localAddress': '10.0.3.115:64478', - 'remoteAddress': '72.208.167.127:30303', - }, - 'protocols': { - 'eth': { - 'difficulty': 17179869184, - 'head': '0xd4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3', - 'version': 63, - }, - } - }, - { - 'caps': ['eth/62', 'eth/63'], - 'id': '76cb6cd3354be081923a90dfd4cda40aa78b307cc3cf4d5733dc32cc171d00f7c08356e9eb2ea47eab5aad7a15a3419b859139e3f762e1e1ebf5a04f530dcef7', - 'name': 'Geth/v1.4.10-stable-5f55d95a/linux/go1.5.1', - 'network': { - 'localAddress': '10.0.3.115:64784', - 'remoteAddress': '60.205.92.119:30303', - }, - 'protocols': { - 'eth': { - 'difficulty': 57631175724744612603, - 'head': '0xaaef6b9dd0d34088915f4c62b6c166379da2ad250a88f76955508f7cc81fb796', - 'version': 63, - }, - }, - }, - ... - ] - - -.. py:method:: add_peer(node_url) - - * Delegates to ``admin_addPeer`` RPC Method - - Requests adding a new remote node to the list of tracked static nodes. - - .. code-block:: python - - >>> web3.geth.admin.add_peer('enode://e54eebad24dce1f6d246bea455ffa756d97801582420b9ed681a2ea84bf376d0bd87ae8dd6dc06cdb862a2ca89ecabe1be1050be35b4e70d62bc1a092cb7e2d3@52.71.255.237:30303') - True - - -.. py:method:: start_http(host='localhost', port=8545, cors="", apis="eth,net,web3") - - * Delegates to ``admin_startHTTP`` RPC Method - - Starts the HTTP based JSON RPC API webserver on the specified ``host`` and - ``port``, with the ``rpccorsdomain`` set to the provided ``cors`` value and - with the APIs specified by ``apis`` enabled. Returns boolean as to whether - the server was successfully started. - - .. code-block:: python - - >>> web3.geth.admin.start_http() - True - - -.. py:method:: start_ws(host='localhost', port=8546, cors="", apis="eth,net,web3") - - * Delegates to ``admin_startWS`` RPC Method - - Starts the WebSocket based JSON RPC API webserver on the specified ``host`` - and ``port``, with the ``rpccorsdomain`` set to the provided ``cors`` value - and with the APIs specified by ``apis`` enabled. Returns boolean as to - whether the server was successfully started. - - .. code-block:: python - - >>> web3.geth.admin.start_ws() - True - - -.. py:method:: stop_http() - - * Delegates to ``admin_stopHTTP`` RPC Method - - Stops the HTTP based JSON RPC server. - - .. code-block:: python - - >>> web3.geth.admin.stop_http() - True - - -.. py:method:: stop_ws() - - * Delegates to ``admin_stopWS`` RPC Method - - Stops the WebSocket based JSON RPC server. - - .. code-block:: python - - >>> web3.geth.admin.stop_ws() - True - - -.. py:module:: web3.geth.txpool - -GethTxPool API -~~~~~~~~~~~~~~ - -The ``web3.geth.txpool`` object exposes methods to interact with the RPC APIs under -the ``txpool_`` namespace. These methods are only exposed under the ``geth`` namespace -since they are not standard. - -The following methods are available on the ``web3.geth.txpool`` namespace. - -.. py:method:: TxPool.inspect() - - * Delegates to ``txpool_inspect`` RPC Method - - Returns a textual summary of all transactions currently pending for - inclusion in the next block(s) as well as ones that are scheduled for - future execution. - - .. code-block:: python - - >>> web3.geth.txpool.inspect() - { - 'pending': { - '0x26588a9301b0428d95e6Fc3A5024fcE8BEc12D51': { - 31813: ["0x3375Ee30428b2A71c428afa5E89e427905F95F7e: 0 wei + 500000 × 20000000000 gas"] - }, - '0x2a65Aca4D5fC5B5C859090a6c34d164135398226': { - 563662: ["0x958c1Fa64B34db746925c6F8a3Dd81128e40355E: 1051546810000000000 wei + 90000 × 20000000000 gas"], - 563663: ["0x77517B1491a0299A44d668473411676f94e97E34: 1051190740000000000 wei + 90000 × 20000000000 gas"], - 563664: ["0x3E2A7Fe169c8F8eee251BB00d9fb6d304cE07d3A: 1050828950000000000 wei + 90000 × 20000000000 gas"], - 563665: ["0xAF6c4695da477F8C663eA2D8B768Ad82Cb6A8522: 1050544770000000000 wei + 90000 × 20000000000 gas"], - 563666: ["0x139B148094C50F4d20b01cAf21B85eDb711574dB: 1048598530000000000 wei + 90000 × 20000000000 gas"], - 563667: ["0x48B3Bd66770b0D1EeceFCe090daFeE36257538aE: 1048367260000000000 wei + 90000 × 20000000000 gas"], - 563668: ["0x468569500925D53e06Dd0993014aD166fD7Dd381: 1048126690000000000 wei + 90000 × 20000000000 gas"], - 563669: ["0x3DcB4C90477a4b8Ff7190b79b524773CbE3bE661: 1047965690000000000 wei + 90000 × 20000000000 gas"], - 563670: ["0x6DfeF5BC94b031407FFe71ae8076CA0FbF190963: 1047859050000000000 wei + 90000 × 20000000000 gas"] - }, - '0x9174E688d7dE157C5C0583Df424EAAB2676aC162': { - 3: ["0xBB9bc244D798123fDe783fCc1C72d3Bb8C189413: 30000000000000000000 wei + 85000 × 21000000000 gas"] - }, - '0xb18F9d01323e150096650ab989CfecD39D757Aec': { - 777: ["0xcD79c72690750F079ae6AB6ccd7e7aEDC03c7720: 0 wei + 1000000 × 20000000000 gas"] - }, - '0xB2916C870Cf66967B6510B76c07E9d13a5D23514': { - 2: ["0x576f25199D60982A8f31A8DfF4da8aCB982e6ABa: 26000000000000000000 wei + 90000 × 20000000000 gas"] - }, - '0xBc0CA4f217E052753614d6B019948824d0d8688B': { - 0: ["0x2910543Af39abA0Cd09dBb2D50200b3E800A63D2: 1000000000000000000 wei + 50000 × 1171602790622 gas"] - }, - '0xea674fdde714fd979de3edf0f56aa9716b898ec8': { - 70148: ["0xe39c55ead9f997f7fa20ebe40fb4649943d7db66: 1000767667434026200 wei + 90000 × 20000000000 gas"] - } - }, - 'queued': { - '0x0F6000De1578619320aBA5e392706b131FB1dE6f': { - 6: ["0x8383534d0bcd0186d326C993031311c0Ac0D9B2d: 9000000000000000000 wei + 21000 × 20000000000 gas"] - }, - '0x5b30608c678e1ac464A8994C3B33E5CdF3497112': { - 6: ["0x9773547e27f8303C87089dc42D9288aa2B9d8F06: 50000000000000000000 wei + 90000 × 50000000000 gas"] - }, - '0x976A3Fc5d6f7d259EBfb4cc2Ae75115475E9867C': { - 3: ["0x346FB27dE7E7370008f5da379f74dd49F5f2F80F: 140000000000000000 wei + 90000 × 20000000000 gas"] - }, - '0x9B11bF0459b0c4b2f87f8CEBca4cfc26f294B63A': { - 2: ["0x24a461f25eE6a318BDef7F33De634A67bb67Ac9D: 17000000000000000000 wei + 90000 × 50000000000 gas"], - 6: ["0x6368f3f8c2B42435D6C136757382E4A59436a681: 17990000000000000000 wei + 90000 × 20000000000 gas", "0x8db7b4e0ecb095fbd01dffa62010801296a9ac78: 16998950000000000000 wei + 90000 × 20000000000 gas"], - 7: ["0x6368f3f8c2B42435D6C136757382E4A59436a681: 17900000000000000000 wei + 90000 × 20000000000 gas"] - } - } - } - - -.. py:method:: TxPool.status() - - * Delegates to ``txpool_status`` RPC Method - - Returns a textual summary of all transactions currently pending for - inclusion in the next block(s) as well as ones that are scheduled for - future execution. - - .. code-block:: python - - { - pending: 10, - queued: 7, - } - - -.. py:method:: TxPool.content() - - * Delegates to ``txpool_content`` RPC Method - - Returns the exact details of all transactions that are pending or queued. - - .. code-block:: python - - >>> web3.geth.txpool.content() - { - 'pending': { - '0x0216D5032f356960Cd3749C31Ab34eEFF21B3395': { - 806: [{ - 'blockHash': "0x0000000000000000000000000000000000000000000000000000000000000000", - 'blockNumber': None, - 'from': "0x0216D5032f356960Cd3749C31Ab34eEFF21B3395", - 'gas': "0x5208", - 'gasPrice': None, - 'hash': "0xaf953a2d01f55cfe080c0c94150a60105e8ac3d51153058a1f03dd239dd08586", - 'input': "0x", - 'maxFeePerGas': '0x77359400', - 'maxPriorityFeePerGas': '0x3b9aca00', - 'nonce': "0x326", - 'to': "0x7f69a91A3CF4bE60020fB58B893b7cbb65376db8", - 'transactionIndex': None, - 'value': "0x19a99f0cf456000" - }] - }, - '0x24d407e5A0B506E1Cb2fae163100B5DE01F5193C': { - 34: [{ - 'blockHash': "0x0000000000000000000000000000000000000000000000000000000000000000", - 'blockNumber': None, - 'from': "0x24d407e5A0B506E1Cb2fae163100B5DE01F5193C", - 'gas': "0x44c72", - 'gasPrice': None, - 'hash': "0xb5b8b853af32226755a65ba0602f7ed0e8be2211516153b75e9ed640a7d359fe", - 'input': "0xb61d27f600000000000000000000000024d407e5a0b506e1cb2fae163100b5de01f5193c00000000000000000000000000000000000000000000000053444835ec580000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - 'maxFeePerGas': '0x77359400', - 'maxPriorityFeePerGas': '0x3b9aca00', - 'nonce': "0x22", - 'to': "0x7320785200f74861B69C49e4ab32399a71b34f1a", - 'transactionIndex': None, - 'value': "0x0" - }] - } - }, - 'queued': { - '0x976A3Fc5d6f7d259EBfb4cc2Ae75115475E9867C': { - 3: [{ - 'blockHash': "0x0000000000000000000000000000000000000000000000000000000000000000", - 'blockNumber': None, - 'from': "0x976A3Fc5d6f7d259EBfb4cc2Ae75115475E9867C", - 'gas': "0x15f90", - 'gasPrice': None, - 'hash': "0x57b30c59fc39a50e1cba90e3099286dfa5aaf60294a629240b5bbec6e2e66576", - 'input': "0x", - 'maxFeePerGas': '0x77359400', - 'maxPriorityFeePerGas': '0x3b9aca00', - 'nonce': "0x3", - 'to': "0x346FB27dE7E7370008f5da379f74dd49F5f2F80F", - 'transactionIndex': None, - 'value': "0x1f161421c8e0000" - }] - }, - '0x9B11bF0459b0c4b2f87f8CEBca4cfc26f294B63A': { - 2: [{ - 'blockHash': "0x0000000000000000000000000000000000000000000000000000000000000000", - 'blockNumber': None, - 'from': "0x9B11bF0459b0c4b2f87f8CEBca4cfc26f294B63A", - 'gas': "0x15f90", - 'gasPrice': None, - 'hash': "0x3a3c0698552eec2455ed3190eac3996feccc806970a4a056106deaf6ceb1e5e3", - 'input': "0x", - 'maxFeePerGas': '0x77359400', - 'maxPriorityFeePerGas': '0x3b9aca00', - 'nonce': "0x2", - 'to': "0x24a461f25eE6a318BDef7F33De634A67bb67Ac9D", - 'transactionIndex': None, - 'value': "0xebec21ee1da40000" - }], - 6: [{ - 'blockHash': "0x0000000000000000000000000000000000000000000000000000000000000000", - 'blockNumber': None, - 'from': "0x9B11bF0459b0c4b2f87f8CEBca4cfc26f294B63A", - 'gas': "0x15f90", - 'gasPrice': None, - 'hash': "0xbbcd1e45eae3b859203a04be7d6e1d7b03b222ec1d66dfcc8011dd39794b147e", - 'input': "0x", - 'maxFeePerGas': '0x77359400', - 'maxPriorityFeePerGas': '0x3b9aca00', - 'nonce': "0x6", - 'to': "0x6368f3f8c2B42435D6C136757382E4A59436a681", - 'transactionIndex': None, - 'value': "0xf9a951af55470000" - }, { - 'blockHash': "0x0000000000000000000000000000000000000000000000000000000000000000", - 'blockNumber': None, - 'from': "0x9B11bF0459b0c4b2f87f8CEBca4cfc26f294B63A", - 'gas': "0x15f90", - 'gasPrice': None, - 'hash': "0x60803251d43f072904dc3a2d6a084701cd35b4985790baaf8a8f76696041b272", - 'input': "0x", - 'maxFeePerGas': '0x77359400', - 'maxPriorityFeePerGas': '0x3b9aca00', - 'nonce': "0x6", - 'to': "0x8DB7b4e0ECB095FBD01Dffa62010801296a9ac78", - 'transactionIndex': None, - 'value': "0xebe866f5f0a06000" - }], - } - } - } - -.. py:module:: web3.geth.debug - -GethDebug API -~~~~~~~~~~~~~~ - -The ``web3.geth.debug`` object exposes methods to interact with the RPC APIs under the -``debug_`` namespace. These methods are only exposed under the ``geth`` namespace. -Full documentation around options can be found in the -`Geth docs `_. - -.. py:method:: Debug.trace_transaction(transaction_hash) - - * Delegates to ``debug_traceTransaction`` RPC Method - - Returns the trace of the transaction with the given ``transaction_hash`` and ``trace_config``. - - .. code-block:: python - - >>> web3.geth.debug.trace_transaction('0x96014f00980a25dc7275a5eb5ed25ce0dd79c9233628c421ae373601236949b3') - AttributeDict({ - 'gas': 21000, - 'failed': False, - 'returnValue': '', - 'structLogs': [] - }) - - >>> web3.geth.debug.trace_transaction('0x96014f00980a25dc7275a5eb5ed25ce0dd79c9233628c421ae373601236949b3', { - "tracer": "prestateTracer", - }) - AttributeDict({ - '0x0000000000000000000000000000000000000000': AttributeDict({'balance': 0}), - '0x7fE3e4C21bDE162214B715AabcE05391301e9F5B': AttributeDict({'balance': 115792089237316195423570985008687907853269984665640564039457584007913129639927}), - '0x91fe3039271d43d3f8479f60Cc5293Bc8A461b75': AttributeDict({'balance': 0}) - }) - - >>> web3.geth.debug.trace_transaction('0x96014f00980a25dc7275a5eb5ed25ce0dd79c9233628c421ae373601236949b3', { - "tracer": "prestateTracer", - "traceConfig": {"diffMode": True} - }) - AttributeDict({ - 'post': AttributeDict({ - '0x0000000000000000000000000000000000000000': AttributeDict({'balance': 63000}), - '0xcF888Cc4FAe8a3D774e574Ef8C6a261958287d04': AttributeDict({ - 'balance': 115792089237316195423570985008687907853269984665640564039457583959368602105927, - 'nonce': 3 - }), - '0xD2593D3445a9F0f4c776715f5206FBf4CA6A0475': AttributeDict({'balance': 100000})}), - 'pre': AttributeDict({ - '0x0000000000000000000000000000000000000000': AttributeDict({'balance': 42000}), - '0xcF888Cc4FAe8a3D774e574Ef8C6a261958287d04': AttributeDict({ - 'balance': 115792089237316195423570985008687907853269984665640564039457583973451623990927, - 'nonce': 2 - }), - '0xD2593D3445a9F0f4c776715f5206FBf4CA6A0475': AttributeDict({'balance': 0}) - }) - }) - - >>> web3.geth.debug.trace_transaction('0x96014f00980a25dc7275a5eb5ed25ce0dd79c9233628c421ae373601236949b3', { - "tracer": "callTracer", - "tracerConfig": {"withLog": False}, - }) - AttributeDict({'calls': [AttributeDict({'from': '0xa0457775a08b175Cbb444eD923556Dc67Ec5Dc11', - 'gas': 154003, - 'gasUsed': 275, - 'input': HexBytes('0xad5c4648'), - 'output': HexBytes('0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2'), - 'to': '0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D', - 'type': 'STATICCALL'}), - AttributeDict({'from': '0xa0457775a08b175Cbb444eD923556Dc67Ec5Dc11', - 'gas': 150633, - 'gasUsed': 24678, - 'input': HexBytes('0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000007e37be2022c0914b2680000000'), - 'output': HexBytes('0x0000000000000000000000000000000000000000000000000000000000000001'), - 'to': '0xec4cF8dCB526080792bC98E1Ef41fB4775777b6B', - 'type': 'CALL', - 'value': 0}), - AttributeDict({'calls': [AttributeDict({'from': '0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D', - 'gas': 121167, - 'gasUsed': 27504, - 'input': HexBytes('0x23b872dd000000000000000000000000a0457775a08b175cbb444ed923556dc67ec5dc1100000000000000000000000036f0548a77bfb1d5935483d25cc40633b46e2f4d000000000000000000000000000000000000007e37be2022c0914b2680000000'), - 'output': HexBytes('0x0000000000000000000000000000000000000000000000000000000000000001'), - 'to': '0xec4cF8dCB526080792bC98E1Ef41fB4775777b6B', - 'type': 'CALL', - 'value': 0}), - AttributeDict({'from': '0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D', - 'gas': 89911, - 'gasUsed': 2504, - 'input': HexBytes('0x0902f1ac'), - 'output': HexBytes('0x00000000000000000000000000000000000000000000000053f54ccde429ceb70000000000000000000000000000000000000000001635eb93ecdb339a7dc022000000000000000000000000000000000000000000000000000000006641f6cf'), - 'to': '0x36f0548a77BFb1d5935483D25cc40633b46e2f4d', - 'type': 'STATICCALL'}), - AttributeDict({'from': '0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D', - 'gas': 86926, - 'gasUsed': 621, - 'input': HexBytes('0x70a0823100000000000000000000000036f0548a77bfb1d5935483d25cc40633b46e2f4d'), - 'output': HexBytes('0x000000000000000000000000000000000000007e37d4560e547e265a1a7dc022'), - 'to': '0xec4cF8dCB526080792bC98E1Ef41fB4775777b6B', - 'type': 'STATICCALL'}), - AttributeDict({'calls': [AttributeDict({'from': '0x36f0548a77BFb1d5935483D25cc40633b46e2f4d', - 'gas': 70279, - 'gasUsed': 29962, - 'input': HexBytes('0xa9059cbb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000053f53dfc545d56a6'), - 'output': HexBytes('0x0000000000000000000000000000000000000000000000000000000000000001'), - 'to': '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2', - 'type': 'CALL', - 'value': 0}), - AttributeDict({'from': '0x36f0548a77BFb1d5935483D25cc40633b46e2f4d', - 'gas': 40164, - 'gasUsed': 534, - 'input': HexBytes('0x70a0823100000000000000000000000036f0548a77bfb1d5935483d25cc40633b46e2f4d'), - 'output': HexBytes('0x00000000000000000000000000000000000000000000000000000ed18fcc7811'), - 'to': '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2', - 'type': 'STATICCALL'}), - AttributeDict({'from': '0x36f0548a77BFb1d5935483D25cc40633b46e2f4d', - 'gas': 39233, - 'gasUsed': 621, - 'input': HexBytes('0x70a0823100000000000000000000000036f0548a77bfb1d5935483d25cc40633b46e2f4d'), - 'output': HexBytes('0x000000000000000000000000000000000000007e37d4560e547e265a1a7dc022'), - 'to': '0xec4cF8dCB526080792bC98E1Ef41fB4775777b6B', - 'type': 'STATICCALL'})], - 'from': '0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D', - 'gas': 84769, - 'gasUsed': 64940, - 'input': HexBytes('0x022c0d9f00000000000000000000000000000000000000000000000053f53dfc545d56a600000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000'), - 'to': '0x36f0548a77BFb1d5935483D25cc40633b46e2f4d', - 'type': 'CALL', - 'value': 0}), - AttributeDict({'from': '0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D', - 'gas': 20382, - 'gasUsed': 534, - 'input': HexBytes('0x70a082310000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d'), - 'output': HexBytes('0x00000000000000000000000000000000000000000000000053f53dfc545d56a6'), - 'to': '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2', - 'type': 'STATICCALL'}), - AttributeDict({'calls': [AttributeDict({'from': '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2', - 'gas': 2300, - 'gasUsed': 83, - 'input': HexBytes('0x'), - 'to': '0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D', - 'type': 'CALL', - 'value': 6049809828398585510})], - 'from': '0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D', - 'gas': 19432, - 'gasUsed': 9223, - 'input': HexBytes('0x2e1a7d4d00000000000000000000000000000000000000000000000053f53dfc545d56a6'), - 'to': '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2', - 'type': 'CALL', - 'value': 0}), - AttributeDict({'from': '0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D', - 'gas': 3353, - 'gasUsed': 0, - 'input': HexBytes('0x'), - 'to': '0xE11418f9961248da36b1008b1090235f680AE8f5', - 'type': 'CALL', - 'value': 6049809828398585510})], - 'from': '0xa0457775a08b175Cbb444eD923556Dc67Ec5Dc11', - 'gas': 125270, - 'gasUsed': 122013, - 'input': HexBytes('0x791ac947000000000000000000000000000000000000007e37be2022c0914b2680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e11418f9961248da36b1008b1090235f680ae8f5000000000000000000000000000000000000000000000000000000006641fe7f0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000ec4cf8dcb526080792bc98e1ef41fb4775777b6b000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2'), - 'to': '0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D', - 'type': 'CALL', - 'value': 0})], - 'from': '0xE11418f9961248da36b1008b1090235f680AE8f5', - 'gas': 185574, - 'gasUsed': 144300, - 'input': HexBytes('0x56feb11b000000000000000000000000ec4cf8dcb526080792bc98e1ef41fb4775777b6b000000000000000000000000000000000000007e37be2022c0914b2680000000'), - 'to': '0xa0457775a08b175Cbb444eD923556Dc67Ec5Dc11', - 'type': 'CALL', - 'value': 0}) - - >>> w3.geth.debug.trace_transaction(tx_hash, {'tracer': '4byteTracer'}) diff --git a/docs/web3.main.rst b/docs/web3.main.rst deleted file mode 100644 index eba35be383..0000000000 --- a/docs/web3.main.rst +++ /dev/null @@ -1,601 +0,0 @@ -.. _web3_base: - -Web3 API -======== - -.. contents:: :local: - -.. py:module:: web3 -.. py:currentmodule:: web3 - - -.. py:class:: Web3(provider) - -Each ``Web3`` instance exposes the following APIs. - -Providers -~~~~~~~~~ - -.. py:attribute:: Web3.HTTPProvider - - Convenience API to access :py:class:`web3.providers.rpc.HTTPProvider` - -.. py:attribute:: Web3.IPCProvider - - Convenience API to access :py:class:`web3.providers.ipc.IPCProvider` - - -Attributes -~~~~~~~~~~ - -.. py:attribute:: Web3.api - - Returns the current Web3 version. - - .. code-block:: python - - >>> web3.api - "4.7.0" - -.. py:attribute:: Web3.client_version - - * Delegates to ``web3_clientVersion`` RPC Method - - Returns the current client version. - - .. code-block:: python - - >>> web3.client_version - 'Geth/v1.4.11-stable-fed692f6/darwin/go1.7' - - -.. _batch_requests: - -Batch Requests -~~~~~~~~~~~~~~ - -.. py:method:: Web3.batch_requests() - - The JSON-RPC API allows for batch requests, meaning you can send a single request - that contains an array of request objects. Generally, this may be useful when you want - to limit the number of requests you send to a node. - - You can choose to build a batch of requests within or outside of a context manager: - - .. code-block:: python - - with w3.batch_requests() as batch: - batch.add(w3.eth.get_block(6)) - batch.add(w3.eth.get_block(4)) - batch.add(w3.eth.get_block(2)) - - responses = batch.execute() - assert len(responses) == 3 - - Using the batch object directly: - - .. code-block:: python - - batch = w3.batch_requests() - batch.add(w3.eth.get_block(1)) - batch.add(w3.eth.get_block(2)) - responses = batch.execute() - assert len(responses) == 2 - - Contract interactions can be included in batch requests by omitting the ``call()`` method: - - .. code-block:: python - - batch.add(math_contract.functions.multiply7(0)) - - Additionally, if you need to make multiple calls of the same function, you can add - a mapping of the function to its arguments: - - .. code-block:: python - - batch = w3.batch_requests() - batch.add_mapping( - { - math_contract.functions.multiply7: [1, 2], - w3.eth.get_block: [3, 4], - } - ) - responses = batch.execute() - assert len(responses) == 4 - - The ``execute`` method returns a list of responses in the order they were included in - the batch. - - If you need to abandon or rebuild a batch request, utilize the ``clear`` method: - - .. code-block:: python - - batch = w3.batch_requests() - batch.add(w3.eth.get_block(1)) - batch.add(w3.eth.get_block(2)) - assert len(batch._requests_info) == 2 - - batch.clear() - assert batch._requests_info == [] - - .. note:: - - Only read-only operations that exist within modules on the ``Web3`` class - (e.g. ``w3.eth``, ``w3.net``) are supported by ``batch_requests``. - Unsupported methods include: - - - :meth:`subscribe ` - - :meth:`unsubscribe ` - - :meth:`send_raw_transaction ` - - :meth:`send_transaction ` - - :meth:`sign_transaction ` - - :meth:`sign ` - - :meth:`sign_typed_data ` - - ``w3.provider.make_request()``. - - Async Batch Requests - ```````````````````` - - If using one of the asynchronous providers, you'll need to make use of - the ``async_execute`` method and the ``async`` and ``await`` keywords as appropriate. - - .. note:: - - If performance is a concern, consider using ``asyncio.gather()`` with single - concurrent requests instead of an asynchronous batch request. It will generally be - the faster option due to the overhead of batching. - - .. code-block:: python - - # context manager: - async with w3.batch_requests() as batch: - batch.add(w3.eth.get_block(6)) - batch.add(w3.eth.get_block(4)) - batch.add(w3.eth.get_block(2)) - - responses = await batch.async_execute() - assert len(responses) == 3 - - # object: - batch = w3.batch_requests() - batch.add(w3.eth.get_block(1)) - batch.add(w3.eth.get_block(2)) - responses = await batch.async_execute() - assert len(responses) == 2 - - -.. _overview_type_conversions: - -Encoding and Decoding Helpers -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -.. py:method:: Web3.to_hex(primitive=None, hexstr=None, text=None) - - Takes a variety of inputs and returns it in its hexadecimal representation. - It follows the rules for converting to hex in the - `JSON-RPC spec`_ - - .. code-block:: python - - >>> Web3.to_hex(0) - '0x0' - >>> Web3.to_hex(1) - '0x1' - >>> Web3.to_hex(0x0) - '0x0' - >>> Web3.to_hex(0x000F) - '0xf' - >>> Web3.to_hex(b'') - '0x' - >>> Web3.to_hex(b'\x00\x0F') - '0x000f' - >>> Web3.to_hex(False) - '0x0' - >>> Web3.to_hex(True) - '0x1' - >>> Web3.to_hex(hexstr='0x000F') - '0x000f' - >>> Web3.to_hex(hexstr='000F') - '0x000f' - >>> Web3.to_hex(text='') - '0x' - >>> Web3.to_hex(text='cowmö') - '0x636f776dc3b6' - -.. _JSON-RPC spec: https://github.com/ethereum/wiki/wiki/JSON-RPC#hex-value-encoding - -.. py:method:: Web3.to_text(primitive=None, hexstr=None, text=None) - - Takes a variety of inputs and returns its string equivalent. - Text gets decoded as UTF-8. - - - .. code-block:: python - - >>> Web3.to_text(0x636f776dc3b6) - 'cowmö' - >>> Web3.to_text(b'cowm\xc3\xb6') - 'cowmö' - >>> Web3.to_text(hexstr='0x636f776dc3b6') - 'cowmö' - >>> Web3.to_text(hexstr='636f776dc3b6') - 'cowmö' - >>> Web3.to_text(text='cowmö') - 'cowmö' - - -.. py:method:: Web3.to_bytes(primitive=None, hexstr=None, text=None) - - Takes a variety of inputs and returns its bytes equivalent. - Text gets encoded as UTF-8. - - - .. code-block:: python - - >>> Web3.to_bytes(0) - b'\x00' - >>> Web3.to_bytes(0x000F) - b'\x0f' - >>> Web3.to_bytes(b'') - b'' - >>> Web3.to_bytes(b'\x00\x0F') - b'\x00\x0f' - >>> Web3.to_bytes(False) - b'\x00' - >>> Web3.to_bytes(True) - b'\x01' - >>> Web3.to_bytes(hexstr='0x000F') - b'\x00\x0f' - >>> Web3.to_bytes(hexstr='000F') - b'\x00\x0f' - >>> Web3.to_bytes(text='') - b'' - >>> Web3.to_bytes(text='cowmö') - b'cowm\xc3\xb6' - - -.. py:method:: Web3.to_int(primitive=None, hexstr=None, text=None) - - Takes a variety of inputs and returns its integer equivalent. - - - .. code-block:: python - - >>> Web3.to_int(0) - 0 - >>> Web3.to_int(0x000F) - 15 - >>> Web3.to_int(b'\x00\x0F') - 15 - >>> Web3.to_int(False) - 0 - >>> Web3.to_int(True) - 1 - >>> Web3.to_int(hexstr='0x000F') - 15 - >>> Web3.to_int(hexstr='000F') - 15 - -.. py:method:: Web3.to_json(obj) - - Takes a variety of inputs and returns its JSON equivalent. - - - .. code-block:: python - - >>> Web3.to_json(3) - '3' - >>> Web3.to_json({'one': 1}) - '{"one": 1}' - - -.. _overview_currency_conversions: - -Currency Conversions -~~~~~~~~~~~~~~~~~~~~~ - -.. py:method:: Web3.to_wei(value, currency) - - Returns the value in the denomination specified by the ``currency`` argument - converted to wei. - - - .. code-block:: python - - >>> Web3.to_wei(1, 'ether') - 1000000000000000000 - - -.. py:method:: Web3.from_wei(value, currency) - - Returns the value in wei converted to the given currency. The value is returned - as a ``Decimal`` to ensure precision down to the wei. - - - .. code-block:: python - - >>> Web3.from_wei(1000000000000000000, 'ether') - Decimal('1') - - -.. _overview_addresses: - -Addresses -~~~~~~~~~ - -.. py:method:: Web3.is_address(value) - - Returns ``True`` if the value is one of the recognized address formats. - - * Allows for both ``0x`` prefixed and non-prefixed values. - * If the address contains mixed upper and lower cased characters this function also - checks if the address checksum is valid according to `EIP55`_ - - .. code-block:: python - - >>> Web3.is_address('0xd3CdA913deB6f67967B99D67aCDFa1712C293601') - True - - -.. py:method:: Web3.is_checksum_address(value) - - Returns ``True`` if the value is a valid `EIP55`_ checksummed address - - - .. code-block:: python - - >>> Web3.is_checksum_address('0xd3CdA913deB6f67967B99D67aCDFa1712C293601') - True - >>> Web3.is_checksum_address('0xd3cda913deb6f67967b99d67acdfa1712c293601') - False - - -.. py:method:: Web3.to_checksum_address(value) - - Returns the given address with an `EIP55`_ checksum. - - - .. code-block:: python - - >>> Web3.to_checksum_address('0xd3cda913deb6f67967b99d67acdfa1712c293601') - '0xd3CdA913deB6f67967B99D67aCDFa1712C293601' - -.. _EIP55: https://github.com/ethereum/EIPs/issues/55 - - -.. _overview_hashing: - -Cryptographic Hashing -~~~~~~~~~~~~~~~~~~~~~ - -.. py:classmethod:: Web3.keccak(primitive=None, hexstr=None, text=None) - - Returns the Keccak-256 of the given value. Text is encoded to UTF-8 before - computing the hash, just like Solidity. Any of the following are - valid and equivalent: - - .. code-block:: python - - >>> Web3.keccak(0x747874) - >>> Web3.keccak(b'\x74\x78\x74') - >>> Web3.keccak(hexstr='0x747874') - >>> Web3.keccak(hexstr='747874') - >>> Web3.keccak(text='txt') - HexBytes('0xd7278090a36507640ea6b7a0034b69b0d240766fa3f98e3722be93c613b29d2e') - -.. py:classmethod:: Web3.solidity_keccak(abi_types, value) - - Returns the Keccak-256 as it would be computed by the solidity ``keccak`` - function on a *packed* ABI encoding of the ``value`` list contents. The ``abi_types`` - argument should be a list of solidity type strings which correspond to each - of the provided values. - - - .. code-block:: python - - >>> Web3.solidity_keccak(['bool'], [True]) - HexBytes("0x5fe7f977e71dba2ea1a68e21057beebb9be2ac30c6410aa38d4f3fbe41dcffd2") - - >>> Web3.solidity_keccak(['uint8', 'uint8', 'uint8'], [97, 98, 99]) - HexBytes("0x4e03657aea45a94fc7d47ba826c8d667c0d1e6e33a64a036ec44f58fa12d6c45") - - >>> Web3.solidity_keccak(['uint8[]'], [[97, 98, 99]]) - HexBytes("0x233002c671295529bcc50b76a2ef2b0de2dac2d93945fca745255de1a9e4017e") - - >>> Web3.solidity_keccak(['address'], ["0x49EdDD3769c0712032808D86597B84ac5c2F5614"]) - HexBytes("0x2ff37b5607484cd4eecf6d13292e22bd6e5401eaffcc07e279583bc742c68882") - - >>> Web3.solidity_keccak(['address'], ["ethereumfoundation.eth"]) - HexBytes("0x913c99ea930c78868f1535d34cd705ab85929b2eaaf70fcd09677ecd6e5d75e9") - - - Comparable solidity usage: - - .. code-block:: solidity - - bytes32 data1 = keccak256(abi.encodePacked(true)); - assert(data1 == hex"5fe7f977e71dba2ea1a68e21057beebb9be2ac30c6410aa38d4f3fbe41dcffd2"); - bytes32 data2 = keccak256(abi.encodePacked(uint8(97), uint8(98), uint8(99))); - assert(data2 == hex"4e03657aea45a94fc7d47ba826c8d667c0d1e6e33a64a036ec44f58fa12d6c45"); - - -Check Encodability -~~~~~~~~~~~~~~~~~~~~ - -.. py:method:: w3.is_encodable(_type, value) - - Returns ``True`` if a value can be encoded as the given type. Otherwise returns ``False``. - - .. code-block:: python - - >>> from web3.auto.gethdev import w3 - >>> w3.is_encodable('bytes2', b'12') - True - >>> w3.is_encodable('bytes2', '0x1234') - True - >>> w3.is_encodable('bytes2', '1234') # not 0x-prefixed, no assumptions will be made - False - >>> w3.is_encodable('bytes2', b'1') # does not match specified bytes size - False - >>> w3.is_encodable('bytes2', b'123') # does not match specified bytes size - False - -.. py:attribute:: w3.strict_bytes_type_checking - - Disable the stricter bytes type checking that is loaded by default. For more - examples, see :ref:`disable-strict-byte-check` - - .. doctest:: - - >>> from web3.auto.gethdev import w3 - - >>> w3.is_encodable('bytes2', b'12') - True - - >>> # not of exact size bytes2 - >>> w3.is_encodable('bytes2', b'1') - False - - >>> w3.strict_bytes_type_checking = False - - >>> # zero-padded, so encoded to: b'1\x00' - >>> w3.is_encodable('bytes2', b'1') - True - - >>> # re-enable it - >>> w3.strict_bytes_type_checking = True - >>> w3.is_encodable('bytes2', b'1') - False - - -RPC API Modules -~~~~~~~~~~~~~~~ - -Each ``Web3`` instance also exposes these namespaced API modules. - - -.. py:attribute:: Web3.eth - - See :doc:`./web3.eth` - -.. py:attribute:: Web3.geth - - See :doc:`./web3.geth` - - -These internal modules inherit from the ``web3.module.Module`` class which give them some configurations internal to the -web3.py library. - - -Custom Methods -~~~~~~~~~~~~~~ - -You may add or overwrite methods within any module using the ``attach_methods`` function. -To create a property instead, set ``is_property`` to ``True``. - -.. code-block:: python - - >>> w3.eth.attach_methods({ - ... 'example_method': Method( - ... 'eth_example', - ... mungers=[...], - ... request_formatters=[...], - ... result_formatters=[...], - ... is_property=False, - ... ), - ... }) - >>> w3.eth.example_method() - - -External Modules -~~~~~~~~~~~~~~~~ - -External modules can be used to introduce custom or third-party APIs to your ``Web3`` instance. External modules are simply -classes whose methods and properties can be made available within the ``Web3`` instance. Optionally, the external module may -make use of the parent ``Web3`` instance by accepting it as the first argument within the ``__init__`` function: - -.. code-block:: python - - >>> class ExampleModule: - ... def __init__(self, w3): - ... self.w3 = w3 - ... - ... def print_balance_of_shaq(self): - ... print(self.w3.eth.get_balance('shaq.eth')) - - -.. warning:: Given the flexibility of external modules, use caution and only import modules from trusted third parties - and open source code you've vetted! - -Configuring external modules can occur either at instantiation of the ``Web3`` instance or by making use of the -``attach_modules()`` method. To instantiate the ``Web3`` instance with external modules use the ``external_modules`` -keyword argument: - -.. code-block:: python - - >>> from web3 import Web3, HTTPProvider - >>> from external_module_library import ( - ... ModuleClass1, - ... ModuleClass2, - ... ModuleClass3, - ... ModuleClass4, - ... ModuleClass5, - ... ) - >>> w3 = Web3( - ... HTTPProvider(provider_uri), - ... external_modules={ - ... 'module1': ModuleClass1, - ... 'module2': (ModuleClass2, { - ... 'submodule1': ModuleClass3, - ... 'submodule2': (ModuleClass4, { - ... 'submodule2a': ModuleClass5, # submodule children may be nested further if necessary - ... }) - ... }) - ... } - ... ) - - # `return_zero`, in this case, is an example attribute of the `ModuleClass1` object - >>> w3.module1.return_zero() - 0 - >>> w3.module2.submodule1.return_one() - 1 - >>> w3.module2.submodule2.submodule2a.return_two() - 2 - - -.. py:method:: w3.attach_modules(modules) - - The ``attach_modules()`` method can be used to attach external modules after the ``Web3`` instance has been - instantiated. - - Modules are attached via a `dict` with module names as the keys. The values can either be the module classes - themselves, if there are no submodules, or two-item tuples with the module class as the 0th index and a similarly - built `dict` containing the submodule information as the 1st index. This pattern may be repeated as necessary. - - .. code-block:: python - - >>> from web3 import Web3, HTTPProvider - >>> from external_module_library import ( - ... ModuleClass1, - ... ModuleClass2, - ... ModuleClass3, - ... ModuleClass4, - ... ModuleClass5, - ... ) - >>> w3 = Web3(HTTPProvider(provider_uri)) - - >>> w3.attach_modules({ - ... 'module1': ModuleClass1, # the module class itself may be used for a single module with no submodules - ... 'module2': (ModuleClass2, { # a tuple with module class and corresponding submodule dict may be used for modules with submodules - ... 'submodule1': ModuleClass3, - ... 'submodule2': (ModuleClass4, { # this pattern may be repeated as necessary - ... 'submodule2a': ModuleClass5, - ... }) - ... }) - ... }) - >>> w3.module1.return_zero() - 0 - >>> w3.module2.submodule1.return_one() - 1 - >>> w3.module2.submodule2.submodule2a.return_two() - 2 diff --git a/docs/web3.net.rst b/docs/web3.net.rst deleted file mode 100644 index bc5433725e..0000000000 --- a/docs/web3.net.rst +++ /dev/null @@ -1,49 +0,0 @@ -Net API -======= - -.. py:module:: web3.net - -The ``web3.net`` object exposes methods to interact with the RPC APIs under -the ``net_`` namespace. - - -Properties ----------- - -The following properties are available on the ``web3.net`` namespace. - -.. py:method:: listening - ..py:property:: - - * Delegates to ``net_listening`` RPC method - - Returns true if client is actively listening for network connections. - - .. code-block:: python - - >>> web3.net.listening - True - -.. py:method:: peer_count - ..py:property:: - - * Delegates to ``net_peerCount`` RPC method - - Returns number of peers currently connected to the client. - - .. code-block:: python - - >>> web3.net.peer_count - 1 - -.. py:method:: version - ..py:property:: - - * Delegates to ``net_version`` RPC Method - - Returns the current network id. - - .. code-block:: python - - >>> web3.net.version - '8996' diff --git a/docs/web3.testing.rst b/docs/web3.testing.rst deleted file mode 100644 index 7d8133801a..0000000000 --- a/docs/web3.testing.rst +++ /dev/null @@ -1,55 +0,0 @@ -Testing API -=========== - -.. py:module:: web3.testing -.. py:currentmodule:: web3.testing - -.. py:class:: Testing - -The ``web3.testing`` object exposes methods to interact with non-standard RPC -APIs that are only available under the python ``eth-testrpc`` package. - - -Methods -------- - -The following methods are available on the ``web3.testing`` namespace. - - -.. py:method:: Testing.timeTravel(timestamp) - - * Delegates to ``testing_timeTravel`` RPC Method - - Advances the test blockchain one block setting the new block's timestamp to - the provided integer timestamp. - - -.. py:method:: Testing.mine(num_blocks=1) - - * Delegates to ``evm_mine`` RPC Method - - Mines ``num_blocks`` new blocks. - - -.. py:method:: Testing.snapshot() - - * Delegates to ``evm_snapshot`` RPC Method - - Takes a snapshot of the current EVM state and returns an integer that can - be used with the ``revert`` method to restore the EVM to this state. - - -.. py:method:: Testing.revert(snapshot_idx=None) - - * Delegates to ``evm_revert`` RPC Method - - If no ``snapshot_idx`` is provided this will revert the EVM to the most - recent snapshot. Otherwise reverts the EVM to the snapshot indicated by - the provided ``snapshot_idx`` - - -.. py:method:: Testing.reset() - - * Delegates to ``evm_reset`` RPC Method - - Reset the EVM back to the genesis state. diff --git a/docs/web3.tracing.rst b/docs/web3.tracing.rst deleted file mode 100644 index f17908aa60..0000000000 --- a/docs/web3.tracing.rst +++ /dev/null @@ -1,16 +0,0 @@ -Tracing API -=========== - -.. py:module:: web3.tracing - -The ``web3.tracing`` object exposes modules that enable you to interact with the JSON-RPC ``trace_`` endpoints supported by Erigon and Nethermind. - -The following methods are available on the ``web3.tracing`` namespace: - -.. py:method:: trace_replay_transaction -.. py:method:: trace_replay_block_transactions -.. py:method:: trace_filter -.. py:method:: trace_block -.. py:method:: trace_transaction -.. py:method:: trace_call -.. py:method:: trace_raw_transaction diff --git a/docs/web3.utils.rst b/docs/web3.utils.rst deleted file mode 100644 index 89fb0c0fda..0000000000 --- a/docs/web3.utils.rst +++ /dev/null @@ -1,53 +0,0 @@ -Utils -===== - -.. py:module:: web3.utils - -The ``utils`` module houses public utility functions and classes. - -ABI ---- - -.. automodule:: web3.utils.abi - :members: - :undoc-members: - :show-inheritance: - -Address -------- - -.. py:method:: utils.get_create_address(sender, nonce) - - Return the checksummed contract address generated by using the ``CREATE`` opcode by - a sender address with a given nonce. - - -.. py:method:: utils.get_create2_address(sender, salt, init_code) - - Return the checksummed contract address generated by using the ``CREATE2`` opcode by - a sender address with a given salt and contract bytecode. See - `EIP-1014 `_. - - -Caching -------- - -.. py:class:: utils.SimpleCache - - The main cache class being used internally by web3.py. In some cases, it may prove - useful to set your own cache size and pass in your own instance of this class where - supported. - - -Exception Handling ------------------- - -.. py:method:: utils.handle_offchain_lookup(offchain_lookup_payload, transaction) - - Handle ``OffchainLookup`` reverts on contract function calls manually. For an example, see :ref:`ccip-read-example` - within the examples section. - - -.. py:method:: utils.async_handle_offchain_lookup(offchain_lookup_payload, transaction) - - The async version of the ``handle_offchain_lookup()`` utility method described above. diff --git a/newsfragments/README.md b/newsfragments/README.md deleted file mode 100644 index 177d649257..0000000000 --- a/newsfragments/README.md +++ /dev/null @@ -1,29 +0,0 @@ -This directory collects "newsfragments": short files that each contain -a snippet of ReST-formatted text that will be added to the next -release notes. This should be a description of aspects of the change -(if any) that are relevant to users. (This contrasts with the -commit message and PR description, which are a description of the change as -relevant to people working on the code itself.) - -Each file should be named like `..rst`, where -`` is an issue number, and `` is one of: - -- `breaking` -- `bugfix` -- `deprecation` -- `docs` -- `feature` -- `internal` -- `misc` -- `performance` -- `removal` - -So for example: `123.feature.rst`, `456.bugfix.rst` - -If the PR fixes an issue, use that number here. If there is no issue, -then open up the PR first and use the PR number for the newsfragment. - -Note that the `towncrier` tool will automatically -reflow your text, so don't try to do any fancy formatting. Run -`towncrier build --draft` to get a preview of what the release notes entry -will look like in the final release notes. diff --git a/newsfragments/validate_files.py b/newsfragments/validate_files.py deleted file mode 100755 index 02b0e3efbf..0000000000 --- a/newsfragments/validate_files.py +++ /dev/null @@ -1,45 +0,0 @@ -#!/usr/bin/env python3 - -# Towncrier silently ignores files that do not match the expected ending. -# We use this script to ensure we catch these as errors in CI. - -import pathlib -import sys - -ALLOWED_EXTENSIONS = { - ".breaking.rst", - ".bugfix.rst", - ".deprecation.rst", - ".docs.rst", - ".feature.rst", - ".internal.rst", - ".misc.rst", - ".performance.rst", - ".removal.rst", -} - -ALLOWED_FILES = { - "validate_files.py", - "README.md", -} - -THIS_DIR = pathlib.Path(__file__).parent - -num_args = len(sys.argv) - 1 -assert num_args in {0, 1} -if num_args == 1: - assert sys.argv[1] in ("is-empty",) - -for fragment_file in THIS_DIR.iterdir(): - if fragment_file.name in ALLOWED_FILES: - continue - elif num_args == 0: - full_extension = "".join(fragment_file.suffixes) - if full_extension not in ALLOWED_EXTENSIONS: - raise Exception(f"Unexpected file: {fragment_file}") - elif sys.argv[1] == "is-empty": - raise Exception(f"Unexpected file: {fragment_file}") - else: - raise RuntimeError( - f"Strange: arguments {sys.argv} were validated, but not found" - ) diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index bbf5b3792b..0000000000 --- a/pyproject.toml +++ /dev/null @@ -1,126 +0,0 @@ -[tool.autoflake] -exclude = "__init__.py" -remove_all_unused_imports = true - -[tool.isort] -combine_as_imports = true -extra_standard_library = "pytest" -force_grid_wrap = 1 -force_sort_within_sections = true -honor_noqa = true -known_first_party = "web3" -known_third_party = "hypothesis" -multi_line_output = 3 -profile = "black" -use_parentheses = true -# skip `__init__.py` files because sometimes order of initialization is important -skip="__init__.py,web3/main.py,web3/utils/windows.py" - -[tool.mypy] -check_untyped_defs = true -disallow_any_generics = true -disallow_incomplete_defs = true -disallow_subclassing_any = true -disallow_untyped_calls = true -disallow_untyped_decorators = false -disallow_untyped_defs = true -ignore_missing_imports = true -strict_equality = true -strict_optional = false -warn_redundant_casts = true -warn_return_any = false -warn_unused_configs = true -warn_unused_ignores = true - -[tool.pydocstyle] -# All error codes found here: -# http://www.pydocstyle.org/en/3.0.0/error_codes.html -# -# Ignored: -# D1 - Missing docstring error codes -# -# Selected: -# D2 - Whitespace error codes -# D3 - Quote error codes -# D4 - Content related error codes -select = "D2,D3,D4" - -# Extra ignores: -# D200 - One-line docstring should fit on one line with quotes -# D203 - 1 blank line required before class docstring -# D204 - 1 blank line required after class docstring -# D205 - 1 blank line required between summary line and description -# D212 - Multi-line docstring summary should start at the first line -# D302 - Use u""" for Unicode docstrings -# D400 - First line should end with a period -# D401 - First line should be in imperative mood -# D412 - No blank lines allowed between a section header and its content -# D415 - First line should end with a period, question mark, or exclamation point -add-ignore = "D200,D203,D204,D205,D212,D302,D400,D401,D412,D415" - -# Explanation: -# D400 - Enabling this error code seems to make it a requirement that the first -# sentence in a docstring is not split across two lines. It also makes it a -# requirement that no docstring can have a multi-sentence description without a -# summary line. Neither one of those requirements seem appropriate. - -[tool.pytest.ini_options] -addopts = "-v --showlocals --durations 10" -asyncio_mode = "strict" -log_date_format = "%m-%d %H:%M:%S" -log_format = "%(levelname)8s %(asctime)s %(filename)20s %(message)s" -xfail_strict = true - -[tool.towncrier] -# Read https://github.com/ethereum/web3.py/blob/main/newsfragments/README.md for instructions -directory = "newsfragments" -filename = "docs/release_notes.rst" -issue_format = "`#{issue} `__" -package = "web3" -title_format = "web3.py v{version} ({project_date})" -underlines = ["-", "~", "^"] - -[[tool.towncrier.type]] -directory = "breaking" -name = "Breaking Changes" -showcontent = true - -[[tool.towncrier.type]] -directory = "bugfix" -name = "Bugfixes" -showcontent = true - -[[tool.towncrier.type]] -directory = "deprecation" -name = "Deprecations" -showcontent = true - -[[tool.towncrier.type]] -directory = "docs" -name = "Improved Documentation" -showcontent = true - -[[tool.towncrier.type]] -directory = "feature" -name = "Features" -showcontent = true - -[[tool.towncrier.type]] -directory = "internal" -name = "Internal Changes - for web3.py Contributors" -showcontent = true - -[[tool.towncrier.type]] -directory = "misc" -name = "Miscellaneous Changes" -showcontent = false - -[[tool.towncrier.type]] -directory = "performance" -name = "Performance Improvements" -showcontent = true - -[[tool.towncrier.type]] -directory = "removal" -name = "Removals" -showcontent = true diff --git a/tox.ini b/tox.ini deleted file mode 100644 index b02cbd69b4..0000000000 --- a/tox.ini +++ /dev/null @@ -1,89 +0,0 @@ -[tox] -envlist= - py{38,39,310,311,312,313}-{ens,core,lint,wheel} - py{38,39,310,311,312,313}-integration-{goethereum,ethtester} - docs - benchmark - windows-wheel - -[flake8] -exclude= venv*,.tox,docs,build -extend-ignore=E203,W503 -max-line-length=88 -per-file-ignores=__init__.py:F401 - -[blocklint] -max_issue_threshold=1 - -[testenv] -allowlist_externals=make,pre-commit -install_command=python -m pip install {opts} {packages} -usedevelop=True -commands= - core: pytest {posargs:tests/core -m "not asyncio"} - core_async: pytest {posargs:tests/core -m asyncio} - ens: pytest {posargs:tests/ens --ignore=tests/ens/normalization/test_normalize_name_ensip15.py} - ensip15: pytest {posargs:tests/ens/normalization/test_normalize_name_ensip15.py -q} - integration-goethereum-ipc: pytest {posargs:tests/integration/go_ethereum/test_goethereum_ipc.py -k "not Async"} - integration-goethereum-ipc_async: pytest {posargs:tests/integration/go_ethereum/test_goethereum_ipc.py -k Async} - integration-goethereum-http: pytest {posargs:tests/integration/go_ethereum/test_goethereum_http.py -k "not Async"} - integration-goethereum-http_async: pytest {posargs:tests/integration/go_ethereum/test_goethereum_http.py -k Async} - integration-goethereum-legacy_ws: pytest {posargs:tests/integration/go_ethereum/test_goethereum_legacy_ws.py} - integration-goethereum-ws: pytest {posargs:tests/integration/go_ethereum/test_goethereum_ws} - integration-ethtester: pytest {posargs:tests/integration/test_ethereum_tester.py} - docs: make check-docs-ci -deps = - .[test] - ; install both `docs` and `test` dependencies for the `docs` environment - docs: .[docs] -passenv = - GETH_BINARY - GOROOT - GOPATH - WEB3_INFURA_PROJECT_ID - WEB3_INFURA_API_SECRET -basepython = - docs: python - windows-wheel: python - py38: python3.8 - py39: python3.9 - py310: python3.10 - py311: python3.11 - py312: python3.12 - py313: python3.13 - -[testenv:py{38,39,310,311,312,313}-lint] -deps=pre-commit -extras=dev -commands= - pre-commit install - pre-commit run --all-files --show-diff-on-failure - -[testenv:benchmark] -basepython=python -commands= - python {toxinidir}/web3/tools/benchmark/main.py --num-calls 5 - python {toxinidir}/web3/tools/benchmark/main.py --num-calls 50 - python {toxinidir}/web3/tools/benchmark/main.py --num-calls 100 - - -[testenv:py{38,39,310,311,312,313}-wheel] -deps= - wheel - build[virtualenv] -allowlist_externals= - /bin/rm - /bin/bash -commands= - /bin/bash {toxinidir}/web3/scripts/release/test_wheel_install.sh -skip_install=true - -[testenv:windows-wheel] -deps= - wheel - build[virtualenv] -allowlist_externals= - bash.exe -commands= - bash.exe {toxinidir}/web3/scripts/release/test_windows_wheel_install.sh -skip_install=true