diff --git a/app/component-library/components-temp/CustomSpendCap/__snapshots__/CustomSpendCap.test.tsx.snap b/app/component-library/components-temp/CustomSpendCap/__snapshots__/CustomSpendCap.test.tsx.snap index 4ab88b6f6bc..2bdc8856035 100644 --- a/app/component-library/components-temp/CustomSpendCap/__snapshots__/CustomSpendCap.test.tsx.snap +++ b/app/component-library/components-temp/CustomSpendCap/__snapshots__/CustomSpendCap.test.tsx.snap @@ -113,9 +113,9 @@ exports[`CustomSpendCap should match snapshot 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -249,9 +249,9 @@ exports[`CustomSpendCap should match snapshot 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/component-library/components/Banners/Banner/__snapshots__/Banner.test.tsx.snap b/app/component-library/components/Banners/Banner/__snapshots__/Banner.test.tsx.snap index d44a93288b1..39786758805 100644 --- a/app/component-library/components/Banners/Banner/__snapshots__/Banner.test.tsx.snap +++ b/app/component-library/components/Banners/Banner/__snapshots__/Banner.test.tsx.snap @@ -177,9 +177,9 @@ exports[`Banner should render correctly with a close button 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -412,9 +412,9 @@ exports[`Banner should render correctly with an action button 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/component-library/components/Banners/Banner/variants/BannerAlert/__snapshots__/BannerAlert.test.tsx.snap b/app/component-library/components/Banners/Banner/variants/BannerAlert/__snapshots__/BannerAlert.test.tsx.snap index 158cd1452b7..e50a3856875 100644 --- a/app/component-library/components/Banners/Banner/variants/BannerAlert/__snapshots__/BannerAlert.test.tsx.snap +++ b/app/component-library/components/Banners/Banner/variants/BannerAlert/__snapshots__/BannerAlert.test.tsx.snap @@ -96,9 +96,9 @@ exports[`BannerAlert should render BannerAlert 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/component-library/components/Banners/Banner/variants/BannerTip/__snapshots__/BannerTip.test.tsx.snap b/app/component-library/components/Banners/Banner/variants/BannerTip/__snapshots__/BannerTip.test.tsx.snap index e53f453ee7b..767da37e674 100644 --- a/app/component-library/components/Banners/Banner/variants/BannerTip/__snapshots__/BannerTip.test.tsx.snap +++ b/app/component-library/components/Banners/Banner/variants/BannerTip/__snapshots__/BannerTip.test.tsx.snap @@ -106,9 +106,9 @@ exports[`BannerTip should render default settings correctly 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/component-library/components/BottomSheets/BottomSheetFooter/__snapshots__/BottomSheetFooter.test.tsx.snap b/app/component-library/components/BottomSheets/BottomSheetFooter/__snapshots__/BottomSheetFooter.test.tsx.snap index 5d640d9987e..57b01074ef4 100644 --- a/app/component-library/components/BottomSheets/BottomSheetFooter/__snapshots__/BottomSheetFooter.test.tsx.snap +++ b/app/component-library/components/BottomSheets/BottomSheetFooter/__snapshots__/BottomSheetFooter.test.tsx.snap @@ -41,9 +41,9 @@ exports[`BottomSheetFooter should render snapshot correctly 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -81,9 +81,9 @@ exports[`BottomSheetFooter should render snapshot correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/component-library/components/Buttons/Button/foundation/ButtonBase/ButtonBase.constants.ts b/app/component-library/components/Buttons/Button/foundation/ButtonBase/ButtonBase.constants.ts index c0423c0feef..c62398b478a 100644 --- a/app/component-library/components/Buttons/Button/foundation/ButtonBase/ButtonBase.constants.ts +++ b/app/component-library/components/Buttons/Button/foundation/ButtonBase/ButtonBase.constants.ts @@ -11,7 +11,7 @@ export const DEFAULT_BUTTONBASE_LABEL_COLOR = TextColor.Default; export const DEFAULT_BUTTONBASE_SIZE = ButtonSize.Md; export const DEFAULT_BUTTONBASE_WIDTH = ButtonWidthTypes.Auto; export const DEFAULT_BUTTONBASE_ICON_SIZE = IconSize.Sm; -export const DEFAULT_BUTTONBASE_LABEL_TEXTVARIANT = TextVariant.BodyMD; +export const DEFAULT_BUTTONBASE_LABEL_TEXTVARIANT = TextVariant.BodyMDMedium; // Samples export const SAMPLE_BUTTONBASE_PROPS: ButtonBaseProps = { diff --git a/app/component-library/components/Buttons/Button/foundation/ButtonBase/__snapshots__/ButtonBase.test.tsx.snap b/app/component-library/components/Buttons/Button/foundation/ButtonBase/__snapshots__/ButtonBase.test.tsx.snap index 28b666466f8..acdab062c11 100644 --- a/app/component-library/components/Buttons/Button/foundation/ButtonBase/__snapshots__/ButtonBase.test.tsx.snap +++ b/app/component-library/components/Buttons/Button/foundation/ButtonBase/__snapshots__/ButtonBase.test.tsx.snap @@ -36,7 +36,7 @@ exports[`ButtonBase should render correctly 1`] = ` "color": "#141618", } } - variant="sBodyMD" + variant="sBodyMDMedium" > Click me! @@ -81,7 +81,7 @@ exports[`ButtonBase should render correctly when disabled 1`] = ` "color": "#141618", } } - variant="sBodyMD" + variant="sBodyMDMedium" > Click me! diff --git a/app/component-library/components/Buttons/Button/variants/ButtonLink/__snapshots__/ButtonLink.test.tsx.snap b/app/component-library/components/Buttons/Button/variants/ButtonLink/__snapshots__/ButtonLink.test.tsx.snap index 1c09de8a64e..d636f704af6 100644 --- a/app/component-library/components/Buttons/Button/variants/ButtonLink/__snapshots__/ButtonLink.test.tsx.snap +++ b/app/component-library/components/Buttons/Button/variants/ButtonLink/__snapshots__/ButtonLink.test.tsx.snap @@ -25,9 +25,9 @@ exports[`ButtonLink should render correctly 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/component-library/components/Buttons/Button/variants/ButtonPrimary/__snapshots__/ButtonPrimary.test.tsx.snap b/app/component-library/components/Buttons/Button/variants/ButtonPrimary/__snapshots__/ButtonPrimary.test.tsx.snap index 44b2bd653b5..74f4e35aa52 100644 --- a/app/component-library/components/Buttons/Button/variants/ButtonPrimary/__snapshots__/ButtonPrimary.test.tsx.snap +++ b/app/component-library/components/Buttons/Button/variants/ButtonPrimary/__snapshots__/ButtonPrimary.test.tsx.snap @@ -40,9 +40,9 @@ exports[`ButtonPrimary render matches latest snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/component-library/components/Buttons/Button/variants/ButtonSecondary/__snapshots__/ButtonSecondary.test.tsx.snap b/app/component-library/components/Buttons/Button/variants/ButtonSecondary/__snapshots__/ButtonSecondary.test.tsx.snap index 5b5db9487c7..d35a16c686b 100644 --- a/app/component-library/components/Buttons/Button/variants/ButtonSecondary/__snapshots__/ButtonSecondary.test.tsx.snap +++ b/app/component-library/components/Buttons/Button/variants/ButtonSecondary/__snapshots__/ButtonSecondary.test.tsx.snap @@ -41,9 +41,9 @@ exports[`ButtonSecondary should render correctly 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/AddCustomToken/__snapshots__/index.test.tsx.snap b/app/components/UI/AddCustomToken/__snapshots__/index.test.tsx.snap index 4ad291a7d08..d2af139ec0f 100644 --- a/app/components/UI/AddCustomToken/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/AddCustomToken/__snapshots__/index.test.tsx.snap @@ -232,9 +232,9 @@ exports[`AddCustomToken render matches previous snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/BasicFunctionality/BasicFunctionalityModal/__snapshots__/BasicFunctionalityModal.test.js.snap b/app/components/UI/BasicFunctionality/BasicFunctionalityModal/__snapshots__/BasicFunctionalityModal.test.js.snap index 42798823837..f896d299399 100644 --- a/app/components/UI/BasicFunctionality/BasicFunctionalityModal/__snapshots__/BasicFunctionalityModal.test.js.snap +++ b/app/components/UI/BasicFunctionality/BasicFunctionalityModal/__snapshots__/BasicFunctionalityModal.test.js.snap @@ -266,9 +266,9 @@ exports[`BasicFunctionalityModal should render correctly 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -312,9 +312,9 @@ exports[`BasicFunctionalityModal should render correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/CollectibleModal/__snapshots__/CollectibleModal.test.tsx.snap b/app/components/UI/CollectibleModal/__snapshots__/CollectibleModal.test.tsx.snap index 0506e53601f..af8283d43f7 100644 --- a/app/components/UI/CollectibleModal/__snapshots__/CollectibleModal.test.tsx.snap +++ b/app/components/UI/CollectibleModal/__snapshots__/CollectibleModal.test.tsx.snap @@ -216,9 +216,9 @@ exports[`CollectibleModal should render correctly 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/ConfirmAddAsset/__snapshots__/ConfirmAddAsset.test.tsx.snap b/app/components/UI/ConfirmAddAsset/__snapshots__/ConfirmAddAsset.test.tsx.snap index 6819273801b..7115fb243ce 100644 --- a/app/components/UI/ConfirmAddAsset/__snapshots__/ConfirmAddAsset.test.tsx.snap +++ b/app/components/UI/ConfirmAddAsset/__snapshots__/ConfirmAddAsset.test.tsx.snap @@ -328,9 +328,9 @@ exports[`ConfirmAddAsset render matches previous snapshot 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -368,9 +368,9 @@ exports[`ConfirmAddAsset render matches previous snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/EnableAutomaticSecurityChecksModal/__snapshots__/EnableAutomaticSecurityChecksModal.test.tsx.snap b/app/components/UI/EnableAutomaticSecurityChecksModal/__snapshots__/EnableAutomaticSecurityChecksModal.test.tsx.snap index c7e04d7fef6..7b8944b808c 100644 --- a/app/components/UI/EnableAutomaticSecurityChecksModal/__snapshots__/EnableAutomaticSecurityChecksModal.test.tsx.snap +++ b/app/components/UI/EnableAutomaticSecurityChecksModal/__snapshots__/EnableAutomaticSecurityChecksModal.test.tsx.snap @@ -477,9 +477,9 @@ exports[`EnableAutomaticSecurityChecksModal should render correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -514,9 +514,9 @@ exports[`EnableAutomaticSecurityChecksModal should render correctly 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/NetworkModal/__snapshots__/index.test.tsx.snap b/app/components/UI/NetworkModal/__snapshots__/index.test.tsx.snap index fb2c30e33a1..e6c4fcfbbd8 100644 --- a/app/components/UI/NetworkModal/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/NetworkModal/__snapshots__/index.test.tsx.snap @@ -538,9 +538,9 @@ exports[`NetworkDetails renders correctly 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -578,9 +578,9 @@ exports[`NetworkDetails renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/NetworkVerificationInfo/__snapshots__/NetworkVerificationInfo.test.tsx.snap b/app/components/UI/NetworkVerificationInfo/__snapshots__/NetworkVerificationInfo.test.tsx.snap index 7b3fccd6bdf..acd148ae225 100644 --- a/app/components/UI/NetworkVerificationInfo/__snapshots__/NetworkVerificationInfo.test.tsx.snap +++ b/app/components/UI/NetworkVerificationInfo/__snapshots__/NetworkVerificationInfo.test.tsx.snap @@ -499,9 +499,9 @@ exports[`NetworkVerificationInfo renders correctly 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -539,9 +539,9 @@ exports[`NetworkVerificationInfo renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/Notification/ResetNotificationsModal/__snapshots__/ResetNotificationsModal.test.tsx.snap b/app/components/UI/Notification/ResetNotificationsModal/__snapshots__/ResetNotificationsModal.test.tsx.snap index ba1915f5934..ed08cd71f96 100644 --- a/app/components/UI/Notification/ResetNotificationsModal/__snapshots__/ResetNotificationsModal.test.tsx.snap +++ b/app/components/UI/Notification/ResetNotificationsModal/__snapshots__/ResetNotificationsModal.test.tsx.snap @@ -215,9 +215,9 @@ exports[`ProfileSyncingModal should render correctly 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -261,9 +261,9 @@ exports[`ProfileSyncingModal should render correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/OnboardingWizard/Step1/__snapshots__/index.test.tsx.snap b/app/components/UI/OnboardingWizard/Step1/__snapshots__/index.test.tsx.snap index 868da881f00..020360cb639 100644 --- a/app/components/UI/OnboardingWizard/Step1/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/OnboardingWizard/Step1/__snapshots__/index.test.tsx.snap @@ -156,9 +156,9 @@ exports[`Step1 should render correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -197,9 +197,9 @@ exports[`Step1 should render correctly 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/OptinMetrics/__snapshots__/index.test.tsx.snap b/app/components/UI/OptinMetrics/__snapshots__/index.test.tsx.snap index f9950e7ce2b..7d51a678cd3 100644 --- a/app/components/UI/OptinMetrics/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/OptinMetrics/__snapshots__/index.test.tsx.snap @@ -736,9 +736,9 @@ exports[`OptinMetrics render matches snapshot 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -798,9 +798,9 @@ exports[`OptinMetrics render matches snapshot 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -844,9 +844,9 @@ exports[`OptinMetrics render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/PermissionsSummary/__snapshots__/PermissionsSummary.test.tsx.snap b/app/components/UI/PermissionsSummary/__snapshots__/PermissionsSummary.test.tsx.snap index d3696f8cb73..5a7dd44c123 100644 --- a/app/components/UI/PermissionsSummary/__snapshots__/PermissionsSummary.test.tsx.snap +++ b/app/components/UI/PermissionsSummary/__snapshots__/PermissionsSummary.test.tsx.snap @@ -630,9 +630,9 @@ exports[`PermissionsSummary should render correctly 1`] = ` style={ { "color": "#d73847", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -1139,9 +1139,9 @@ exports[`PermissionsSummary should render correctly for network switch 1`] = ` style={ { "color": "#d73847", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/ProfileSyncing/ProfileSyncingModal/__snapshots__/ProfileSyncingModal.test.tsx.snap b/app/components/UI/ProfileSyncing/ProfileSyncingModal/__snapshots__/ProfileSyncingModal.test.tsx.snap index 5bd27e1bb95..ee24fee702a 100644 --- a/app/components/UI/ProfileSyncing/ProfileSyncingModal/__snapshots__/ProfileSyncingModal.test.tsx.snap +++ b/app/components/UI/ProfileSyncing/ProfileSyncingModal/__snapshots__/ProfileSyncingModal.test.tsx.snap @@ -266,9 +266,9 @@ exports[`ProfileSyncingModal should render correctly 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -312,9 +312,9 @@ exports[`ProfileSyncingModal should render correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/Ramp/Views/NetworkSwitcher/__snapshots__/NetworkSwitcher.test.tsx.snap b/app/components/UI/Ramp/Views/NetworkSwitcher/__snapshots__/NetworkSwitcher.test.tsx.snap index a55851ee09d..ec911b86809 100644 --- a/app/components/UI/Ramp/Views/NetworkSwitcher/__snapshots__/NetworkSwitcher.test.tsx.snap +++ b/app/components/UI/Ramp/Views/NetworkSwitcher/__snapshots__/NetworkSwitcher.test.tsx.snap @@ -1368,9 +1368,9 @@ exports[`NetworkSwitcher View renders and dismisses network modal when pressing style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -1408,9 +1408,9 @@ exports[`NetworkSwitcher View renders and dismisses network modal when pressing style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/Ramp/Views/OrdersList/__snapshots__/OrdersList.test.tsx.snap b/app/components/UI/Ramp/Views/OrdersList/__snapshots__/OrdersList.test.tsx.snap index 66084c40e31..157da15f487 100644 --- a/app/components/UI/Ramp/Views/OrdersList/__snapshots__/OrdersList.test.tsx.snap +++ b/app/components/UI/Ramp/Views/OrdersList/__snapshots__/OrdersList.test.tsx.snap @@ -193,9 +193,9 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -231,9 +231,9 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -269,9 +269,9 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -1069,9 +1069,9 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -1107,9 +1107,9 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -1145,9 +1145,9 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -2044,9 +2044,9 @@ exports[`OrdersList renders empty buy message 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -2082,9 +2082,9 @@ exports[`OrdersList renders empty buy message 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -2120,9 +2120,9 @@ exports[`OrdersList renders empty buy message 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -2293,9 +2293,9 @@ exports[`OrdersList renders empty sell message 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -2331,9 +2331,9 @@ exports[`OrdersList renders empty sell message 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -2369,9 +2369,9 @@ exports[`OrdersList renders empty sell message 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -2568,9 +2568,9 @@ exports[`OrdersList renders sell only correctly when pressing sell filter 1`] = style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -2606,9 +2606,9 @@ exports[`OrdersList renders sell only correctly when pressing sell filter 1`] = style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -2644,9 +2644,9 @@ exports[`OrdersList renders sell only correctly when pressing sell filter 1`] = style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -3002,9 +3002,9 @@ exports[`OrdersList resets filter to all after other filter was set 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -3040,9 +3040,9 @@ exports[`OrdersList resets filter to all after other filter was set 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -3078,9 +3078,9 @@ exports[`OrdersList resets filter to all after other filter was set 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -3500,9 +3500,9 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -3538,9 +3538,9 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -3576,9 +3576,9 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/Ramp/Views/Settings/__snapshots__/ActivationKeyForm.test.tsx.snap b/app/components/UI/Ramp/Views/Settings/__snapshots__/ActivationKeyForm.test.tsx.snap index 0d6c3a48b2c..8edd595884f 100644 --- a/app/components/UI/Ramp/Views/Settings/__snapshots__/ActivationKeyForm.test.tsx.snap +++ b/app/components/UI/Ramp/Views/Settings/__snapshots__/ActivationKeyForm.test.tsx.snap @@ -631,9 +631,9 @@ exports[`AddActivationKey renders correctly 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -670,9 +670,9 @@ exports[`AddActivationKey renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/Ramp/Views/Settings/__snapshots__/Settings.test.tsx.snap b/app/components/UI/Ramp/Views/Settings/__snapshots__/Settings.test.tsx.snap index 32f2c554a75..1e3f8edc2fb 100644 --- a/app/components/UI/Ramp/Views/Settings/__snapshots__/Settings.test.tsx.snap +++ b/app/components/UI/Ramp/Views/Settings/__snapshots__/Settings.test.tsx.snap @@ -551,9 +551,9 @@ exports[`Settings Activation Keys renders correctly when is loading 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -1129,9 +1129,9 @@ exports[`Settings Activation Keys renders correctly when is loading 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -1711,9 +1711,9 @@ exports[`Settings Activation Keys renders correctly when there are no keys 1`] = style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -1847,9 +1847,9 @@ exports[`Settings Activation Keys renders correctly when there are no keys 1`] = style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -2972,9 +2972,9 @@ exports[`Settings Region renders correctly when region is set 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -3553,9 +3553,9 @@ exports[`Settings renders correctly 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -4134,9 +4134,9 @@ exports[`Settings renders correctly for internal builds 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -4708,9 +4708,9 @@ exports[`Settings renders correctly for internal builds 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/ReceiveRequest/__snapshots__/index.test.tsx.snap b/app/components/UI/ReceiveRequest/__snapshots__/index.test.tsx.snap index b2c8df927cf..281e45838f6 100644 --- a/app/components/UI/ReceiveRequest/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/ReceiveRequest/__snapshots__/index.test.tsx.snap @@ -627,9 +627,9 @@ exports[`ReceiveRequest render matches snapshot 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -1374,9 +1374,9 @@ exports[`ReceiveRequest render with different ticker matches snapshot 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -2121,9 +2121,9 @@ exports[`ReceiveRequest render without buy matches snapshot 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/SearchTokenAutocomplete/__snapshots__/index.test.tsx.snap b/app/components/UI/SearchTokenAutocomplete/__snapshots__/index.test.tsx.snap index ea010c44900..1c23219c4e0 100644 --- a/app/components/UI/SearchTokenAutocomplete/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/SearchTokenAutocomplete/__snapshots__/index.test.tsx.snap @@ -484,9 +484,9 @@ exports[`SearchTokenAutocomplete should render correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/SheetActionView/__snapshots__/SheetActionView.test.tsx.snap b/app/components/UI/SheetActionView/__snapshots__/SheetActionView.test.tsx.snap index 40f30e85893..6661cd44052 100644 --- a/app/components/UI/SheetActionView/__snapshots__/SheetActionView.test.tsx.snap +++ b/app/components/UI/SheetActionView/__snapshots__/SheetActionView.test.tsx.snap @@ -38,9 +38,9 @@ exports[`SheetActionView should render correctly 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -76,9 +76,9 @@ exports[`SheetActionView should render correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/Stake/Views/StakeInputView/__snapshots__/StakeInputView.test.tsx.snap b/app/components/UI/Stake/Views/StakeInputView/__snapshots__/StakeInputView.test.tsx.snap index fb47e1bf1c1..b4e933be952 100644 --- a/app/components/UI/Stake/Views/StakeInputView/__snapshots__/StakeInputView.test.tsx.snap +++ b/app/components/UI/Stake/Views/StakeInputView/__snapshots__/StakeInputView.test.tsx.snap @@ -1629,9 +1629,9 @@ exports[`StakeInputView render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/Stake/Views/UnstakeInputView/__snapshots__/UnstakeInputView.test.tsx.snap b/app/components/UI/Stake/Views/UnstakeInputView/__snapshots__/UnstakeInputView.test.tsx.snap index 5235c2f45c8..1d62ee385fe 100644 --- a/app/components/UI/Stake/Views/UnstakeInputView/__snapshots__/UnstakeInputView.test.tsx.snap +++ b/app/components/UI/Stake/Views/UnstakeInputView/__snapshots__/UnstakeInputView.test.tsx.snap @@ -1573,9 +1573,9 @@ exports[`UnstakeInputView render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/Stake/components/LearnMoreModal/__snapshots__/LearnMoreModal.test.tsx.snap b/app/components/UI/Stake/components/LearnMoreModal/__snapshots__/LearnMoreModal.test.tsx.snap index 4d38fcb293a..0a7dc9ddf69 100644 --- a/app/components/UI/Stake/components/LearnMoreModal/__snapshots__/LearnMoreModal.test.tsx.snap +++ b/app/components/UI/Stake/components/LearnMoreModal/__snapshots__/LearnMoreModal.test.tsx.snap @@ -653,9 +653,9 @@ exports[`LearnMoreModal render matches snapshot 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -697,9 +697,9 @@ exports[`LearnMoreModal render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/Stake/components/MaxInputModal/__snapshots__/MaxInputModal.test.tsx.snap b/app/components/UI/Stake/components/MaxInputModal/__snapshots__/MaxInputModal.test.tsx.snap index c3aa8b2abf5..af741294441 100644 --- a/app/components/UI/Stake/components/MaxInputModal/__snapshots__/MaxInputModal.test.tsx.snap +++ b/app/components/UI/Stake/components/MaxInputModal/__snapshots__/MaxInputModal.test.tsx.snap @@ -583,9 +583,9 @@ exports[`MaxInputModal render matches snapshot 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -627,9 +627,9 @@ exports[`MaxInputModal render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/Stake/components/StakingBalance/StakingCta/__snapshots__/StakingCta.test.tsx.snap b/app/components/UI/Stake/components/StakingBalance/StakingCta/__snapshots__/StakingCta.test.tsx.snap index 3d013662beb..7c98e55808b 100644 --- a/app/components/UI/Stake/components/StakingBalance/StakingCta/__snapshots__/StakingCta.test.tsx.snap +++ b/app/components/UI/Stake/components/StakingBalance/StakingCta/__snapshots__/StakingCta.test.tsx.snap @@ -98,9 +98,9 @@ exports[`StakingCta render matches snapshot 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", + "fontFamily": "EuclidCircularB-Medium", "fontSize": 14, - "fontWeight": "400", + "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } diff --git a/app/components/UI/Stake/components/StakingBalance/__snapshots__/StakingBalance.test.tsx.snap b/app/components/UI/Stake/components/StakingBalance/__snapshots__/StakingBalance.test.tsx.snap index 61fe94e4e3f..12d5815c0fb 100644 --- a/app/components/UI/Stake/components/StakingBalance/__snapshots__/StakingBalance.test.tsx.snap +++ b/app/components/UI/Stake/components/StakingBalance/__snapshots__/StakingBalance.test.tsx.snap @@ -413,477 +413,9 @@ exports[`StakingBalance render matches snapshot 1`] = ` style={ { "color": "#0376c9", - "fontFamily": "EuclidCircularB-Regular", - "fontSize": 14, - "fontWeight": "400", - "letterSpacing": 0, - "lineHeight": 22, - } - } - > - Unstake - - - - - Stake more - - - - - -`; - -exports[`StakingBalance should match the snapshot when portfolio view is enabled 1`] = ` - - - - - - - - - - - - - - - - - - - - - Staked Ethereum - - - - - - - - - - - Unstaking 0.0010 ETH in progress. Come back in a few days to claim it. - - - - - - - - - - You can claim 0.00214 ETH. Once claimed, you'll get ETH back in your wallet. - - - - Claim - ETH - - - - - - -