Gasless + Gas Dropoff
Connect transfers only require gas fees on the source chain. Relayers drop users off with native gas tokens on the destination chain for instant transactions.
A bridge in your app
Give your users the ability to bridge assets between any chain without having to leave your site.
3-lines
Give your users every bridging capability, wrapped or native, in as few as 3-lines of code.
Any user on any chain
Broaden your addressable market by letting users bridge assets over from any chain.
HOSTED INTEGRATION
1
2
3
4
5
6
import { wormholeConnectHosted } from '@wormhole-foundation/wormhole-connect';
// Existing DOM element where you want to mount Connect
const container = document.getElementById('bridge-container');
wormholeConnectHosted(container);
REACT JSX
1
2
3
4
5
import WormholeConnect from '@wormhole-foundation/wormhole-connect';
function App() {
return <WormholeConnect />;
}