TOTAL_UNIQUE_WASM_UPLOADS | TOTAL_UNIQUE_CONTRACT_INVOCATIONS | |
---|---|---|
1 | 1147 | 3828131 |
permaryyawning-aquamarine
Updated 7 days ago
9
1
2
3
4
5
6
7
›
⌄
select
count( case when soroban_operation_type = 'upload_wasm' then contract_code_hash end) as total_unique_wasm_uploads,
count( case when soroban_operation_type = 'invoke_contract' then contract_id end) as total_unique_contract_invocations
from stellar.core.fact_operations
where soroban_operation_type in ('upload_wasm', 'invoke_contract')
and closed_at >= dateadd('month', -12, current_timestamp);
Last run: 7 days ago
1
16B
2s