Skip to content

Commit 464a059

Browse files
committed
updated FAQs w customer questions
1 parent 5204bd5 commit 464a059

File tree

4 files changed

+20
-9
lines changed

4 files changed

+20
-9
lines changed

apps/portal/src/app/connect/pay/faqs/page.mdx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,17 @@ For buying with crypto or swap fees, thirdweb charges a 0.3% protocol fee. Devel
2323
Network fees, also referred to as miner fees, are paid to the miner for processing crypto transactions and securing the respective network. These fees do not go to thirdweb.
2424
</Details>
2525

26+
<Details summary="What does Universal Bridge use to operate under the hood? Does it use third-party bridges?">
27+
Universal Bridge is an asset router that combines thirdweb's own onchain infrastructure with existing bridging and swapping protocols to find the optimal route for any given transaction.
28+
This can include intents, native bridges, third party bridges, cross-chain messaging protocols, thirdweb's custom bridges, and more. All routes are monitored and planned continuously for
29+
health, price, and speed to guarantee the best path every time.
30+
</Details>
31+
32+
<Details summary="What are the KYC requirements?">
33+
Onramp options all require minimal KYC. This is done to comply with local regulations and to ensure the safety of our users.
34+
Onramping with Coinbase does not require KYC for a purchase below $500 with debit card.
35+
</Details>
36+
2637
<Details summary="What are your transaction limits for Buy With Fiat?">
2738
We currently require a $1 minimum purchase for both stablecoin and non-stablecoin purchases through Buy With Fiat.
2839

apps/portal/src/app/react/v5/pay/fund-wallets/page.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { ReactIcon } from "@/icons";
44
import { createMetadata } from "@doc";
55

66
export const metadata = createMetadata({
7-
title: "Fund wallets | thirdweb",
7+
title: "Buy Crypto | thirdweb",
88
description: "Let users fund their wallets with crypto or fiat",
99
});
1010

@@ -14,7 +14,7 @@ Let users fund their wallets with crypto or fiat on all the supported chains.
1414

1515
## Live Playground
1616

17-
Try out the demo for yourself in the [fund wallets live playground](https://playground.thirdweb.com/connect/pay)
17+
Try out the demo for yourself in the [buy crypto live playground](https://playground.thirdweb.com/connect/pay)
1818

1919
<Stack>
2020

@@ -28,7 +28,7 @@ Try out the demo for yourself in the [fund wallets live playground](https://play
2828

2929
## Usage with UI Components
3030

31-
The easiest way to fund wallets is to use the `PayEmbed` prebuilt UI component. Note that the `ConnectButton` also has a built-in funding flow that can also be customised.
31+
The easiest way to buy crypto is to use the `PayEmbed` prebuilt UI component. Note that the `ConnectButton` also has a built-in funding flow that can also be customised.
3232

3333
```tsx
3434
import { PayEmbed } from "thirdweb/react";
@@ -61,7 +61,7 @@ Check out the [PayEmbed API reference](/references/typescript/v5/PayEmbed) for m
6161
title="PayEmbed"
6262
icon={ReactIcon}
6363
href="/references/typescript/v5/PayEmbed"
64-
description="Prebuilt UI to fund wallets with crypto or fiat"
64+
description="Prebuilt UI to buy crypto by swapping or fiat onramps"
6565
/>
6666

6767
</Stack>

apps/portal/src/app/react/v5/pay/transaction/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Check out the [PayEmbed API reference](/references/typescript/v5/PayEmbed) for m
6767
title="PayEmbed"
6868
icon={ReactIcon}
6969
href="/references/typescript/v5/PayEmbed"
70-
description="Prebuilt UI to fund wallets with crypto or fiat"
70+
description="Prebuilt UI to buy crypto by swapping or fiat onramps"
7171
/>
7272

7373
</Stack>

packages/thirdweb/CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
});
149149

150150
console.log(
151-
`To get ${buyQuote.destinationAmount} wei on destination chain, you need to pay ${buyQuote.originAmount} wei`,
151+
`To get ${buyQuote.destinationAmount} wei on destination chain, you need to pay ${buyQuote.originAmount} wei`
152152
);
153153

154154
// When ready to execute, prepare the transaction
@@ -183,7 +183,7 @@
183183
});
184184

185185
console.log(
186-
`If you send ${sellQuote.originAmount} wei, you'll receive approximately ${sellQuote.destinationAmount} wei`,
186+
`If you send ${sellQuote.originAmount} wei, you'll receive approximately ${sellQuote.destinationAmount} wei`
187187
);
188188

189189
// When ready to execute, prepare the transaction
@@ -3105,7 +3105,7 @@
31053105

31063106
const example1 = parseAbiParams(
31073107
["address", "uint256"],
3108-
["0x.....", "1200000"],
3108+
["0x.....", "1200000"]
31093109
); // result: ["0x......", 1200000n]
31103110
```
31113111

@@ -3140,7 +3140,7 @@
31403140

31413141
You can now configure the PayEmbed component to build 3 different flows:
31423142

3143-
- Fund wallets: Inline component that allows users to buy any currency. (default)
3143+
- Buy Crypto: Inline component that allows users to buy any currency. (default)
31443144

31453145
```tsx
31463146
<PayEmbed

0 commit comments

Comments
 (0)