TOTAL_SOL_DEPOSITED | TOTAL_SOL_DEPOSITED_USD | |
---|---|---|
1 | 345266.92986085 | 74053982.34 |
gigiokobalexical-salmon
Updated 2025-02-08
9
1
2
3
4
5
6
7
8
›
⌄
SELECT
SUM(deposit_amount) as total_sol_deposited,
SUM(deposit_amount_usd) as total_sol_deposited_usd
FROM solana.marinade.ez_liquid_staking_actions
WHERE
block_timestamp >= CURRENT_DATE - 30
AND action_type = 'deposit'
AND program_id = 'MarBmsSgKXdrN1egZf5sqe1TMai9K1rChYNDJgjq7aD';
Last run: about 1 month ago
1
31B
1s