RPC APIを使用してウォレットアドレスのベイク権のリストを取得するにはどうすればよいですか?
1 回答
- 投票
GET ../<block_id>/helpers/baking_rights?(level=<block_level>)*&(cycle=<block_cycle>)*&(delegate=<pkh>)*&[max_priority=<int>]&[all]
ブロックのベイクを許可されているデリゲートのリストを取得します.デフォルトでは、 それは少なくとも1つを持っているパン屋のための最高のベーキング優先順位を与えます 次のブロックの64番目の優先順位を下回る機会.パラメーター
level
およびcycle
を使用して、の(有効な)レベルを指定できます. ベーキング権を返還しなければならない過去または未来. パラメータdelegate
を使用して、結果を指定されたものに制限できます 代表者.パラメータall
が設定されている場合、 最初のパン屋だけでなく、各レベルの各パン屋が返されます. ベーキングスロットのリストを返します.最小のタイムスタンプも返します これらのスロットに対応します.レベルのタイムスタンプは省略されています 過去に、次のレベルより後のレベルの推定値のみです すべての先行ブロックがベイク処理されたという仮説に基づくブロック 最優先で.オプションのクエリ引数:
レベル= サイクル= 委任= max_priority=all
出典: https://tezos.gitlabio/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コマンドはありますか?