aboutsummaryrefslogtreecommitdiff
path: root/utils/python-rpc/framework/wallet.py (follow)
AgeCommit message (Collapse)AuthorFilesLines
2022-03-04Copyright: Update to 2022mj-xmr1-1/+2
2022-02-22multisig key exchange update and refactorkoe1-4/+2
2021-06-11python-rpc: add missing python api for new freeze/thaw/frozen RPCmoneromooo-monero1-0/+33
2021-03-20python-rpc: add function for new scan_tx RPCmoneromooo-monero1-0/+11
2020-08-28wallet: allow signing a message with spend or view keymoneromooo-monero1-1/+2
2020-02-06Merge pull request #6069Alexander Blair1-1/+3
d64e5aa7 wallet: allow message sign/verify for subaddresses (moneromooo-monero)
2020-01-16Merge pull request #6144Alexander Blair1-3/+4
0e0351c4 wallet_rpc_server: add count parameter to create_address (Matt Smith)
2020-01-11Merge pull request #6105Alexander Blair1-0/+14
0de8a0d3 wallet_rpc_server: new estimate_tx_size_and_weight RPC (moneromooo-monero)
2019-12-31wallet: allow message sign/verify for subaddressesmoneromooo-monero1-1/+3
2019-11-22wallet_rpc_server: add count parameter to create_addressMatt Smith1-3/+4
2019-11-06wallet_rpc_server: new estimate_tx_size_and_weight RPCmoneromooo-monero1-0/+14
2019-10-29python-rpc: add missing strict_balances parameter for get_accountsmoneromooo-monero1-1/+2
2019-09-17functional_tests: check for RPC methods which aren't exposedmoneromooo-monero1-0/+4
2019-09-17functional_tests: add tx_notes testsmoneromooo-monero1-0/+23
2019-09-17functional_tests: add wallet attributes testmoneromooo-monero1-0/+23
2019-09-17functional_tests: add rescan_spent/rescan_blockchain testsmoneromooo-monero1-0/+21
2019-09-17functional_tests: add monero: URI testsmoneromooo-monero1-0/+26
2019-09-17wallet: add edit_address_book RPCmoneromooo-monero1-0/+17
2019-09-17functional_tests: add address book testsmoneromooo-monero1-0/+35
2019-09-17functional_tests: add wallet password change, store and tag testsmoneromooo-monero1-0/+84
2019-09-17functional_tests: add spend proof testsmoneromooo-monero1-0/+25
2019-09-17functional_tests: add test for mining via walletmoneromooo-monero1-0/+23
2019-09-17functional_tests: add multisig state testsmoneromooo-monero1-0/+12
2019-09-17functional_tests: add get_transfers testmoneromooo-monero1-0/+11
2019-09-17functional_tests: add missing sweep_dust parameters, and test itmoneromooo-monero1-1/+7
though not a very good test, but we don't have dust handy
2019-09-17functional_tests: move extraneous stuff out of the frameworkmoneromooo-monero1-12/+0
2019-09-05wallet: fix mismatch between two concepts of "balance"moneromooo-monero1-1/+2
One considers the blockchain, while the other considers the blockchain and some recent actions, such as a recently created transaction which spend some outputs, but isn't yet mined. Typically, the "balance" command wants the latter, to reflect the recent action, but things like proving ownership wants the former. This fixes a crash in get_reserve_proof, where a preliminary check and the main code used two concepts of "balance".
2019-07-29functional_tests: add validate_address testsmoneromooo-monero1-0/+13
2019-04-16wallet_rpc_server: add set_log_level/set_log_categoriesmoneromooo-monero1-0/+22
2019-04-16Merge pull request #5446Riccardo Spagni1-0/+21
7d79222f daemon: remove debug info (moneromooo-monero) 8fec0f98 functional_tests: add sweep_single test (moneromooo-monero) 9880d61b wallet_rpc_server: remove unused code (moneromooo-monero) 8a61b33d rpc: omit irrelevant fields for pool txes in gettransactions (moneromooo-monero) 56508524 rpc: add relayed in get_transaction output (moneromooo-monero) 82e510f1 rpc: set default log category in core_rpc_server.h (moneromooo-monero)
2019-04-15functional_tests: add sweep_single testmoneromooo-monero1-0/+21
2019-04-12wallet_rpc_server: fix inconsistent wallet caches on reloadmoneromooo-monero1-4/+20
Loading the same wallet as the currently loaded one would autosave the current state after loading it, leading to some kind of rollback effect. We now save before loading to avoid this. If loading fails, it means the current wallet will be saved (or maybe not, depending on where the failure occurs: most of the sanity checks occur before saving). There is a new autosave_current flag to open/restore calls so the (enabled by default) autosave can be skipped.
2019-04-11console.py: can now connect to several daemons/walletsmoneromooo-monero1-0/+2
Also throw exceptions instead of print+exit, since that makes the error print last, below the python stack trace, where it's much less easy to miss it.
2019-04-11functional_tests: cold signing key images/outputs import/exportmoneromooo-monero1-0/+44
2019-04-11functional_tests: add double spend detection testsmoneromooo-monero1-2/+14
2019-04-11functional_tests: add wallet creation language testsmoneromooo-monero1-4/+14
2019-04-11functional_tests: add more wallet testsmoneromooo-monero1-0/+31
get_transfer_by_txid, get_height, open/close
2019-04-11functional_tests: add describe_transfer testsmoneromooo-monero1-1/+2
2019-03-23python-rpc: add console.pymoneromooo-monero1-0/+8
It allows one to connect to a running daemon or wallet, and use its RPC API from python. Usage: python -i console.py <port> It will detect whether it's talking to a daemon or wallet and initialize itself accordingly.
2019-03-22functional_tests: move RPC API to utils, it is not test specificmoneromooo-monero1-0/+592