Skip to content

Commit

Permalink
fix: adjust swap gas to 300T (#628)
Browse files Browse the repository at this point in the history
Co-authored-by: naturexie <[email protected]>
  • Loading branch information
xieqiancaosissi and naturexie authored Oct 26, 2024
1 parent 324b154 commit 90c7bd8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/services/swap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1238,7 +1238,7 @@ export const swapFromServer = async ({
...(tokenOut.symbol == 'NEAR' ? { skip_unwrap_near: false } : {}),
}),
},
gas: '180000000000000',
gas: '300000000000000',
amount: ONE_YOCTO_NEAR,
},
],
Expand Down Expand Up @@ -1388,7 +1388,7 @@ export const nearInstantSwap = async ({
...(tokenOut.symbol == 'NEAR' ? { skip_unwrap_near: false } : {}),
}),
},
gas: '180000000000000',
gas: '300000000000000',
amount: ONE_YOCTO_NEAR,
},
],
Expand Down Expand Up @@ -1777,7 +1777,7 @@ export const smartRouteSwapCase = async ({
actions: actionsList,
}),
},
gas: '180000000000000',
gas: '300000000000000',
amount: ONE_YOCTO_NEAR,
},
],
Expand Down Expand Up @@ -1821,7 +1821,7 @@ export const smartRouteSwapCase = async ({
actions: actionsList,
}),
},
gas: '180000000000000',
gas: '300000000000000',
amount: ONE_YOCTO_NEAR,
},
],
Expand Down Expand Up @@ -1885,7 +1885,7 @@ export const smartRouteSwapCase = async ({
actions: actionsList,
}),
},
gas: '180000000000000',
gas: '300000000000000',
amount: ONE_YOCTO_NEAR,
},
],
Expand Down

0 comments on commit 90c7bd8

Please sign in to comment.