Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-04-05 | get_payments short ID | luigi1111 | 1 | -8/+17 | |
Add support for short/integrated/encrypted IDs to get_payments RPC | |||||
2015-12-31 | updated copyright year | Riccardo Spagni | 1 | -1/+1 | |
2015-12-30 | wallet: add a rescan_bc command and rescan_blockchain RPC | moneromooo-monero | 1 | -0/+23 | |
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. | |||||
2015-12-28 | wallet_rpc_server: exit async, so we reply to stop_wallet RPC | moneromooo-monero | 1 | -1/+10 | |
Reported by saddam | |||||
2015-12-28 | wallet: do not return error if incoming_transfers finds none | moneromooo-monero | 1 | -5/+0 | |
reported by saddam | |||||
2015-12-23 | added RPC wallet command getheight | Brendan Telzrow | 1 | -1/+16 | |
2015-12-05 | wallet: add a stop_wallet RPC call | moneromooo-monero | 1 | -0/+23 | |
2015-08-26 | wallet: use mutex protected random generation api | moneromooo-monero | 1 | -1/+1 | |
2015-08-24 | wallet: only return tx keys via RPC if requested | moneromooo-monero | 1 | -3/+6 | |
To get the tx keys returned via RPC, set the "get_tx_key" or "get_tx_keys" request field to true (defaults to false). | |||||
2015-08-19 | make tx keys available to the user | moneromooo-monero | 1 | -0/+3 | |
They are also stored in the cache file, to be retrieved using a new get_tx_key command. | |||||
2015-08-09 | encrypted payment ids are now 64 bit, instead of 256 bit | moneromooo-monero | 1 | -22/+36 | |
Pros: - smaller on the blockchain - shorter integrated addresses Cons: - less sparseness - less ability to embed actual information The boolean argument to encrypt payment ids is now gone from the RPC calls, since the decision is made based on the length of the payment id passed. | |||||
2015-08-09 | Encrypted payment IDs | moneromooo-monero | 1 | -4/+7 | |
A payment ID may be encrypted using the tx secret key and the receiver's public view key. The receiver can decrypt it with the tx public key and the receiver's secret view key. Using integrated addresses now cause the payment IDs to be encrypted. Payment IDs used manually are not encrypted by default, but can be encrypted using the new 'encrypt_payment_id' field in the transfer and transfer_split RPC calls. It is not possible to use an encrypted payment ID by specifying a manual simplewallet transfer/transfer_new command, though this is just a limitation due to input parsing. | |||||
2015-07-22 | wallet: new transaction construction algorithm | moneromooo-monero | 1 | -1/+5 | |
It should avoid a lot of the issues sending more than half the wallet's contents due to change. Actual output selection is still random. Changing this would improve the matching of transaction amounts to output sizes, but may have non obvious effects on blockchain analysis. Mapped to the new transfer_new command in simplewallet, and transfer uses the existing algorithm. To use in RPC, add "new_algorithm: true" in the transfer_split JSON command. It is not used in the transfer command. | |||||
2015-06-13 | Add RPC commands to manipulate integrated addresses | moneromooo-monero | 1 | -0/+64 | |
2015-06-12 | Integrated addresses (standard address plus payment id) | moneromooo-monero | 1 | -2/+16 | |
2015-05-30 | wallet_rpc_server: add a sweep_dust RPC command as well | moneromooo-monero | 1 | -0/+44 | |
2015-03-27 | Restore daemon interactive mode | Thomas Winget | 1 | -9/+9 | |
Daemon interactive mode is now working again. RPC mapped calls in daemon and wallet have both had connection_context removed as an argument as that argument was not being used anywhere. | |||||
2015-02-20 | added tx size to incoming_transfers RPC Call | Riccardo Spagni | 1 | -0/+2 | |
2015-01-15 | Merge pull request #215 | Riccardo Spagni | 1 | -0/+28 | |
24d500c Add a --restricted-rpc flag to simplewallet (moneromooo-monero) | |||||
2015-01-11 | Add a --restricted-rpc flag to simplewallet | moneromooo-monero | 1 | -0/+28 | |
It restricts RPC to a subset of "view only" commands. Kind of like a poor man's view key replacement. | |||||
2015-01-11 | Allow get_bulk_payments to return all payments regardless of payment ID | moneromooo-monero | 1 | -0/+20 | |
by giving an empty list of payment IDs. | |||||
2015-01-02 | year updated in license | Riccardo Spagni | 1 | -1/+1 | |
2014-11-01 | Exception handling while refreshing in rpc wallet (credits to QCN) | Sammy Libre | 1 | -1/+5 | |
2014-09-15 | Separate testnet address prefix | Zachary Michaels | 1 | -2/+2 | |
2014-08-05 | added view_key to wallet RPC command query_key | Jakob Lind | 1 | -0/+4 | |
2014-08-05 | query_key command in wallet rpc. | Jakob Lind | 1 | -0/+18 | |
only support mnemonic as key_type currently | |||||
2014-07-23 | Merge pull request #70 from fluffypony/master | Riccardo Spagni | 1 | -4/+29 | |
New readme, license changes | |||||
2014-07-23 | wallet rpc: actually populate the extra while assembling a transaction | Erik Kimmo | 1 | -1/+1 | |
2014-07-23 | License updated to BSD 3-clause | fluffypony | 1 | -4/+29 | |
2014-07-22 | Add get_bulk_payments rpc call | Zachary Michaels | 1 | -1/+47 | |
2014-06-30 | wallet RPC converted to use new transaction semantics | Thomas Winget | 1 | -11/+83 | |
wallet RPC now uses wallet2::create_transactions and wallet2::commit_tx instead of wallet2::transfer. This made it possible to add the RPC call /transfer_split, which will split transactions automatically if they are too large. The old call to /transfer will return an error stating to use /transfer_split if multiple transactions are needed to fulfill the request. | |||||
2014-06-30 | final changes to get transaction splitting building. needs testing. | Thomas Winget | 1 | -1/+2 | |
2014-06-02 | fixed conflict | paybee | 1 | -1/+43 | |
2014-06-02 | Added incoming_transfers RPC API method | paybee | 1 | -14/+1 | |
2014-06-02 | Added 'payment_id' optional argument to 'transfer' wallet RPC method | Neozaru | 1 | -1/+28 | |
2014-05-27 | Added incoming_transfers RPC API method | paybee | 1 | -0/+64 | |
2014-05-25 | 'getaddress' wallet-rpc command | Neozaru | 1 | -0/+15 | |
2014-05-03 | initial [broken] update | mydesktop | 1 | -6/+43 | |
2014-04-02 | json rpc for wallet and bugfix | Antonio Juarez | 1 | -0/+132 | |