Skip to content

Commit 00f534b

Browse files
authored
Merge pull request #5715 from EdgeApp/sam/infinite-ramp-plugin
Sam/infinite ramp plugin
2 parents 44527b1 + 28a711f commit 00f534b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+5470
-128
lines changed

eslint.config.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,6 @@ export default [
442442
'src/plugins/borrow-plugins/plugins/aave/AaveBorrowEngineFactory.ts',
443443
'src/plugins/borrow-plugins/plugins/aave/index.ts',
444444
'src/plugins/gui/amountQuotePlugin.ts',
445-
'src/plugins/gui/components/GuiFormField.tsx',
446445

447446
'src/plugins/gui/providers/bityProvider.ts',
448447
'src/plugins/gui/providers/ioniaProvider.ts',

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@
6969
"dependencies": {
7070
"@brigad/react-native-adservices": "^0.1.3",
7171
"@ethersproject/shims": "^5.6.0",
72+
"@noble/curves": "^1.9.7",
73+
"@noble/hashes": "^1.8.0",
7274
"@react-native-async-storage/async-storage": "^1.19.4",
7375
"@react-native-clipboard/clipboard": "^1.16.3",
7476
"@react-native-community/datetimepicker": "^8.4.2",

src/__tests__/components/__snapshots__/FilledTextInput.test.tsx.snap

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -566,31 +566,27 @@ exports[`FilledTextInput should render with some props 1`] = `
566566
>
567567
<Text
568568
allowFontScaling={false}
569-
danger={true}
569+
mode="danger"
570570
style={
571-
[
572-
{
573-
"color": "#E85466",
574-
"fontFamily": "Quicksand-Regular",
575-
"fontSize": 17,
576-
"includeFontPadding": false,
577-
},
578-
]
571+
{
572+
"color": "#E85466",
573+
"fontFamily": "Quicksand-Regular",
574+
"fontSize": 17,
575+
"includeFontPadding": false,
576+
}
579577
}
580578
>
581579
string
582580
</Text>
583581
<Text
584582
allowFontScaling={false}
585583
style={
586-
[
587-
{
588-
"color": "#3dd9f4",
589-
"fontFamily": "Quicksand-Regular",
590-
"fontSize": 17,
591-
"includeFontPadding": false,
592-
},
593-
]
584+
{
585+
"color": "#3dd9f4",
586+
"fontFamily": "Quicksand-Regular",
587+
"fontSize": 17,
588+
"includeFontPadding": false,
589+
}
594590
}
595591
>
596592
5

src/__tests__/modals/__snapshots__/LogsModal.test.tsx.snap

Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -916,29 +916,24 @@ exports[`LogsModal should render with a logs modal 1`] = `
916916
>
917917
<Text
918918
allowFontScaling={false}
919-
danger={false}
920919
style={
921-
[
922-
{
923-
"color": "#3dd9f4",
924-
"fontFamily": "Quicksand-Regular",
925-
"fontSize": 17,
926-
"includeFontPadding": false,
927-
},
928-
]
920+
{
921+
"color": "#3dd9f4",
922+
"fontFamily": "Quicksand-Regular",
923+
"fontSize": 17,
924+
"includeFontPadding": false,
925+
}
929926
}
930927
/>
931928
<Text
932929
allowFontScaling={false}
933930
style={
934-
[
935-
{
936-
"color": "#3dd9f4",
937-
"fontFamily": "Quicksand-Regular",
938-
"fontSize": 17,
939-
"includeFontPadding": false,
940-
},
941-
]
931+
{
932+
"color": "#3dd9f4",
933+
"fontFamily": "Quicksand-Regular",
934+
"fontSize": 17,
935+
"includeFontPadding": false,
936+
}
942937
}
943938
>
944939
1000

src/__tests__/scenes/__snapshots__/CreateWalletAccountSetupScene.test.tsx.snap

Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -916,29 +916,24 @@ exports[`CreateWalletAccountSelect renders 1`] = `
916916
>
917917
<Text
918918
allowFontScaling={false}
919-
danger={false}
920919
style={
921-
[
922-
{
923-
"color": "#3dd9f4",
924-
"fontFamily": "Quicksand-Regular",
925-
"fontSize": 17,
926-
"includeFontPadding": false,
927-
},
928-
]
920+
{
921+
"color": "#3dd9f4",
922+
"fontFamily": "Quicksand-Regular",
923+
"fontSize": 17,
924+
"includeFontPadding": false,
925+
}
929926
}
930927
/>
931928
<Text
932929
allowFontScaling={false}
933930
style={
934-
[
935-
{
936-
"color": "#3dd9f4",
937-
"fontFamily": "Quicksand-Regular",
938-
"fontSize": 17,
939-
"includeFontPadding": false,
940-
},
941-
]
931+
{
932+
"color": "#3dd9f4",
933+
"fontFamily": "Quicksand-Regular",
934+
"fontSize": 17,
935+
"includeFontPadding": false,
936+
}
942937
}
943938
>
944939
12

0 commit comments

Comments
 (0)