From eb9e201c550b2757e405a318ad3dd5f71d892c80 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Fri, 7 Jul 2023 17:01:16 +1000 Subject: [PATCH] readme: Added info on the wallet --- FireWalletLite/MainForm.cs | 2 +- README.md | 33 ++++++++++++++++++++++++++++----- 2 files changed, 29 insertions(+), 6 deletions(-) diff --git a/FireWalletLite/MainForm.cs b/FireWalletLite/MainForm.cs index 6f961ee..944cb5c 100644 --- a/FireWalletLite/MainForm.cs +++ b/FireWalletLite/MainForm.cs @@ -481,7 +481,7 @@ namespace FireWalletLite // Some UI stuff groupBoxAccount.Top = statusStripMain.Height + 10; groupBoxDomains.Top = statusStripMain.Height + 10; - groupBoxDomains.Height = this.Height - groupBoxDomains.Top - 20; + groupBoxDomains.Height = this.Height - groupBoxDomains.Top - 40; buttonReceive.Top = statusStripMain.Height + 10; buttonSend.Top = buttonReceive.Top + buttonReceive.Height + 10; buttonRenew.Top = groupBoxAccount.Top + groupBoxAccount.Height + 10; diff --git a/README.md b/README.md index 390cac7..79615a0 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,31 @@ # FireWalletLite -A super lite wallet for Handshake. +A lite wallet for Handshake. This is aimed to be mainly used for holding HNS and domains without sending anything. -Features: -- Receive HNS -- Basic domain overview -- Renew domains \ No newline at end of file +## Features +First run flow: +- Create a default wallet (`Primary`) +- Show Seed phrase and ask user to write it down +- Require user to encrypt wallet with a password +- Login with password and show main page + +Login only requires password as this wallet is made to only use the `primary` wallet. + + +Main Page includes +- Balance +- Domain Count +- Domain List +- Renew expiring domains button +- Recieve HNS button (opens a window with address, copy button, and QR code) +- Send HNS button (opens a window with address, amount, and send button) + +This wallet does not (and will never) support +- Creating new wallets +- Auctions (bidding, revealing, etc) +- Multisig wallets +- Hardware wallets +- DNS management (a simple DNS managment page might be added in the future) + + +If you want to use a wallet with more features, please use [Fire Wallet](https://firewallet.au) or [Bob Wallet](https://bobwallet.io) instead. \ No newline at end of file