pub const GET_TEE_STATUS: &str = "https://firstperson.network/vta/1.0/attestation/status";
pub const GET_TEE_STATUS_RESULT: &str =
"https://firstperson.network/vta/1.0/attestation/status-result";
pub const REQUEST_ATTESTATION: &str = "https://firstperson.network/vta/1.0/attestation/request";
pub const ATTESTATION_RESULT: &str = "https://firstperson.network/vta/1.0/attestation/result";
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct MnemonicExportResultBody {
pub bundle: String,
pub digest: String,
pub window_remaining_secs: u64,
}