forked from MyHush/hush-restful-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommands.js
69 lines (68 loc) · 2.25 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
// Komodo Restful API
// File: commands.js
module.exports = {
addMultiSigAddress: 'addmultisigaddress',
addNode: 'addnode',
backupWallet: 'backupwallet',
createMultiSig: 'createmultisig',
createRawTransaction: 'createrawtransaction',
decodeRawTransaction: 'decoderawtransaction',
dumpPrivKey: 'dumpprivkey',
encryptWallet: 'encryptwallet',
getAccount: 'getaccount',
getAccountAddress: 'getaccountaddress',
getAddedNodeInfo: 'getaddednodeinfo',
getAddressesByAccount: 'getaddressesbyaccount',
getBalance: 'getbalance',
getBlock: 'getblock',
getBlockCount: 'getblockcount',
getBlockHash: 'getblockhash',
getBlockTemplate: 'getblocktemplate',
getConnectionCount: 'getconnectioncount',
getDifficulty: 'getdifficulty',
getGenerate: 'getgenerate',
getHashesPerSecond: 'gethashespersec',
getHashesPerSec: 'gethashespersec',
getInfo: 'getinfo',
getMiningInfo: 'getmininginfo',
getNewAddress: 'getnewaddress',
getPeerInfo: 'getpeerinfo',
getRawMemPool: 'getrawmempool',
getRawTransaction: 'getrawtransaction',
getReceivedByAccount: 'getreceivedbyaccount',
getReceivedByAddress: 'getreceivedbyaddress',
getTransaction: 'gettransaction',
getTxOut: 'gettxout',
getTxOutSetInfo: 'gettxoutsetinfo',
getWork: 'getwork',
help: 'help',
importPrivKey: 'importprivkey',
keypoolRefill: 'keypoolrefill',
keyPoolRefill: 'keypoolrefill',
listAccounts: 'listaccounts',
listAddressGroupings: 'listaddressgroupings',
listLockUnspent: 'listlockunspent',
listReceivedByAccount: 'listreceivedbyaccount',
listReceivedByAddress: 'listreceivedbyaddress',
listSinceBlock: 'listsinceblock',
listTransactions: 'listtransactions',
listUnspent: 'listunspent',
lockUnspent: 'lockunspent',
move: 'move',
sendFrom: 'sendfrom',
sendMany: 'sendmany',
sendRawTransaction: 'sendrawtransaction',
sendToAddress: 'sendtoaddress',
setAccount: 'setaccount',
setGenerate: 'setgenerate',
setTxFee: 'settxfee',
signMessage: 'signmessage',
signRawTransaction: 'signrawtransaction',
stop: 'stop',
submitBlock: 'submitblock',
validateAddress: 'validateaddress',
verifyMessage: 'verifymessage',
walletLock: 'walletlock',
walletPassphrase: 'walletpassphrase',
walletPassphraseChange: 'walletpassphrasechange'
};