63 lines
2.3 KiB
JavaScript
63 lines
2.3 KiB
JavaScript
module.exports = {
|
|
addMultiSigAddress: 'addmultisigaddress',
|
|
addNode: 'addnode', // bitcoind v0.8.0+
|
|
backupWallet: 'backupwallet',
|
|
createRawTransaction: 'createrawtransaction', // bitcoind v0.7.0+
|
|
decodeRawTransaction: 'decoderawtransaction', // bitcoind v0.7.0+
|
|
dumpPrivKey: 'dumpprivkey',
|
|
encryptWallet: 'encryptwallet',
|
|
getAccount: 'getaccount',
|
|
getAccountAddress: 'getaccountaddress',
|
|
getAddedNodeInfo: 'getaddednodeinfo', // bitcoind v0.8.0+
|
|
getAddressesByAccount: 'getaddressesbyaccount',
|
|
getBalance: 'getbalance',
|
|
getBlock: 'getblock',
|
|
getBlockCount: 'getblockcount',
|
|
getBlockHash: 'getblockhash',
|
|
getConnectionCount: 'getconnectioncount',
|
|
getDifficulty: 'getdifficulty',
|
|
getGenerate: 'getgenerate',
|
|
getHashesPerSecond: 'gethashespersec',
|
|
getHashesPerSec: 'gethashespersec',
|
|
getInfo: 'getinfo',
|
|
getMemorypool: 'getmemorypool',
|
|
getMemoryPool: 'getmemorypool',
|
|
getMiningInfo: 'getmininginfo',
|
|
getNewAddress: 'getnewaddress',
|
|
getPeerInfo: 'getpeerinfo', // bitcoind v0.7.0+
|
|
getRawMemPool: 'getrawmempool', // bitcoind v0.7.0+
|
|
getRawTransaction: 'getrawtransaction', // bitcoind v0.7.0+
|
|
getReceivedByAccount: 'getreceivedbyaccount',
|
|
getReceivedByAddress: 'getreceivedbyaddress',
|
|
getTransaction: 'gettransaction',
|
|
getWork: 'getwork',
|
|
help: 'help',
|
|
importPrivKey: 'importprivkey',
|
|
keypoolRefill: 'keypoolrefill',
|
|
keyPoolRefill: 'keypoolrefill',
|
|
listAccounts: 'listaccounts',
|
|
listLockUnspent: 'listlockunspent', // bitcoind v0.8.0
|
|
listReceivedByAccount: 'listreceivedbyaccount',
|
|
listReceivedByAddress: 'listreceivedbyaddress',
|
|
listSinceBlock: 'listsinceblock',
|
|
listTransactions: 'listtransactions',
|
|
listUnspent: 'listunspent', // bitcoind v0.7.0+
|
|
lockUnspent: 'lockunspent', // bitcoind v0.8.0+
|
|
move: 'move',
|
|
sendFrom: 'sendfrom',
|
|
sendMany: 'sendmany',
|
|
sendRawTransaction: 'sendrawtransaction', // bitcoind v0.7.0+
|
|
sendToAddress: 'sendtoaddress',
|
|
setAccount: 'setaccount',
|
|
setGenerate: 'setgenerate',
|
|
setTxFee: 'settxfee',
|
|
signMessage: 'signmessage',
|
|
signRawTransaction: 'signrawtransaction', // bitcoind v0.7.0+
|
|
stop: 'stop',
|
|
validateAddress: 'validateaddress',
|
|
verifyMessage: 'verifymessage',
|
|
walletLock: 'walletlock',
|
|
walletPassphrase: 'walletpassphrase',
|
|
walletPassphraseChange: 'walletpassphrasechange'
|
|
};
|