-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [nip-60] implement create wallet hook * [nip-60] updaate get wallet hook * [nip-60] add create token event hook * [nip-60] add spending history event hook * [nip-61] add nutzap event hooks * undo delete old hooks * use NDKPrivateKeySigner * [integration] create wallet event * [integration] create token event * [nip60] fix create token event * [nip60] fix create spending event * [integration] create spending event * [nip60] fix create wallet event * [nip60] add get token events by filters * [nip60] add [[NIP-09]]-delete token events * [integration] nostr nip60 on pay lightning invoice * [integration] nostr nip60 on generate ecash * add keys validations for nostr * [update] cashu-ts to latest * add share gift link functionality * add receive ecash by link screen * fix gift link url * hide scroll indicators * upgrade to cashu v2 * fix cashu screen styles
- Loading branch information
1 parent
5feb9e5
commit cf64a1e
Showing
9 changed files
with
109 additions
and
169 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
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,12 +1,7 @@ | ||
import React from 'react'; | ||
import {ScrollView} from 'react-native'; | ||
|
||
import {CashuView} from '../../modules/CashuWallet'; | ||
import {CashuWalletScreenProps} from '../../types'; | ||
export const CashuScreen: React.FC<CashuWalletScreenProps> = () => { | ||
return ( | ||
<ScrollView showsHorizontalScrollIndicator={false} showsVerticalScrollIndicator={false}> | ||
<CashuView></CashuView> | ||
</ScrollView> | ||
); | ||
return <CashuView></CashuView>; | ||
}; |
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
Oops, something went wrong.