OLD_HC | NEW_HC | PERCENTAGE_INCREASE | |
---|---|---|---|
1 | 6171 | 18046 | 192 |
defi__josh% change with holders count
Updated 6 days ago
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
-- forked from Current number of $TITCOIN holders @ https://flipsidecrypto.xyz/studio/queries/6953fc75-d3f3-4059-a990-bef6c6fbfe00
-- forked from Current number of $TITCOIN holders @ https://flipsidecrypto.xyz/studio/queries/6a9c785c-2942-419a-b1e0-6d984ecf4902
WITH hc AS (
SELECT
6171 as old_hc,
18046 as new_hc
)
SELECT
old_hc,
new_hc,
round((new_hc - old_hc) / old_hc * 100) as percentage_increase
FROM hc;
Last run: 6 days ago
1
18B
1s