プロト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
-
さまざまな種類の料金と料金の仕組みについてはまだ理解していません.一部のWebサイトでは、オプションであると述べています.料金の種類、なぜ低・中・高なのか、ガスとは何かなどを詳しく説明した投稿があればいいのにと思います.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
この情報は、«ベイカー»セクションの公式ドキュメントから入手できます
https://tezos.gitlab.io/mainnet/protocols/003_PsddFKi3.html
基本式では、料金は3つのパラメーターに依存するように指定されています.固定最小料金、ストレージユニットごとの料金、ガスユニットごとの料金(計算の実行コストを反映).これらの3つのパラメーターはプロトコルレベルでは設定されませんが、ベイカーは好みに応じてノードレベルで設定できます.ただし、プロトコルはブロック内の最大サイズとガスを制限します.
eztz docでも、この情報を入手できます
https://github.com/TezTech/eztz/blob/master/PROTO_003_FEES.md
料金はmutezであり、少なくとも次の条件を満たしている必要があります. minfees>=100 +(gas * .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/アクティブ暗黙アカウントへのトランザクション*
• 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
料金がproto002からproto003に更新されました.
tezosproto 003の料金情報を示す参照ドキュメントはどこかにありますか?