-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathmod.rs
674 lines (574 loc) · 20.7 KB
/
mod.rs
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
use std::ops::{Deref, DerefMut};
use crate::{
error::MatchingEngineError,
state::{
Auction, AuctionStatus, Custodian, FastFillSequencer, MessageProtocol,
PreparedOrderResponse, ReservedFastFillSequence, RouterEndpoint,
},
utils::{self, VaaDigest},
};
use anchor_lang::prelude::*;
use anchor_spl::token;
use common::{
admin::utils::{assistant::only_authorized, ownable::only_owner},
messages::raw::LiquidityLayerMessage,
wormhole_cctp_solana::{
cctp::{message_transmitter_program, token_messenger_minter_program},
wormhole::{core_bridge_program, VaaAccount},
},
};
#[derive(Accounts)]
pub struct Usdc<'info> {
/// CHECK: This address must equal [USDC_MINT](common::USDC_MINT).
#[account(address = common::USDC_MINT)]
pub mint: UncheckedAccount<'info>,
}
impl<'info> Deref for Usdc<'info> {
type Target = UncheckedAccount<'info>;
fn deref(&self) -> &Self::Target {
&self.mint
}
}
/// Mint recipient token account, which is encoded as the mint recipient in the CCTP message.
/// The CCTP Token Messenger Minter program will transfer the amount encoded in the CCTP message
/// from its custody account to this account.
///
/// CHECK: Mutable. Seeds must be \["custody"\].
///
/// NOTE: This account must be encoded as the mint recipient in the CCTP message.
#[derive(Accounts)]
pub struct CctpMintRecipientMut<'info> {
#[account(
mut,
address = crate::CCTP_MINT_RECIPIENT
)]
pub mint_recipient: Box<Account<'info, token::TokenAccount>>,
}
impl<'info> Deref for CctpMintRecipientMut<'info> {
type Target = Account<'info, token::TokenAccount>;
fn deref(&self) -> &Self::Target {
&self.mint_recipient
}
}
#[derive(Accounts)]
pub struct LiquidityLayerVaa<'info> {
/// CHECK: This VAA account must be a posted VAA from the Wormhole Core Bridge program.
#[account(
constraint = {
// NOTE: This load performs an owner check.
let vaa = VaaAccount::load(&vaa)?;
// Is it a legitimate LL message?
LiquidityLayerMessage::try_from(vaa.payload())
.map_err(|_| MatchingEngineError::InvalidVaa)?;
// Done.
true
}
)]
pub vaa: UncheckedAccount<'info>,
}
impl<'info> LiquidityLayerVaa<'info> {
pub fn load_unchecked(&self) -> VaaAccount<'_> {
VaaAccount::load_unchecked(self)
}
}
impl<'info> Deref for LiquidityLayerVaa<'info> {
type Target = UncheckedAccount<'info>;
fn deref(&self) -> &Self::Target {
&self.vaa
}
}
#[derive(Accounts)]
pub struct CheckedCustodian<'info> {
#[account(
seeds = [Custodian::SEED_PREFIX],
bump = Custodian::BUMP,
)]
pub custodian: Box<Account<'info, Custodian>>,
}
impl<'info> Deref for CheckedCustodian<'info> {
type Target = Account<'info, Custodian>;
fn deref(&self) -> &Self::Target {
&self.custodian
}
}
#[derive(Accounts)]
pub struct OwnerOnly<'info> {
#[account(
constraint = only_owner(
&custodian,
&owner,
error!(MatchingEngineError::OwnerOnly)
)?
)]
pub owner: Signer<'info>,
pub custodian: CheckedCustodian<'info>,
}
#[derive(Accounts)]
pub struct OwnerOnlyMut<'info> {
#[account(
constraint = only_owner(
&custodian,
&owner,
error!(MatchingEngineError::OwnerOnly)
)?
)]
pub owner: Signer<'info>,
#[account(
mut,
seeds = [Custodian::SEED_PREFIX],
bump = Custodian::BUMP,
)]
pub custodian: Box<Account<'info, Custodian>>,
}
#[derive(Accounts)]
pub struct Admin<'info> {
#[account(
constraint = only_authorized(
&custodian,
&owner_or_assistant,
error!(MatchingEngineError::OwnerOrAssistantOnly)
)?
)]
pub owner_or_assistant: Signer<'info>,
pub custodian: CheckedCustodian<'info>,
}
#[derive(Accounts)]
pub struct AdminMut<'info> {
#[account(
constraint = only_authorized(
&custodian,
&owner_or_assistant,
error!(MatchingEngineError::OwnerOrAssistantOnly)
)?
)]
pub owner_or_assistant: Signer<'info>,
#[account(
mut,
seeds = [Custodian::SEED_PREFIX],
bump = Custodian::BUMP,
)]
pub custodian: Box<Account<'info, Custodian>>,
}
#[derive(Accounts)]
pub struct LocalTokenRouter<'info> {
/// CHECK: Must be an executable (the Token Router program), whose ID will be used to derive the
/// emitter (router endpoint) address.
#[account(executable)]
pub token_router_program: UncheckedAccount<'info>,
/// CHECK: The Token Router program's emitter PDA (a.k.a. its custodian) will have account data.
#[account(
seeds = [b"emitter"],
bump,
seeds::program = token_router_program,
owner = token_router_program.key() @ MatchingEngineError::InvalidEndpoint,
constraint = !token_router_emitter.data_is_empty() @ MatchingEngineError::InvalidEndpoint,
)]
pub token_router_emitter: UncheckedAccount<'info>,
#[account(
associated_token::mint = common::USDC_MINT,
associated_token::authority = token_router_emitter,
)]
pub token_router_mint_recipient: Box<Account<'info, token::TokenAccount>>,
}
#[derive(Accounts)]
pub struct ExistingMutRouterEndpoint<'info> {
#[account(
mut,
seeds = [
RouterEndpoint::SEED_PREFIX,
&endpoint.chain.to_be_bytes()
],
bump = endpoint.bump,
)]
pub endpoint: Box<Account<'info, RouterEndpoint>>,
}
impl<'info> Deref for ExistingMutRouterEndpoint<'info> {
type Target = Account<'info, RouterEndpoint>;
fn deref(&self) -> &Self::Target {
&self.endpoint
}
}
impl<'info> DerefMut for ExistingMutRouterEndpoint<'info> {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.endpoint
}
}
#[derive(Accounts)]
pub struct LiveRouterEndpoint<'info> {
#[account(
seeds = [
RouterEndpoint::SEED_PREFIX,
&endpoint.chain.to_be_bytes()
],
bump = endpoint.bump,
constraint = {
endpoint.protocol != MessageProtocol::None
} @ MatchingEngineError::EndpointDisabled,
)]
pub endpoint: Box<Account<'info, RouterEndpoint>>,
}
impl<'info> Deref for LiveRouterEndpoint<'info> {
type Target = Account<'info, RouterEndpoint>;
fn deref(&self) -> &Self::Target {
&self.endpoint
}
}
#[derive(Accounts)]
pub struct LiveRouterPath<'info> {
pub from_endpoint: LiveRouterEndpoint<'info>,
#[account(
constraint = from_endpoint.chain != to_endpoint.chain @ MatchingEngineError::SameEndpoint
)]
pub to_endpoint: LiveRouterEndpoint<'info>,
}
#[derive(Accounts)]
pub struct FastOrderPath<'info> {
#[account(
constraint = {
let vaa = fast_vaa.load_unchecked();
require_eq!(
path.from_endpoint.chain,
vaa.emitter_chain(),
MatchingEngineError::InvalidSourceRouter
);
require!(
path.from_endpoint.address == vaa.emitter_address(),
MatchingEngineError::InvalidSourceRouter
);
let message = LiquidityLayerMessage::try_from(vaa.payload()).unwrap();
let order = message
.fast_market_order()
.ok_or_else(|| MatchingEngineError::NotFastMarketOrder)?;
require_eq!(
path.to_endpoint.chain,
order.target_chain(),
MatchingEngineError::InvalidTargetRouter
);
true
}
)]
pub fast_vaa: LiquidityLayerVaa<'info>,
pub path: LiveRouterPath<'info>,
}
impl<'info> Deref for FastOrderPath<'info> {
type Target = LiveRouterPath<'info>;
fn deref(&self) -> &Self::Target {
&self.path
}
}
#[derive(Accounts)]
pub struct ActiveAuction<'info> {
#[account(
mut,
seeds = [
Auction::SEED_PREFIX,
auction.vaa_hash.as_ref(),
],
bump = auction.bump,
constraint = matches!(auction.status, AuctionStatus::Active) @ MatchingEngineError::AuctionNotActive,
)]
pub auction: Box<Account<'info, Auction>>,
#[account(
mut,
seeds = [
crate::AUCTION_CUSTODY_TOKEN_SEED_PREFIX,
auction.key().as_ref(),
],
bump = auction.info.as_ref().unwrap().custody_token_bump,
)]
pub custody_token: Box<Account<'info, token::TokenAccount>>,
#[account(
constraint = {
require_eq!(
auction.info.as_ref().unwrap().config_id,
config.id,
MatchingEngineError::AuctionConfigMismatch
);
true
},
)]
pub config: Box<Account<'info, crate::state::AuctionConfig>>,
/// CHECK: Mutable. Must have the same key in auction data.
#[account(
mut,
address = auction.info.as_ref().unwrap().best_offer_token,
)]
pub best_offer_token: UncheckedAccount<'info>,
}
impl<'info> VaaDigest for ActiveAuction<'info> {
fn digest(&self) -> [u8; 32] {
self.auction.vaa_hash
}
}
impl<'info> Deref for ActiveAuction<'info> {
type Target = Account<'info, Auction>;
fn deref(&self) -> &Self::Target {
&self.auction
}
}
impl<'info> DerefMut for ActiveAuction<'info> {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.auction
}
}
#[derive(Accounts)]
pub struct ExecuteOrder<'info> {
/// CHECK: Must be owned by the Wormhole Core Bridge program.
#[account(
constraint = utils::require_vaa_hash_equals(&active_auction, &fast_vaa.load_unchecked())?
)]
pub fast_vaa: LiquidityLayerVaa<'info>,
#[account(
constraint = {
let info = active_auction.info.as_ref().unwrap();
require!(
!info.within_auction_duration(&active_auction.config),
MatchingEngineError::AuctionPeriodNotExpired
);
true
}
)]
pub active_auction: ActiveAuction<'info>,
/// Must be a token account, whose mint is [common::USDC_MINT].
#[account(
mut,
token::mint = common::USDC_MINT,
)]
pub executor_token: Box<Account<'info, token::TokenAccount>>,
/// CHECK: Mutable. Must equal [initial_offer](Auction::initial_offer).
#[account(
mut,
address = active_auction.info.as_ref().unwrap().initial_offer_token,
)]
pub initial_offer_token: UncheckedAccount<'info>,
/// CHECK: Must be the payer of the initial auction (see [Auction::prepared_by]).
#[account(
mut,
address = active_auction.prepared_by,
)]
pub initial_participant: UncheckedAccount<'info>,
}
#[derive(Accounts)]
pub struct WormholePublishMessage<'info> {
/// CHECK: Seeds must be \["Bridge"\] (Wormhole Core Bridge program).
#[account(mut)]
pub config: UncheckedAccount<'info>,
/// CHECK: Seeds must be \["Sequence"\, custodian] (Wormhole Core Bridge program).
#[account(mut)]
pub emitter_sequence: UncheckedAccount<'info>,
/// CHECK: Seeds must be \["fee_collector"\] (Wormhole Core Bridge program).
#[account(mut)]
pub fee_collector: UncheckedAccount<'info>,
/// CHECK: Must equal Wormhole Core Bridge program ID.
#[account(address = core_bridge_program::id())]
pub core_bridge_program: UncheckedAccount<'info>,
}
#[derive(Accounts)]
pub struct CctpDepositForBurn<'info> {
/// Circle-supported mint.
///
/// CHECK: Mutable. This token account's mint must be the same as the one found in the CCTP
/// Token Messenger Minter program's local token account.
#[account(mut)]
pub mint: UncheckedAccount<'info>,
/// CHECK: Seeds must be \["sender_authority"\] (CCTP Token Messenger Minter program).
pub token_messenger_minter_sender_authority: UncheckedAccount<'info>,
/// CHECK: Mutable. Seeds must be \["message_transmitter"\] (CCTP Message Transmitter program).
#[account(mut)]
pub message_transmitter_config: UncheckedAccount<'info>,
/// CHECK: Seeds must be \["token_messenger"\] (CCTP Token Messenger Minter program).
pub token_messenger: UncheckedAccount<'info>,
/// CHECK: Seeds must be \["remote_token_messenger"\, remote_domain.to_string()] (CCTP Token
/// Messenger Minter program).
pub remote_token_messenger: UncheckedAccount<'info>,
/// CHECK Seeds must be \["token_minter"\] (CCTP Token Messenger Minter program).
pub token_minter: UncheckedAccount<'info>,
/// Local token account, which this program uses to validate the `mint` used to burn.
///
/// CHECK: Mutable. Seeds must be \["local_token", mint\] (CCTP Token Messenger Minter program).
#[account(mut)]
pub local_token: UncheckedAccount<'info>,
/// CHECK: Seeds must be \["__event_authority"\] (CCTP Token Messenger Minter program).
pub token_messenger_minter_event_authority: UncheckedAccount<'info>,
/// CHECK: Must equal CCTP Token Messenger Minter program ID.
#[account(address = token_messenger_minter_program::id())]
pub token_messenger_minter_program: UncheckedAccount<'info>,
/// CHECK: Must equal CCTP Message Transmitter program ID.
#[account(address = message_transmitter_program::id())]
pub message_transmitter_program: UncheckedAccount<'info>,
}
#[derive(Accounts)]
pub struct CctpReceiveMessage<'info> {
pub mint_recipient: CctpMintRecipientMut<'info>,
/// CHECK: Seeds must be \["message_transmitter_authority"\] (CCTP Message Transmitter program).
pub message_transmitter_authority: UncheckedAccount<'info>,
/// CHECK: Seeds must be \["message_transmitter"\] (CCTP Message Transmitter program).
pub message_transmitter_config: UncheckedAccount<'info>,
/// CHECK: Mutable. Seeds must be \["used_nonces", remote_domain.to_string(),
/// first_nonce.to_string()\] (CCTP Message Transmitter program).
#[account(mut)]
pub used_nonces: UncheckedAccount<'info>,
/// CHECK: Seeds must be \["__event_authority"\] (CCTP Message Transmitter program)).
pub message_transmitter_event_authority: UncheckedAccount<'info>,
/// CHECK: Seeds must be \["token_messenger"\] (CCTP Token Messenger Minter program).
pub token_messenger: UncheckedAccount<'info>,
/// CHECK: Seeds must be \["remote_token_messenger"\, remote_domain.to_string()] (CCTP Token
/// Messenger Minter program).
pub remote_token_messenger: UncheckedAccount<'info>,
/// CHECK: Seeds must be \["token_minter"\] (CCTP Token Messenger Minter program).
pub token_minter: UncheckedAccount<'info>,
/// Token Messenger Minter's Local Token account. This program uses the mint of this account to
/// validate the `mint_recipient` token account's mint.
///
/// CHECK: Mutable. Seeds must be \["local_token", mint\] (CCTP Token Messenger Minter program).
#[account(mut)]
pub local_token: UncheckedAccount<'info>,
/// CHECK: Seeds must be \["token_pair", remote_domain.to_string(), remote_token_address\] (CCTP
/// Token Messenger Minter program).
pub token_pair: UncheckedAccount<'info>,
/// CHECK: Mutable. Seeds must be \["custody", mint\] (CCTP Token Messenger Minter program).
#[account(mut)]
pub token_messenger_minter_custody_token: UncheckedAccount<'info>,
/// CHECK: Seeds must be \["__event_authority"\] (CCTP Token Messenger Minter program).
pub token_messenger_minter_event_authority: UncheckedAccount<'info>,
/// CHECK: Must equal CCTP Token Messenger Minter program ID.
#[account(address = token_messenger_minter_program::id())]
pub token_messenger_minter_program: UncheckedAccount<'info>,
/// CHECK: Must equal CCTP Message Transmitter program ID.
#[account(address = message_transmitter_program::id())]
pub message_transmitter_program: UncheckedAccount<'info>,
}
#[derive(Accounts)]
pub struct ClosePreparedOrderResponse<'info> {
/// CHECK: Must equal the prepared_by field in the prepared order response.
#[account(
mut,
address = order_response.prepared_by,
)]
pub by: UncheckedAccount<'info>,
#[account(
mut,
close = by,
seeds = [
PreparedOrderResponse::SEED_PREFIX,
order_response.seeds.fast_vaa_hash.as_ref()
],
bump = order_response.seeds.bump,
)]
pub order_response: Box<Account<'info, PreparedOrderResponse>>,
/// CHECK: Seeds must be \["prepared-custody"\, prepared_order_response.key()].
#[account(
mut,
seeds = [
crate::PREPARED_CUSTODY_TOKEN_SEED_PREFIX,
order_response.key().as_ref(),
],
bump,
)]
pub custody_token: Box<Account<'info, token::TokenAccount>>,
}
impl<'info> VaaDigest for ClosePreparedOrderResponse<'info> {
fn digest(&self) -> [u8; 32] {
self.order_response.seeds.fast_vaa_hash
}
}
#[derive(Accounts)]
pub struct ReserveFastFillSequence<'info> {
#[account(mut)]
pub payer: Signer<'info>,
pub fast_order_path: FastOrderPath<'info>,
/// This sequencer determines the next reserved sequence. If it does not exist for a given
/// source chain and sender, it will be created.
///
/// Auction participants may want to consider pricing the creation of this account into their
/// offer prices by checking whether this sequencer already exists for those orders destined for
/// Solana.
#[account(
init_if_needed,
payer = payer,
space = 8 + FastFillSequencer::INIT_SPACE,
seeds = [
FastFillSequencer::SEED_PREFIX,
&fast_order_path.fast_vaa.load_unchecked().emitter_chain().to_be_bytes(),
&{
let vaa = fast_order_path.fast_vaa.load_unchecked();
LiquidityLayerMessage::try_from(vaa.payload())
.unwrap()
.to_fast_market_order_unchecked().sender()
},
],
bump,
)]
pub sequencer: Box<Account<'info, FastFillSequencer>>,
/// This account will be used to determine the sequence of the next fast fill. When a local
/// order is executed or an non-existent auction is settled, this account will be closed.
#[account(
init,
payer = payer,
space = 8 + ReservedFastFillSequence::INIT_SPACE,
seeds = [
ReservedFastFillSequence::SEED_PREFIX,
fast_order_path.fast_vaa.load_unchecked().digest().as_ref(),
],
bump,
)]
pub reserved: Box<Account<'info, ReservedFastFillSequence>>,
/// CHECK: This auction account may not exist. If it does not exist, the prepared order response
/// must have been created by this point. Otherwise the auction account must reflect a completed
/// auction.
#[account(
init_if_needed,
payer = payer,
space = if auction.data_is_empty() {
8 + Auction::INIT_SPACE_NO_AUCTION
} else {
auction.data_len()
},
seeds = [
Auction::SEED_PREFIX,
fast_order_path.fast_vaa.load_unchecked().digest().as_ref(),
],
bump,
constraint = match &auction.info {
Some(info) => {
// Verify that the auction is active.
require_eq!(
&auction.status,
&AuctionStatus::Active,
MatchingEngineError::AuctionNotActive
);
// Out of paranoia, check that the auction is for a local fill.
require!(
matches!(auction.target_protocol, MessageProtocol::Local { .. }),
MatchingEngineError::InvalidTargetRouter
);
true
},
None => {
// This check makes sure that the auction account did not exist before this
// instruction was called.
require!(
auction.vaa_hash == <[u8; 32]>::default(),
MatchingEngineError::AuctionExists,
);
true
}
},
)]
pub auction: Box<Account<'info, Auction>>,
system_program: Program<'info, System>,
}
/// NOTE: Keep this at the end in case Wormhole removes the need for these accounts.
#[derive(Accounts)]
pub struct RequiredSysvars<'info> {
/// Wormhole Core Bridge needs the clock sysvar based on its legacy implementation.
///
/// CHECK: Must equal clock ID.
#[account(address = solana_program::sysvar::clock::id())]
pub clock: UncheckedAccount<'info>,
/// Wormhole Core Bridge needs the rent sysvar based on its legacy implementation.
///
/// CHECK: Must equal rent ID.
#[account(address = solana_program::sysvar::rent::id())]
pub rent: UncheckedAccount<'info>,
}