Description of the celo.logs table on Dune
The celo.logs
table represents the logs generated by the Ethereum Virtual Machine (EVM) when a contract is executed. Logs are a way to store data on the blockchain. Logs originate from events that occur during the execution of a smart contract. A log consists of:
Topic0
is the hash of the signature of the event (indexed), and the remaining topics are indexed parameters of the event.SELECT *
FROM celo.logs
WHERE contract_address = 0x06012c8cf97bead5deae237070f9587f8e7a266d
LIMIT 10
SELECT *
FROM celo.logs
WHERE topic0 = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
SELECT *
FROM celo.logs
WHERE evt_block_number = 1000000
Description of the celo.logs table on Dune
The celo.logs
table represents the logs generated by the Ethereum Virtual Machine (EVM) when a contract is executed. Logs are a way to store data on the blockchain. Logs originate from events that occur during the execution of a smart contract. A log consists of:
Topic0
is the hash of the signature of the event (indexed), and the remaining topics are indexed parameters of the event.SELECT *
FROM celo.logs
WHERE contract_address = 0x06012c8cf97bead5deae237070f9587f8e7a266d
LIMIT 10
SELECT *
FROM celo.logs
WHERE topic0 = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
SELECT *
FROM celo.logs
WHERE evt_block_number = 1000000