Сборы в протоколе 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 параметров: фиксированной минимальной платы,платы за единицу хранения и платы за единицу газа (отражают стоимость выполнения расчетов). Эти 3 параметра не установлены на уровне протокола и могут быть установлены на уровне узла пекарями в зависимости от их предпочтений. Однако протокол ограничивает максимальный размер и количество газа в блоке.
Также в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
Взимает дополнительную плату за запись 0,257 тц (для источника)
Транзакции на KT1/активный неявный счет *
• storage_limit : 0 • gas_limit : 10100 • opbytes : ~162 • fee : 1272
Транзакции с неактивной неявной учетной записью
• storage_limit : 257 • gas_limit : 10100 • opbytes : ~162 • fee : 1272
Взимает дополнительную плату за запись 0,257 тц (для источника)
Очистка неявной учетной записи •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?