aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet_rpc_server.h
Commit message (Collapse)AuthorAgeFilesLines
...
| * Implement #3045, fixing RPC snakecasesNick Johnson2018-01-061-0/+3
| |
* | Reserve proofstoffu2018-01-101-0/+4
|/
* Merge pull request #2967Riccardo Spagni2018-01-021-0/+5
|\ | | | | | | 55556fab wallet_rpc_server: factor transfer info return and add missing info (moneromooo-monero)
| * wallet_rpc_server: factor transfer info return and add missing infomoneromooo-monero2017-12-201-0/+5
| | | | | | | | Additional tx keys, amounts and fees were missing in some cases
* | Merge pull request #2926Riccardo Spagni2017-12-251-0/+8
|\ \ | | | | | | | | | 6b5bd129 Account tagging (stoffu)
| * | Account taggingstoffu2017-12-181-0/+8
| |/
* / check accessing an element past the end of a containermoneromooo-monero2017-12-181-1/+1
|/
* wallet: add multisig sign/submit RPCmoneromooo-monero2017-12-171-0/+5
|
* N-1/N multisigmoneromooo-monero2017-12-171-0/+1
|
* multisig address generation RPCmoneromooo-monero2017-12-171-0/+10
|
* Merge pull request #2368Riccardo Spagni2017-11-251-0/+4
|\ | | | | | | b0b7e0f0 Spend proof without txkey (stoffu)
| * Spend proof without txkeystoffu2017-11-211-0/+4
| |
* | wallet_rpc_server: new relay_tx commandmoneromooo-monero2017-11-241-0/+2
|/ | | | It takes a full tx+metadata hex string as input
* Tx proof (revised):stoffu2017-11-181-0/+8
| | | | | | | | | - refactoring: proof generation/checking code was moved from simplewallet.cpp to wallet2.cpp - allow an arbitrary message to be signed together with txid - introduce two types (outbound & inbound) of tx proofs; with the same syntax, inbound is selected when <address> belongs to this wallet, outbound otherwise. see GitHub thread for more discussion - wallet RPC: added get_tx_key, check_tx_key, get_tx_proof, check_tx_proof - wallet API: moved WalletManagerImpl::checkPayment to Wallet::checkTxKey, added Wallet::getTxProof/checkTxProof - get_tx_key/check_tx_key: handle additional tx keys by concatenating them into a single string
* simplewallet: wrong ns for input_line in sweep_single (fix #2634)stoffu2017-11-151-1/+0
|
* wallet: add sweep_single commandstoffu2017-11-151-0/+2
|
* track double spending in the txpoolmoneromooo-monero2017-11-061-1/+1
| | | | | | | | | | | | | | Transactions in the txpool are marked when another transaction is seen double spending one or more of its inputs. This is then exposed wherever appropriate. Note that being marked with this "double spend seen" flag does NOT mean this transaction IS a double spend and will never be mined: it just means that the network has seen at least another transaction spending at least one of the same inputs, so care should be taken to wait for a few confirmations before acting upon that transaction (ie, mostly of use for merchants wanting to accept unconfirmed transactions).
* Merge pull request #2605Riccardo Spagni2017-11-061-0/+4
|\ | | | | | | b370ef54 Wallet: Descriptions through new commands 'set_description', 'get_description' (rbrunner7)
| * Wallet: Descriptions through new commands 'set_description', 'get_description'rbrunner72017-10-161-0/+4
| |
* | Add more specific RPC error codesMichał Sałaban2017-10-231-0/+1
|/
* Subaddresseskenshi842017-10-071-1/+11
|
* Do not create file when RPC user/pass is given and use file lockingLee Clagett2017-08-301-1/+2
|
* wallet_rpc_server: adjust small ring sizes to 5 for v6moneromooo-monero2017-08-121-0/+1
|
* Minor cleanup: tab vs. space + logs messagesbinaryFate2017-06-261-1/+1
|
* Resolve #92 add ability to create wallets thru RPCHoward Chu2017-04-111-3/+15
| | | | | Reviewed and squashed. Open/Create is only allowed if no walletfile was specified at startup.
* wallet rpc: enable solo miningstoffu2017-03-201-0/+5
|
* wallet_rpc_server: add a rescan_spent RPCmoneromooo-monero2017-03-181-0/+2
|
* wallet_rpc_server: new --trusted-daemon flagmoneromooo-monero2017-02-241-0/+1
| | | | | and remove trusted_daemon fields from transfer RPCs, it is much friendlier on users
* update copyright year, fix occasional lack of newline at line endRiccardo Spagni2017-02-211-1/+1
|
* wallet_rpc_server: add address book RPC callsmoneromooo-monero2017-02-041-0/+6
|
* Change logging to easylogging++moneromooo-monero2017-01-161-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This replaces the epee and data_loggers logging systems with a single one, and also adds filename:line and explicit severity levels. Categories may be defined, and logging severity set by category (or set of categories). epee style 0-4 log level maps to a sensible severity configuration. Log files now also rotate when reaching 100 MB. To select which logs to output, use the MONERO_LOGS environment variable, with a comma separated list of categories (globs are supported), with their requested severity level after a colon. If a log matches more than one such setting, the last one in the configuration string applies. A few examples: This one is (mostly) silent, only outputting fatal errors: MONERO_LOGS=*:FATAL This one is very verbose: MONERO_LOGS=*:TRACE This one is totally silent (logwise): MONERO_LOGS="" This one outputs all errors and warnings, except for the "verify" category, which prints just fatal errors (the verify category is used for logs about incoming transactions and blocks, and it is expected that some/many will fail to verify, hence we don't want the spam): MONERO_LOGS=*:WARNING,verify:FATAL Log levels are, in decreasing order of priority: FATAL, ERROR, WARNING, INFO, DEBUG, TRACE Subcategories may be added using prefixes and globs. This example will output net.p2p logs at the TRACE level, but all other net* logs only at INFO: MONERO_LOGS=*:ERROR,net*:INFO,net.p2p:TRACE Logs which are intended for the user (which Monero was using a lot through epee, but really isn't a nice way to go things) should use the "global" category. There are a few helper macros for using this category, eg: MGINFO("this shows up by default") or MGINFO_RED("this is red"), to try to keep a similar look and feel for now. Existing epee log macros still exist, and map to the new log levels, but since they're used as a "user facing" UI element as much as a logging system, they often don't map well to log severities (ie, a log level 0 log may be an error, or may be something we want the user to see, such as an important info). In those cases, I tried to use the new macros. In other cases, I left the existing macros in. When modifying logs, it is probably best to switch to the new macros with explicit levels. The --log-level options and set_log commands now also accept category settings, in addition to the epee style log levels.
* wallet_rpc_server: new RPC call to get a transfer by txidmoneromooo-monero2017-01-081-0/+8
|
* Merge pull request #1473Riccardo Spagni2016-12-201-2/+0
|\ | | | | | | e3639f5c Removed unused functions (Lee Clagett)
| * Removed unused functionsLee Clagett2016-12-191-2/+0
| |
* | Enabled HTTP auth support for monero-wallet-rpcLee Clagett2016-12-161-0/+3
|/
* Added confirmation before binding wallet-rpc to external IPLee Clagett2016-12-051-3/+0
|
* wallet: add API and RPC to create/parse monero: URIsmoneromooo-monero2016-11-281-0/+4
|
* Created monero-wallet-rpc, moving functionality from monero-wallet-cliLee Clagett2016-11-101-7/+2
|
* epee: optionally restrict HTTP service to a configurable user agentmoneromooo-monero2016-09-181-0/+2
| | | | | | | | This is intended to catch traffic coming from a web browser, so we avoid issues with a web page sending a transfer RPC to the wallet. Requiring a particular user agent can act as a simple password scheme, while we wait for 0MQ and proper authentication to be merged.
* wallet: new {ex,im}port_key_images commands and RPC callsmoneromooo-monero2016-07-241-0/+4
| | | | | | They are used to export a signed set of key images from a wallet with a private spend key, so an auditor with the matching view key may see which of those are spent, and which are not.
* wallet: add command and RPC to sign/verify datamoneromooo-monero2016-07-191-0/+4
| | | | | | | | | Signing is done using the spend key, since the view key may be shared. This could be extended later, to let the user choose which key (even a per tx key). simplewallet's sign/verify API uses a file. The RPC uses a string (simplewallet can't easily do strings since commands receive a tokenized set of arguments).
* wallet: add get_transfers rpc callmoneromooo-monero2016-04-261-0/+2
| | | | | Allows getting in, out, pending, and failed transfers, similarly to the show_transfers command.
* wallet: allow attaching notes to txidsmoneromooo-monero2016-04-261-0/+4
|
* wallet: add a new sweep_all command and RPC commandmoneromooo-monero2016-04-191-0/+2
| | | | | | This sends all outputs in a wallet to a given address, alleviating the difficulty people have had trying to send all monero but being left with some small amount left.
* updated copyright yearRiccardo Spagni2015-12-311-1/+1
|
* wallet: add a rescan_bc command and rescan_blockchain RPCmoneromooo-monero2015-12-301-0/+2
| | | | | | | | | Blockchain hashes and key images are flushed, and blocks are pulled anew from the daemon. The console command is shortened to match bc_height. This should make it a lot easier on users who are currently told to remove this particular cache file but keep the keys one, etc, etc.
* wallet_rpc_server: exit async, so we reply to stop_wallet RPCmoneromooo-monero2015-12-281-0/+1
| | | | Reported by saddam
* added RPC wallet command getheightBrendan Telzrow2015-12-231-0/+2
|
* wallet: add a stop_wallet RPC callmoneromooo-monero2015-12-051-0/+2
|
* Add RPC commands to manipulate integrated addressesmoneromooo-monero2015-06-131-0/+4
|