-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathanchor.test.ts
421 lines (368 loc) · 11.9 KB
/
anchor.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
import * as anchor from "@coral-xyz/anchor";
import * as spl from "@solana/spl-token";
import {
ChainAddress,
ChainContext,
Signer,
UniversalAddress,
Wormhole,
contracts,
deserialize,
deserializePayload,
encoding,
serialize,
serializePayload,
signSendWait as ssw,
AccountAddress,
} from "@wormhole-foundation/sdk";
import * as testing from "@wormhole-foundation/sdk-definitions/testing";
import {
SolanaAddress,
SolanaPlatform,
getSolanaSignAndSendSigner,
} from "@wormhole-foundation/sdk-solana";
import { SolanaWormholeCore } from "@wormhole-foundation/sdk-solana-core";
import * as fs from "fs";
import {
PublicKey,
sendAndConfirmTransaction,
SystemProgram,
Transaction,
} from "@solana/web3.js";
import { DummyTransferHook } from "../ts/idl/1_0_0/ts/dummy_transfer_hook.js";
import { SolanaNtt } from "../ts/sdk/index.js";
const solanaRootDir = `${__dirname}/../`;
const GUARDIAN_KEY =
"cfb12303a19cde580bb4dd771639b0d26bc68353645571a8cff516ab2ee113a0";
const CORE_BRIDGE_ADDRESS = contracts.coreBridge("Mainnet", "Solana");
const NTT_ADDRESS = anchor.workspace.ExampleNativeTokenTransfers.programId;
async function signSendWait(
chain: ChainContext<any, any, any>,
txs: AsyncGenerator<any>,
signer: Signer
) {
try {
await ssw(chain, txs, signer);
} catch (e) {
console.error(e);
}
}
const w = new Wormhole("Devnet", [SolanaPlatform], {
chains: { Solana: { contracts: { coreBridge: CORE_BRIDGE_ADDRESS } } },
});
const remoteXcvr: ChainAddress = {
chain: "Ethereum",
address: new UniversalAddress(
encoding.bytes.encode("transceiver".padStart(32, "\0"))
),
};
const remoteMgr: ChainAddress = {
chain: "Ethereum",
address: new UniversalAddress(
encoding.bytes.encode("nttManager".padStart(32, "\0"))
),
};
const payerSecretKey = Uint8Array.from(
JSON.parse(
fs.readFileSync(`${solanaRootDir}/keys/test.json`, {
encoding: "utf-8",
})
)
);
const payer = anchor.web3.Keypair.fromSecretKey(payerSecretKey);
const owner = anchor.web3.Keypair.generate();
const connection = new anchor.web3.Connection(
"http://localhost:8899",
"confirmed"
);
// Make sure we're using the exact same Connection obj for rpc
const ctx: ChainContext<"Devnet", "Solana"> = w
.getPlatform("Solana")
.getChain("Solana", connection);
let tokenAccount: anchor.web3.PublicKey;
const mint = anchor.web3.Keypair.generate();
const dummyTransferHook = anchor.workspace
.DummyTransferHook as anchor.Program<DummyTransferHook>;
const [extraAccountMetaListPDA] = PublicKey.findProgramAddressSync(
[Buffer.from("extra-account-metas"), mint.publicKey.toBuffer()],
dummyTransferHook.programId
);
const [counterPDA] = PublicKey.findProgramAddressSync(
[Buffer.from("counter")],
dummyTransferHook.programId
);
async function counterValue(): Promise<anchor.BN> {
const counter = await dummyTransferHook.account.counter.fetch(counterPDA);
return counter.count;
}
const coreBridge = new SolanaWormholeCore("Devnet", "Solana", connection, {
coreBridge: CORE_BRIDGE_ADDRESS,
});
const TOKEN_PROGRAM = spl.TOKEN_2022_PROGRAM_ID;
describe("native-token-transfers", () => {
let ntt: SolanaNtt<"Devnet", "Solana">;
let signer: Signer;
let sender: AccountAddress<"Solana">;
let tokenAddress: string;
beforeAll(async () => {
try {
signer = await getSolanaSignAndSendSigner(connection, payer, {
//debug: true,
});
sender = Wormhole.parseAddress("Solana", signer.address());
const extensions = [spl.ExtensionType.TransferHook];
const mintLen = spl.getMintLen(extensions);
const lamports = await connection.getMinimumBalanceForRentExemption(
mintLen
);
const transaction = new Transaction().add(
SystemProgram.createAccount({
fromPubkey: payer.publicKey,
newAccountPubkey: mint.publicKey,
space: mintLen,
lamports,
programId: TOKEN_PROGRAM,
}),
spl.createInitializeTransferHookInstruction(
mint.publicKey,
owner.publicKey,
dummyTransferHook.programId,
TOKEN_PROGRAM
),
spl.createInitializeMintInstruction(
mint.publicKey,
9,
owner.publicKey,
null,
TOKEN_PROGRAM
)
);
const { blockhash } = await connection.getLatestBlockhash();
transaction.feePayer = payer.publicKey;
transaction.recentBlockhash = blockhash;
await sendAndConfirmTransaction(connection, transaction, [payer, mint], {
commitment: "confirmed",
});
tokenAccount = await spl.createAssociatedTokenAccount(
connection,
payer,
mint.publicKey,
payer.publicKey,
undefined,
TOKEN_PROGRAM,
spl.ASSOCIATED_TOKEN_PROGRAM_ID
);
await spl.mintTo(
connection,
payer,
mint.publicKey,
tokenAccount,
owner,
10_000_000n,
undefined,
undefined,
TOKEN_PROGRAM
);
tokenAddress = mint.publicKey.toBase58();
// Create our contract client
ntt = new SolanaNtt("Devnet", "Solana", connection, {
...ctx.config.contracts,
ntt: {
token: tokenAddress,
manager: NTT_ADDRESS,
transceiver: { wormhole: NTT_ADDRESS },
},
});
} catch (e) {
console.error("Failed to setup solana token: ", e);
throw e;
}
});
describe("Locking", () => {
beforeAll(async () => {
try {
await spl.setAuthority(
connection,
payer,
mint.publicKey,
owner,
spl.AuthorityType.MintTokens,
ntt.pdas.tokenAuthority(),
[],
undefined,
TOKEN_PROGRAM
);
// init
const initTxs = ntt.initialize(sender, {
mint: mint.publicKey,
outboundLimit: 1000000n,
mode: "burning",
});
await signSendWait(ctx, initTxs, signer);
// register
const registerTxs = ntt.registerTransceiver({
payer: new SolanaAddress(payer.publicKey),
owner: new SolanaAddress(payer.publicKey),
transceiver: ntt.program.programId,
});
await signSendWait(ctx, registerTxs, signer);
// Set Wormhole xcvr peer
const setXcvrPeerTxs = ntt.setWormholeTransceiverPeer(
remoteXcvr,
sender
);
await signSendWait(ctx, setXcvrPeerTxs, signer);
// Set manager peer
const setPeerTxs = ntt.setPeer(remoteMgr, 18, 1000000n, sender);
await signSendWait(ctx, setPeerTxs, signer);
} catch (e) {
console.error("Failed to setup peer: ", e);
throw e;
}
});
it("Create ExtraAccountMetaList Account", async () => {
const initializeExtraAccountMetaListInstruction =
await dummyTransferHook.methods
.initializeExtraAccountMetaList()
.accountsStrict({
payer: payer.publicKey,
mint: mint.publicKey,
counter: counterPDA,
extraAccountMetaList: extraAccountMetaListPDA,
tokenProgram: TOKEN_PROGRAM,
associatedTokenProgram: spl.ASSOCIATED_TOKEN_PROGRAM_ID,
systemProgram: SystemProgram.programId,
})
.instruction();
const transaction = new Transaction().add(
initializeExtraAccountMetaListInstruction
);
transaction.feePayer = payer.publicKey;
const { blockhash } = await connection.getLatestBlockhash();
transaction.recentBlockhash = blockhash;
transaction.sign(payer);
await sendAndConfirmTransaction(connection, transaction, [payer], {
commitment: "confirmed",
});
});
test("Can send tokens", async () => {
const amount = 100000n;
const sender = Wormhole.parseAddress("Solana", signer.address());
const receiver = testing.utils.makeUniversalChainAddress("Ethereum");
// TODO: keep or remove the `outboxItem` param?
// added as a way to keep tests the same but it technically breaks the Ntt interface
const outboxItem = anchor.web3.Keypair.generate();
const xferTxs = ntt.transfer(
sender,
amount,
receiver,
{ queue: false, automatic: false, gasDropoff: 0n },
outboxItem
);
await signSendWait(ctx, xferTxs, signer);
const wormholeMessage = ntt.pdas.wormholeMessageAccount(
outboxItem.publicKey
);
const unsignedVaa = await coreBridge.parsePostMessageAccount(
wormholeMessage
);
const transceiverMessage = deserializePayload(
"Ntt:WormholeTransfer",
unsignedVaa.payload
);
// assert that amount is what we expect
expect(
transceiverMessage.nttManagerPayload.payload.trimmedAmount
).toMatchObject({ amount: 10000n, decimals: 8 });
// get from balance
const balance = await connection.getTokenAccountBalance(tokenAccount);
expect(balance.value.amount).toBe("9900000");
});
it("Can receive tokens", async () => {
const emitter = new testing.mocks.MockEmitter(
remoteXcvr.address as UniversalAddress,
"Ethereum",
0n
);
const guardians = new testing.mocks.MockGuardians(0, [GUARDIAN_KEY]);
const sender = Wormhole.parseAddress("Solana", signer.address());
const sendingTransceiverMessage = {
sourceNttManager: remoteMgr.address as UniversalAddress,
recipientNttManager: new UniversalAddress(
ntt.program.programId.toBytes()
),
nttManagerPayload: {
id: encoding.bytes.encode("sequence1".padEnd(32, "0")),
sender: new UniversalAddress("FACE".padStart(64, "0")),
payload: {
trimmedAmount: {
amount: 10000n,
decimals: 8,
},
sourceToken: new UniversalAddress("FAFA".padStart(64, "0")),
recipientAddress: new UniversalAddress(payer.publicKey.toBytes()),
recipientChain: "Solana",
additionalPayload: new Uint8Array(),
},
},
transceiverPayload: new Uint8Array(),
} as const;
const serialized = serializePayload(
"Ntt:WormholeTransfer",
sendingTransceiverMessage
);
const published = emitter.publishMessage(0, serialized, 200);
const rawVaa = guardians.addSignatures(published, [0]);
const vaa = deserialize("Ntt:WormholeTransfer", serialize(rawVaa));
const redeemTxs = ntt.redeem([vaa], sender);
try {
await signSendWait(ctx, redeemTxs, signer);
} catch (e) {
console.error(e);
throw e;
}
// expect(released).toEqual(true);
expect((await counterValue()).toString()).toEqual("2");
});
});
describe("Static Checks", () => {
const wh = new Wormhole("Devnet", [SolanaPlatform]);
const ctx = wh.getChain("Solana");
const overrides = {
Solana: {
token: tokenAddress,
manager: NTT_ADDRESS,
transceiver: { wormhole: NTT_ADDRESS },
},
};
describe("ABI Versions Test", function () {
test("It initializes from Rpc", async function () {
const ntt = await SolanaNtt.fromRpc(connection, {
Solana: {
...ctx.config,
contracts: {
...ctx.config.contracts,
ntt: overrides["Solana"],
},
},
});
expect(ntt).toBeTruthy();
});
test("It initializes from constructor", async function () {
const ntt = new SolanaNtt("Devnet", "Solana", connection, {
...ctx.config.contracts,
...{ ntt: overrides["Solana"] },
});
expect(ntt).toBeTruthy();
});
test("It gets the correct version", async function () {
const version = await SolanaNtt.getVersion(
connection,
{ ntt: overrides["Solana"] },
new SolanaAddress(payer.publicKey.toBase58())
);
expect(version).toBe("2.0.0");
});
});
});
});