#solana #switchboard #oracle

solana_switchboard_attestation_program_sdk

A Rust library to interact with Switchboard V3 attestations

4 releases

0.1.3 Apr 13, 2023
0.1.2 Apr 13, 2023
0.1.1 Apr 13, 2023
0.1.0 Apr 13, 2023

#30 in #switchboard

39 downloads per month

MIT license

7KB
88 lines

solana_switchboard_attestation_program_sdk

This is the solana program module to be used along with the Switchboard Attestation Client

Use this module to verify attestions match a certain enclave measurement and the associated signer.

let sgx_quote_account_info = <QUOTE_ACCOUNT_INFO>;
let quote_key = sgx_quote_account_info.key;
let mr_enclave = "IN0WD0ApAbKcAFBHK6xYS5QyToq7oJdnIVRJyq6brdM=";
let quote_data = sgx_quote_account_info.try_borrow_data().unwrap();
// TODO: check discriminator
let quote = bytemuck::from_bytes::<QuoteAccountData>(&data[8..]);
quote.check_measurement(mr_enclave.into(), quote_key, Clock::get())?;
msg!("Attestation for key {:?} verified.")
msg!("Key is bound to {}, sgx_quote_account_info.key, mr_enclave);

Dependencies

~20–31MB
~517K SLoC