Wallet.Net: Difference between revisions

From Bitcoin Wiki
Jump to navigation Jump to search
(Created page with "=Overview= This is just a simply summary page for now. I built Wallet.Net because I had a specific set of features in mind for a frontend that I wanted. This is my attempt at fu...")
 
(Reformat.)
Line 1: Line 1:
=Overview=
A Secure Remote JSON-RPC BitCoin Wallet Management App Written in .Net.
This is just a simply summary page for now.


I built Wallet.Net because I had a specific set of features in mind for a frontend that I wanted. This is my attempt at fulfilling those requirements.
==Features==
* Full Featured GUI
* Ability to view/sort/filter transactions
* A full address book capability
* Ability to use the "Accounts" feature of bitcoin
* Sending Money
** Using memos/notes
** Using address book
** With variable optional fee
* A full "RPC Shell" as I call it, providing a commandline like interface to the bitcoin JSON-RPC API.
*Built-in SSH Functionality (not requiring outside SSH client or certificate app). That provides the following: (note SSH is disabled currently due to some bugs)
** Secure Encrypted Tunnel to the remote bitcoin host
** Uses an already trusted service (SSH), and the associated daemon, which are typically very secure.
** Limits potential attack vectors since on the bitcoin host, only SSH need be exposed. Making it virtually invisible (bitcoin is undetectable) to a potential attacker.
** Your authentication through the tunnel is done over the encrypted channel.
 
==External Links==
* [https://github.com/Glasswalker/Wallet.Net] project on GitHub
* [https://github.com/Glasswalker/Wallet.Net/archives/master Download Packages] (zip containing windows installer)


It's still very early in development, and so I would appreciate any help anyone can offer with testing.
=Features=
*Full Featured GUI
*Ability to view/sort/filter transactions
*A full address book capability
*Ability to use the "Accounts" feature of bitcoin
*Sending Money
**Using memos/notes
**Using address book
**With variable optional fee
*A full "RPC Shell" as I call it, providing a commandline like interface to the bitcoin JSON-RPC API.
*Built-in SSH Functionality (not requiring outside SSH client or certificate app). That provides the following: (note SSH is disabled currently due to some bugs)
**Secure Encrypted Tunnel to the remote bitcoin host
**Uses an already trusted service (SSH), and the associated daemon, which are typically very secure.
**Limits potential attack vectors since on the bitcoin host, only SSH need be exposed. Making it virtually invisible (bitcoin is undetectable) to a potential attacker.
**Your authentication through the tunnel is done over the encrypted channel.
=Links=
*[https://github.com/Glasswalker/Wallet.Net] - Git Hub Page
*[https://github.com/downloads/Glasswalker/Wallet.Net/Wallet_Net_Release_0.1_07022011.zip] - Current Beta Release (zip containing windows installer)
[[Category:User Interfaces]]
[[Category:User Interfaces]]
[[Category:Frontends]]
[[Category:Frontends]]

Revision as of 23:56, 2 July 2011

A Secure Remote JSON-RPC BitCoin Wallet Management App Written in .Net.

Features

  • Full Featured GUI
  • Ability to view/sort/filter transactions
  • A full address book capability
  • Ability to use the "Accounts" feature of bitcoin
  • Sending Money
    • Using memos/notes
    • Using address book
    • With variable optional fee
  • A full "RPC Shell" as I call it, providing a commandline like interface to the bitcoin JSON-RPC API.
  • Built-in SSH Functionality (not requiring outside SSH client or certificate app). That provides the following: (note SSH is disabled currently due to some bugs)
    • Secure Encrypted Tunnel to the remote bitcoin host
    • Uses an already trusted service (SSH), and the associated daemon, which are typically very secure.
    • Limits potential attack vectors since on the bitcoin host, only SSH need be exposed. Making it virtually invisible (bitcoin is undetectable) to a potential attacker.
    • Your authentication through the tunnel is done over the encrypted channel.

External Links