공개 작업에 대한 적절한 수수료는 얼마입니까?
3 대답
- 투표
-
- 2019-03-16
설명 된 질문은 여러 가지를 혼동합니다.
"공개"작업은 암시 적 계정에 대한 공개 키 해시와 연결된 공개 키를 체인에 쓰는 작업입니다.이 작업과 관련된 수수료는 발송인이 결정할 수 있지만 대부분의 제빵사는 기본 최소 수수료를 적용합니다 (이 경우 현재 1267µꜩ).
암시 적 주소로 토큰을 전송하여 새 계정을 만드는 것은이 작업에서 공개 키를 알 필요가 없기 때문에 "공개"작업이 아닙니다.그러나 체인에서 암시 적 계정 생성을 트리거합니다.저장 비용은 지불해야하며 거래 수수료의 일부가 아닙니다 .송금인이 지정한 한도가 적용되지만 거래하는 계정에서 직접 차감됩니다.발생한 스토리지 비용의 기본값은 실제로 0.257 XTZ입니다.
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.257 XTZ입니다.원래 번은
Tez_repr.(cost_per_byte *? (Int64.of_int origination_size))
로 계산됩니다.cost_per_byte
은 0.001XTZ입니다.1000mutez이고1,000,000 mutez == 1 tez
입니다.origination_size
는 257입니다.따라서 완전히 새로운 계정을 만드는 데 드는 비용은 257,000mutez 또는 0.257tez입니다.
이것은
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
Athens (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 계정으로 자금을 이체 할 때 "공개 수수료"를 지불해야합니다.