diff --git a/docs/source/tutorials/pancakeswap-live-minimal.rst b/docs/source/tutorials/pancakeswap-live-minimal.rst index 3bc837c6..f9d1572a 100644 --- a/docs/source/tutorials/pancakeswap-live-minimal.rst +++ b/docs/source/tutorials/pancakeswap-live-minimal.rst @@ -1,3 +1,6 @@ +.. meta:: + :description: Monitor Pancakeswap live trades with Python + Pancakeswap live trades ----------------------- diff --git a/eth_defi/anvil.py b/eth_defi/anvil.py index 27f02e56..5cdc4954 100644 --- a/eth_defi/anvil.py +++ b/eth_defi/anvil.py @@ -1,3 +1,14 @@ +"""Anvil (legacy). + +Anvil is a blazing-fast local testnet node implementation in Rust from Foundry project. + +.. note :: + + This Python module has been moved to :py:mod:`eth_defi.provider.anvil`. + See the updated module for full API description. + +""" + import warnings warnings.warn("eth_defi.anvil has been moved to eth_defi.provider.anvil", DeprecationWarning, stacklevel=2) diff --git a/eth_defi/provider/anvil.py b/eth_defi/provider/anvil.py index 6df3c6ef..638c0335 100644 --- a/eth_defi/provider/anvil.py +++ b/eth_defi/provider/anvil.py @@ -1,8 +1,10 @@ """Anvil integration. +This module provides Python integration for Anvil. + - `Anvil `__ is a blazing-fast local testnet node implementation in Rust from - `Foundry projet <>`__ + `Foundry project `__ - Anvil can replace :py:class:`eth_tester.main.EthereumTester` as the unit/integration test backend. @@ -13,7 +15,7 @@ - Anvil is part of `Foundry `__, a toolkit for Ethereum application development. -To install Anvil on your UNIX computer: +To install Anvil on: .. code-block:: shell @@ -27,7 +29,7 @@ See also :py:mod:`eth_defi.trace` for Solidity tracebacks using Anvil. -This code was originally lifted from Brownie project. +The code was originally lifted from Brownie project. """ import logging