SQL Editor

1
2
3
4
5
6
7
8
9
10
-- This is a comment

SELECT
signature as gql_field_string_signature,
count(*) AS gql_field_string_count
FROM evm_calls_ethereum_mainnet
WHERE to = '0x7893bbb46613d7a4FbcC31Dab4C9b823FfeE1026'
GROUP BY gql_field_string_signature
ORDER BY gql_field_string_count DESC