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