Skip to content

Commit

Permalink
docs: add multicall verbose to network API docs
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdefinitelyahuman committed Feb 12, 2024
1 parent a4641ec commit 756e2cd
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docs/api-network.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1900,6 +1900,21 @@ Multicall Attributes
... brownie.multicall.block_number
12733683
.. py:attribute:: Multicall.default_verbosity
Default verbosity setting for multicall. Set to ``False`` by default. If set to ``True``, the content of each batched call is printed to the console. This is useful for debugging, to ensure a multicall is performing as expected.

.. code-block:: python
>>> multicall.default_verbosity = True
You can also enable verbosity for individual multicalls by setting the `verbose` keyword:

.. code-block:: python
>>> with brownie.multicall(verbose=True):
...
Multicall Methods
*****************

Expand Down

0 comments on commit 756e2cd

Please sign in to comment.