-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathtoken_interface.rs
101 lines (82 loc) · 2.78 KB
/
token_interface.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
use anchor_lang::solana_program::program_pack::Pack;
use anchor_lang::solana_program::pubkey::Pubkey;
use spl_token_2022::extension::ExtensionType;
use spl_token_2022::{
extension::{BaseStateWithExtensions, Extension, StateWithExtensions},
solana_zk_token_sdk::instruction::Pod,
};
use std::ops::Deref;
pub use crate::token_2022::*;
#[cfg(feature = "token_2022_extensions")]
pub use crate::token_2022_extensions::*;
static IDS: [Pubkey; 2] = [spl_token::ID, spl_token_2022::ID];
#[derive(Clone, Debug, Default, PartialEq, Copy)]
pub struct TokenAccount(spl_token_2022::state::Account);
impl anchor_lang::AccountDeserialize for TokenAccount {
fn try_deserialize_unchecked(buf: &mut &[u8]) -> anchor_lang::Result<Self> {
spl_token_2022::extension::StateWithExtensions::<spl_token_2022::state::Account>::unpack(
buf,
)
.map(|t| TokenAccount(t.base))
.map_err(Into::into)
}
}
impl anchor_lang::AccountSerialize for TokenAccount {}
impl anchor_lang::Owners for TokenAccount {
fn owners() -> &'static [Pubkey] {
&IDS
}
}
impl Deref for TokenAccount {
type Target = spl_token_2022::state::Account;
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[derive(Clone, Debug, Default, PartialEq, Copy)]
pub struct Mint(spl_token_2022::state::Mint);
impl anchor_lang::AccountDeserialize for Mint {
fn try_deserialize_unchecked(buf: &mut &[u8]) -> anchor_lang::Result<Self> {
spl_token_2022::extension::StateWithExtensions::<spl_token_2022::state::Mint>::unpack(buf)
.map(|t| Mint(t.base))
.map_err(Into::into)
}
}
impl anchor_lang::AccountSerialize for Mint {}
impl anchor_lang::Owners for Mint {
fn owners() -> &'static [Pubkey] {
&IDS
}
}
impl Deref for Mint {
type Target = spl_token_2022::state::Mint;
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[derive(Clone)]
pub struct TokenInterface;
impl anchor_lang::Ids for TokenInterface {
fn ids() -> &'static [Pubkey] {
&IDS
}
}
pub type ExtensionsVec = Vec<ExtensionType>;
pub fn find_mint_account_size(extensions: Option<&ExtensionsVec>) -> anchor_lang::Result<usize> {
if let Some(extensions) = extensions {
Ok(ExtensionType::try_calculate_account_len::<
spl_token_2022::state::Mint,
>(extensions)?)
} else {
Ok(spl_token_2022::state::Mint::LEN)
}
}
pub fn get_mint_extension_data<T: Extension + Pod>(
account: &anchor_lang::solana_program::account_info::AccountInfo,
) -> anchor_lang::Result<T> {
let mint_data = account.data.borrow();
let mint_with_extension =
StateWithExtensions::<spl_token_2022::state::Mint>::unpack(&mint_data)?;
let extension_data = *mint_with_extension.get_extension::<T>()?;
Ok(extension_data)
}