summaryrefslogtreecommitdiff
path: root/src/wallet/api
Commit message (Collapse)AuthorAgeFilesLines
* 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-072-0/+12
|
* wallet: API changes to enable passphrase entryDusan Klinec2019-04-054-10/+37
|
* 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-215-1/+149
|\ \ | | | | | | | | | | | | | | | 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-205-1/+149
| |/ | | | | | | | | | | | | | | | | | | | | | | - 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-0521-21/+21
|/
* 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.
* Merge pull request #5074Riccardo Spagni2019-01-281-1/+1
|\ | | | | | | b8c5f550 wallet api: don't truncate address in subaddress_account (selsta)
| * wallet api: don't truncate address in subaddress_accountselsta2019-01-151-1/+1
| | | | | | | | Same behaviour as subaddress.cpp now.
* | core, wallet: remember original text version of destination addressmoneromooo-monero2019-01-181-0/+2
| |
* | Merge pull request #5034Riccardo Spagni2019-01-164-0/+15
|\ \ | |/ |/| | | 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-024-0/+15
| |
* | 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-263-2/+38
|\ | | | | | | a7960542 WalletAPI: rescanBlockchain, rescanBlockchainAsync (mmitkevich)
| * WalletAPI: rescanBlockchain, rescanBlockchainAsyncmmitkevich2018-10-163-2/+38
| |
* | 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-073-0/+21
|\ | | | | | | | | 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-013-0/+21
| | | | | | | | | | | | | | | | | | * 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-303-2/+28
| | | | | | | | 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-292-22/+16
| | | | | | | | a21da905 Wallet: use unique_ptr for WalletImpl members (oneiric)
* | Merge pull request #4409Riccardo Spagni2018-09-291-1/+5
|/ | | | 7a056f44 WalletAPI: multisigSignData bug fixed (naughtyfox)
* wallet2_api: fix for latest code changesmoneromooo-monero2018-09-223-3/+3
|
* query backing devicem2049r2018-09-195-0/+37
|
* Merge pull request #4387Riccardo Spagni2018-09-183-18/+38
|\ | | | | | | 6e6ffc06 wallet2_api: bring up to latest wallet api (moneromooo-monero)
| * wallet2_api: bring up to latest wallet apimoneromooo-monero2018-09-163-18/+38
| |
* | Merge pull request #4361Riccardo Spagni2018-09-183-0/+20
|\ \ | | | | | | | | | 26971d46 WalletAPI: 'hasMultisigPartialKeyImages' function added (naughtyfox)
| * | WalletAPI: 'hasMultisigPartialKeyImages' function addednaughtyfox2018-09-103-0/+20
| | |
* | | api/wallet: properly disable key encryptionstoffu2018-09-171-2/+2
| |/ |/|
* | remove obsolete daemon selection of fake outs and old tx constructionmoneromooo-monero2018-09-141-4/+4
| |
* | v8: per byte fee, pad bulletproofs, fixed 11 ring sizemoneromooo-monero2018-09-111-0/+1
|/
* wallet: store trusted-daemon flag in wallet2stoffu2018-08-232-7/+5
|
* store secret keys encrypted where possiblemoneromooo-monero2018-08-161-1/+2
| | | | | | | | | The secret spend key is kept encrypted in memory, and decrypted on the fly when needed. Both spend and view secret keys are kept encrypted in a JSON field in the keys file. This avoids leaving the keys in memory due to being manipulated by the JSON I/O API.
* wallet: wipe seed from memory where appropriatemoneromooo-monero2018-08-161-2/+2
|
* wallet2: make --restricted-rpc available for wallet RPC onlystoffu2018-08-163-8/+8
|
* Merge pull request #4136luigi11112018-08-151-0/+3
|\ | | | | | | 4307489 wallet: disable core dumps on startup in release mode (moneromooo-monero)
| * wallet: disable core dumps on startup in release modemoneromooo-monero2018-08-121-0/+3
| |
* | wallet: allow adjusting number of rounds for the key derivation functionstoffu2018-08-085-27/+41
| |
* | wallet2: unlock keys file before calling verify_password (needed for Windows)stoffu2018-07-033-0/+27
|/ | | | | Also added notes to WalletManager::verifyWalletPassword (which afaik seems unused by anyone at the moment) regarding the need to unlock the keys file beforehand.
* api/wallet: add missing arg to wallet2::refresh()stoffu2018-06-281-1/+1
|
* Merge pull request #4000luigi11112018-06-277-163/+162
|\ | | | | | | 4510f41 Wallet API: add some missing override keyword (stoffu)
| * Wallet API: add some missing override keywordstoffu2018-06-287-163/+162
| | | | | | | | Also remove dust() from UnsignedTransactionImpl (already in PendingTransactionImpl)