リビール操作の適切な料金はいくらですか?
3 回答
- 投票
-
- 2019-03-16
述べられている質問はさまざまなことを混乱させます.
「公開」操作は、暗黙的なアカウントの公開鍵ハッシュに関連付けられた公開鍵をチェーンに書き込む操作です.ほとんどのパン屋はデフォルトの最低料金を実装していますが、この操作に関連する料金は送信者が決定できます(この場合、現在は1267µꜩです).
暗黙のアドレスにトークンを送信して新しいアカウントを作成することは、「公開」操作ではありません.この操作では公開鍵を知る必要がないためです.ただし、チェーン上に暗黙のアカウントの作成をトリガーします.保管費用は支払う必要があり、取引手数料の一部ではありません. 送信者が指定した上限が適用されますが、取引を行うアカウントから直接差し引かれます.発生するストレージコストのデフォルト値は、実際には0.257XTZです.
The question as stated confuses different things.
A "reveal" operation is an operation that writes on the chain the public key associated with a public key hash for an implicit account. The fee associated with this operation is up for the sender to decide, though most bakers implement default minimum fees (in this case it is currently 1267µꜩ).
The creation of a new account by sending tokens to an implicit address is not a "reveal" operation as the public key needs not be known in this operation. However, it does trigger the creation of an implicit account on the chain. Storage cost has to be paid, and it is not a part of the transaction fee. It is deducted directly from the account making the transaction, though it is subject to a cap specified by the sender. The default value for the storage cost incurred is indeed 0.257 XTZ.
-
あなたがた両方に感謝します.私の意図は、実際、トークンを送信するときに新しいアカウントの作成のコストをカバーするための料金を指定することです.Thank you both. My intention is, indeed, specify a fee to cover the costs of a creation of a new account when sending tokens to it.
- 1
- 2019-03-16
- Luiz Milfont
-
- 2019-03-16
グローバル状態に新しいアカウントを追加するための料金(
-burn-cap
とtezos-client
)は0.257XTZです.オリジネーションバーンは
Tez_repr.(cost_per_byte *?(Int64.of_int origination_size))
として計算されます.cost_per_byte
は0.001XTZです.1000ミューテスと1,000,000ミューテス==1テズ
です.origination_size
は257です.そのため、完全に新しいアカウントを作成するための結果として生じるコストは、257,000ミューテスまたは0.257テズです.
これは、
proto_alpha/lib_protocol/fee_storage.ml
、proto_alpha/lib_protocol/constants_repr.ml
、およびproto_alpha/lib_protocol/qty_repr.ml で定義されています.コード>
The fee for adding a new account to the global state (
--burn-cap
withtezos-client
) is 0.257 XTZ.The origination burn is calculated as
Tez_repr.(cost_per_byte *? (Int64.of_int origination_size))
.cost_per_byte
is 0.001 XTZ. It is 1000 mutez and1,000,000 mutez == 1 tez
.origination_size
is 257.Due to that the resulting cost for an origination of a completely new account is 257,000 mutez or 0.257 tez.
This is defined in
proto_alpha/lib_protocol/fee_storage.ml
,proto_alpha/lib_protocol/constants_repr.ml
, andproto_alpha/lib_protocol/qty_repr.ml
-
それは正しくありません、オリジネーションバーンは取引手数料の一部ではありません.That's incorrect, the origination burn is not part of the transaction fee.
- 1
- 2019-03-16
- Arthur B
-
はい.それで合っています.私は上記の回答を編集して、州に新しいアカウントを追加するために私が説明する料金があることを明確にしました.Yes, you are correct. I have edited the above answer to clarify that the fee that I describe there is for adding a new account to the state.
- 0
- 2019-03-16
- adrian
-
用語を分けておくことをお勧めします.「料金」とは、パン屋に支払うことを意味します.「やけど」は破壊されたことを意味します.I suggest keeping the terminology separate: "Fee" means paid to the baker. "Burn" means destroyed.
- 2
- 2019-03-16
- Tom
-
- 2019-06-04
アテネ(proto004)では、更新された料金はこちらから入手できます
https://github.com/keefertaylor/TezosKit/blob/master/docs/AthensProtocolFees.md
In athens (proto004) the updated fees are available here
https://github.com/keefertaylor/TezosKit/blob/master/docs/AthensProtocolFees.md
公開されていないTezosアカウントに資金を送金する場合は、「公開手数料」を支払う必要があります.