ベーキング/承認の権利
1 回答
- 投票
-
- 2019-10-27
ベーキングと承認の権利は、PRNGとオンチェーンデータから派生したランダムシード(ベイカーによってコミットされ、後で明らかにされる)を使用して、デリゲートの賭け金に比例してランダムに割り当てられます.詳細については、ドキュメントを参照してください.
ベーキング/承認権の分布を確認するには、次のRPCを使用します.
Baking and endorsing rights are allocated at random, proportionally to the delegate's stake, using a PRNG and a random seed derived from on-chain data (nonces committed by bakers and revealed later). For more details, see the doc.
To see the distribution of baking/endorsing rights, use these RPCs:
-
ブロックエクスプローラーは、サイクルごとのパン屋の優先度0のベーキング権をリストすることにより、前述のランダム性を示すことができますか?Could a block explorer show the aforementioned randomness by listing the priority 0 baking rights of bakers per cycle?
- 0
- 2019-10-27
- Adi_daz
-
それで、あなたはベーキング権を割り当てるために使用されるランダムシードを見たいですか? または、優先度0のパン屋が誰であるかを確認するだけですか?So you would like to see the random seed used to allocate the baking rights? Or just to see who are the bakers at priority 0?
- 0
- 2019-10-27
- Eugen
-
両方...どのパン屋がたまたまベーキングブロックであるかはわかりますが、この情報を事前にスクレイピングして提示することはできますか?Both...we see which bakers are baking blocks as it happens, but can this info be scraped and presented in advance?
- 0
- 2019-10-27
- Adi_daz
-
現在のサイクルのシードを取得するには: `tezos-client rpcpost/chain/main/blocks/head/context/seed`(何に使用するかわかりませんが...) サイクル `x`の優先度0でパン屋を取得するには:`tezos-client rpcget/chains/main/blocks/head/helpers/baking_rights?cycle=x&max_priority=1`To get the seed for the current cycle: `tezos-client rpc post /chains/main/blocks/head/context/seed` (though I don't see what would you use it for...) To get the the bakers at priority 0 for cycle `x`: `tezos-client rpc get /chains/main/blocks/head/helpers/baking_rights?cycle=x&max_priority=1`
- 0
- 2019-10-27
- Eugen
パン職人に焼く権利と承認権はどのように割り当てられますか?公式はありますか?各サイクルのすべてのパン職人の製パン/承認権の分布を確認できますか?(特に優先度0の場合)