Bitcoin network transaction fee

Transaction commission

Enjoyed the article? Share:

Cryptocurrency Transaction Fees (Transaction Commission) can be included in any transaction in the Bitcoin network [1] .

Contents

Description [ edit ]

Currently a large amount of transactions is processed in a way that commission isn’t necessary. At the same time in case if transaction has a lot of entry points (e.g. it carries large amounts of data) a small commission is not uncommon.

Any miner can be the one who processes the transaction and earns the commission fee. When the network finds a new block it includes all information about transactions including their commission. Thus any user of group of users who find that block will gain both the reward for the block and the commission fees for every transaction included in it.

Including commission in a transaction is a voluntary decision but a user who finds a block can attach any transactions he wants to the said block. That way transactions with 0 commission have the lowest priority when transactions with even the minimal possible commission (

0.0001 BTC at the current moment) have standard priority and will more probably be included in the block [2] .

In the future along with lowering of reward for each block the main source of miners’ income will become commission for transactions. Even when block reward will disappear altogether there will still be point in mining because users will gain commission for all the transactions when they find a block.

Traditionally, the sender pays the full Bitcoin network fee; deducting the fee from the amount received by the recipient will often be considered an incomplete payment, although some wallets have a «sender-pays-fee» feature where the miner fee is deduced from send amount.

Transaction fees are voluntary on the part of the person making the bitcoin transaction, as the person attempting to make a transaction can include any fee or none at all in the transaction. On the other hand, nobody mining new bitcoins necessarily needs to accept the transactions and include them in the new block being created. The transaction fee is therefore an incentive on the part of the bitcoin transactor to make sure that a particular transaction will get included into a block [3] .

Because of deep technical reasons, bitcoin block space is a scarce commodity, getting a transaction mined can be seen as purchasing a portion of it. The price of block space is set by supply and demand, although in the real world the supply of space for transactions is extremely noisy, because more becomes available (and has to be immediately consumed or it’s lost forever) every time a block is mined, and block mined is an intentionally random process, that randomness being essential for bitcoin’s operation. Demand is random and cyclical. Random because each transaction is generated individually so the total amount is noisy (although that averages out to be somewhat smooth at scale) and has both daily and weekly cycles, with more transactions done during the day than at night. Demand can also be affected by speculative movements in the exchange rate. Bram Cohen blog post with helpful background to the market for block space;

Читайте также:  Перспективная криптовалюта 2021 мнение экспертов

Therefore the market for block space asks users to make a tradeoff between confirmation time and cost. Users with high time requirements may pay a higher than average miner fee to be confirmed quickly, while more patent users under less time pressure can save money by being prepared to wait longer.

Reference Implementation [ edit ]

The following sections describe the behavior of the reference implementation as of version 0.12.0. Earlier versions treated fees differently, as do other popular implementations (including possible later versions).

Sending transactions [ edit ]

Transaction with 0 commission can be successfully sent if following conditions are met:

  1. Its size is lower than 1000 bytes [4]
  2. Its exit points have value of 0.01 BTC or higher
  3. Its priority is high enough

In other cases the transaction will be rounded down to 1000 bytes and the commission of 0.0001 BTC will be added. For every following 1000 bytes in that transaction another 0.0001 BTC of commission will be added.

Thus for a transaction of 750 bytes the commission will be 0.0001 BTC and for a transaction of 1001 bytes it will be 0.0002 BTC. Standard Bitcoin wallets always ask their users for approval of commission and if user declines it the transaction can be cancelled. At the current moment an average transaction amounts to roughly 500 bytes which corresponds to a commission of 0.0001 BTC.

Users can decide to pay a predefined fee rate by setting `-paytxfee= ;`(or `settxfee ` rpc during runtime). A value of `n=0` signals Bitcoin Core to use floating fees. By default, Bitcoin Core will use floating fees.

Based on past transaction data, floating fees approximate the fees required to get into the `m`th block from now. This is configurable with `-txconfirmtarget= ` (default: `2`).

Sometimes, it is not possible to give good estimates, or an estimate at all. Therefore, a fallback value can be set with `-fallbackfee= ;` (default: `0.0002` BTC/kB).

At all times, Bitcoin Core will cap fees at `-maxtxfee= ;` (default: 0.10) BTC.

Furthermore, Bitcoin Core will never create transactions smaller than the current minimum relay fee.

Finally, a user can set the minimum fee rate for all transactions, which defaults to 1000 satoshis per kB.

Note that a typical transaction is 500 bytes.

Inclusion in blocks [ edit ]

In this part of the article the current principle of inclusion of transactions into blocks will be discussed. This setting is flexible for every miner if they want to have blocks of lower or higher size that include lower or higher amount of transactions accordingly.

30 000 bytes are reserved for highest priority transactions and they don’t depend on commission in any way. After that all transactions with lower than highest priority are added to the block. The higher the commission the higher the priority. A block’s maximum size is 300 000 bytes. Transactions that weren’t included in their blocks will remain in miners’ memory storage and can be included in next blocks.

Then transactions that pay a fee of at least 0.00001 BTC/kb are added to the block, highest-fee-per-kilobyte transactions first, until the block is not more than 750,000 bytes big.

The remaining transactions remain in the miner’s «memory pool», and may be included in later blocks if their priority or fee is large enough.

Читайте также:  Когда нужны инвестиции что писать

For Bitcoin Core 0.12.0 zero bytes relay-and-mining-priority-transactions in the block are set aside for the highest priority transactions. Transactions are added highest-priority-first to this section of the block.

Transaction relaying [ edit ]

The reference implementation’s rules for relaying transactions across the peer-to-peer network are very similar to the rules for sending transactions, as a value of 0.00001 BTC is used to determine whether or not a transaction is considered «Free». However, the rule that all outputs must be 0.01 BTC or larger does not apply. To prevent «penny-flooding» denial-of-service attacks on the network, the reference implementation caps the number of free transactions it will relay to other nodes to (by default) 15 thousand bytes per minute.

Transaction settings [ edit ]

Settings Default value (unit)
paytxfee 0.0000 (BTC)
limitfreerelay 15 (thousand bytes per minute)
mintxfee 0.0001 (BTC)
blockmaxsize 300000 (bytes)
blockminsize 0 (bytes)
blockprioritysize 30000 (bytes)

Technical details [ edit ]

Transaction priority is calculated as following:

In order to avoid limitation the transaction’s priority has to be no less than 57,600,000. Limit is written in code as COIN * 144 / 250 which implies that transaction has a «coin» with the age of one day (144 is estimated number of blocks mined per day) and the size of transaction is 250 bytes.

Let’s provide an example of a transaction that has 2 entry points one of which is 5 BTC with 10 approvals and the other one is 2 BTC with 2 approvals. Transaction’s size is 500 bytes and thus its priority is equal to

(500000000 * 10 + 200000000 * 3) / 500 = 11,200,000

Fee Plotting Sites [ edit ]

As of May 2016, the following sites seem to plot the required fee, in satoshi per (kilo)byte, required to get a transaction mined in a certain number of blocks. Note that all these algorithms work in terms of probabilities.

Источник

Расчет комиссий биткоин

$ 1.61 при 17 сатоши/байт за минимальную по размеру транзакцию в 225 байт

$ 1.81 средняя комиссия, которую сейчас платят отправители за свои транзакции

в день в неделю в месяц
BTC
Текущая сложность: 21047730572452
Следующая сложность: 20331514703709 ( NAN% )
Блоков до пересчета: 317
Цена шары (PPS): 0.0000000000
Мощность сети (Th/s): 145538651.22
Блоков в сети: 687139
Блоков в час: 5.8
Блоков за последний час: 6
До 3.125 BTC /блок: 1098.14 дней
( 152861 блоков )

По стратегическому партнерству и техническим вопросам

По информационному партнерству, вопросам размещения материалов

По вопросам размещения рекламных материалов

Разрешается частичное копирование материалов сайта при условии наличия активной ссылки на источник.

Любые предложения и пожелания вы можете присылать на адрес admin@bits.media.

Адрес для добровольных пожертвований на развитие — 1BQ9qza7fn9snSCyJQB3ZcN46biBtkt4ee (QR)

Источник

Explaining bitcoin transaction fees

Every bitcoin transaction must be added to the blockchain, the official public ledger of all bitcoin transactions, in order to be considered successfully completed or valid. The work of validating transactions and adding them to the blockchain is done by miners, powerful computers that make up and connect to the network. Miners spend vast amounts of computing power and energy doing this for a financial reward: with every block (a collection of transactions not exceeding 1 MB in size) added to the blockchain comes a bounty called a block reward (currently 6.25 BTC), as well as all fees sent with the transactions that were included in the block.

For this reason, miners have a financial incentive to prioritize the validation of transactions that include a higher fee. For someone looking to send funds and get a quick confirmation, the appropriate fee to include can vary greatly, depending on a number of factors. While the fee does not depend on the amount you’re sending, it does depend on network conditions at the time and the data size of your transaction.

Because a block on the bitcoin blockchain can only contain up to 1 MB of information, there is a limited number of transactions that can be included in any given block. During times of congestion, when a large number of users are sending funds, there can be more transactions awaiting confirmation than there is space in a block.

When a user decides to send funds and the transaction is broadcast, it initially goes into what is called the memory pool (mempool for short) before being included into a block. It is from this mempool that miners choose which transactions to include, prioritizing the ones with higher fees. If the mempool is full, the fee market may turn into a competition: users will compete to get their transactions into the next block by including higher and higher fees. Eventually, the market will reach a maximum equilibrium fee that users are willing to pay and the miners will work through the entire mempool in order. At this point, once traffic has decreased, the equilibrium fee will go back down.

Again due to the fact that a block on the bitcoin blockchain can contain no more than 1 MB of information, transaction size is an important consideration for miners. Smaller transactions are easier to validate; larger transactions take more work, and take up more space in the block. For this reason, miners prefer to include smaller transactions. A larger transaction will require a larger fee to be included in the next block.

There is no simple way to calculate a transaction size by hand. Your Blockchain.com Wallet will automatically do this for you, and suggest an appropriate fee.

Fees in the Blockchain.com Wallet

Blockchain.com Wallet users will always have options when it comes to bitcoin transaction fees. Our wallet uses dynamic fees , meaning that the wallet will calculate the appropriate fee for your transaction taking into account current network conditions and transaction size.

You can choose between a Priority fee and a Regular fee. The Priority fee is calculated to get your transaction included in a block within the hour. The Regular fee is lower, and is for users who can afford to be a bit more patient; a confirmation for a transaction that includes a Regular fee will typically take a bit more than an hour.

Advanced users can set custom fees for their transaction in units of satoshi per byte (sat/b) by pressing Customize Fee and entering an amount. Please note that setting too low a fee may cause your transaction to remain unconfirmed for a long time and possibly be rejected. Customize your transaction fee at your own risk.

If you want to take a deeper dive into bitcoin transaction fees, this blog post provides a comprehensive overview of what fees are and how they work, and this one elaborates on some frequently asked questions. If you have an unconfirmed transaction, you can learn more about what this means here .

Источник

Читайте также:  Платы для майнинга своими руками
Оцените статью