Skip to content

Commit f9766b1

Browse files
committed
solana: reorg prepared order response schema
1 parent 453a98b commit f9766b1

File tree

17 files changed

+104
-63
lines changed

17 files changed

+104
-63
lines changed

solana/programs/matching-engine/src/composite/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -533,9 +533,9 @@ pub struct ClosePreparedOrderResponse<'info> {
533533
close = by,
534534
seeds = [
535535
PreparedOrderResponse::SEED_PREFIX,
536-
order_response.fast_vaa_hash.as_ref()
536+
order_response.seeds.fast_vaa_hash.as_ref()
537537
],
538-
bump = order_response.bump,
538+
bump = order_response.seeds.bump,
539539
)]
540540
pub order_response: Box<Account<'info, PreparedOrderResponse>>,
541541

@@ -553,7 +553,7 @@ pub struct ClosePreparedOrderResponse<'info> {
553553

554554
impl<'info> VaaDigest for ClosePreparedOrderResponse<'info> {
555555
fn digest(&self) -> [u8; 32] {
556-
self.order_response.fast_vaa_hash
556+
self.order_response.seeds.fast_vaa_hash
557557
}
558558
}
559559

solana/programs/matching-engine/src/processor/auction/prepare_order_response/cctp.rs

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
use crate::{
22
composite::*,
33
error::MatchingEngineError,
4-
state::{Custodian, PreparedOrderResponse, PreparedOrderResponseInfo},
4+
state::{
5+
Custodian, PreparedOrderResponse, PreparedOrderResponseInfo, PreparedOrderResponseSeeds,
6+
},
57
};
68
use anchor_lang::prelude::*;
79
use anchor_spl::token;
@@ -209,9 +211,11 @@ fn handle_prepare_order_response_cctp(
209211
ctx.accounts
210212
.prepared_order_response
211213
.set_inner(PreparedOrderResponse {
212-
bump: ctx.bumps.prepared_order_response,
213-
info: PreparedOrderResponseInfo {
214+
seeds: PreparedOrderResponseSeeds {
214215
fast_vaa_hash: fast_vaa.digest().0,
216+
bump: ctx.bumps.prepared_order_response,
217+
},
218+
info: PreparedOrderResponseInfo {
215219
prepared_by: ctx.accounts.payer.key(),
216220
source_chain: finalized_vaa.emitter_chain(),
217221
base_fee: order_response.base_fee(),

solana/programs/matching-engine/src/processor/auction/settle/complete.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ pub struct SettleAuctionComplete<'info> {
3737
close = executor,
3838
seeds = [
3939
PreparedOrderResponse::SEED_PREFIX,
40-
prepared_order_response.fast_vaa_hash.as_ref()
40+
prepared_order_response.seeds.fast_vaa_hash.as_ref()
4141
],
42-
bump = prepared_order_response.bump,
42+
bump = prepared_order_response.seeds.bump,
4343
)]
4444
prepared_order_response: Account<'info, PreparedOrderResponse>,
4545

@@ -58,7 +58,7 @@ pub struct SettleAuctionComplete<'info> {
5858
mut,
5959
seeds = [
6060
Auction::SEED_PREFIX,
61-
prepared_order_response.fast_vaa_hash.as_ref(),
61+
prepared_order_response.seeds.fast_vaa_hash.as_ref(),
6262
],
6363
bump = auction.bump,
6464
)]
@@ -96,8 +96,8 @@ fn handle_settle_auction_complete(
9696

9797
let prepared_order_response_signer_seeds = &[
9898
PreparedOrderResponse::SEED_PREFIX,
99-
prepared_order_response.fast_vaa_hash.as_ref(),
100-
&[prepared_order_response.bump],
99+
prepared_order_response.seeds.fast_vaa_hash.as_ref(),
100+
&[prepared_order_response.seeds.bump],
101101
];
102102

103103
// We may deduct from this account if the winning participant was penalized.

solana/programs/matching-engine/src/processor/auction/settle/none/cctp.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ pub struct SettleAuctionNoneCctp<'info> {
5757
space = 8 + Auction::INIT_SPACE_NO_AUCTION,
5858
seeds = [
5959
Auction::SEED_PREFIX,
60-
prepared.order_response.fast_vaa_hash.as_ref(),
60+
prepared.order_response.seeds.fast_vaa_hash.as_ref(),
6161
],
6262
bump
6363
)]

solana/programs/matching-engine/src/processor/auction/settle/none/local.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ pub struct SettleAuctionNoneLocal<'info> {
4646
space = 8 + Auction::INIT_SPACE_NO_AUCTION,
4747
seeds = [
4848
Auction::SEED_PREFIX,
49-
prepared.order_response.fast_vaa_hash.as_ref(),
49+
prepared.order_response.seeds.fast_vaa_hash.as_ref(),
5050
],
5151
bump,
5252
)]

solana/programs/matching-engine/src/processor/auction/settle/none/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ fn settle_none_and_prepare_fill(
4141

4242
let prepared_order_response_signer_seeds = &[
4343
PreparedOrderResponse::SEED_PREFIX,
44-
prepared_order_response.fast_vaa_hash.as_ref(),
45-
&[prepared_order_response.bump],
44+
prepared_order_response.seeds.fast_vaa_hash.as_ref(),
45+
&[prepared_order_response.seeds.bump],
4646
];
4747

4848
// Pay the `fee_recipient` the base fee and init auction fee. This ensures that the protocol
@@ -83,7 +83,7 @@ fn settle_none_and_prepare_fill(
8383
// setting this could lead to trapped funds (which would require an upgrade to fix).
8484
auction.set_inner(Auction {
8585
bump: auction_bump_seed,
86-
vaa_hash: prepared_order_response.fast_vaa_hash,
86+
vaa_hash: prepared_order_response.seeds.fast_vaa_hash,
8787
vaa_timestamp: prepared_order_response.fast_vaa_timestamp,
8888
target_protocol: prepared_order_response.to_endpoint.protocol,
8989
status: AuctionStatus::Settled {

solana/programs/matching-engine/src/processor/fast_fill/reserve_sequence/no_auction.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pub struct ReserveFastFillSequenceNoAuction<'info> {
1616
constraint = {
1717
// Check association with fast order path.
1818
require!(
19-
prepared_order_response.fast_vaa_hash
19+
prepared_order_response.seeds.fast_vaa_hash
2020
== reserve_sequence.fast_order_path.fast_vaa.load_unchecked().digest().0,
2121
MatchingEngineError::VaaMismatch
2222
);
@@ -32,7 +32,7 @@ pub struct ReserveFastFillSequenceNoAuction<'info> {
3232
#[account(
3333
seeds = [
3434
Auction::SEED_PREFIX,
35-
prepared_order_response.fast_vaa_hash.as_ref(),
35+
prepared_order_response.seeds.fast_vaa_hash.as_ref(),
3636
],
3737
bump,
3838
constraint = auction.data_is_empty() @ MatchingEngineError::AuctionExists,
@@ -48,7 +48,7 @@ pub fn reserve_fast_fill_sequence_no_auction(
4848
super::set_reserved_sequence_data(
4949
&mut ctx.accounts.reserve_sequence,
5050
&ctx.bumps.reserve_sequence,
51-
prepared_order_response.fast_vaa_hash,
51+
prepared_order_response.seeds.fast_vaa_hash,
5252
prepared_order_response.prepared_by,
5353
)
5454
}

solana/programs/matching-engine/src/state/prepared_order_response.rs

+7-4
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@ use anchor_lang::prelude::*;
22

33
use super::EndpointInfo;
44

5-
// TODO: Change seeds
65
#[derive(Debug, AnchorSerialize, AnchorDeserialize, Clone, InitSpace)]
7-
pub struct PreparedOrderResponseInfo {
6+
pub struct PreparedOrderResponseSeeds {
87
pub fast_vaa_hash: [u8; 32],
8+
pub bump: u8,
9+
}
910

11+
#[derive(Debug, AnchorSerialize, AnchorDeserialize, Clone, InitSpace)]
12+
pub struct PreparedOrderResponseInfo {
1013
pub prepared_by: Pubkey,
1114

1215
pub fast_vaa_timestamp: u32,
@@ -21,7 +24,7 @@ pub struct PreparedOrderResponseInfo {
2124
#[account]
2225
#[derive(Debug)]
2326
pub struct PreparedOrderResponse {
24-
pub bump: u8,
27+
pub seeds: PreparedOrderResponseSeeds,
2528
pub info: PreparedOrderResponseInfo,
2629
pub to_endpoint: EndpointInfo,
2730
pub redeemer_message: Vec<u8>,
@@ -40,7 +43,7 @@ impl PreparedOrderResponse {
4043

4144
pub fn compute_size(redeemer_message_len: usize) -> usize {
4245
const FIXED: usize = 8 // DISCRIMINATOR
43-
+ 1 // bump
46+
+ PreparedOrderResponseSeeds::INIT_SPACE
4447
+ PreparedOrderResponseInfo::INIT_SPACE
4548
+ EndpointInfo::INIT_SPACE
4649
+ 4 // redeemer_message length

solana/programs/token-router/src/processor/redeem_fill/cctp.rs

-2
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,6 @@ pub struct RedeemCctpFill<'info> {
128128
);
129129
130130
// Validate that this message originated from a registered emitter.
131-
//
132-
// TODO: Put into account context.
133131
let endpoint = &router_endpoint;
134132
let emitter = fill_vaa.load_unchecked().emitter_info();
135133
require_eq!(

solana/target/idl/matching_engine.json

+27-11
Original file line numberDiff line numberDiff line change
@@ -3853,8 +3853,12 @@
38533853
"kind": "struct",
38543854
"fields": [
38553855
{
3856-
"name": "bump",
3857-
"type": "u8"
3856+
"name": "seeds",
3857+
"type": {
3858+
"defined": {
3859+
"name": "PreparedOrderResponseSeeds"
3860+
}
3861+
}
38583862
},
38593863
{
38603864
"name": "info",
@@ -3884,15 +3888,6 @@
38843888
"type": {
38853889
"kind": "struct",
38863890
"fields": [
3887-
{
3888-
"name": "fast_vaa_hash",
3889-
"type": {
3890-
"array": [
3891-
"u8",
3892-
32
3893-
]
3894-
}
3895-
},
38963891
{
38973892
"name": "prepared_by",
38983893
"type": "pubkey"
@@ -3938,6 +3933,27 @@
39383933
]
39393934
}
39403935
},
3936+
{
3937+
"name": "PreparedOrderResponseSeeds",
3938+
"type": {
3939+
"kind": "struct",
3940+
"fields": [
3941+
{
3942+
"name": "fast_vaa_hash",
3943+
"type": {
3944+
"array": [
3945+
"u8",
3946+
32
3947+
]
3948+
}
3949+
},
3950+
{
3951+
"name": "bump",
3952+
"type": "u8"
3953+
}
3954+
]
3955+
}
3956+
},
39413957
{
39423958
"name": "Proposal",
39433959
"type": {

solana/target/idl/token_router.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -819,8 +819,7 @@
819819
]
820820
},
821821
{
822-
"name": "matching_engine_custodian",
823-
"writable": true
822+
"name": "matching_engine_custodian"
824823
},
825824
{
826825
"name": "matching_engine_from_endpoint"

solana/target/types/matching_engine.ts

+27-11
Original file line numberDiff line numberDiff line change
@@ -3859,8 +3859,12 @@ export type MatchingEngine = {
38593859
"kind": "struct",
38603860
"fields": [
38613861
{
3862-
"name": "bump",
3863-
"type": "u8"
3862+
"name": "seeds",
3863+
"type": {
3864+
"defined": {
3865+
"name": "preparedOrderResponseSeeds"
3866+
}
3867+
}
38643868
},
38653869
{
38663870
"name": "info",
@@ -3890,15 +3894,6 @@ export type MatchingEngine = {
38903894
"type": {
38913895
"kind": "struct",
38923896
"fields": [
3893-
{
3894-
"name": "fastVaaHash",
3895-
"type": {
3896-
"array": [
3897-
"u8",
3898-
32
3899-
]
3900-
}
3901-
},
39023897
{
39033898
"name": "preparedBy",
39043899
"type": "pubkey"
@@ -3944,6 +3939,27 @@ export type MatchingEngine = {
39443939
]
39453940
}
39463941
},
3942+
{
3943+
"name": "preparedOrderResponseSeeds",
3944+
"type": {
3945+
"kind": "struct",
3946+
"fields": [
3947+
{
3948+
"name": "fastVaaHash",
3949+
"type": {
3950+
"array": [
3951+
"u8",
3952+
32
3953+
]
3954+
}
3955+
},
3956+
{
3957+
"name": "bump",
3958+
"type": "u8"
3959+
}
3960+
]
3961+
}
3962+
},
39473963
{
39483964
"name": "proposal",
39493965
"type": {

solana/target/types/token_router.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -825,8 +825,7 @@ export type TokenRouter = {
825825
]
826826
},
827827
{
828-
"name": "matchingEngineCustodian",
829-
"writable": true
828+
"name": "matchingEngineCustodian"
830829
},
831830
{
832831
"name": "matchingEngineFromEndpoint"

solana/ts/src/matchingEngine/index.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -1513,13 +1513,11 @@ export class MatchingEngineProgram {
15131513
let { auction, bestOfferToken } = accounts;
15141514

15151515
if (auction === undefined) {
1516-
const {
1517-
info: { fastVaaHash },
1518-
} = await this.fetchPreparedOrderResponse({
1516+
const { seeds } = await this.fetchPreparedOrderResponse({
15191517
address: preparedOrderResponse,
15201518
});
15211519

1522-
auction = this.auctionAddress(fastVaaHash);
1520+
auction = this.auctionAddress(seeds.fastVaaHash);
15231521
}
15241522

15251523
if (bestOfferToken === undefined) {

solana/ts/src/matchingEngine/state/PreparedOrderResponse.ts

+8-4
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@ import { PublicKey } from "@solana/web3.js";
33
import { VaaHash } from "../../common";
44
import { EndpointInfo } from "./RouterEndpoint";
55

6+
export type PreparedOrderResponseSeeds = {
7+
fastVaaHash: Array<number>;
8+
bump: number;
9+
};
10+
611
export type PreparedOrderResponseInfo = {
712
preparedBy: PublicKey;
8-
fastVaaHash: Array<number>;
913
fastVaaTimestamp: number;
1014
sourceChain: number;
1115
baseFee: BN;
@@ -16,18 +20,18 @@ export type PreparedOrderResponseInfo = {
1620
};
1721

1822
export class PreparedOrderResponse {
19-
bump: number;
23+
seeds: PreparedOrderResponseSeeds;
2024
info: PreparedOrderResponseInfo;
2125
toEndpoint: EndpointInfo;
2226
redeemerMessage: Buffer;
2327

2428
constructor(
25-
bump: number,
29+
seeds: PreparedOrderResponseSeeds,
2630
info: PreparedOrderResponseInfo,
2731
toEndpoint: EndpointInfo,
2832
redeemerMessage: Buffer,
2933
) {
30-
this.bump = bump;
34+
this.seeds = seeds;
3135
this.info = info;
3236
this.toEndpoint = toEndpoint;
3337
this.redeemerMessage = redeemerMessage;

solana/ts/tests/01__matchingEngine.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -4672,7 +4672,7 @@ describe("Matching Engine", function () {
46724672
const preparedOrderResponseData = await engine.fetchPreparedOrderResponse({
46734673
address: preparedOrderResponse,
46744674
});
4675-
const { bump } = preparedOrderResponseData;
4675+
const { seeds } = preparedOrderResponseData;
46764676

46774677
const finalizedVaaAccount = await VaaAccount.fetch(connection, finalizedVaa);
46784678
const { deposit } = LiquidityLayerMessage.decode(finalizedVaaAccount.payload());
@@ -4685,9 +4685,11 @@ describe("Matching Engine", function () {
46854685

46864686
expect(preparedOrderResponseData).to.eql(
46874687
new PreparedOrderResponse(
4688-
bump,
46894688
{
46904689
fastVaaHash: Array.from(fastVaaAccount.digest()),
4690+
bump: seeds.bump,
4691+
},
4692+
{
46914693
preparedBy: accounts.payer,
46924694
fastVaaTimestamp: fastVaaAccount.timestamp(),
46934695
sourceChain: fastVaaAccount.emitterInfo().chain,

0 commit comments

Comments
 (0)