Skip to content

Adding thirdweb Universal Bridge to bridges.mdx #446

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 57 additions & 0 deletions src/pages/tools/bridges.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,63 @@ Using a network of solvers, Across allows users to seamlessly bridge from L1 to

- [Ink Mainnet](https://app.across.to/bridge?)

## thirdweb

[**Universal Bridge**](https://thirdweb.com/connect/universal-bridge) is a comprehensive Web3 payment solution to help you monetize any app or game.

With Universal Bridge, your users can **onramp, bridge, and swap** on any EVM chain — with any EVM token or fiat — thanks to its **automatic cross-chain routing**.

Plus, developers can **earn from day one** using the **fee-sharing mechanism** and **easy implementation**.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Plus, developers can **earn from day one** using the **fee-sharing mechanism** and **easy implementation**.


**Supported Networks**
- [Ink Mainnet](https://thirdweb.com/bridge?chainId=57073)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Checked the link and this doesn't look like a normal bridge. This looks like a way to buy. What's up with that?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks for your review @meerkat-monkey ! Have you clicked through the flow? It is bridging, in the first UI you just define the token you want to bridge to, in the second screen you choose the available token on a different chain you already own. If you don't own any token you can onramp with fiat as an alternative


### Universal Bridge Features
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@0xtorchieG I think you can remove everything after this so we can keep it consistent with the rest of the page


- Let users pay for assets in any EVM token on Ink right in your app
- Automatic cross-chain routing for seamless transactions
- Earn from day one with fee-sharing mechanism
- Access ready-made UI component for easy implementation

[Learn more in the full documentation on thirdweb’s Universal Bridge](https://portal.thirdweb.com/connect/pay/overview)

### Get Started with thirdweb Universal Bridge

[How to get started with Universal Bridge](https://portal.thirdweb.com/connect/pay/get-started)

### See Universal Bridge in Action
Want to see how Universal Bridge works? Check it out under the hood

```jsx
import { createThirdwebClient } from "thirdweb";
import { PayEmbed } from "thirdweb/react";

import { createWallet } from "thirdweb/wallets";
import { defineChain } from "thirdweb";

const client = createThirdwebClient({
clientId: "....",
});

function Example() {
return (
<PayEmbed
client={client}
payOptions={{
mode: "fund_wallet",
prefillBuy: {
chain: defineChain(57073),
amount: "0.01",
},
}}
/>
);
}

```
[**See how the Buy Crypto flow works in the playground**](https://playground.thirdweb.com/connect/pay)


## Brid.gg

Brid.gg enables you to bridge assets from L1 to L2 across the Superchain.
Expand Down