@@ -9,34 +9,34 @@ import {
9
9
SystemProgram ,
10
10
TransactionInstruction ,
11
11
} from "@solana/web3.js" ;
12
+ import { TokenRouter } from "@wormhole-foundation/example-liquidity-layer-definitions" ;
12
13
import { ChainId , encoding , toChain , toChainId } from "@wormhole-foundation/sdk-base" ;
13
- import { UniversalAddress , toUniversal } from "@wormhole-foundation/sdk-definitions" ;
14
+ import { toUniversal } from "@wormhole-foundation/sdk-definitions" ;
14
15
import { deserializePostMessage } from "@wormhole-foundation/sdk-solana-core" ;
15
16
import { expect } from "chai" ;
16
17
import { CctpTokenBurnMessage } from "../src/cctp" ;
17
18
import { LiquidityLayerDeposit , LiquidityLayerMessage , uint64ToBN } from "../src/common" ;
19
+ import { SolanaTokenRouter , SolanaTokenRouterContracts } from "../src/protocol" ;
18
20
import {
19
21
CircleAttester ,
20
22
DEFAULT_ADDRESSES ,
21
23
ETHEREUM_USDC_ADDRESS ,
22
24
LOCALHOST ,
23
- MOCK_GUARDIANS ,
24
25
OWNER_ASSISTANT_KEYPAIR ,
25
26
OWNER_KEYPAIR ,
26
27
PAYER_KEYPAIR ,
27
28
REGISTERED_TOKEN_ROUTERS ,
28
29
USDC_MINT_ADDRESS ,
30
+ createLiquidityLayerVaa ,
29
31
expectIxErr ,
30
32
expectIxOk ,
31
33
expectTxsErr ,
32
34
expectTxsOk ,
33
35
getSdkSigner ,
34
- postLiquidityLayerVaa ,
36
+ postLiquidityLayerVaav2 ,
35
37
toUniversalAddress ,
36
38
} from "../src/testing" ;
37
39
import { Custodian , PreparedOrder , TokenRouterProgram } from "../src/tokenRouter" ;
38
- import { SolanaTokenRouter , SolanaTokenRouterContracts } from "../src/protocol" ;
39
- import { TokenRouter } from "@wormhole-foundation/example-liquidity-layer-definitions" ;
40
40
41
41
const SOLANA_CHAIN_ID = toChainId ( "Solana" ) ;
42
42
@@ -1176,15 +1176,20 @@ describe("Token Router", function () {
1176
1176
} ) ,
1177
1177
} ) ;
1178
1178
1179
- const vaa = await postLiquidityLayerVaa (
1179
+ const mockInvalidVaa = await createLiquidityLayerVaa (
1180
1180
connection ,
1181
- payer ,
1182
- MOCK_GUARDIANS ,
1183
1181
foreignEndpointAddress ,
1184
1182
wormholeSequence ++ ,
1185
1183
message ,
1186
1184
{ sourceChain : "Polygon" } ,
1187
1185
) ;
1186
+
1187
+ const { address : vaa } = await postLiquidityLayerVaav2 (
1188
+ payerSigner ,
1189
+ tokenRouter . matchingEngine ,
1190
+ mockInvalidVaa ,
1191
+ ) ;
1192
+
1188
1193
const ix = await tokenRouter . redeemCctpFillIx (
1189
1194
{
1190
1195
payer : payer . publicKey ,
@@ -1250,14 +1255,19 @@ describe("Token Router", function () {
1250
1255
} ) ,
1251
1256
} ) ;
1252
1257
1253
- const vaa = await postLiquidityLayerVaa (
1258
+ const mockInvalidVaa = await createLiquidityLayerVaa (
1254
1259
connection ,
1255
- payer ,
1256
- MOCK_GUARDIANS ,
1257
1260
new Array ( 32 ) . fill ( 0 ) , // emitter address
1258
1261
wormholeSequence ++ ,
1259
1262
message ,
1260
1263
) ;
1264
+
1265
+ const { address : vaa } = await postLiquidityLayerVaav2 (
1266
+ payerSigner ,
1267
+ tokenRouter . matchingEngine ,
1268
+ mockInvalidVaa ,
1269
+ ) ;
1270
+
1261
1271
const ix = await tokenRouter . redeemCctpFillIx (
1262
1272
{
1263
1273
payer : payer . publicKey ,
@@ -1321,14 +1331,19 @@ describe("Token Router", function () {
1321
1331
const encodedMessage = message . encode ( ) ;
1322
1332
encodedMessage [ 147 ] = 69 ;
1323
1333
1324
- const vaa = await postLiquidityLayerVaa (
1334
+ const mockInvalidVaa = await createLiquidityLayerVaa (
1325
1335
connection ,
1326
- payer ,
1327
- MOCK_GUARDIANS ,
1328
1336
foreignEndpointAddress ,
1329
1337
wormholeSequence ++ ,
1330
1338
encodedMessage ,
1331
1339
) ;
1340
+
1341
+ const { address : vaa } = await postLiquidityLayerVaav2 (
1342
+ payerSigner ,
1343
+ tokenRouter . matchingEngine ,
1344
+ mockInvalidVaa ,
1345
+ ) ;
1346
+
1332
1347
const ix = await tokenRouter . redeemCctpFillIx (
1333
1348
{
1334
1349
payer : payer . publicKey ,
@@ -1388,23 +1403,22 @@ describe("Token Router", function () {
1388
1403
} ) ,
1389
1404
} ) ;
1390
1405
1391
- const vaa = await postLiquidityLayerVaa (
1406
+ const mockInvalidVaa = await createLiquidityLayerVaa (
1392
1407
connection ,
1393
- payer ,
1394
- MOCK_GUARDIANS ,
1395
1408
foreignEndpointAddress ,
1396
1409
wormholeSequence ++ ,
1397
1410
message ,
1398
1411
) ;
1412
+
1413
+ const { address : vaa } = await postLiquidityLayerVaav2 (
1414
+ payerSigner ,
1415
+ tokenRouter . matchingEngine ,
1416
+ mockInvalidVaa ,
1417
+ ) ;
1418
+
1399
1419
const ix = await tokenRouter . redeemCctpFillIx (
1400
- {
1401
- payer : payer . publicKey ,
1402
- vaa,
1403
- } ,
1404
- {
1405
- encodedCctpMessage,
1406
- cctpAttestation,
1407
- } ,
1420
+ { payer : payer . publicKey , vaa } ,
1421
+ { encodedCctpMessage, cctpAttestation } ,
1408
1422
) ;
1409
1423
1410
1424
const { value : lookupTableAccount } = await connection . getAddressLookupTable (
@@ -1465,14 +1479,18 @@ describe("Token Router", function () {
1465
1479
} ) ,
1466
1480
} ) ;
1467
1481
1468
- const vaa = await postLiquidityLayerVaa (
1482
+ const mockInvalidVaa = await createLiquidityLayerVaa (
1469
1483
connection ,
1470
- payer ,
1471
- MOCK_GUARDIANS ,
1472
1484
foreignEndpointAddress ,
1473
1485
wormholeSequence ++ ,
1474
1486
message ,
1475
1487
) ;
1488
+ const { address : vaa } = await postLiquidityLayerVaav2 (
1489
+ payerSigner ,
1490
+ tokenRouter . matchingEngine ,
1491
+ mockInvalidVaa ,
1492
+ ) ;
1493
+
1476
1494
const ix = await tokenRouter . redeemCctpFillIx (
1477
1495
{
1478
1496
payer : payer . publicKey ,
0 commit comments