forked from LN-Zap/zap-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ui): add sign message capability
resolves LN-Zap#2023
- Loading branch information
1 parent
32d8b4f
commit a8f6fc7
Showing
4 changed files
with
30 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
export const PANE_NODEINFO = 'nodeinfo' | ||
export const PANE_LNDCONNECT = 'lndconnect' | ||
export const PANE_SIGNMESSAGE = 'signmessage' | ||
export const DEFAULT_PANE = PANE_NODEINFO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { connect } from 'react-redux' | ||
import { showNotification } from 'reducers/notification' | ||
import PaneSignMessage from 'components/Profile/PaneSignMessage' | ||
|
||
const mapDispatchToProps = { | ||
showNotification, | ||
} | ||
|
||
export default connect( | ||
null, | ||
mapDispatchToProps | ||
)(PaneSignMessage) |