Network Performance Dashboard
Questions :
Create a dashboard displaying Solana network performance over time.
How has the network performed over the past month compared to the rest of the year? Has transaction per second and success rates of transactions gone up recently? Is this because of less botting or fewer users, or new improvements from the Solana engineers? What wallets and programs have paid the most in fees for failed transactions?
Metods :
We used solana.core.fact_transactions
table and solana.core.dim_labels
table for this bounty . BLOCK_TIMESTAMP
, TX_ID
and SUCCEEDED
are column we used from solana.core.fact_transactions
table to acquire succes rate for transactions . And to acquire wallets and programs have paid the most in fees for failed transactions we used both tables mentioned before, joined them toghether, ON SIGNERS[0] = ADDRESS
for wallets and ON INSTRUCTIONS[0]:programId::string = ADDRESS
for programs .
Loading...
Loading...
Loading...
As you can see, since May, the transaction per second starts to increase, but the daily users are less and the success rate is higher than May, so the success rate has a direct relationship with the number of transactions and an indirect relationship with the number of users.
Let see their relationships in charts.
Loading...
Loading...
Loading...
Loading...