Comment on page
🔰
Bridge Insurance
A product by LI.FI and InsurAce that insures the transactions going through LI.FI for a small fee
Bridge Insurance is currently live on Jumper for you to test out. It has covered 14700 Unique Users across 27900 transactions by securing a total value of $7.5 million so far.
Bridge Insurance is now available for all of our B2B partners to offer to their users with all of our products.
Insurance is readily available on LI.FI's widget without any additional changes. Learn more about what is covered and what is not covered here.
By default, you get routes without Bridge Insurance using our SDK and API. To get routes with insurance, you would need to pass the boolean parameter
insurance
with the value true
in the RouteOptions
object of LI.FI SDK.To use insurance on our quote endpoint, pass another query parameter
insurance=true
along with your usual query. Here's an example quote request with insurance enabled:
https://li.quest/v1/quote?fromChain=DAI&toChain=POL&fromToken=0x4ecaba5870353805a9f068101a40e0f32ed605c6&toToken=0x2791bca1f2de4661ed88a30c99a7a9449aa84174&fromAddress=0x552008c0f6870c2f77e5cC1d2eb9bdff03e30Ea0&fromAmount=10000000&insurance=true
Bridge insurance is currently available on our Advanced Routes API endpoint. To get routes with Bridge Insurance, you need to pass
"insurance" = true
inside the options
object in the json payload. Here's an example payload to get routes with insurance:
// json payload
{
"options": {
"integrator": "lifi-api",
"insurance": true
},
"fromChainId": 42161,
"fromAmount": "10000000",
"fromTokenAddress": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9",
"toChainId": 10,
"toTokenAddress": "0x0000000000000000000000000000000000000000"
}
Last modified 14d ago