Skip to content

Complete missing parameter documentation in AsyncContractFunction.ca… #3728

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions web3/contract/async_contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,9 +275,9 @@ async def call(
addr = contract.functions.owner().call()

:param transaction: Dictionary of transaction info for web3 interface
:param block_identifier TODO
:param state_override TODO
:param ccip_read_enabled TODO
:param block_identifier: Block identifier (either block number integer or 'latest', 'pending', 'earliest', 'safe', or 'finalized'), defaults to 'latest'
:param state_override: A dictionary with account addresses as keys and dictionaries as values to override state in the VM for the execution. Each address can override balance, nonce, code, and/or state
:param ccip_read_enabled: Determines if CCIP read is enabled for this call. Defaults to the client's configuration
:return: ``Caller`` object that has contract public functions
and variables exposed as Python methods
"""
Expand Down