From c20f829484c5c4fed7f16fc32b3683c602feaa4b Mon Sep 17 00:00:00 2001 From: Mikko Ohtamaa Date: Tue, 18 Jul 2023 11:17:20 +0200 Subject: [PATCH] Add links to token tax blog post --- eth_defi/uniswap_v2/token_tax.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/eth_defi/uniswap_v2/token_tax.py b/eth_defi/uniswap_v2/token_tax.py index 26f2bd9a..047df80c 100644 --- a/eth_defi/uniswap_v2/token_tax.py +++ b/eth_defi/uniswap_v2/token_tax.py @@ -1,6 +1,8 @@ """Querying the buy tax, transfer tax & sell tax of an ERC20 token -Read also unit test suite tests/test_token_tax.py to see the retrieval of token taxes for ELEPHANT token on BSC +- `See blog post about token tax and honey pots for more information `__ + +- Read also unit test suite tests/test_token_tax.py to see the retrieval of token taxes for ELEPHANT token on BSC """ import logging @@ -98,6 +100,8 @@ def estimate_token_taxes( ) -> TokenTaxInfo: """Estimates different token taxes for a token by running Ganache simulations for it. + `See blog post about token tax and honey pots for more information `__. + :param uniswap: Uniswap deployment on a Ganache mainnet fork. Set up prior calling this function.