-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[duplicate] 1231 onboarding numeraire selection2 (#1282)
* use numeraire from local storage * save multiple numeraires in local storage * added NumerairesSlice * add ChangeNumeraires service message * numeraires persist * add icons * remove onboardNumeraires * delete prices when numeraire is changed * refactor & fix numeraires update bug * add idb tests * fix chain-id * Update apps/extension/src/shared/components/numeraires-form.tsx Co-authored-by: Jesse Pinho <[email protected]> * Update apps/extension/src/shared/components/numeraires-form.tsx Co-authored-by: Jesse Pinho <[email protected]> * Update apps/extension/src/routes/page/onboarding/set-numeraire.tsx Co-authored-by: Jesse Pinho <[email protected]> * Update apps/extension/src/routes/page/onboarding/set-numeraire.tsx Co-authored-by: Jesse Pinho <[email protected]> * fix lint * add chainId comment * Revert "add chainId comment" This reverts commit d2f7230faaa1d725ada301d61fbf8cf73efe99b1. * Revert "fix lint" This reverts commit fabf6ae6ffccf9fcb0313c159b42959d174adb50. * Revert "Update apps/extension/src/routes/page/onboarding/set-numeraire.tsx" This reverts commit 40306ac13cd3e942674f0949d986026e041cca61. * Revert "Update apps/extension/src/routes/page/onboarding/set-numeraire.tsx" This reverts commit c17991e2516d0c748f6ba2670cf88cc9049f5c17. * Revert "Update apps/extension/src/shared/components/numeraires-form.tsx" This reverts commit b83c2aa38266b43851a6b3d25774999651b735fe. * Revert "Update apps/extension/src/shared/components/numeraires-form.tsx" This reverts commit c92c9e0faf8c94e84335e474df5de631089d4be5. * add chainId comment * revert extension changes --------- Co-authored-by: Jesse Pinho <[email protected]>
- Loading branch information
1 parent
7ac610e
commit 4e5adc0
Showing
7 changed files
with
51 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
import { AssetId } from '@buf/penumbra-zone_penumbra.bufbuild_es/penumbra/core/asset/v1/asset_pb'; | ||
|
||
export interface BlockProcessorInterface { | ||
sync(): Promise<void>; | ||
stop(r?: string): void; | ||
setNumeraires(numeraires: AssetId[]): void; | ||
} |
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