Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

solana: adjustments to proposals #10

Merged
merged 4 commits into from
Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use crate::state::{Custodian, Proposal, ProposalAction};
use anchor_lang::prelude::*;

struct Propose<'ctx, 'info> {
custodian: &'ctx mut Account<'info, Custodian>,
custodian: &'ctx Account<'info, Custodian>,
proposal: &'ctx mut Account<'info, Proposal>,
by: &'ctx AccountInfo<'info>,
epoch_schedule: &'ctx Sysvar<'info, EpochSchedule>,
Expand All @@ -19,7 +19,7 @@ fn propose(accounts: Propose, action: ProposalAction, proposal_bump_seed: u8) ->
epoch_schedule,
} = accounts;

let slot_proposed_at = Clock::get().map(|clock| clock.slot)?;
let slot_proposed_at = Clock::get().unwrap().slot;

cfg_if::cfg_if! {
if #[cfg(feature = "integration-test")] {
Expand All @@ -43,9 +43,6 @@ fn propose(accounts: Propose, action: ProposalAction, proposal_bump_seed: u8) ->
slot_enacted_at: None,
});

// Uptick the next proposal ID.
custodian.next_proposal_id += 1;

// Done.
Ok(())
}
Original file line number Diff line number Diff line change
@@ -1,21 +1,16 @@
use crate::{
error::MatchingEngineError,
state::{AuctionConfig, Custodian, Proposal, ProposalAction},
state::custodian::*,
state::{AuctionConfig, Proposal, ProposalAction},
};
use anchor_lang::prelude::*;

#[derive(Accounts)]
pub struct UpdateAuctionParameters<'info> {
#[account(mut)]
owner: Signer<'info>,
payer: Signer<'info>,

#[account(
mut,
seeds = [Custodian::SEED_PREFIX],
bump = Custodian::BUMP,
has_one = owner @ MatchingEngineError::OwnerOnly,
)]
custodian: Account<'info, Custodian>,
admin: OwnerMutCustodian<'info>,

#[account(
mut,
Expand All @@ -24,23 +19,25 @@ pub struct UpdateAuctionParameters<'info> {
proposal.id.to_be_bytes().as_ref(),
],
bump = proposal.bump,
has_one = owner,
constraint = {
require_keys_eq!(
proposal.owner, admin.owner.key()
);
require!(
proposal.slot_enacted_at.is_none(),
MatchingEngineError::ProposalAlreadyEnacted
);

require!(
Clock::get()?.slot >= proposal.slot_enact_delay,
Clock::get().unwrap().slot >= proposal.slot_enact_delay,
MatchingEngineError::ProposalDelayNotExpired
);

match &proposal.action {
ProposalAction::UpdateAuctionParameters { id, .. } => {
require_eq!(
*id,
custodian.auction_config_id + 1,
admin.custodian.auction_config_id + 1,
MatchingEngineError::AuctionConfigMismatch
);
},
Expand All @@ -54,11 +51,11 @@ pub struct UpdateAuctionParameters<'info> {

#[account(
init,
payer = owner,
payer = payer,
space = 8 + AuctionConfig::INIT_SPACE,
seeds = [
AuctionConfig::SEED_PREFIX,
(custodian.auction_config_id + 1).to_be_bytes().as_ref()
(admin.custodian.auction_config_id + 1).to_be_bytes().as_ref()
],
bump,
)]
Expand All @@ -78,10 +75,13 @@ pub fn update_auction_parameters(ctx: Context<UpdateAuctionParameters>) -> Resul
}

// Update the auction config ID.
ctx.accounts.custodian.auction_config_id += 1;
ctx.accounts.admin.custodian.auction_config_id += 1;

// Set the slot enacted at so it cannot be replayed.
ctx.accounts.proposal.slot_enacted_at = Some(Clock::get().map(|clock| clock.slot)?);
ctx.accounts.proposal.slot_enacted_at = Some(Clock::get().unwrap().slot);

// Uptick the proposal ID so that someone can create a new proposal again.
ctx.accounts.admin.custodian.next_proposal_id += 1;

// Done.
Ok(())
Expand Down
18 changes: 14 additions & 4 deletions solana/target/idl/matching_engine.json
Original file line number Diff line number Diff line change
Expand Up @@ -1410,14 +1410,24 @@
"name": "updateAuctionParameters",
"accounts": [
{
"name": "owner",
"name": "payer",
"isMut": true,
"isSigner": true
},
{
"name": "custodian",
"isMut": true,
"isSigner": false
"name": "admin",
"accounts": [
{
"name": "owner",
"isMut": false,
"isSigner": true
},
{
"name": "custodian",
"isMut": true,
"isSigner": false
}
]
},
{
"name": "proposal",
Expand Down
36 changes: 28 additions & 8 deletions solana/target/types/matching_engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1410,14 +1410,24 @@ export type MatchingEngine = {
"name": "updateAuctionParameters",
"accounts": [
{
"name": "owner",
"name": "payer",
"isMut": true,
"isSigner": true
},
{
"name": "custodian",
"isMut": true,
"isSigner": false
"name": "admin",
"accounts": [
{
"name": "owner",
"isMut": false,
"isSigner": true
},
{
"name": "custodian",
"isMut": true,
"isSigner": false
}
]
},
{
"name": "proposal",
Expand Down Expand Up @@ -4191,14 +4201,24 @@ export const IDL: MatchingEngine = {
"name": "updateAuctionParameters",
"accounts": [
{
"name": "owner",
"name": "payer",
"isMut": true,
"isSigner": true
},
{
"name": "custodian",
"isMut": true,
"isSigner": false
"name": "admin",
"accounts": [
{
"name": "owner",
"isMut": false,
"isSigner": true
},
{
"name": "custodian",
"isMut": true,
"isSigner": false
}
]
},
{
"name": "proposal",
Expand Down
28 changes: 26 additions & 2 deletions solana/ts/src/matchingEngine/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -500,14 +500,35 @@ export class MatchingEngineProgram {
.instruction();
}

async closeProposalIx(accounts: { owner: PublicKey }): Promise<TransactionInstruction> {
const { owner } = accounts;

const proposal = await this.proposalAddress();
const { by: proposedBy } = await this.fetchProposal({ address: proposal });

return this.program.methods
.closeProposal()
.accounts({
admin: {
owner,
custodian: this.custodianAddress(),
},
proposedBy,
proposal,
})
.instruction();
}

async updateAuctionParametersIx(accounts: {
owner: PublicKey;
payer?: PublicKey;
custodian?: PublicKey;
proposal?: PublicKey;
auctionConfig?: PublicKey;
}): Promise<TransactionInstruction> {
const {
owner,
payer: inputPayer,
custodian: inputCustodian,
proposal: inputProposal,
auctionConfig: inputAuctionConfig,
Expand All @@ -526,8 +547,11 @@ export class MatchingEngineProgram {
return this.program.methods
.updateAuctionParameters()
.accounts({
owner,
custodian: inputCustodian ?? this.custodianAddress(),
payer: inputPayer ?? owner,
admin: {
owner,
custodian: inputCustodian ?? this.custodianAddress(),
},
proposal: inputProposal ?? (await this.proposalAddress()),
auctionConfig,
})
Expand Down
Loading
Loading