| Commit message (Collapse) | Author | Age | Files | Lines |
| ... | |
| | |
| |
| |
| | |
Also remove dust() from UnsignedTransactionImpl (already in PendingTransactionImpl)
|
| |/ |
|
| | |
|
| |\
| |
| |
| | |
4764929 use deterministic viewkey if not supplied (cryptochangements34)
|
| | | |
|
| |\ \
| | |
| | |
| | | |
4812c06 add .load() to make Boost 1.67 happy with its new is_integral check (Teutone)
|
| | | | |
|
| |\ \ \
| | | |
| | | |
| | | | |
8787fd8 WalletApi: publicMultisigSignerKey method (naughtyfox)
|
| | | | | |
|
| |\ \ \ \
| |_|_|/
|/| | |
| | | | |
b21bc00 Wallet: added methods to sign and verify arbitrary message with multisig public signer's key (libwallet & wallet api) (naughtyfox)
|
| | |/ /
| | |
| | |
| | | |
public signer's key (libwallet & wallet api)
|
| |\ \ \
| | | |
| | | |
| | | |
| | | | |
47fdb74 WalletApi: getMultisigInfo entry for gui wallets... (naughtyfox)
47fdb74 Refactored: work with wallet api statuses to make setting and getting operations atomic along with error strings (naughtyfox)
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
WalletApi: makeMultisig call introduced
WalletApi: finalizeMultisig call introduced
WalletApi: new calls exportMultisigImages and importMultisigImages
WalletApi: method to return multisig wallet creation state
WalletApi: create multisig transaction, sign multisig transaction, commit transaction and get multisig data are added
WalletApi: identation and style fixes
|
| | |/ /
| | |
| | |
| | |
| | |
| | | |
operations atomic along with error strings
WalletApi: added method statusWithErrorString to atomically retrieve error with error string
|
| | | | |
|
| | |/
|/| |
|
| |\ \
| | |
| | |
| | | |
f82c10dc WalletManagerImpl: reuse existing connection to daemon instead of reconnectivng every time (stoffu)
|
| | |/
| |
| |
| | |
reconnectivng every time
|
| |/ |
|
| |
|
|
|
| |
It can now take a txid (to display rings for all its inputs),
and will print rings in a format that set_ring understands
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
When #3303 was merged, a cyclic dependency chain was generated:
libdevice <- libcncrypto <- libringct <- libdevice
This was because libdevice needs access to a set of basic crypto operations
implemented in libringct such as scalarmultBase(), while libringct also needs
access to abstracted crypto operations implemented in libdevice such as
ecdhEncode(). To untangle this cyclic dependency chain, this patch splits libringct
into libringct_basic and libringct, where the basic crypto ops previously in
libringct are moved into libringct_basic. The cyclic dependency is now resolved
thanks to this separation:
libcncrypto <- libringct_basic <- libdevice <- libcryptonote_basic <- libringct
This eliminates the need for crypto_device.cpp and rctOps_device.cpp.
Also, many abstracted interfaces of hw::device such as encrypt_payment_id() and
get_subaddress_secret_key() were previously implemented in libcryptonote_basic
(cryptonote_format_utils.cpp) and were then called from hw::core::device_default,
which is odd because libdevice is supposed to be independent of libcryptonote_basic.
Therefore, those functions were moved to device_default.cpp.
|
| |\
| |
| |
| | |
1ff35fda Wallet API: make nettype non-defaulted to disambiguate from deprecated versions (and make libwallet_api_tests compilable) (stoffu)
|
| | |
| |
| |
| | |
versions (and make libwallet_api_tests compilable)
|
| |\ \
| | |
| | |
| | | |
e0cda74a wallet2_api: add info/error/warning entry points (moneromooo-monero)
|
| | | | |
|
| |\ \ \
| | | |
| | | |
| | | | |
55a65f32 Wallet API: corrected testnet/mainnet ordering (stoffu)
|
| | | |/
| |/| |
|
| |\ \ \
| |/ /
|/| |
| | | |
9a6be3da wallet_manager: fixed typo deviuce/device.hpp (stoffu)
|
| | | | |
|
| |\ \ \
| | | |
| | | |
| | | | |
43026822 Wallet2 + CLI wallet: UTF-8 support for filenames and paths under Windows (rbrunner7)
|
| | | |/
| |/| |
|
| |\ \ \
| | | |
| | | |
| | | | |
71bff546 wallet api: when restoring from EnglishOld, set language to English (stoffu)
|
| | |/ / |
|
| |\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
0e7ad2e2 Wallet API: generalize 'bool testnet' to 'NetworkType nettype' (stoffu)
af773211 Stagenet (stoffu)
cc9a0bee command_line: allow args to depend on more than one args (stoffu)
55f8d917 command_line::get_arg: remove 'required' for dependent args as they're always optional (stoffu)
450306a0 command line: allow has_arg to handle arg_descriptor<bool,false,true> #3318 (stoffu)
9f9e095a Use `genesis_tx` parameter in `generate_genesis_block`. #3261 (Jean Pierre Dudey)
|
| | | | | |
|
| | | |/
| |/| |
|
| |/ / |
|
| |/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The basic approach it to delegate all sensitive data (master key, secret
ephemeral key, key derivation, ....) and related operations to the device.
As device has low memory, it does not keep itself the values
(except for view/spend keys) but once computed there are encrypted (with AES
are equivalent) and return back to monero-wallet-cli. When they need to be
manipulated by the device, they are decrypted on receive.
Moreover, using the client for storing the value in encrypted form limits
the modification in the client code. Those values are transfered from one
C-structure to another one as previously.
The code modification has been done with the wishes to be open to any
other hardware wallet. To achieve that a C++ class hw::Device has been
introduced. Two initial implementations are provided: the "default", which
remaps all calls to initial Monero code, and the "Ledger", which delegates
all calls to Ledger device.
|
| |\
| |
| |
| | |
214d251c wallet: suggest the use of sweep_unmixable when not_enough_outs_to_mix is thrown (stoffu)
|
| | | |
|
| |\ \
| |/
|/|
| | |
a85dbb3f Fixed typos and wording tweaks (Maxithi)
|
| | | |
|
| | |
| |
| |
| | |
not full)
|
| |\ \
| | |
| | |
| | | |
a9cae0ab Wallet API: remove unused enum Priority from UnsignedTransaction (stoffu)
|
| | | | |
|
| |\ \ \
| | | |
| | | |
| | | | |
6fbb0b06 cmake: set API header install path to what Qt wallet expects (redfish)
|
| | | |/
| |/| |
|