mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 01:36:13 +00:00
Merge pull request #1479 from Mirobit/config0131
Add REST calls, new OP codes and BIPs to dev search
This commit is contained in:
commit
66203f7d97
1 changed files with 24 additions and 2 deletions
26
_config.yml
26
_config.yml
|
@ -346,6 +346,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":
|
||||
|
@ -451,6 +462,9 @@ devsearches:
|
|||
- "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"
|
||||
- "OP_INVALIDOPCODE (invalid)": "https://en.bitcoin.it/wiki/Script#Pseudo-words"
|
||||
|
@ -462,8 +476,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"
|
||||
|
@ -476,6 +488,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"
|
||||
|
@ -504,6 +517,15 @@ 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":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue