boomer77lunax total
Updated 2021-12-19
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
with deposit as (
select
date_trunc('day' ,BLOCK_TIMESTAMP) as dt,
MSG_VALUE:coins[0]:amount::string /1e6 as amount,
MSG_VALUE:coins[0]:denom::string as denom,
MSG_VALUE:contract::string as contract,
MSG_VALUE:sender::string as sender
from terra.msgs where contract = 'terra1xacqx447msqp46qmv8k2sq6v5jh9fdj37az898'
)
select sum(amount) as total_lunaX, count(distinct sender) as total_address
from deposit
Run a query to Download Data