Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/portfolio-contract/src/plan-solve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -436,12 +436,12 @@ export const rebalanceMinCostFlowSteps = (
case 'gmpTransfer':
// TODO: Rather than hard-code, derive from Axelar `estimateGasFee`.
// https://docs.axelar.dev/dev/axelarjs-sdk/axelar-query-api#estimategasfee
details = { fee: AmountMath.make(graph.feeBrand, 30_000_000n) };
details = { fee: AmountMath.make(graph.feeBrand, 40_000_000n) };
break;
case 'gmpCall':
// TODO: Rather than hard-code, derive from Axelar `estimateGasFee`.
// https://docs.axelar.dev/dev/axelarjs-sdk/axelar-query-api#estimategasfee
details = { fee: AmountMath.make(graph.feeBrand, 30_000_000n) };
details = { fee: AmountMath.make(graph.feeBrand, 80_000_000n) };
break;
case 'toUSDN': {
// NOTE USDN transfer incurs a fee on output amount in basis points
Expand Down
Loading