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.
HTML
1
2
3
4
5
6
<!-- include in <head> -->
<script type="module" src="https://www.unpkg.com/@wormhole-foundation/wormhole-connect/dist/main.js" defer></script>
<link rel="https://www.unpkg.com/@wormhole-foundation/wormhole-connect/dist/main.css" />
<!-- include in <body> -->
<div id="wormhole-connect"></div>
REACT JSX
1
2
3
4
5
6
import WormholeBridge from '@wormhole-foundation/wormhole-connect';
function App() {
return (
<WormholeBridge />
);
}