Embed a fully functional, non-custodial Hedera swap widget into any website or app. Users trade directly — you don't touch the funds.
Drop one of these snippets wherever you want the swap to appear.
HTML / Webflow / Any CMS
<iframe
src="https://oyrn.xyz/embed/swap?theme=dark"
width="420"
height="520"
style="border:none;border-radius:16px;overflow:hidden;"
title="Oyrn Swap Widget"
loading="lazy"
></iframe>React / Next.js
import { useEffect, useRef } from "react";
export function OyrnSwapWidget() {
return (
<iframe
src="https://oyrn.xyz/embed/swap?theme=dark"
width={420}
height={520}
style={{ border: "none", borderRadius: 16, overflow: "hidden" }}
title="Oyrn Swap Widget"
loading="lazy"
/>
);
}