@@ -59,29 +59,18 @@ pub struct PlaceMarketOrderCctp<'info> {
59
59
) ]
60
60
prepared_custody_token : Box < Account < ' info , token:: TokenAccount > > ,
61
61
62
- /// Registered router endpoint representing a foreign Token Router. This account may have a
63
- /// CCTP domain encoded if this route is CCTP-enabled. For this instruction, it is required that
64
- /// [RouterEndpoint::cctp_domain] is `Some(value)`.
65
- ///
66
- /// Seeds must be \["registered_emitter", target_chain.to_be_bytes()\].
67
62
#[ account(
68
- seeds = [
69
- matching_engine:: state:: RouterEndpoint :: SEED_PREFIX ,
70
- router_endpoint. chain. to_be_bytes( ) . as_ref( ) ,
71
- ] ,
72
- bump = router_endpoint. bump,
73
- seeds:: program = matching_engine:: id( ) ,
74
63
constraint = {
75
64
require_eq!(
76
- router_endpoint . chain,
65
+ target_router_endpoint . chain,
77
66
prepared_order. target_chain,
78
67
TokenRouterError :: InvalidTargetRouter ,
79
68
) ;
80
69
81
70
true
82
71
}
83
72
) ]
84
- router_endpoint : Box < Account < ' info , matching_engine :: state :: RouterEndpoint > > ,
73
+ target_router_endpoint : RegisteredEndpoint < ' info > ,
85
74
86
75
/// CHECK: Seeds must be \["Bridge"\] (Wormhole Core Bridge program).
87
76
#[ account( mut ) ]
@@ -172,7 +161,7 @@ pub struct PlaceMarketOrderCctp<'info> {
172
161
///
173
162
/// See [burn_and_publish](wormhole_cctp_solana::cpi::burn_and_publish) for more details.
174
163
pub fn place_market_order_cctp ( ctx : Context < PlaceMarketOrderCctp > ) -> Result < ( ) > {
175
- match ctx. accounts . router_endpoint . protocol {
164
+ match ctx. accounts . target_router_endpoint . protocol {
176
165
matching_engine:: state:: MessageProtocol :: Cctp { domain } => {
177
166
handle_place_market_order_cctp ( ctx, domain)
178
167
}
@@ -192,7 +181,7 @@ fn handle_place_market_order_cctp(
192
181
let prepared_custody_token = & ctx. accounts . prepared_custody_token ;
193
182
let token_program = & ctx. accounts . token_program ;
194
183
let system_program = & ctx. accounts . system_program ;
195
- let router_endpoint = & ctx. accounts . router_endpoint ;
184
+ let target_router_endpoint = & ctx. accounts . target_router_endpoint ;
196
185
197
186
let order_info = & ctx. accounts . prepared_order . info ;
198
187
@@ -268,10 +257,10 @@ fn handle_place_market_order_cctp(
268
257
) ,
269
258
wormhole_cctp_solana:: cpi:: BurnAndPublishArgs {
270
259
burn_source : order_info. src_token . into ( ) ,
271
- destination_caller : router_endpoint . address ,
260
+ destination_caller : target_router_endpoint . address ,
272
261
destination_cctp_domain,
273
262
amount : prepared_custody_token. amount ,
274
- mint_recipient : router_endpoint . mint_recipient ,
263
+ mint_recipient : target_router_endpoint . mint_recipient ,
275
264
wormhole_message_nonce : common:: WORMHOLE_MESSAGE_NONCE ,
276
265
payload : common:: messages:: Fill {
277
266
source_chain : SOLANA_CHAIN ,
0 commit comments