We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53f1f82 commit 9f7a0d5Copy full SHA for 9f7a0d5
1 file changed
sdk/route/src/executor/executor.ts
@@ -72,6 +72,8 @@ export namespace NttExecutorRoute {
72
referrerFeeDbps?: bigint;
73
// Some tokens may require more gas to redeem than the default.
74
gasLimit?: bigint;
75
+ // Some tokens may require more msgValue than the default.
76
+ msgValue?: bigint;
77
}
78
>
79
@@ -381,6 +383,9 @@ export class NttExecutorRoute<N extends Network>
381
383
if (override?.gasLimit !== undefined) {
382
384
gasLimit = override.gasLimit;
385
386
+ if (override?.msgValue !== undefined) {
387
+ msgValue = override.msgValue;
388
+ }
389
390
391
const relayRequests = [];
0 commit comments