Skip to content

Commit e3353f0

Browse files
committed
✨ app: implement bridge offramp
1 parent f5db586 commit e3353f0

48 files changed

Lines changed: 3052 additions & 269 deletions

Some content is hidden

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

.changeset/calm-dolls-brush.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@exactly/mobile": patch
3+
---
4+
5+
✨ implement bridge offramp

.maestro/subflows/send.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ appId: ${APP_ID ?? "app.exactly"}
44
- runFlow: ../subflows/readPortfolio.yaml
55
- evalScript: ${output.portfolioBefore = output.portfolio}
66
- tapOn: Send
7+
- tapOn: Cryptocurrencies
8+
- tapOn: On chain
79
- tapOn: Enter Anvil address
810
- inputText: ${to}
911
- hideKeyboard

cspell.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
"codepoint",
4646
"colocating",
4747
"comlink",
48+
"confirmá",
4849
"cosealg",
4950
"cosekeys",
5051
"creds",
@@ -53,6 +54,7 @@
5354
"datacenter",
5455
"decisioned",
5556
"defi",
57+
"dejalo",
5658
"delegatecall",
5759
"deployless",
5860
"dieguezguille",
@@ -174,6 +176,7 @@
174176
"surl",
175177
"tamagui",
176178
"tanstack",
179+
"tenés",
177180
"thehubbleproject",
178181
"timelock",
179182
"timelocked",

src/app/(main)/add-funds/fees.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
export { default } from "../../../components/add-funds/Fees";
1+
import React from "react";
2+
3+
import Fees from "../../../components/add-funds/Fees";
4+
5+
export default function FeesScreen() {
6+
return <Fees direction="onramp" />;
7+
}
Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
export { default } from "../../../components/add-funds/Onboard";
1+
import React from "react";
2+
3+
import RampOnboard from "../../../components/ramp/RampOnboard";
4+
5+
export default function Onboard() {
6+
return <RampOnboard direction="onramp" />;
7+
}

src/app/(main)/send-funds/_layout.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@ export default function SendFundsLayout() {
99
return (
1010
<Stack screenOptions={{ headerShown: false }}>
1111
<Stack.Screen name="index" />
12+
<Stack.Screen name="receiver" />
13+
<Stack.Screen name="onboard" />
14+
<Stack.Screen name="kyc" />
15+
<Stack.Screen name="status" />
16+
<Stack.Screen name="recipients" />
17+
<Stack.Screen name="new-recipient" />
18+
<Stack.Screen name="send-amount" />
19+
<Stack.Screen name="review" />
20+
<Stack.Screen name="send-status" />
1221
<Stack.Screen name="qr" />
1322
<Stack.Screen name="asset" />
1423
<Stack.Screen name="amount" />
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from "../../../components/send-funds/EditRecipient";

src/app/(main)/send-funds/fees.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import React from "react";
2+
3+
import Fees from "../../../components/add-funds/Fees";
4+
5+
export default function FeesScreen() {
6+
return <Fees direction="offramp" />;
7+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { default } from "../../../components/send-funds/Receiver";
1+
export { default } from "../../../components/send-funds/SendFunds";

src/app/(main)/send-funds/kyc.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from "../../../components/add-funds/KYC";

0 commit comments

Comments
 (0)