-
Notifications
You must be signed in to change notification settings - Fork 33
Add Wallet flow. Refine project Invest (stages). #233
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
public string Address { get; init; } | ||
public decimal FeeRate { get; set; } | ||
public decimal TotalFee { get; set; } | ||
public decimal Amount { get; init; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One thing that we have discuss earlier is that perhaps we should always represent amounts as sats and never as Bitcoin (decimal) only when we display we make the conversion
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes! It that that is quite reasonable. Sats is a coherent way to hold amounts. In the GUI, we could later convert it to our needs.
Wallet Section
Invest Section (Browse project)
Misc