Interactive components, code generators, and integration snippets for the Relay Bridge SDK
import { BridgeWidget } from 'relay-bridge-sdk/components';
function App() {
return (
<BridgeWidget
onSuccess={(txHash) => {
console.log('Bridge complete:', txHash);
}}
onError={(error) => {
console.error('Bridge failed:', error);
}}
/>
);
}Loading chains...
Get the full documentation and start building production-ready integrations.