From 7d1998572a11622871de7fd870a68fb232ed7b90 Mon Sep 17 00:00:00 2001 From: Michael Rotarius Date: Sat, 7 Jan 2017 11:10:45 +0100 Subject: [PATCH 1/3] OP Codes --- _config.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/_config.yml b/_config.yml index 1772b3b8..aa499df2 100644 --- a/_config.yml +++ b/_config.yml @@ -440,6 +440,9 @@ devsearches: - "OP_CHECKSIGVERIFY": "https://en.bitcoin.it/wiki/Script#Crypto" - "OP_CHECKMULTISIG": "https://en.bitcoin.it/wiki/Script#Crypto" - "OP_CHECKMULTISIGVERIFY": "https://en.bitcoin.it/wiki/Script#Crypto" + + - "OP_CHECKLOCKTIMEVERIFY": "https://en.bitcoin.it/wiki/Script#Locktime" + - "OP_CHECKSEQUENCEVERIFY ": "https://en.bitcoin.it/wiki/Script#Locktime" - "OP_PUBKEYHASH (invalid)": "https://en.bitcoin.it/wiki/Script#Pseudo-words" - "OP_PUBKEY (invalid)": "https://en.bitcoin.it/wiki/Script#Pseudo-words" @@ -452,8 +455,6 @@ devsearches: - "OP_RESERVED1 (reserved)": "https://en.bitcoin.it/wiki/Script#Reserved_words" - "OP_RESERVED2 (reserved)": "https://en.bitcoin.it/wiki/Script#Reserved_words" - "OP_NOP1 (reserved)": "https://en.bitcoin.it/wiki/Script#Reserved_words" - - "OP_NOP2 (reserved)": "https://en.bitcoin.it/wiki/Script#Reserved_words" - - "OP_NOP3 (reserved)": "https://en.bitcoin.it/wiki/Script#Reserved_words" - "OP_NOP4 (reserved)": "https://en.bitcoin.it/wiki/Script#Reserved_words" - "OP_NOP5 (reserved)": "https://en.bitcoin.it/wiki/Script#Reserved_words" - "OP_NOP6 (reserved)": "https://en.bitcoin.it/wiki/Script#Reserved_words" From 1a6d45cc4fffc43ae95140c53d29d06fb9e320b0 Mon Sep 17 00:00:00 2001 From: Michael Rotarius Date: Sat, 7 Jan 2017 11:11:48 +0100 Subject: [PATCH 2/3] BIPs --- _config.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index aa499df2..f5a8ae71 100644 --- a/_config.yml +++ b/_config.yml @@ -467,6 +467,7 @@ devsearches: ## and focused on likely keywords "BIPs": - "BIP1: BIP purpose and guidelines": "https://github.com/bitcoin/bips/blob/master/bip-0001.mediawiki" + - "BIP9: soft fork mechanism": "https://github.com/bitcoin/bips/blob/master/bip-0009.mediawiki" - "BIP11: m-of-n multisig transactions": "https://github.com/bitcoin/bips/blob/master/bip-0011.mediawiki" - "BIP13: P2SH address format": "https://github.com/bitcoin/bips/blob/master/bip-0013.mediawiki" - "BIP14: protocol version and user agent": "https://github.com/bitcoin/bips/blob/master/bip-0014.mediawiki" @@ -495,7 +496,16 @@ devsearches: - "BIP71: payment protocol MIME types": "https://github.com/bitcoin/bips/blob/master/bip-0071.mediawiki" - "BIP72: payment protocol URIs": "https://github.com/bitcoin/bips/blob/master/bip-0072.mediawiki" - "BIP73: accept header with payment protocol": "https://github.com/bitcoin/bips/blob/master/bip-0073.mediawiki" - + - "BIP111: NODE_BLOOM service bit": "https://github.com/bitcoin/bips/blob/master/bip-0111.mediawiki" + - "BIP112: OP_CHECKSEQUENCEVERIFY": "https://github.com/bitcoin/bips/blob/master/bip-0112.mediawiki" + - "BIP113: median time for lock-time": "https://github.com/bitcoin/bips/blob/master/bip-0113.mediawiki" + - "BIP125: replace-by-fee signaling": "https://github.com/bitcoin/bips/blob/master/bip-0125.mediawiki" + - "BIP130: sendheaders message": "https://github.com/bitcoin/bips/blob/master/bip-0130.mediawiki" + - "BIP133: feefilter message": "https://github.com/bitcoin/bips/blob/master/bip-0133.mediawiki" + - "BIP141: segregated witness": "https://github.com/bitcoin/bips/blob/master/bip-0141.mediawiki" + - "BIP151: P2P communication encryption": "https://github.com/bitcoin/bips/blob/master/bip-0151.mediawiki" + - "BIP152: compact block relay": "https://github.com/bitcoin/bips/blob/master/bip-0152.mediawiki" + ## Bitcoin P2P Protocol messages documented on Bitcoin.org "P2P Messages": - "addr": "/en/developer-reference#addr" From e124bf1444f506cecff08fe471a5eb0b8512008d Mon Sep 17 00:00:00 2001 From: Michael Rotarius Date: Sat, 7 Jan 2017 11:24:11 +0100 Subject: [PATCH 3/3] REST calls --- _config.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/_config.yml b/_config.yml index f5a8ae71..7a0f4cb6 100644 --- a/_config.yml +++ b/_config.yml @@ -336,6 +336,17 @@ devsearches: - 'WalletPassphrase': "/en/developer-reference#walletpassphrase" - 'WalletPassphraseChange': "/en/developer-reference#walletpassphrasechange" + ## REST calls currently documented on Bitcoin.org. CamelCase names (with + ## leading capital) for easier quick scanning + "REST": + - 'GetBlock': "/en/developer-reference#get-block" + - 'GetBlock-noTxDetails': "/en/developer-reference#get-blocknotxdetails" + - 'GetChainInfo': "/en/developer-reference#get-chaininfo" + - 'GetUtxos': "/en/developer-reference#get-getutxos" + - 'GetHeaders': "/en/developer-reference#get-headers" + - 'GetMemPool-contents': "/en/developer-reference#get-mempoolcontents" + - 'GetMemPool-info': "/en/developer-reference#get-mempoolinfo" + ## Opcodes currently implemented in Bitcoin Core master branch. After ## we document them on Bitcoin.org, these links will be updated "Opcodes": @@ -440,7 +451,7 @@ devsearches: - "OP_CHECKSIGVERIFY": "https://en.bitcoin.it/wiki/Script#Crypto" - "OP_CHECKMULTISIG": "https://en.bitcoin.it/wiki/Script#Crypto" - "OP_CHECKMULTISIGVERIFY": "https://en.bitcoin.it/wiki/Script#Crypto" - + - "OP_CHECKLOCKTIMEVERIFY": "https://en.bitcoin.it/wiki/Script#Locktime" - "OP_CHECKSEQUENCEVERIFY ": "https://en.bitcoin.it/wiki/Script#Locktime" @@ -505,7 +516,7 @@ devsearches: - "BIP141: segregated witness": "https://github.com/bitcoin/bips/blob/master/bip-0141.mediawiki" - "BIP151: P2P communication encryption": "https://github.com/bitcoin/bips/blob/master/bip-0151.mediawiki" - "BIP152: compact block relay": "https://github.com/bitcoin/bips/blob/master/bip-0152.mediawiki" - + ## Bitcoin P2P Protocol messages documented on Bitcoin.org "P2P Messages": - "addr": "/en/developer-reference#addr"