-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(rent-reclamation): add config_transaction_accounts_close
- Loading branch information
Showing
17 changed files
with
1,401 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
101 changes: 101 additions & 0 deletions
101
programs/squads_multisig_program/src/instructions/transaction_accounts_close.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
use anchor_lang::prelude::*; | ||
|
||
use crate::errors::*; | ||
use crate::state::*; | ||
|
||
#[derive(Accounts)] | ||
pub struct ConfigTransactionAccountsClose<'info> { | ||
#[account( | ||
seeds = [SEED_PREFIX, SEED_MULTISIG, multisig.create_key.as_ref()], | ||
bump = multisig.bump, | ||
)] | ||
pub multisig: Account<'info, Multisig>, | ||
|
||
#[account(mut, close = rent_collector)] | ||
pub proposal: Account<'info, Proposal>, | ||
|
||
/// ConfigTransaction corresponding to the `proposal`. | ||
#[account(mut, close = rent_collector)] | ||
pub transaction: Account<'info, ConfigTransaction>, | ||
|
||
/// The rent collector. | ||
/// CHECK: We do the checks in validate(). | ||
#[account(mut)] | ||
pub rent_collector: AccountInfo<'info>, | ||
|
||
pub system_program: Program<'info, System>, | ||
} | ||
|
||
impl ConfigTransactionAccountsClose<'_> { | ||
fn validate(&self) -> Result<()> { | ||
let Self { | ||
multisig, | ||
proposal, | ||
transaction, | ||
rent_collector, | ||
.. | ||
} = self; | ||
|
||
//region multisig | ||
|
||
// Has to have `rent_collector` set. | ||
let multisig_rent_collector_key = multisig | ||
.rent_collector | ||
.ok_or(MultisigError::RentReclamationDisabled)? | ||
.key(); | ||
//endregion | ||
|
||
//region rent_collector | ||
|
||
// Has to match the `multisig.rent_collector`. | ||
require_keys_eq!( | ||
multisig_rent_collector_key, | ||
rent_collector.key(), | ||
MultisigError::InvalidRentCollector | ||
); | ||
//endregion | ||
|
||
//region proposal | ||
|
||
// Has to be for the `multisig`. | ||
require_keys_eq!( | ||
proposal.multisig, | ||
multisig.key(), | ||
MultisigError::ProposalForAnotherMultisig | ||
); | ||
|
||
// Has to be either stale or in a terminal state. | ||
require!( | ||
proposal.transaction_index <= multisig.stale_transaction_index | ||
|| proposal.status.is_terminal(), | ||
MultisigError::InvalidProposalStatus | ||
); | ||
//endregion | ||
|
||
//region transaction | ||
|
||
// Has to be for the `multisig`. | ||
require_keys_eq!( | ||
transaction.multisig, | ||
multisig.key(), | ||
MultisigError::TransactionForAnotherMultisig | ||
); | ||
|
||
// Has to be for the `proposal`. | ||
require_eq!( | ||
transaction.index, | ||
proposal.transaction_index, | ||
MultisigError::TransactionForAnotherMultisig | ||
); | ||
//endregion | ||
|
||
Ok(()) | ||
} | ||
|
||
/// Close accounts for stale config transactions or config transactions in terminal states: `Executed`, `Rejected`, or `Cancelled`. | ||
#[access_control(_ctx.accounts.validate())] | ||
pub fn config_transaction_accounts_close(_ctx: Context<Self>) -> Result<()> { | ||
// Anchor will close the accounts for us. | ||
Ok(()) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.