原始003的费用?
-
-
您也可以看看https://tezos.stackexchange.com/q/436/118You 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
该信息可从"贝克"部分的官方文档中获得
https://tezos.gitlab.io/mainnet/protocols/003_PsddFKi3.html
基本公式指定费用现在取决于3个参数:固定的最低费用,按存储单位的费用和按汽油单位的费用(反映执行计算的费用). Bakers可以根据喜好在协议级别设置这三个未在协议级别设置的参数.该协议限制了块中的最大大小和气体.
还可以在eztz文档中获得此信息
https://github.com/TezTech/eztz/blob/master/PROTO_003_FEES.md
费用处于互斥状态,至少应为: 分钟收费>=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(雅典),请点击此处.
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
费用已从原始002更新为原始003.
某处是否有参考文件指示tezosproto 003的费用信息?