getBlocksWithLimit
getBlocksWithLimit
方法仅在solana-core v1.7或更高版本中有效, 在之前的版本中请使用getConfirmedBlocksWithLimit
方法
getBlocksWithLimit
方法返回从指定槽位开始的确认区块。
请求参数
<u64>
- 起始槽位, u64整数<u64>
- 上限, u64整数- (可选) Commitment; 不支持"processed"。如果未指定该参数则默认值为 "finalized".
示例代码
getBlocksWithLimit
方法返回结果的result字段为u64整数数组,表示从起始槽位开始
的各区块槽位。
请求:
curl http://localhost:8899 -X POST -H "Content-Type: application/json" -d '
{"jsonrpc": "2.0","id":1,"method":"getBlocksWithLimit","params":[5, 3]}
响应:
{"jsonrpc":"2.0","result":[5,6,7],"id":1}