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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
use crate::cfg_client;

use crate::prelude::*;

#[derive(Accounts)]
#[instruction(params:FunctionServiceVerifyParams)]
pub struct FunctionServiceVerify<'info> {
    /// #[account(
    ///     mut,
    ///     has_one = function,
    ///     has_one = escrow_wallet @ SwitchboardError::InvalidEscrow,
    ///     has_one = escrow_token_wallet @ SwitchboardError::InvalidEscrow,
    ///     constraint = service.pending_enclave.enclave_signer == function_enclave_signer.key()
    ///         @ SwitchboardError::InvalidEnclaveSigner,
    /// )]
    /// pub service: Box<Account<'info, FunctionServiceAccountData>>,
    #[account(mut)]
    pub service: AccountInfo<'info>, // FunctionServiceAccount

    pub function_enclave_signer: AccountInfo<'info>, // SystemProgram keypair

    /// #[account(mut)]
    /// pub escrow_wallet: Box<Account<'info, SwitchboardWallet>>,
    #[account(mut)]
    pub escrow_wallet: AccountInfo<'info>, // SwitchboardWallet

    /// #[account(
    ///     mut,
    ///     constraint = escrow_token_wallet.is_native()
    /// )]
    /// pub escrow_token_wallet: Box<Account<'info, TokenAccount>>,
    #[account(mut)]
    pub escrow_token_wallet: AccountInfo<'info>, // TokenAccount

    /// #[account(
    ///     mut,
    ///     has_one = attestation_queue @ SwitchboardError::InvalidQueue,
    /// )]
    /// pub function: AccountLoader<'info, FunctionAccountData>,
    #[account(mut)]
    pub function: AccountInfo<'info>, // FunctionAccount

    /// #[account(
    ///     mut,
    ///     constraint = escrow.is_native() && escrow.owner == state.key()
    /// )]
    /// pub function_escrow_token_wallet: Option<Box<Account<'info, TokenAccount>>>,
    #[account(mut)]
    pub function_escrow_token_wallet: Option<AccountInfo<'info>>, // TokenAccount

    /// #[account(
    ///     has_one = attestation_queue @ SwitchboardError::InvalidQueue,
    ///     constraint =
    ///         verifier_quote.load()?.enclave.enclave_signer == verifier_enclave_signer.key()
    ///             @ SwitchboardError::InvalidEnclaveSigner,
    /// )]
    /// pub verifier_quote: AccountLoader<'info, VerifierAccountData>,
    pub verifier_quote: AccountInfo<'info>, // VerifierAccountData

    #[account(signer)]
    pub verifier_enclave_signer: AccountInfo<'info>, // SystemProgram keypair

    /// #[account(
    ///     seeds = [
    ///         PERMISSION_SEED,
    ///         attestation_queue.load()?.authority.as_ref(),
    ///         attestation_queue.key().as_ref(),
    ///         verifier_quote.key().as_ref()
    ///     ],
    ///     bump = verifier_permission.load()?.bump,
    /// )]
    /// pub verifier_permission: AccountLoader<'info, AttestationPermissionAccountData>,
    pub verifier_permission: AccountInfo<'info>, // AttestationPermissionAccount

    /// pub attestation_queue: AccountLoader<'info, AttestationQueueAccountData>,
    pub attestation_queue: AccountInfo<'info>, // AttestationQueueAccount

    /// #[account(
    ///     mut,
    ///     constraint = receiver.is_native()
    /// )]
    /// pub receiver: Box<Account<'info, TokenAccount>>,
    #[account(mut)]
    pub receiver: AccountInfo<'info>, // TokenAccount

    /// pub token_program: Program<'info, Token>,
    #[account(address = anchor_spl::token::ID)]
    pub token_program: AccountInfo<'info>,
}

#[derive(Clone, AnchorSerialize, AnchorDeserialize, Debug)]
pub struct FunctionServiceVerifyParams {
    pub observed_time: i64,
    // pub error_code: u8,
    pub mr_enclave: [u8; 32],
}

impl InstructionData for FunctionServiceVerifyParams {}

impl Discriminator for FunctionServiceVerifyParams {
    const DISCRIMINATOR: [u8; 8] = [58, 127, 172, 41, 218, 178, 104, 226];
}

impl Discriminator for FunctionServiceVerify<'_> {
    const DISCRIMINATOR: [u8; 8] = [58, 127, 172, 41, 218, 178, 104, 226];
}

cfg_client! {

    pub struct FunctionServiceVerifyAccounts {
        /// The FunctionServiceAccount pubkey to verify.
        pub service: Pubkey,
        /// The pubkey of the enclave generated keypair that will be set after verification.
        /// This keypair must sign any subsequent instructions to prove the instructions
        /// were generated within an enclave.
        pub function_enclave_signer: Pubkey,

        pub escrow_wallet: Pubkey,

        /// The FunctionAccount for the request being verified.
        pub function: Pubkey,
        /// The FunctionAccount escrow token wallet. Only used if the FunctionAccount has a request_fee set.
        pub function_escrow_token_wallet: Option<Pubkey>,

        /// The VerifierAccount pubkey that is verifying the request.
        pub verifier: Pubkey,
        /// The VerifierAccount's enclave generated signer that must approve verifications.
        pub verifier_enclave_signer: Pubkey,
        /// THe VerifierAccount's token wallet to receive a reward for verifying the request.
        pub reward_receiver: Pubkey,

        /// The AttestationQueueAccount that the request is being verified for.
        pub attestation_queue: Pubkey,
        /// The AttestationQueueAccount's authority. Used to derive the VerifierAccount's permission account.
        pub queue_authority: Pubkey,
    }
    impl ToAccountMetas for FunctionServiceVerifyAccounts {
        fn to_account_metas(&self, _: Option<bool>) -> Vec<AccountMeta> {
            vec![
                AccountMeta::new(self.service, false),
                AccountMeta::new_readonly(self.function_enclave_signer, false),
                AccountMeta::new(self.escrow_wallet, false),
                AccountMeta::new(find_associated_token_address(&self.escrow_wallet, &NativeMint::id()), false),
                AccountMeta::new(self.function, false),
                AccountMeta::new(self.function_escrow_token_wallet.unwrap_or(*SWITCHBOARD_ATTESTATION_PROGRAM_ID), false),
                AccountMeta::new_readonly(self.verifier, false),
                AccountMeta::new_readonly(self.verifier_enclave_signer, true),
                AccountMeta::new_readonly(
                    AttestationPermissionAccountData::get_pda(
                        &self.queue_authority,
                        &self.attestation_queue,
                        &self.verifier
                    ),
                    false
                ),
                AccountMeta::new_readonly(self.attestation_queue, false),
                AccountMeta::new(self.reward_receiver, false),
                AccountMeta::new_readonly(anchor_spl::token::ID, false),
            ]
        }
    }
}

impl<'info> FunctionServiceVerify<'info> {
    pub fn get_instruction(
        &self,
        program_id: Pubkey,
        params: &FunctionServiceVerifyParams,
    ) -> anchor_lang::Result<Instruction> {
        let accounts = self.to_account_metas(None);

        let mut data: Vec<u8> = FunctionServiceVerify::discriminator().try_to_vec()?;
        let mut param_vec: Vec<u8> = params.try_to_vec()?;
        data.append(&mut param_vec);

        let instruction = Instruction::new_with_bytes(program_id, &data, accounts);
        Ok(instruction)
    }

    pub fn invoke(
        &self,
        program: AccountInfo<'info>,
        params: &FunctionServiceVerifyParams,
    ) -> ProgramResult {
        let instruction = self.get_instruction(*program.key, params)?;
        let account_infos = self.to_account_infos();

        invoke(&instruction, &account_infos[..])
    }

    pub fn invoke_signed(
        &self,
        program: AccountInfo<'info>,
        params: &FunctionServiceVerifyParams,
        signer_seeds: &[&[&[u8]]],
    ) -> ProgramResult {
        let instruction = self.get_instruction(*program.key, params)?;
        let account_infos = self.to_account_infos();

        invoke_signed(&instruction, &account_infos[..], signer_seeds)
    }

    fn to_account_infos(&self) -> Vec<AccountInfo<'info>> {
        let mut account_infos = Vec::new();
        account_infos.extend(self.service.to_account_infos());
        account_infos.extend(self.function_enclave_signer.to_account_infos());
        account_infos.extend(self.escrow_wallet.to_account_infos());
        account_infos.extend(self.escrow_token_wallet.to_account_infos());
        account_infos.extend(self.function.to_account_infos());
        account_infos.extend(self.function_escrow_token_wallet.to_account_infos());
        account_infos.extend(self.verifier_quote.to_account_infos());
        account_infos.extend(self.verifier_enclave_signer.to_account_infos());
        account_infos.extend(self.verifier_permission.to_account_infos());
        account_infos.extend(self.attestation_queue.to_account_infos());
        account_infos.extend(self.receiver.to_account_infos());
        account_infos.extend(self.token_program.to_account_infos());
        account_infos
    }

    #[allow(unused_variables)]
    fn to_account_metas(&self, is_signer: Option<bool>) -> Vec<AccountMeta> {
        let mut account_metas = Vec::new();
        account_metas.extend(self.service.to_account_metas(None));
        account_metas.extend(self.function_enclave_signer.to_account_metas(None));
        account_metas.extend(self.escrow_wallet.to_account_metas(None));
        account_metas.extend(self.escrow_token_wallet.to_account_metas(None));
        account_metas.extend(self.function.to_account_metas(None));
        if let Some(function_escrow_token_wallet) = &self.function_escrow_token_wallet {
            account_metas.extend(function_escrow_token_wallet.to_account_metas(None));
        } else {
            account_metas.push(AccountMeta::new_readonly(
                *SWITCHBOARD_ATTESTATION_PROGRAM_ID,
                false,
            ));
        }
        account_metas.extend(self.verifier_quote.to_account_metas(None));
        account_metas.extend(self.verifier_enclave_signer.to_account_metas(None));
        account_metas.extend(self.verifier_permission.to_account_metas(None));
        account_metas.extend(self.attestation_queue.to_account_metas(None));
        account_metas.extend(self.receiver.to_account_metas(None));
        account_metas.extend(self.token_program.to_account_metas(None));
        account_metas
    }

    cfg_client! {
        pub fn build_ix(
            accounts: &FunctionServiceVerifyAccounts,
            params: &FunctionServiceVerifyParams,
        ) -> Result<Instruction, SbError> {
            Ok(
                crate::utils::build_ix(
                    &*SWITCHBOARD_ATTESTATION_PROGRAM_ID,
                    accounts,
                    params,
                )
            )
        }
    }
}