Skip to content
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**.

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

### Universal Bridge Features

- 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