Skip to content

Commit d0cf3d7

Browse files
committed
More explicit wording about calls being top level in addTransaction
modified: docs/sdk/reference/processors/evm-batch/transactions.md
1 parent 29e0e6e commit d0cf3d7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/sdk/reference/processors/evm-batch/transactions.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ processor.addTransaction({to: ['0x6a2d262d56735dba19dd70682b39f6be9a931d98']})
5757
processor.addTransaction({sighash: ['0xa9059cbb']})
5858
```
5959

60-
3) Request all `transfer(address,uint256)` calls to the specified addresses, from block `6_000_000` onwards and fetch their inputs. Also retrieve all logs emitted by these calls.
60+
3) Request all `transfer(address,uint256)` _top-level_ calls to the specified addresses, from block `6_000_000` onwards and fetch their inputs. Also retrieve all logs emitted by these calls.
6161
```ts
6262
processor
6363
.addTransaction({
@@ -79,6 +79,7 @@ processor
7979
}
8080
})
8181
```
82+
Note that the calls made by other contracts will not be included. Look at [call traces](/sdk/reference/processors/evm-batch/traces/) to get this data.
8283

8384
4) Mine all transactions to and from Vitalik Buterin's address [`vitalik.eth`](https://etherscan.io/address/vitalik.eth). Fetch the involved addresses, ETH value and hash for each transaction. Get execution traces with the [default fields](../field-selection/#transactions) for outgoing transactions.
8485

0 commit comments

Comments
 (0)