diff --git a/eth_defi/deploy.py b/eth_defi/deploy.py index e870cd01..ce5cb02f 100644 --- a/eth_defi/deploy.py +++ b/eth_defi/deploy.py @@ -44,6 +44,8 @@ def deploy_contract( token = deploy_contract(web3, deployer, "ERC20Mock.json", name, symbol, supply) print(f"Deployed ERC-20 token at {token.address}") + If you need to verify the deployed contract use :py:func:`eth_defi.foundry.forge.deploy_contract_with_forge`. + :param web3: Web3 instance diff --git a/eth_defi/foundry/forge.py b/eth_defi/foundry/forge.py index 7771a46e..a84c7d6d 100644 --- a/eth_defi/foundry/forge.py +++ b/eth_defi/foundry/forge.py @@ -128,7 +128,11 @@ def deploy_contract_with_forge( Assumes standard Foundry project layout with foundry.toml, src and out. - See `Foundry book `__ for more information. + See + + - `Foundry book `__ for more information + + - :py:func:`eth_defi.deploy.deploy_contract` for simple, non-verified contract deployments :param web3: Web3 instance