Browse Source

spl: Add token `close_account` instruction (#714)

suscd 4 years ago
parent
commit
e763b721c3
1 changed files with 28 additions and 0 deletions
  1. 28 0
      spl/src/token.rs

+ 28 - 0
spl/src/token.rs

@@ -128,6 +128,27 @@ pub fn initialize_account<'a, 'b, 'c, 'info>(
     )
     )
 }
 }
 
 
+pub fn close_account<'a, 'b, 'c, 'info>(
+    ctx: CpiContext<'a, 'b, 'c, 'info, CloseAccount<'info>>,
+) -> ProgramResult {
+    let ix = spl_token::instruction::close_account(
+        &spl_token::ID,
+        ctx.accounts.account.key,
+        ctx.accounts.destination.key,
+        ctx.accounts.authority.key,
+        &[], // TODO: support multisig
+    )?;
+    solana_program::program::invoke_signed(
+        &ix,
+        &[
+            ctx.accounts.account.clone(),
+            ctx.accounts.destination.clone(),
+            ctx.accounts.authority.clone(),
+        ],
+        ctx.signer_seeds,
+    )
+}
+
 pub fn initialize_mint<'a, 'b, 'c, 'info>(
 pub fn initialize_mint<'a, 'b, 'c, 'info>(
     ctx: CpiContext<'a, 'b, 'c, 'info, InitializeMint<'info>>,
     ctx: CpiContext<'a, 'b, 'c, 'info, InitializeMint<'info>>,
     decimals: u8,
     decimals: u8,
@@ -217,6 +238,13 @@ pub struct InitializeAccount<'info> {
     pub rent: AccountInfo<'info>,
     pub rent: AccountInfo<'info>,
 }
 }
 
 
+#[derive(Accounts)]
+pub struct CloseAccount<'info> {
+    pub account: AccountInfo<'info>,
+    pub destination: AccountInfo<'info>,
+    pub authority: AccountInfo<'info>,
+}
+
 #[derive(Accounts)]
 #[derive(Accounts)]
 pub struct InitializeMint<'info> {
 pub struct InitializeMint<'info> {
     pub mint: AccountInfo<'info>,
     pub mint: AccountInfo<'info>,