mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-03 20:07:11 +01:00
ADD: scan legacy address and check balance ADD: can creat tx from legacy address OPS: new nodejs circleCI version REF
33 lines
673 B
JavaScript
33 lines
673 B
JavaScript
import { StackNavigator } from 'react-navigation';
|
|
|
|
import WalletsList from './wallets/list';
|
|
import AddWallet from './wallets/add';
|
|
import WalletDetails from './wallets/details';
|
|
import WalletExport from './wallets/export';
|
|
import scanQrWif from './wallets/scanQrWif';
|
|
|
|
const WalletsNavigator = StackNavigator(
|
|
{
|
|
WalletsList: {
|
|
screen: WalletsList,
|
|
},
|
|
AddWallet: {
|
|
screen: AddWallet,
|
|
},
|
|
ScanQrWif: {
|
|
screen: scanQrWif,
|
|
},
|
|
WalletDetails: {
|
|
screen: WalletDetails,
|
|
},
|
|
WalletExport: {
|
|
screen: WalletExport,
|
|
},
|
|
},
|
|
{
|
|
headerMode: 'none',
|
|
mode: 'modal',
|
|
},
|
|
);
|
|
|
|
export default WalletsNavigator;
|