summaryrefslogtreecommitdiff
path: root/src/wallet/api/wallet.cpp
Commit message (Collapse)AuthorAgeFilesLines
* wallet2_api: implement stop() to interrupt refresh() loop oncexiphon2020-10-181-0/+5
|
* wallet: allow signing a message with spend or view keymoneromooo-monero2020-08-281-2/+2
|
* Integrate CLSAGs into moneromoneromooo-monero2020-08-271-0/+1
| | | | They are allowed from v12, and MLSAGs are rejected from v13.
* wallet2_api: implement runtime proxy configurationxiphon2020-07-201-4/+9
|
* Merge pull request #6512Alexander Blair2020-07-191-1/+1
|\ | | | | | | 5ef0607da Update copyright year to 2020 (SomaticFanatic)
| * Update copyright year to 2020SomaticFanatic2020-05-061-1/+1
| | | | | | | | Update copyright year to 2020
* | simplewallet: don't complain about incoming payment ids on changemoneromooo-monero2020-05-131-1/+1
|/
* trezor: adapt to new passphrase mechanismDusan Klinec2020-04-271-2/+4
| | | | | | | | | - choice where to enter passphrase is now made on the host - use wipeable string in the comm stack - wipe passphrase memory - protocol optimizations, prepare for new firmware version - minor fixes and improvements - tests fixes, HF12 support
* Merge pull request #6334luigi11112020-04-041-1/+5
|\ | | | | | | cc18926 wallet2_api: wallet recovery - seed offset passphrase support (xiphon)
| * wallet2_api: wallet recovery - seed offset passphrase supportxiphon2020-02-111-1/+5
| |
* | wallet2_api: implement estimateTransactionFeexiphon2020-01-251-0/+20
|/
* Merge pull request #5894luigi11112019-09-301-0/+4
|\ | | | | | | c89f7ef wallet2_api: fix load unsigned tx from file error propagation (xiphon)
| * wallet2_api: fix load unsigned tx from file error propagationxiphon2019-09-091-0/+4
| |
* | wallet2_api: add missing parameterselsta2019-09-091-2/+2
|/
* Merge pull request #5518luigi11112019-08-171-48/+54
|\ | | | | | | def703a wallet_api: add multi destination tx support (selsta)
| * wallet_api: add multi destination tx supportselsta2019-08-161-48/+54
| |
* | Merge pull request #5673luigi11112019-08-151-8/+17
|\ \ | |/ |/| | | 097cca5 wallet_api: catch getTxKey exception (ph4r05)
| * wallet_api: catch getTxKey exceptionDusan Klinec2019-06-191-8/+17
| | | | | | | | - getTxKey method throws an exception, e.g., when user declines txKey export
* | Fixed error preventing build of monero-guiNejcraft2019-07-281-1/+3
| | | | | | get_attribute expects 2 values instead of 1
* | Merge pull request #5594luigi11112019-07-241-0/+17
|\ \ | | | | | | | | | f074b6b device: show address on device display (ph4r05)
| * | device: show address on device displayDusan Klinec2019-06-171-0/+17
| |/ | | | | | | | | | | | | | | | | - Trezor: support for device address display (subaddress, integrated address) - Wallet::API support added - Simplewallet: - address device [<index>] - address new <label> // shows address on device also - integrated_address [device] <payment_id|address> // new optional "device" arg to display also on the device
* | Merge pull request #5534luigi11112019-07-241-0/+11
|\ \ | |/ |/| | | 4c66614 expose set/get walletcache attribute functionality in wallet api (selsta)
| * expose set/get walletcache attribute functionality in wallet apidsc2019-05-101-0/+11
| |
* | wallet: add unlock_time details to show_transfersmoneromooo-monero2019-05-161-1/+1
|/ | | | | also add a note when receiving the tx, because the user might not notice the "XXX blocks to unlock" in the balance.
* device/trezor: add button pressed requestDusan Klinec2019-04-071-0/+7
|
* wallet: API changes to enable passphrase entryDusan Klinec2019-04-051-0/+5
|
* api/wallet: fix some wrong namespacestoffu2019-04-021-2/+2
|
* Added socks proxy (tor/i2pd/kovri) support to walletLee Clagett2019-03-251-2/+1
|
* Merge pull request #5270Riccardo Spagni2019-03-211-1/+3
|\ | | | | | | 5ade7281 Wallet API: multisig_tx_set passing bug fixed (naughtyfox)
| * Wallet API: multisig_tx_set passing bug fixednaughtyfox2019-03-121-1/+3
| |
* | Merge pull request #5211Riccardo Spagni2019-03-211-0/+81
|\ \ | | | | | | | | | | | | | | | c9b13fbb tests/trezor: HF9 and HF10 tests (Dusan Klinec) a1fd1d49 device/trezor: HF10 support added, wallet::API (Dusan Klinec) d74d26f2 crypto: hmac_keccak added (Dusan Klinec)
| * | device/trezor: HF10 support added, wallet::APIDusan Klinec2019-03-201-0/+81
| |/ | | | | | | | | | | | | | | | | | | | | | | - import only key images generated by cold signing process - wallet_api: trezor methods added - wallet: button request code added - const added to methods - wallet2::get_tx_key_device() tries to decrypt stored tx private keys using the device. - simplewallet supports get_tx_key and get_tx_proof on hw device using the get_tx_key feature - live refresh enables refresh with trezor i.e. computing key images on the fly. More convenient and efficient for users. - device: has_ki_live_refresh added - a thread is watching whether live refresh is being computed, if not for 30 seconds, it terminates the live refresh process - switches Trezor state
* / Update 2019 copyrightbinaryFate2019-03-051-1/+1
|/
* various: remove unused variablesmoneromooo-monero2019-03-041-1/+0
|
* epee: add SSL supportmoneromooo-monero2019-02-021-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | RPC connections now have optional tranparent SSL. An optional private key and certificate file can be passed, using the --{rpc,daemon}-ssl-private-key and --{rpc,daemon}-ssl-certificate options. Those have as argument a path to a PEM format private private key and certificate, respectively. If not given, a temporary self signed certificate will be used. SSL can be enabled or disabled using --{rpc}-ssl, which accepts autodetect (default), disabled or enabled. Access can be restricted to particular certificates using the --rpc-ssl-allowed-certificates, which takes a list of paths to PEM encoded certificates. This can allow a wallet to connect to only the daemon they think they're connected to, by forcing SSL and listing the paths to the known good certificates. To generate long term certificates: openssl genrsa -out /tmp/KEY 4096 openssl req -new -key /tmp/KEY -out /tmp/REQ openssl x509 -req -days 999999 -sha256 -in /tmp/REQ -signkey /tmp/KEY -out /tmp/CERT /tmp/KEY is the private key, and /tmp/CERT is the certificate, both in PEM format. /tmp/REQ can be removed. Adjust the last command to set expiration date, etc, as needed. It doesn't make a whole lot of sense for monero anyway, since most servers will run with one time temporary self signed certificates anyway. SSL support is transparent, so all communication is done on the existing ports, with SSL autodetection. This means you can start using an SSL daemon now, but you should not enforce SSL yet or nothing will talk to you.
* core, wallet: remember original text version of destination addressmoneromooo-monero2019-01-181-0/+2
|
* Merge pull request #5034Riccardo Spagni2019-01-161-0/+6
|\ | | | | | | 13785ec9 wallet api/device: set estimated restore height if none is provided (selsta)
| * wallet api/device: set estimated restore height if none is providedselsta2019-01-021-0/+6
| |
* | wallet_api: fix usage of LOG_ERRORmoneromooo-monero2019-01-071-10/+10
|/
* api/wallet: fix compile errors made in #4720stoffu2018-11-071-3/+3
|
* Merge pull request #4615Riccardo Spagni2018-10-261-2/+24
|\ | | | | | | a7960542 WalletAPI: rescanBlockchain, rescanBlockchainAsync (mmitkevich)
| * WalletAPI: rescanBlockchain, rescanBlockchainAsyncmmitkevich2018-10-161-2/+24
| |
* | Rename "blackball" for claritymoneromooo-monero2018-10-181-3/+3
| | | | | | | | Apparently some people seem to think it's a censorship list...
* | wallet2_api: fix generating new wallet in the GUImoneromooo-monero2018-10-161-1/+1
|/ | | | | It was creating a new wallet without a password first (this should be fixed), then not changing the password correctly
* Merge pull request #4036Riccardo Spagni2018-10-071-0/+14
|\ | | | | | | | | 9acf42d3 Multisig M/N functionality core tests added (naughtyfox) 9f3963e8 Arbitrary M/N multisig schemes: * support in wallet2 * support in monero-wallet-cli * support in monero-wallet-rpc * support in wallet api * support in monero-gen-trusted-multisig * unit tests for multisig wallets creation (naughtyfox)
| * Arbitrary M/N multisig schemes:naughtyfox2018-10-011-0/+14
| | | | | | | | | | | | | | | | | | * support in wallet2 * support in monero-wallet-cli * support in monero-wallet-rpc * support in wallet api * support in monero-gen-trusted-multisig * unit tests for multisig wallets creation
* | wallet2_api: fix build with C++14moneromooo-monero2018-10-041-7/+14
| |
* | wallet2_api: blackball/unblackball now take two parametersmoneromooo-monero2018-09-301-0/+22
| | | | | | | | amount and offset (instead of pubkey)
* | Merge pull request #4458Riccardo Spagni2018-09-291-2/+2
| | | | | | | | 921b0fb1 use default create_address_file argument (m2049r)
* | Merge pull request #4417Riccardo Spagni2018-09-291-16/+10
|/ | | | a21da905 Wallet: use unique_ptr for WalletImpl members (oneiric)