amdonatusprinceNEAR Stakings
Updated 2022-12-09
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
-- * Total Supply of NEAR token
-- * Circulating Supply of NEAR token
-- * # of NEAR staked
-- * % of NEAR staked
SELECT SUM(stake_amount)/pow(10, 24) FROM near.core.dim_staking_actions WHERE action = 'Stake'
UNION ALL
SELECT SUM(stake_amount)/pow(10, 24) FROM near.core.dim_staking_actions WHERE action = 'Unstake'
UNION ALL
--near.core.fact_transfers
Run a query to Download Data