Skip to content

Commit

Permalink
feat(tx-review): add confirm tx to send funnel
Browse files Browse the repository at this point in the history
  • Loading branch information
banklesss committed Sep 20, 2024
1 parent 11d8bb0 commit 7c43a30
Show file tree
Hide file tree
Showing 27 changed files with 1,245 additions and 798 deletions.
3 changes: 3 additions & 0 deletions apps/wallet-mobile/src/WalletNavigator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import {useLinksShowActionResult} from './features/Links/common/useLinksShowActi
import {MenuNavigator} from './features/Menu/Menu'
import {PortfolioNavigator} from './features/Portfolio/PortfolioNavigator'
import {CatalystNavigator} from './features/RegisterCatalyst/CatalystNavigator'
import {ReviewTxNavigator} from './features/ReviewTx/ReviewTxNavigator'
import {SearchProvider} from './features/Search/SearchContext'
import {SettingsScreenNavigator} from './features/Settings'
import {NetworkTag} from './features/Settings/ChangeNetwork/NetworkTag'
Expand Down Expand Up @@ -260,6 +261,8 @@ export const WalletNavigator = () => {

<Stack.Screen name="settings" options={{headerShown: false}} component={SettingsScreenNavigator} />

<Stack.Screen name="review-tx-routes" options={{headerShown: false}} component={ReviewTxNavigator} />

<Stack.Screen
name="voting-registration"
options={{headerShown: false}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ const useConnectorPromptRootKey = () => {
}, [promptRootKey])
}

const useSignTxWithHW = () => {
export const useSignTxWithHW = () => {
const {confirmHWConnection, closeModal} = useConfirmHWConnectionModal()
const {wallet, meta} = useSelectedWallet()

Expand Down

This file was deleted.

Loading

0 comments on commit 7c43a30

Please sign in to comment.