Seamless bridging experience into a single fully customizable React Component
Socket Plugin is a React component that can be easily imported in any React (JS/TS) project. The plugin supports most features from Bungee.exchange. It brings the seamless bridging UX from Bungee to any DApp!
The plugin requires provider from user’s connected wallet & Socket’s API_KEY as props to initialise. Optional props can be passed to customize the plugin’s color scheme, pre-select the chains/tokens & also customize token lists.
The full documentation for the plugin can be found here
The plugin can be installed via NPM or Yarn.
NPM :
npm install @socket.tech/pluginYarn :
yarn add @socket.tech/pluginNote : The plugin requires react (>=17.0.1) and react-dom (>=17.0.1) as peerDepencies.
Copy the snippet below to get started! Pass the API_KEY from a .env file and Provider from user’s connected wallet.
import { Bridge } from "@socket.tech/plugin";
import { Provider } from "./providerComponent"
function SocketBridge() {
return (
<Bridge
provider={Provider}
API_KEY={process.env.SOCKET_API_KEY}
/>
)
}
export default SocketBridge;That’s it! You’ve successfully plugged your DApp into Socket! 🔌 For further customising the plugin, check the plugin docs.
Work In Progress 🛠

