Skip to content

Commit bd3a945

Browse files
committed
docs: include start and stop nonce
1 parent d44bfb2 commit bd3a945

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,5 +171,8 @@ Query account transactions from Etherscan using the following syntax:
171171
from ape import chain
172172

173173
history = chain.history["vitalik.eth"]
174-
result = history.query("*", engine_to_use="etherscan")
174+
175+
# NOTE: Also showing how you can use `start_nonce=` and `stop_nonce=`
176+
# to limit the history.
177+
result = history.query("*", start_nonce=1000, stop_nonce=1001, engine_to_use="etherscan")
175178
```

0 commit comments

Comments
 (0)