RPC API를 사용하여 지갑 주소에 대한 베이킹 권한 목록을 얻으려면 어떻게해야합니까?
1 대답
- 투표
GET ../<block_id>/helpers/baking_rights?(level=<block_level>)*&(cycle=<block_cycle>)*&(delegate=<pkh>)*&[max_priority=<int>]&[all]
<인용구>
블록을 구울 수있는 대리인 목록을 검색합니다. 기본적으로,
적어도 하나 이상의 제빵사에게 최고의 베이킹 우선 순위를 제공합니다.
다음 블록에 대한 64 번째 우선 순위 아래의 기회. 매개 변수
level
과 cycle
은 (유효한) 레벨을 지정하는 데 사용할 수 있습니다.
베이킹 권한이 반환되어야하는 과거 또는 미래.
매개 변수 delegate
를 사용하여 결과를 주어진
대의원. 매개 변수 all
이 설정되면 모든 베이킹 기회가
첫 번째 베이커 대신 각 레벨의 각 베이커가 반환됩니다.
베이킹 슬롯 목록을 반환합니다. 또한 최소 타임 스탬프를 반환합니다.
이 슬롯에 해당합니다. 레벨의 타임 스탬프는 생략됩니다.
과거에,다음 단계 이후의 수준에 대한 추정치 일뿐입니다.
모든 선행 블록이 구워 졌다는 가설에 기반한 블록
최우선.
선택적 쿼리 인수 :
레벨= 주기= 대리인= max_priority=all
출처 : https ://tezos.gitlab.io/mainnet/api/rpc.html #get-block-id-helpers-baking-rights
GET ../<block_id>/helpers/baking_rights?(level=<block_level>)*&(cycle=<block_cycle>)*&(delegate=<pkh>)*&[max_priority=<int>]&[all]
Retrieves the list of delegates allowed to bake a block. By default, it gives the best baking priorities for bakers that have at least one opportunity below the 64th priority for the next block. Parameters
level
andcycle
can be used to specify the (valid) level(s) in the past or future at which the baking rights have to be returned. Parameterdelegate
can be used to restrict the results to the given delegates. If parameterall
is set, all the baking opportunities for each baker at each level are returned, instead of just the first one. Returns the list of baking slots. Also returns the minimal timestamps that correspond to these slots. The timestamps are omitted for levels in the past, and are only estimates for levels later that the next block, based on the hypothesis that all predecessor blocks were baked at the first priority.Optional query arguments:
level = cycle = delegate = max_priority = all
Source: https://tezos.gitlab.io/mainnet/api/rpc.html#get-block-id-helpers-baking-rights
tezos 노드를 사용하면 API에서 주어진주기에 대해 주어진 주소의 베이킹 권한을 검색 할 수있는 RPC 명령이 있습니까?