@@ -159,7 +159,7 @@ describe("Fast Market Order Business Logic -- CCTP to CCTP", function (this: Moc
159
159
const minAmountOut = BigInt ( 0 ) ;
160
160
const deadline = 0 ;
161
161
const receipt = await fromTokenRouter
162
- . placeFastMarketOrder (
162
+ . placeFastMarketOrderTx (
163
163
amountIn ,
164
164
targetChain ,
165
165
Buffer . from ( tryNativeToUint8Array ( toWallet . address , toChainName ) ) ,
@@ -443,7 +443,7 @@ describe("Fast Market Order Business Logic -- CCTP to CCTP", function (this: Moc
443
443
const balanceBefore = await usdc . balanceOf ( toWallet . address ) ;
444
444
445
445
const receipt = await toTokenRouter
446
- . redeemFill ( orderResponse )
446
+ . redeemFillTx ( orderResponse )
447
447
. then ( ( tx ) => mineWait ( toProvider , tx ) )
448
448
. catch ( ( err ) => {
449
449
console . log ( err ) ;
@@ -540,7 +540,7 @@ describe("Fast Market Order Business Logic -- CCTP to CCTP", function (this: Moc
540
540
const minAmountOut = BigInt ( 0 ) ;
541
541
const deadline = 0 ;
542
542
const receipt = await fromTokenRouter
543
- . placeFastMarketOrder (
543
+ . placeFastMarketOrderTx (
544
544
amountIn ,
545
545
targetChain ,
546
546
Buffer . from ( tryNativeToUint8Array ( toWallet . address , toChainName ) ) ,
@@ -840,7 +840,7 @@ describe("Fast Market Order Business Logic -- CCTP to CCTP", function (this: Moc
840
840
const balanceBefore = await usdc . balanceOf ( toWallet . address ) ;
841
841
842
842
const receipt = await toTokenRouter
843
- . redeemFill ( orderResponse )
843
+ . redeemFillTx ( orderResponse )
844
844
. then ( ( tx ) => mineWait ( toProvider , tx ) )
845
845
. catch ( ( err ) => {
846
846
console . log ( err ) ;
@@ -939,7 +939,7 @@ describe("Fast Market Order Business Logic -- CCTP to CCTP", function (this: Moc
939
939
const minAmountOut = BigInt ( 0 ) ;
940
940
const deadline = 0 ;
941
941
const receipt = await fromTokenRouter
942
- . placeFastMarketOrder (
942
+ . placeFastMarketOrderTx (
943
943
amountIn ,
944
944
targetChain ,
945
945
Buffer . from ( tryNativeToUint8Array ( toWallet . address , toChainName ) ) ,
@@ -1089,7 +1089,7 @@ describe("Fast Market Order Business Logic -- CCTP to CCTP", function (this: Moc
1089
1089
const balanceBefore = await usdc . balanceOf ( toWallet . address ) ;
1090
1090
1091
1091
const receipt = await toTokenRouter
1092
- . redeemFill ( orderResponse )
1092
+ . redeemFillTx ( orderResponse )
1093
1093
. then ( ( tx ) => mineWait ( toProvider , tx ) )
1094
1094
. catch ( ( err ) => {
1095
1095
console . log ( err ) ;
@@ -1153,7 +1153,7 @@ describe("Fast Market Order Business Logic -- CCTP to CCTP", function (this: Moc
1153
1153
const deadline = ( await engineProvider . getBlock ( currentBlock ) ) . timestamp ;
1154
1154
1155
1155
const receipt = await fromTokenRouter
1156
- . placeFastMarketOrder (
1156
+ . placeFastMarketOrderTx (
1157
1157
amountIn ,
1158
1158
targetChain ,
1159
1159
Buffer . from ( tryNativeToUint8Array ( toWallet . address , toChainName ) ) ,
@@ -1339,7 +1339,7 @@ describe("Fast Market Order Business Logic -- CCTP to CCTP", function (this: Moc
1339
1339
const balanceBefore = await usdc . balanceOf ( toWallet . address ) ;
1340
1340
1341
1341
const receipt = await toTokenRouter
1342
- . redeemFill ( orderResponse )
1342
+ . redeemFillTx ( orderResponse )
1343
1343
. then ( ( tx ) => mineWait ( toProvider , tx ) )
1344
1344
. catch ( ( err ) => {
1345
1345
console . log ( err ) ;
0 commit comments