proto 003의 수수료?
-
-
https://tezos.stackexchange.com/q/436/118에서 살펴볼 수도 있습니다.You can also have a look at https://tezos.stackexchange.com/q/436/118
- 0
- 2019-02-14
- Ezy
-
여전히 다양한 유형의 수수료와 수수료 작동 방식을 파악하지 못했습니다.일부 웹 사이트는 선택 사항이라고 말합니다.요금의 종류,왜 저/중/고,가스가 무엇인지 자세히 설명하는 게시물이 있으면 좋을 것입니다.Still haven't got around the different types of fees and how fees work. Some websites say they are optional. It would be nice to have a post explaining in detail the types of fee, why low/mid/high, what is gas, etc.
- 0
- 2019-02-16
- luchonacho
-
답변 시작 부분에 수수료 유형을 설명합니다.불분명 한 내용을 알려 주시면 업데이트하겠습니다.감사I explain the types of fees in the beginning of my answer. Can you please tell me what is unclear and i will update ? Thanks
- 0
- 2019-02-16
- Ezy
-
2 대답
- 투표
-
- 2019-01-31
이 정보는«Baker»섹션의 공식 문서에서 확인할 수 있습니다.
https://tezos.gitlab.io/mainnet/protocols/003_PsddFKi3.html
기본 공식은 이제 수수료가 고정 최소 수수료,저장 단위 별 수수료 및 가스 단위 별 수수료 (계산 수행 비용 반영)의 세 가지 매개 변수에 따라 달라진다고 지정합니다. 프로토콜 수준에서 설정되지 않은 3 개의 매개 변수는 선호도에 따라 Bakers가 노드 수준에서 설정할 수 있습니다. 그러나 프로토콜은 블록의 최대 크기와 가스를 제한합니다.
또한eztz doc에서도이 정보를 얻을 수 있습니다.
https://github.com/TezTech/eztz/blob/master/PROTO_003_FEES.md
수수료는 음소거 상태이며 최소한 다음과 같아야합니다. minfees>=100 + (가스 * .1) + (opbytes * 1) 공개
• storage_limit : 0 • gas_limit : 10000 • opbytes : ~169 • fee : 1269
대표
• storage_limit : 0 • gas_limit : 10000 • opbytes : ~157 • fee : 1257
원작
• storage_limit : 257 • gas_limit : 10000 • opbytes : ~185 • fee : ~1285
추가로 .257tz의 원산지 소각 요금이 발생합니다 (소스에 대해)
KT1/active 암시 적 계정으로의 거래 *
• storage_limit : 0 • gas_limit : 10100 • opbytes : ~162 • fee : 1272
비활성 암시 적 계정으로의 거래
• storage_limit : 257 • gas_limit : 10100 • opbytes : ~162 • fee : 1272
추가로 .257tz의 원산지 소각 요금이 발생합니다 (소스에 대해)
암시 적 계정 비우기 •gas_limit : 160 추가 • 수수료 : 16 추가
또한 다음 사항에 유의하십시오.
• opbytes is a rough estimate for basic operations. You need to use the actual size of the serialized operation bytes, which includes the 32 byte header and the 64 byte signature. • An inactive implicity account is a tz account with nil (0) balance which isn't registered as a delegate/baker
The information is available from the official documentation in the « Baker » section
https://tezos.gitlab.io/mainnet/protocols/003_PsddFKi3.html
The basic formula specifies that fees are now dependent on 3 parameters: a fixed minimum fee, a fee by storage unit and a fee by gas unit (reflection the cost of performing calculations). Those 3 parameters are not set at protocol level can be set at the node level by Bakers depending on their preference. The protocol constraints the maximum size and gas in a block however.
Also in eztz doc we can also get this info
https://github.com/TezTech/eztz/blob/master/PROTO_003_FEES.md
Fees are in mutez, and should be at least: minfees >= 100 + (gas * .1) + (opbytes * 1) Reveals
• storage_limit : 0 • gas_limit : 10000 • opbytes : ~169 • fee : 1269
Delegations
• storage_limit : 0 • gas_limit : 10000 • opbytes : ~157 • fee : 1257
Originations
• storage_limit : 257 • gas_limit : 10000 • opbytes : ~185 • fee : ~1285
Incurs an additional .257tz origination burn fee (for the source)
Transactions to KT1/active implicit account*
• storage_limit : 0 • gas_limit : 10100 • opbytes : ~162 • fee : 1272
Transactions to inactive implicit account
• storage_limit : 257 • gas_limit : 10100 • opbytes : ~162 • fee : 1272
Incurs an additional .257tz origination burn fee (for the source)
Emptying an implicit account • gas_limit: add 160 • fee: add 16
Also note the following
• opbytes is a rough estimate for basic operations. You need to use the actual size of the serialized operation bytes, which includes the 32 byte header and the 64 byte signature. • An inactive implicity account is a tz account with nil (0) balance which isn't registered as a delegate/baker
-
- 2019-06-04
proto004 (athens)에 대한 수수료가 업데이트되었습니다. 앞으로 여기에서 확인해주세요.
https://github.com/keefertaylor/TezosKit/blob/master/docs/AthensProtocolFees.md
The fees have been updated for proto004 (athens) please have a look here going forward
https://github.com/keefertaylor/TezosKit/blob/master/docs/AthensProtocolFees.md
요금이proto 002에서proto 003으로 업데이트되었습니다.
어딘가에tezosproto 003의 수수료 정보를 나타내는 참조 문서가 있습니까?