빈 계정에 대한 소각 수수료
-
-
"화상 료"같은 것은 없습니다.수수료와 화상은 완전히 별개의 것입니다.제빵사에게 수수료를 지불하고 화상을 입었습니다.굽기는 storage_limit에서 설명됩니다.어떤 구체적인 질문을하고 싶은지 잘 모르겠습니다.There is no such thing as a "burn fee". Fees and burns are different, completely separate, things. A fee is paid to the baker, a burn is destroyed. The burn is accounted for in the storage_limit. I'm not sure what specific question you really want to ask.
- 0
- 2019-03-30
- Tom
-
새 계정을 활성화하는 데 필요한 다른 답변 https://tezos.stackexchange.com/questions/106/fees-in-proto-003에서 "소각 수수료"에 대해 읽었습니다.뭐라고 부르든 "활성화 수수료"를 의미합니다I read about that "burn fee" in another answer https://tezos.stackexchange.com/questions/106/fees-in-proto-003 needed to activate new account. Whatever you wanna call it I mean "activation fee"
- 0
- 2019-03-30
- Rocco Musolino
-
1 대답
- 투표
-
- 2019-03-31
수수료와 화상은 완전히 별개의 것입니다.제빵사에게 수수료를 지불하고 화상을 입 힙니다.
새 암시 적 계정을 할당하기위한 0.257 번은 실제로 번이며 노드 상태에서 계정을 무기한 유지하는 데 드는 저장 비용을 나타냅니다.
작업에 저장소 굽기가 필요한 경우,얼마나 많은 양 (논리적 바이트로 측정)을 굽고 싶은지 표시해야합니다 (상수 cost_per_byte=1000mutez=0.001tez에 따름)..
<사전> <코드> { 종류 : '거래', 수수료 :min_fee, storage_limit : 257, ... }storage_limit : 257
은 "이 작업을 위해 257 * cost_per_byte=0.257tez까지 소각 할 의향이 있습니다"라고 말합니다.Fees and burns are different, completely separate, things. A fee is paid to the baker, a burn is destroyed.
The 0.257 burn for allocating a new implicit account is, indeed, a burn, representing the storage cost of maintaining an account in the node state indefinitely.
When an operation requires a storage burn, you must indicate in the
storage_limit
how much (measured in logical bytes) you are willing to burn (according to the constant cost_per_byte = 1000 mutez = 0.001 tez).{ kind: 'transaction', fee: min_fee, storage_limit: 257, ... }
The
storage_limit: 257
says "I'm willing to burn up to 257*cost_per_byte = 0.257 tez for this operation".-
불명확 한 것은 '.257의 소각 수수료는 계정 잔액으로 유지되어야한다는 것입니다.답변 감사합니다.what wasn't clear is that that '.257 burn fee should be kept as account balance. Thanks for reply.
- 0
- 2019-04-02
- Rocco Musolino
-
작업에 언제 저장소 굽기가 필요합니까?When does an operation require a storage burn?
- 0
- 2020-02-07
- arvidj
-
체인에 아직 공개되지 않은 계정으로 xtz를 보낼 때 @arvidj.@arvidj when you're sending xtz to an account that has not been revealed on the chain yet.
- 0
- 2020-03-28
- Rocco Musolino
-
@RoccoMusolino는 계정을 처음으로 _from_ 보낼 때 또 다른 작업을 공개하지 않습니다. 수수료 (소각 아님)가 필요합니까?@RoccoMusolino isn't the revealing another operation, when sending _from_ an account for the first time, which costs a fee (not burn)?
- 0
- 2020-05-08
- CherryDT
새 계정에 대한 소 각료
.257
을transaction
작업에 넣어야합니까?발신자는 먼저 (RPC를 통해)
destination
주소가 새로운 주소인지 확인하고 그에 따라 수수료를 조정해야합니까?약간 까다 롭습니다.minimum_fee=1257 + burn_fee=257000
과 같은 수수료를받습니다. 목적지 주소가 스마트 계약이면 어떻게됩니까?내minimum_fee
를 조정해야합니까?