aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api/wallet.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge pull request #3094Riccardo Spagni2018-02-161-2/+2
|\ \ | |/ |/| | | a85dbb3f Fixed typos and wording tweaks (Maxithi)
| * Fixed typos and wording tweaksMaxithi2018-01-291-2/+2
| |
* | wallet: automatically use low priority if safe (no backlog & recent blocks ↵stoffu2018-01-281-2/+4
| | | | | | | | not full)
* | Merge pull request #3104Riccardo Spagni2018-01-271-3/+18
|\ \ | | | | | | | | | 939629e8 Wallet API: all recover options with password (m2049r)
| * | Wallet API: all recover options with passwordm2049r2018-01-171-3/+18
| |/ | | | | | | also renamed memo => mnemonic in api method parms
* | Update 2018 copyrightxmr-eric2018-01-261-1/+1
| |
* | Reserve proofstoffu2018-01-101-0/+49
|/
* Merge pull request #2368Riccardo Spagni2017-11-251-0/+46
|\ | | | | | | b0b7e0f0 Spend proof without txkey (stoffu)
| * Spend proof without txkeystoffu2017-11-211-0/+46
| |
* | fix for tx proof: use exception instead of error_str when signature gen failedstoffu2017-11-211-2/+2
|/
* Tx proof (revised):stoffu2017-11-181-8/+132
| | | | | | | | | - 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
* Merge pull request #2546Riccardo Spagni2017-11-061-2/+20
|\ | | | | | | b2d416f2 Distinguish "not enough money" and "not enough unlocked money" (binaryFate)
| * Distinguish "not enough money" and "not enough unlocked money"binaryFate2017-10-161-2/+20
| | | | | | | | Fix #1530
* | Wallet API: default values for account and subaddr indexJaquee2017-10-221-2/+1
|/
* wallet2+API: use separate callbacks for lightwalletsJaquee2017-10-151-0/+32
|
* walletAPI: lightwallet exceptionsJaquee2017-10-151-2/+12
|
* walletAPI: add lightwallet login() and importWalletRequest()Jaquee2017-10-151-0/+32
|
* walletAPI: init() lightwallet and SSL supportJaquee2017-10-151-4/+6
|
* Subaddresseskenshi842017-10-071-59/+119
|
* store is optional during close and defaults to true; except during descructionm2049r2017-09-231-9/+11
|
* WalletAPI: only allow trusted daemon when importing key imagesJaquee2017-08-211-0/+5
|
* WalletAPI: copy wallet data when creating a view only walletJaquee2017-08-211-0/+27
|
* WalletAPI: add getDefaultDataDir()Jaquee2017-08-091-0/+6
|
* change mixin to ring size in user visible placesmoneromooo-monero2017-08-071-4/+4
|
* fix wallet callback signaturesm2049r2017-08-021-4/+4
|
* wallet_api: fix missing transaction parameter in callbackmoneromooo-monero2017-06-131-1/+1
| | | | | | It was unused, so harmless Reported by erikd on IRC
* Wallet API: Set seed lang when recovering form keysJaquee2017-05-231-1/+2
|
* Merge pull request #2012Riccardo Spagni2017-05-051-1/+16
|\ | | | | | | bbf4c210 Wallet API: add spend/view key getters (Jaquee)
| * Wallet API: add spend/view key gettersJaquee2017-05-021-1/+16
| |
* | wallet: add sweep_below functionmoneromooo-monero2017-04-241-1/+1
|/ | | | | | | It sweeps all outputs below the given threshold This is available via the existing sweep_all RPC, by setting amount_threshold the desired amount (in atomic units)
* Wallet API: add hard fork info functionsJaquee2017-03-241-0/+12
|
* use const references in catch blocksmoneromooo-monero2017-03-181-1/+1
|
* wallet api: fix parameters in wallet2callbackImplJaquee2017-03-031-7/+7
|
* Wallet API: Add support for daemon rpc loginJaquee2017-02-251-2/+4
|
* update copyright year, fix occasional lack of newline at line endRiccardo Spagni2017-02-211-1/+1
|
* Merge pull request #1747Riccardo Spagni2017-02-211-0/+5
|\ | | | | | | 26bd7aac wallet_api: fix logging init via api (moneromooo-monero)
| * wallet_api: fix logging init via apimoneromooo-monero2017-02-181-0/+5
| |
* | simplewallet: validate hex input sizemoneromooo-monero2017-02-141-3/+3
|/
* Merge pull request #1689Riccardo Spagni2017-02-111-1/+1
|\ | | | | | | ce7fcbb4 Add server auth to monerod, and client auth to wallet-cli and wallet-rpc (Lee Clagett)
| * Add server auth to monerod, and client auth to wallet-cli and wallet-rpcLee Clagett2017-02-061-1/+1
| |
* | Wallet API: Easylogger wrapper for guiJaquee2017-02-051-0/+6
| |
* | GUI: Improved refresh performanceJaquee2017-02-041-7/+10
| |
* | wallet api: Remove initAsync() and don't start refresh automatically on initJaquee2017-02-041-14/+1
|/
* Merge pull request #1629Riccardo Spagni2017-02-021-6/+6
|\ | | | | | | c02e1cb9 Updates to epee HTTP client code - http_simple_client now uses std::chrono for timeouts - http_simple_client accepts timeouts per connect / invoke call - shortened names of epee http invoke functions - invoke command functions only take relative path, connection is not automatically performed (Lee Clagett)
| * Updates to epee HTTP client codeLee Clagett2017-01-251-6/+6
| | | | | | | | | | | | | | | | - http_simple_client now uses std::chrono for timeouts - http_simple_client accepts timeouts per connect / invoke call - shortened names of epee http invoke functions - invoke command functions only take relative path, connection is not automatically performed
* | Wallet API: Create wallet from keysJaquee2017-01-301-0/+130
|/
* wallet: print exception message on get_random_outs_errormoneromooo-monero2017-01-201-2/+2
|
* Merge pull request #1573Riccardo Spagni2017-01-151-2/+4
|\ | | | | | | dea53962 fix timeout in check_connection (Jaquee)
| * fix timeout in check_connectionJaquee2017-01-141-2/+4
| |
* | Merge pull request #1564Riccardo Spagni2017-01-151-6/+49
|\ \ | | | | | | | | | 1d317981 Wallet API: add key image import/export functions (Jaquee)