-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: Enable event tracking * update event tracking to use DefinePlugin * refactor: Remove interface I prefixes, enable eslint rule Co-authored-by: Hank Stoever <hstove@gmail.com>
- Loading branch information
1 parent
6a34531
commit aa466c5
Showing
21 changed files
with
426 additions
and
62 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
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
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
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,15 +1,15 @@ | ||
import { IAppState } from '..'; | ||
import { AppState } from '..'; | ||
|
||
export const selectCurrentScreen = (state: IAppState) => state.onboarding.screen; | ||
export const selectCurrentScreen = (state: AppState) => state.onboarding.screen; | ||
|
||
export const selectSecretKey = (state: IAppState) => state.onboarding.secretKey; | ||
export const selectSecretKey = (state: AppState) => state.onboarding.secretKey; | ||
|
||
export const selectDecodedAuthRequest = (state: IAppState) => state.onboarding.decodedAuthRequest; | ||
export const selectDecodedAuthRequest = (state: AppState) => state.onboarding.decodedAuthRequest; | ||
|
||
export const selectAuthRequest = (state: IAppState) => state.onboarding.authRequest; | ||
export const selectAuthRequest = (state: AppState) => state.onboarding.authRequest; | ||
|
||
export const selectAppName = (state: IAppState) => state.onboarding.appName; | ||
export const selectAppName = (state: AppState) => state.onboarding.appName; | ||
|
||
export const selectAppIcon = (state: IAppState) => state.onboarding.appIcon; | ||
export const selectAppIcon = (state: AppState) => state.onboarding.appIcon; | ||
|
||
export const selectMagicRecoveryCode = (state: IAppState) => state.onboarding.magicRecoveryCode; | ||
export const selectMagicRecoveryCode = (state: AppState) => state.onboarding.magicRecoveryCode; |
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,5 +1,5 @@ | ||
import { IAppState } from '..'; | ||
import { AppState } from '..'; | ||
|
||
export const selectAuthRequest = (state: IAppState) => state.permissions.authRequest; | ||
export const selectAuthRequest = (state: AppState) => state.permissions.authRequest; | ||
|
||
export const selectDecodedAuthRequest = (state: IAppState) => state.permissions.decodedAuthRequest; | ||
export const selectDecodedAuthRequest = (state: AppState) => state.permissions.decodedAuthRequest; |
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,9 +1,9 @@ | ||
import { IAppState } from '..'; | ||
import { AppState } from '..'; | ||
|
||
export const selectCurrentWallet = (state: IAppState) => { | ||
export const selectCurrentWallet = (state: AppState) => { | ||
return state.wallet.currentWallet; | ||
}; | ||
|
||
export const selectSeed = (state: IAppState) => state.wallet.seed; | ||
export const selectSeed = (state: AppState) => state.wallet.seed; | ||
|
||
export const selectIsRestoringWallet = (state: IAppState) => state.wallet.isRestoringWallet; | ||
export const selectIsRestoringWallet = (state: AppState) => state.wallet.isRestoringWallet; |
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.