It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
==Abstract==
Replace the static 1M block size hard limit with a hard limit set by coinbase vote, conducted on the same schedule as difficulty retargeting.
==Motivation==
Miners directly feel the effects, both positive and negative, of any maximum block size change imposed by their peers. Larger blocks allow more growth in the on-chain ecosystem, while smaller blocks reduce resource requirements network-wide. Miners also act as an efficient proxy for the rest of the ecosystem, since they are paid in the tokens collected for the blocks they create.
A simple deterministic system is specified, whereby a 75% mining supermajority may activate a change to the maximum block size each 2016 blocks. Each change is limited to a 5% increase from the previous block size hard limit, or a decrease of similar magnitude. Among adopting nodes, there will be no disagreement on the evolution of the maximum block size.
The system is compatible with emergent consensus, but whereas under that system a miner may choose to accept any size block, a miner following BIP100 observes the 75% supermajority rule, and the 5% change limit rule. Excessive-block values signaled by emergent consensus blocks are considered in the calculation of the BIP100 block size hard limit, and the BIP100 calculated maximum block size is signaled as an excessive-block value for the benefit of all observers.
==Specification==
===Dynamic Maximum Block Size===
# Initial value ofhardLimit
is 1000000 bytes, preserving current system.
# ChanginghardLimit
is accomplished by encoding a proposed value, a vote, within a block's coinbase scriptSig, and by processing the votes contained in the previous retargeting period.
## Vote encoding
### A vote is represented as a positive megabyte value using the BIP100 pattern/BIP100/B[0-9]+/
Example:/BIP100/B8/
is a vote for a 8000000-bytehardLimit
.
### If the block height is encoded at the start of the coinbase scriptSig, as per BIP34, it is ignored.
### Only the first BIP100 pattern match is processed in "Maximum block size recalculation" below.
### A valid megabyte value is represented by consecutive base-ten digits.
### If no BIP100 pattern is matched, the first matching emergent consensus pattern/EB[0-9]+/
, if any, is accepted as the megabyte vote.
## Maximum block size recalculation
### Anew hardLimit
is calculated after each difficulty adjustment period of 2016 blocks, and applies to the next 2016 blocks.
### Absent/invalid votes are counted as votes for thecurrent hardLimit
.
### The votes of the previous 2016 blocks are sorted by megabyte vote.
### RaisinghardLimit
#### Theraise value
is defined as the vote of the 1512th highest block, converted to bytes.
#### If the resultantraise value
is greater than (current hardLimit
* 1.05) rounded down to the nearest byte, it is set to that value.
#### If the resultantraise value
is greater thancurrent hardLimit
, theraise value
becomes thenew hardLimit
and the recalculation is complete.
### Loweringhardlimit
#### Thelower value
is defined as the vote of the 1512th lowest block, converted to bytes.
#### If the resultantlower value
is less than (current hardLimit
/ 1.05) rounded down to the nearest byte, it is set to that value.
#### If the resultantlower value
is less thancurrent hardLimit
, thelower value
becomes thenew hardLimit
and the recalculation is complete.
### Otherwise,new hardLimit
remains the same ascurrent hardLimit
.
===Signature Hashing Operations Limits===
# The per-block signature hashing operations limit is scaled to (hardLimit
rounded up to nearest megabyte)/50.
# A maximum serialized transaction size of 1000000 bytes is imposed.
===Publication ofhardLimit
===
# For the benefit of emergent consensus nodes,hardLimit
is published. Example: a complete coinbase string might read/BIP100/B8/EB2.123456/
which indicates a vote for 8M maximum block size, and an enforcedhardLimit
of 2.123456 megabytes for the block containing the coinbase string.
==Deployment==
This BIP is presumed deployed and activated as of block height 449568 by implementing nodes on the bitcoin mainnet. It has no effect until a raise value different from 1M is observed, which requires at least 1512 of 2016 blocks to vote differently from 1M.
==Backward compatibility==
The first block larger than 1M will create a network partition, as nodes with a fixed 1M hard limit reject that block.