Aggregated Swaps Modal

Understand how to use the SwapsModal components

If you want to have the Swaps component inside a modal on your dApp, we recommend you to use the SwapsModal component. We handle all the states and edge-cases, so you can focus on your dApp!

If you'd like to customise SwapsModal using a webapp, check out https://leap-elements.web.app

Usage

import {
  ElementsProvider,
  SwapsModal,
  WalletType
} from '@leapwallet/elements'
import { useState } from 'react'

import '@leapwallet/elements/styles.css'

const YourDapp = () => {
  const [isOpen, setIsOpen] = useState(false)
  
  // trigger the dApp's connect wallet flow
  const connectWallet = () => {}
  
  // set this to the currently connected wallet
  const connectedWalletType = WalletType.LEAP

  return (
    <div className="leap-ui">
      <button onClick={() => setIsOpen(true)}>
        Open Swaps Modal
      </button>
      <ElementsProvider
        connectWallet={connectWallet}
        connectedWalletType={connectedWalletType}
      >
        <SwapsModal
          isOpen={isOpen}
          setIsOpen={setIsOpen}
        />
      </ElementsProvider>
    </div>
  )
}

Props

isOpen (required)

A state variable for the open state of the modal

setIsOpen (required)

A function to change the open state of the modal.

All props of the Swaps component are supported in SwapsModal

Last updated