We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47c245e commit b12907aCopy full SHA for b12907a
docs/pages/developers/evm/intent-gateway-sdk.mdx
@@ -330,11 +330,9 @@ const finalizedHeight = step.value.data.proof.height;
330
### Submit cancel transaction and continue
331
332
```typescript
333
-import { parseUnits } from "viem";
334
-
335
// 4. Submit cancel transaction on the source chain
336
const cancelOptions = {
337
- relayerFee: parseUnits("0.05", 18),
+ relayerFee: 0n,
338
height: finalizedHeight,
339
};
340
@@ -601,7 +599,7 @@ async function cancelExpiredOrder(order: Order) {
601
599
});
602
600
603
604
605
606
607
0 commit comments