wowlet/src/libwalletqt
dsc 8968a8cbce This commit introduces a websocket server via the `--daemon` argument.
```
./wowlet --daemon 127.0.0.1:1234 --daemon-password "sekrit"
```

The wallet will start in the background and expose a websocket port that you can connect to using a websocket client. This way, you will be able to control the wallet via websockets. The commands are defined in wsserver.cpp, in the `processBinaryMessage()` function.

- `openWallet` - opens a wallet by path/password.
- `closeWallet` - close current wallet.
- `addressList` - Returns a list of receive addresses.
- `sendTransaction` - Creates and sends a transaction.
- `createWallet` - Create a wallet by path/password.
- `transactionHistory` - Returns the complete list of transactions
- `addressBook` - Returns the complete list of address book entries.

Messages sent back and forth between the server and client are JSON. There is a Python example client available over at https://git.wownero.com/wownero/wowlet-ws-client
2021-03-28 21:50:55 +02:00
..
AddressBook.cpp This commit introduces a websocket server via the `--daemon` argument. 2021-03-28 21:50:55 +02:00
AddressBook.h This commit introduces a websocket server via the `--daemon` argument. 2021-03-28 21:50:55 +02:00
AddressBookInfo.cpp Update copyright for 2021 2020-12-26 20:56:06 +01:00
AddressBookInfo.h Update copyright for 2021 2020-12-26 20:56:06 +01:00
CMakeLists.txt Feather, a free Monero desktop wallet 2020-10-08 04:31:22 +02:00
Coins.cpp Coins: improve freeze/thaw performance and fix indexing bug 2021-02-04 00:14:20 +01:00
Coins.h Update copyright for 2021 2020-12-26 20:56:06 +01:00
CoinsInfo.cpp Misc code cleanup 2020-12-28 05:39:20 +01:00
CoinsInfo.h Update copyright for 2021 2020-12-26 20:56:06 +01:00
ConstructionInfo.cpp Update copyright for 2021 2020-12-26 20:56:06 +01:00
ConstructionInfo.h Update copyright for 2021 2020-12-26 20:56:06 +01:00
Input.h Update copyright for 2021 2020-12-26 20:56:06 +01:00
PassphraseHelper.cpp Misc code cleanup 2020-12-28 05:39:20 +01:00
PassphraseHelper.h Update copyright for 2021 2020-12-26 20:56:06 +01:00
PendingTransaction.cpp Update copyright for 2021 2020-12-26 20:56:06 +01:00
PendingTransaction.h Update copyright for 2021 2020-12-26 20:56:06 +01:00
PendingTransactionInfo.cpp Misc code cleanup 2020-12-28 05:39:20 +01:00
PendingTransactionInfo.h Update copyright for 2021 2020-12-26 20:56:06 +01:00
Ring.h Update copyright for 2021 2020-12-26 20:56:06 +01:00
Subaddress.cpp Update copyright for 2021 2020-12-26 20:56:06 +01:00
Subaddress.h Update copyright for 2021 2020-12-26 20:56:06 +01:00
SubaddressAccount.cpp Update copyright for 2021 2020-12-26 20:56:06 +01:00
SubaddressAccount.h Update copyright for 2021 2020-12-26 20:56:06 +01:00
TransactionHistory.cpp This commit introduces a websocket server via the `--daemon` argument. 2021-03-28 21:50:55 +02:00
TransactionHistory.h This commit introduces a websocket server via the `--daemon` argument. 2021-03-28 21:50:55 +02:00
TransactionInfo.cpp Wownero 2021-02-18 12:20:16 +03:00
TransactionInfo.h TxInfoDialog: improve UI 2021-01-29 16:19:59 +01:00
Transfer.h TxInfoDialog: improve UI 2021-01-29 16:19:59 +01:00
UnsignedTransaction.cpp Misc code cleanup 2020-12-28 05:39:20 +01:00
UnsignedTransaction.h Update copyright for 2021 2020-12-26 20:56:06 +01:00
Wallet.cpp This commit introduces a websocket server via the `--daemon` argument. 2021-03-28 21:50:55 +02:00
Wallet.h This commit introduces a websocket server via the `--daemon` argument. 2021-03-28 21:50:55 +02:00
WalletListenerImpl.cpp Update copyright for 2021 2020-12-26 20:56:06 +01:00
WalletListenerImpl.h Update copyright for 2021 2020-12-26 20:56:06 +01:00
WalletManager.cpp Send: don't lose precision 2020-12-31 04:26:03 +01:00
WalletManager.h Send: don't lose precision 2020-12-31 04:26:03 +01:00