存在するXTZの総量
2 回答
- 投票
-
- 2019-02-08
現在のプロトコルは、ネットワーク上のすべてのtezの集計を追跡していません.良い考えです.比例報酬を計算できるので、そうすることができます.マネープリンティングのバグに対するカナリアとして機能し、ガバナンスモデルを改良するために使用できます.
プロトコルはそれを追跡しないため、その情報を提供するノードRPCはありません.ただし、tzscanなどの一部のインデクサーはその情報を追跡し、RPCを公開します
The current protocol does not keep track of a tally of all tez on the network. It would be a good idea to do so, as it permits computing proportional reward, it can serve as a canari against money printing bugs, and it can be used to refine the governance model.
Since the protocol doesn't keep track of it, there's no node RPC that will give you that information. However, some indexers, like tzscan, do keep track of that info, and they do expose RPCs
-
現在のプロトコルが追跡されない理由について知りたい.これは設計上の決定でしたか?Curious as to why the current protocol doesn't keep track. Was this a design decision?
- 1
- 2019-02-08
- nurikabe
-
追跡する必要がないからです.それは特定のことを可能にするので、持っているのはいいですが、必須ではありません.Because there's not a strong need to keep track. It enables certain things, so it's nice to have, but not necessary.
- 0
- 2019-02-12
- Arthur B
-
- 2019-02-08
TzScanにはそのためのサービスがありますが、現在の値に対してのみです:
https://api1.tzscan.io/v1/supply
返品
{ "dls":"76431859801260", "foundation":"76431859801260", "early_bakers":"3156502294100", "contributors":"608297709519372", "unfrozen_rewards":"19546676770764", "missing_revelation":0, "revelation_rewards":968500000, "burned_tez_revelation":0, "burned_tez_origination":"3546923000", "burned_tez_double_baking":"153472908345", "total_supply_ico":"764317931415992", "circulating_supply":"783708546041411" }
探しているのはおそらく
circulating_supply
です.TzScan has a service for that, but only for the current value:
https://api1.tzscan.io/v1/supply
returns
{ "dls":"76431859801260", "foundation":"76431859801260", "early_bakers":"3156502294100", "contributors":"608297709519372", "unfrozen_rewards":"19546676770764", "missing_revelation":0, "revelation_rewards":968500000, "burned_tez_revelation":0, "burned_tez_origination":"3546923000", "burned_tez_double_baking":"153472908345", "total_supply_ico":"764317931415992", "circulating_supply":"783708546041411" }
What you are looking for is probably
circulating_supply
.
特定のブロック(またはサイクルの開始/終了)に存在するテゾの合計量を取得するためのRPCはありますか?