Shred Delivery and Sender are now live! Get earliest access to raw Solana data and optimized transaction sending. Learn about Shred Delivery | Learn about Sender
Shred Delivery and Sender are now live! Get earliest access to raw Solana data and optimized transaction sending. Learn about Shred Delivery | Learn about Sender
返回最近性能样本的列表,按槽位顺序倒序排列。性能样本每60秒采集一次,包括在给定时间窗口内发生的交易和槽位数量。
curl --request POST \
--url https://mainnet.helius-rpc.com/ \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"id": "1",
"method": "getRecentPerformanceSamples",
"params": [
4
]
}'
{
"jsonrpc": "2.0",
"id": "1",
"result": [
{
"slot": 348125,
"numTransactions": 126,
"numNonVoteTransactions": 1,
"samplePeriodSecs": 60,
"numSlots": 126
}
]
}
成功检索到性能样本。
The response is of type object
.
curl --request POST \
--url https://mainnet.helius-rpc.com/ \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"id": "1",
"method": "getRecentPerformanceSamples",
"params": [
4
]
}'
{
"jsonrpc": "2.0",
"id": "1",
"result": [
{
"slot": 348125,
"numTransactions": 126,
"numNonVoteTransactions": 1,
"samplePeriodSecs": 60,
"numSlots": 126
}
]
}