forked from cerc-io/laconic-wallet
* Add the creatHDWallet function * Make review changes * Add signMessage and signEthMessage functions * Add signCosmosMessage function * Add resetWallet function * Add resetWallet function * Integrate functions with UI * Add Alerts to react component * Make review changes * Add comment in utils file * Remove lowerCase conversion in signCosmosmessage function --------- Co-authored-by: IshaVenikar <ishavenikar7@gmail.com>
17 lines
361 B
JavaScript
17 lines
361 B
JavaScript
import 'text-encoding-polyfill';
|
|
import { AppRegistry } from 'react-native';
|
|
import { PaperProvider } from 'react-native-paper';
|
|
|
|
import App from './App';
|
|
import { name as appName } from './app.json';
|
|
|
|
export default function Main() {
|
|
return (
|
|
<PaperProvider>
|
|
<App />
|
|
</PaperProvider>
|
|
);
|
|
}
|
|
|
|
AppRegistry.registerComponent(appName, () => Main);
|