What’s coming
The DZap embeddable widget will let you drop a full swap/bridge UI into any web app:
- React + plain JS bundles
- Themeable to match your brand
- Pre-fillable from URL params (chain, tokens, amount)
- Wallet adapter passthrough
- Compatible with Partner Fees for monetization
In the meantime
If you want to give users a swap experience today without building UI from scratch, two paths:
1. Deep links to the DZap app
Generate pre-filled links to app.dzap.io:
const url = await sdk.getTool('SwapLinkGeneratorTool').execute({
fromChain: 42161,
srcToken: '0xaf88...',
destToken: '0x82aF...',
amount: '100000000',
});
window.open(url, '_blank');
2. Roll your own with the SDK
@dzapio/sdk covers everything the widget will eventually wrap. See First Swap for the basic shape.
Track release
Changelog · @dzap_io on X · Discord. Last modified on May 4, 2026