summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-06-21Add BIP 68 to indexMark Friedenbach
2015-06-21Add BIP 68: Consensus-enforced transaction replacement signalled via ↵Mark Friedenbach
sequence numbers
2015-05-26Merge pull request #136 from NicolasDorier/patch-4Wladimir J. van der Laan
Add C# implementation of BIP39 (NBitcoin)
2015-05-26Merge pull request #146 from afk11/bip0090Wladimir J. van der Laan
BIP: Deterministic multi-signature P2SH addresses
2015-05-26Merge pull request #130 from bip39JP/masterWladimir J. van der Laan
BIP39: Clarify necessity for ideographic spaces.
2015-05-26Merge pull request #151 from jl2012/patch-2Wladimir J. van der Laan
fixing typo
2015-05-26Merge pull request #154 from amingilani/patch-1Wladimir J. van der Laan
typo
2015-05-26Merge pull request #152 from Kirvx/masterWladimir J. van der Laan
BIP39 French Wordlist - My proposal
2015-05-25French WordlistKirvx
2015-05-24typoAmin Shah Gilani
2015-05-21Merge pull request #147 from voisine/masterWladimir J. van der Laan
NFKD normalize BIP39 spanish word list
2015-04-29fixing typojl2012
fixing typo
2015-04-27remove whitespaceThomas Kerin
2015-04-27Add references sectionThomas Kerin
2015-04-27Specifically mention BIP-0011 (P2SH)Thomas Kerin
Also add acknowledgement to Luke-Jr
2015-04-12With acknowledgements to BtcDrakThomas Kerin
2015-04-12Remove multisignature brainwalletThomas Kerin
2015-03-15Tidy ups, add BIP0067 to README, and change Type: informational -> standardThomas Kerin
2015-03-15Rename to assigned number: BIP 0067Thomas Kerin
2015-03-11NFKD normalize spanish word listAaron Voisine
2015-03-12Normalize word in wordlist to begin withbip39jp
Misunderstood specification.
2015-03-12Clarify necessity for ideographic spaces.bip39jp
I left it unclear / open to interpretation on whether to use ideograpic spaces, but realized that without being specific on its necessity, developers may implement something that would cause trouble with the Japanese user. (two words looking like one word, or phrase verification failing because it can't handle ideographic spaces, etc.)
2015-03-11Merge pull request #1 from blocktrail/bip0090Thomas Kerin
add bitcoinJ
2015-03-11Add C# implementation of BIP39 (NBitcoin)Nicolas Dorier
2015-03-11add bitcoinJRuben de Vries
2015-03-11Merge pull request #131 from drupalnomad/patch-1Wladimir J. van der Laan
Mention that "Unsecure money receiver" use-case prevents theft
2015-03-11Merge pull request #132 from ↵Wladimir J. van der Laan
petertodd/bip62-compact-validly-encoded-invalid-sigs BIP62: Make OP_0 a validly encoded signature
2015-03-11Merge pull request #137 from UdjinM6/patch-1Wladimir J. van der Laan
BIP39 - Add reference to JavaScript implementation
2015-03-11Merge pull request #138 from harding/bip66-number-examplesWladimir J. van der Laan
BIP66: Number Examples To Match Implementation Tests
2015-03-11Merge pull request #141 from jonasschnelli/bip37_link_fixWladimir J. van der Laan
[Bip37] fix SPV link and remove empty Smart Property link
2015-03-11Merge pull request #143 from Kefkius/masterWladimir J. van der Laan
BIP-0044 - add a compatible wallet
2015-03-11Merge pull request #145 from maraoz/patch-1Wladimir J. van der Laan
Update BIP32 to add bitcore as implementation
2015-03-11Add line so that pubkeys + address in specificiation are displayedThomas Kerin
2015-03-05Update BIP32 to add bitcore as implementationManuel Aráoz
2015-02-17BIP-0044 - add a compatible walletKefkius
2015-02-13update scriptBitWasp
2015-02-13Rename implementation -> specificationBitWasp
2015-02-12Add dashes.BitWasp
2015-02-12Add BIP90 - until a correct BIP number is assignedBitWasp
2015-02-10[Bip37] fix SPV link and remove empty Smart Property linkJonas Schnelli
2015-02-09Merge pull request #140 from droark/patch-1Wladimir J. van der Laan
Fix broken source code link.
2015-02-09Fix broken source code link.Douglas Roark
2015-01-30BIP66: Number Examples To Match Implementation TestsDavid A. Harding
The Bitcoin Core tests in script_tests.cpp refer to these examples by number, but these BIP66 examples are in an unordered list, making them hard to follow. This changes the list to an ordered list.
2015-01-30Add reference to JavaScript implementationUdjinM6
2015-01-28Merge pull request #135 from sipa/bip66Wladimir J. van der Laan
Add BIP66
2015-01-26Add BIP66Pieter Wuille
2015-01-15Merge pull request #133 from np/patch-1Wladimir J. van der Laan
Add a link to my CLI interface in Haskell
2015-01-15Add a link to my CLI interface in HaskellNicolas Pouillard
2015-01-10Merge pull request #120 from rxl/patch-2Wladimir J. van der Laan
Fix a few minor typos in bip 0065
2015-01-09BIP62: Make OP_0 a validly encoded signaturePeter Todd
Previously BIP62 did not provide a compact way to delibrately encode an invalid signature. For example in BIP19 if m != n with this change you can provide compact OP_0's in the scriptSig rather than lengthy DER-encoded signatures. Note that we may want to further expand on this change in the future by saying that only OP_0 is a "valid" invalid signature; BIP19 even with this change is inherently malleable as the invalid signatures can be any validly encoded DER signature.