-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e492456
commit 69f5dd9
Showing
5 changed files
with
652 additions
and
244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
SELECT timestamp, | ||
chainId as chain_id, | ||
blockNumber as block_number, | ||
logIndex as log_index, | ||
transactionHash as transaction_hash, | ||
userAddress as user_address, | ||
takerAddress as taker_address, | ||
poolAddress as pool_address, | ||
tokenAddress as token_address, | ||
amountNormalized as amount, | ||
amountUsd, | ||
eventType as event_type | ||
FROM `EventEntity` | ||
WHERE timestamp > timestamp('{{timestamp}}') | ||
ORDER BY timestamp asc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.