Refuel Integration
Refuel can be used in two ways via the Socket API :
- 1.Refuel as a bridge
- 2.Refuel as a middleware
For bridging small amounts of native tokens, Socket's quote API returns direct Refuel routes. Hence, Refuel is the bridge in this case.
This amount however needs to be within refuel's min/max limits for a given chain. These limits can be fetched using the Refuel limits API :
get
https://refuel.socket.tech
/chains
Returns supported chain & refuelling limits
- The limits array returned for a given chain highlights
minAmount
andmaxAmount
in the given chain's native token can be sent to destination chain - The amount entered in quote must be within the range of
minAmount
andmaxAmount
returned in the response above
For receiving gas tokens on destination chain in addition to the Swap+Bridge transaction.
- Users receive their tokens via the Bridge and Gas via Refuel.
- Integrators can enable this functionality by setting
bridgeWithGas
param in /quote totrue
. - Users will need to deposit 2x the
minAmount
returned by the limits API specified above on the source chain - In return, they'll receive equivalent amount of destination native tokens
- A refuel object is returned by the
/quote
API which needs to be passed in addition to the route object when calling the/build-tx
and/route/start
endpoints for Single Tx bridging and Multi Tx Bridging respectively
Last modified 9mo ago