From 5e0e44440adf22755239ebed6dfdd6dab2211ca7 Mon Sep 17 00:00:00 2001 From: Yemel Jardi Date: Wed, 18 Feb 2015 11:12:29 -0300 Subject: [PATCH] Add rpc methods list --- rpc/methods.js | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 rpc/methods.js diff --git a/rpc/methods.js b/rpc/methods.js new file mode 100644 index 00000000..9bd53c8c --- /dev/null +++ b/rpc/methods.js @@ -0,0 +1,37 @@ +'use strict'; + +// Local Coded +// createmultisig nrequired ["key",...] +// createrawtransaction [{"txid":"id","vout":n},...] {"address":amount,...} +// decoderawtransaction "hexstring" +// decodescript "hex" +// getblock "hash" ( verbose ) +// getblockhash index +// getrawtransaction "txid" ( verbose ) +// gettxout "txid" n ( includemempool ) +// gettxoutsetinfo +// sendrawtransaction "hexstring" ( allowhighfees ) +// signrawtransaction "hexstring" ( [{"txid":"id","vout":n,"scriptPubKey":"hex","redeemScript":"hex"},...] ["privatekey1",...] sighashtype ) +// validateaddress "bitcoinaddress" +// verifymessage "bitcoinaddress" "signature" "message" +// getchaintips +// GetMemPoolInfo +// help ( "command" ) + + +// Proxied to Bitcoind +// estimatefee +// estimatepriority +// getaddednodeinfo dns ( "node" ) +// getbestblockhash +// getblockchaininfo +// getblockcount +// getconnectioncount +// getdifficulty +// getinfo +// getnettotals +// getnetworkhashps ( blocks height ) +// getnetworkinfo +// getpeerinfo +// getrawmempool ( verbose ) // this could be done +// ping \ No newline at end of file