TOTAL_LBTC | TVL_USD | |
---|---|---|
1 | 20008.7251396 | 1719109646.54415 |
datavortextvl and supply
Updated 2025-03-02
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
WITH lbtc_activity AS (
SELECT
'Ethereum' AS chain,
SUM(decoded_log:value) / 1e8 AS lbtc_amount
FROM ethereum.core.ez_decoded_event_logs
WHERE
contract_address = LOWER('0x8236a87084f8B84306f72007F36F2618A5634494')
AND decoded_log:from = '0x0000000000000000000000000000000000000000'
AND event_name = 'Transfer'
UNION ALL
SELECT
'Ethereum' AS chain,
-SUM(decoded_log:value) / 1e8 AS lbtc_amount
FROM ethereum.core.ez_decoded_event_logs
WHERE
contract_address = LOWER('0x8236a87084f8B84306f72007F36F2618A5634494')
AND decoded_log:to = '0x0000000000000000000000000000000000000000'
AND event_name = 'Transfer'
UNION ALL
SELECT
'Base' AS chain,
SUM(decoded_log:value) / 1e8 AS lbtc_amount
FROM base.core.ez_decoded_event_logs
WHERE
contract_address = LOWER('0xecAc9C5F704e954931349Da37F60E39f515c11c1')
AND decoded_log:from = '0x0000000000000000000000000000000000000000'
AND event_name = 'Transfer'
UNION ALL
SELECT
'Base' AS chain,
-SUM(decoded_log:value) / 1e8 AS lbtc_amount
FROM base.core.ez_decoded_event_logs
Last run: 2 months ago
1
34B
53s