forked from freewil/node-bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommands.js
111 lines (111 loc) · 3.73 KB
/
commands.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
module.exports = {
abandonTransaction: 'abandontransaction',
addMultiSigAddress: 'addmultisigaddress',
addNode: 'addnode',
backupWallet: 'backupwallet',
clearBanned: 'clearbanned',
createMultiSig: 'createmultisig',
createRawTransaction: 'createrawtransaction',
debug: 'debug',
decodeRawTransaction: 'decoderawtransaction',
decodeScript: 'decodescript',
disconnectNode: 'disconnectnode',
dumpHdInfo: 'dumphdinfo',
dumpPrivKey: 'dumpprivkey',
dumpWallet: 'dumpwallet',
estimateFee: 'estimatefee',
estimatePriority: 'estimatepriority',
estimateSmartFee: 'estimatesmartfee',
estimateSmartPriority: 'estimatesmartpriority',
fundRawTransaction: 'fundrawtransaction',
generate: 'generate',
getAccount: 'getaccount',
getAccountAddress: 'getaccountaddress',
getAddedNodeInfo: 'getaddednodeinfo',
getAddressBalance: 'getaddressbalance',
getAddressDeltas: 'getaddressdeltas',
getAddressMempool: 'getaddressmempool',
getAddressesByAccount: 'getaddressesbyaccount',
getAddressTxids: 'getaddresstxids',
getAddressUtxos: 'getaddressutxos',
getBalance: 'getbalance',
getBestBlockHash: 'getbestblockhash',
getBlock: 'getblock',
getBlockchainInfo: 'getblockchaininfo',
getBlockCount: 'getblockcount',
getBlockHash: 'getblockhash',
getBlockHashes: 'getblockhashes',
getBlockHeader: 'getblockheader',
getBlockHeaders: 'getblockheaders',
getBlockTemplate: 'getblocktemplate',
getChainTips: 'getchaintips',
getConnectionCount: 'getconnectioncount',
getDifficulty: 'getdifficulty',
getGenerate: 'getgenerate',
getInfo: 'getinfo',
getMempoolInfo: 'getmempoolinfo',
getMiningInfo: 'getmininginfo',
getNetTotals: 'getnettotals',
getNetworkHashPs: 'getnetworkhashps',
getNetworkInfo: 'getnetworkinfo',
getNewAddress: 'getnewaddress',
getPeerInfo: 'getpeerinfo',
getRandomKeyPair: 'getrandomkeypair',
getRawChangeAddress: 'getrawchangeaddress',
getRawMemPool: 'getrawmempool',
getRawTransaction: 'getrawtransaction',
getReceivedByAccount: 'getreceivedbyaccount',
getReceivedByAddress: 'getreceivedbyaddress',
getSpentInfo: 'getspentinfo',
getTransaction: 'gettransaction',
getTxOut: 'gettxout',
getTxOutProof: 'gettxoutproof',
getTxOutSetInfo: 'gettxoutsetinfo',
getUnconfirmedBalance: 'getunconfirmedbalance',
getWalletInfo: 'getwalletinfo',
help: 'help',
importAddress: 'importaddress',
importElectrumWallet: 'importelectrumwallet',
importPrivKey: 'importprivkey',
importPubKey: 'importpubkey',
importWallet: 'importwallet',
instantSendToAddress: 'instantsendtoaddress',
keypoolRefill: 'keypoolrefill',
listAccounts: 'listaccounts',
listAddressGroupings: 'listaddressgroupings',
listBanned: 'listbanned',
listLockUnspent: 'listlockunspent',
listReceivedByAccount: 'listreceivedbyaccount',
listReceivedByAddress: 'listreceivedbyaddress',
listSinceBlock: 'listsinceblock',
listTransactions: 'listtransactions',
listUnspent: 'listunspent',
lockUnspent: 'lockunspent',
move: 'move',
ping: 'ping',
prioritiseTransaction: 'prioritisetransaction',
sendFrom: 'sendfrom',
sendMany: 'sendmany',
sendRawTransaction: 'sendrawtransaction',
sendToAddress: 'sendtoaddress',
setAccount: 'setaccount',
setBan: 'setban',
setGenerate: 'setgenerate',
setNetworkActive: 'setnetworkactive',
setTxFee: 'settxfee',
signMessage: 'signmessage',
signRawTransaction: 'signrawtransaction',
smartMining: 'smartmining',
smartnode: 'smartnode',
smartnodeBroadcast: 'smartnodebroadcast',
smartnodeList: 'smartnodelist',
smartRewards: 'smartrewards',
snSync: 'snsync',
spork: 'spork',
stop: 'stop',
submitBlock: 'submitblock',
validateAddress: 'validateaddress',
verifyChain: 'verifychain',
verifyMessage: 'verifymessage',
verifyTxOutProof: 'verifytxoutproof'
}