* Amend /docs/developers/dapp-developer/native:
1. Fix type
2. Fix slice of common.Hash slice syntax.
3. Clarify how the hex string for the Transfer event is computed so the code matches with the description.
* Incorporate feedback on PR + update code for blocknum typecasting
Contracts emit events during execution which can be queried from the client. The parameters for the event one is interested in have to be filled out in the `ethereum.FilterQuery` object. This includes which event topics are of interested, from which contracts and during which range of blocks. The example below queries `Transfer` events of all ERC-20 tokens for the last 10 blocks:
Contracts emit events during execution which can be queried from the client. The parameters for the event one is interested in have to be filled out in the `ethereum.FilterQuery` object. This includes which event topics are of interest, from which contracts and during which range of blocks. The example below queries `Transfer` events of all ERC-20 tokens for the last 10 blocks: