We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c986188 commit 7603649Copy full SHA for 7603649
example/src/App.tsx
@@ -1,12 +1,12 @@
1
import { Text, View, StyleSheet } from 'react-native';
2
-import { multiply } from 'nostr-sdk-react-native';
+import { Keys } from 'nostr-sdk-react-native';
3
4
-const result = multiply(3, 7);
+const keys = Keys.generate();
5
6
export default function App() {
7
return (
8
<View style={styles.container}>
9
- <Text>Result: {result}</Text>
+ <Text>Result: {keys.publicKey().toBech32()}</Text>
10
</View>
11
);
12
}
0 commit comments