flipside
FLIPSIDEAI
IDG PLAYBOOK
JOURNEYS
INSIGHTS
About
Log in
GET STARTED
flipside
Untitled Query
superfly
Untitled Query
Updated 2023-01-11
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
›
⌄
with
base
as
(
select
date
(
block_timestamp
)
as
date
,
case
when
action
=
'stake'
then
stake_amount
else
(
stake_amount
*
-
1
)
end
as
change
from
near
.
core
.
dim_staking_actions
)
select
date
,
sum
(
change
)
from
base
group
by
date
order
by
date
asc
Results
Run a query to Download Data