lanoKLAY in Capybara
Updated 2024-11-06
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
›
⌄
with delta as(
SELECT raw_amount/1e18 as klay
FROM kaia.core.fact_token_transfers
WHERE contract_address = '0x19aac5f612f524b754ca7e7c41cbfa2e981a4432'
and to_address IN (
'0x8a5562d2a17488647381c1a0e9cf527a01b6f3bd',
'0xa856b5da8e85b23395c17783954edda010317fce',
'0xab4fc22974eacc7f3a18fa89fef5a5f9030275d7',
'0x2948f932a2a841b91cf74114f5e58b454201e914',
'0x3ce1aa52eeaf57a355939c09ac76f03f01988f13',
'0x92e9850c72c351d6f1fbd18d8913546648316f77'
)
union all
SELECT -raw_amount/1e18 as klay
FROM kaia.core.fact_token_transfers
WHERE contract_address = '0x19aac5f612f524b754ca7e7c41cbfa2e981a4432'
and from_address IN (
'0x8a5562d2a17488647381c1a0e9cf527a01b6f3bd',
'0xa856b5da8e85b23395c17783954edda010317fce',
'0xab4fc22974eacc7f3a18fa89fef5a5f9030275d7',
'0x2948f932a2a841b91cf74114f5e58b454201e914',
'0x3ce1aa52eeaf57a355939c09ac76f03f01988f13',
'0x92e9850c72c351d6f1fbd18d8913546648316f77'
)
)
select sum(klay) as "KLAY in Capybara"
from delta
QueryRunArchived: QueryRun has been archived