React Installation
Installing the React component
React Installation Guide for Squid Widget
Prerequisites
Basic Integration
import { SquidWidget } from "@0xsquid/widget";function App() {
return (
<div className="App">
<SquidWidget
config={{
integratorId: "<your-integrator-id>",
apiUrl: "https://apiplus.squidrouter.com",
defaultTokensPerChain: [
{
address: "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
chainId: "1",
},
],
initialAssets: {
from: {
address: "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
chainId: "1",
},
to: {
address: "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
chainId: "42161",
},
},
}}
/>
</div>
);
}Customization
Advanced Configuration
Troubleshooting
Last updated