From 168af4dae785b6ee806f5af40846d50f7ad33532 Mon Sep 17 00:00:00 2001 From: Pascal Marco Caversaccio Date: Sun, 6 Mar 2022 12:54:32 +0100 Subject: [PATCH] reverting wrong comment in README Signed-off-by: Pascal Marco Caversaccio --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3842a87..a9f458f 100644 --- a/README.md +++ b/README.md @@ -181,7 +181,7 @@ module.exports = [ The `gasLimit` field is set to **1'500'000** by default because the `CREATE2` operations are a complex sequence of opcode executions. Usually the providers do not manage to estimate the `gasLimit` for these calls, so a predefined value is set. -The contract creation transaction is displayed on Etherscan (or any other block explorer) as a so-called _internal transaction_. An internal transaction is an action that is occurring within, or between, one or multiple smart contracts. In other words, it is initiated inside the code itself, rather than externally, from a wallet address controlled by a human. For more details on why it works this way, see [here](#how-it-works). Once the contract creation transaction has been confirmed (i.e. your transaction has been included in a block on the target EVM-based blockchain), the address of the created contract is emitted in the event logs, which can also be retrieved via Etherscan (or another block explorer). +The contract creation transaction is displayed on Etherscan (or any other block explorer) as a so-called _internal transaction_. An internal transaction is an action that is occurring within, or between, one or multiple smart contracts. In other words, it is initiated inside the code itself, rather than externally, from a wallet address controlled by a human. For more details on why it works this way, see [here](#how-it-works). ## Usage ```bash