Oyrn
ExploreLaunchSwapPoolVestingWidget
mainnetHedera Mainnet
Explore
Launch
Swap
Pool
Vesting
Widget
Oyrn

DeFi primitive layer for Hedera HTS + EVM. Bonding curves · AMM pools · Vesting.

LaunchSwapPoolVesting
Hedera Mainnet · Live
Verify on HashScan ↗

© 2026 Oyrn Protocol · Hedera Mainnet

Not financial advice · Use at your own risk

Developer Tools

Swap Widget

Embed a fully functional, non-custodial Hedera swap widget into any website or app. Users trade directly — you don't touch the funds.

Non-custodial Zero backend Any token Dark & Light mode Responsive

Configure

Choose a token and customize the widget appearance.

Prefill the widget with a specific token. Leave blank for the user to choose.

Match the widget to your site's color scheme.

Widget auto-adjusts height. Minimum recommended: 360px.

420

Embed URL

https://oyrn.xyz/embed/swap?theme=dark
Live Preview
420px

Embed Code

Drop one of these snippets wherever you want the swap to appear.

HTML / Webflow / Any CMS

html
<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

jsx
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"
    />
  );
}