ic_tee_agent 0.7.2

An agent to interact with the Internet Computer for Trusted Execution Environments (TEEs)
Documentation
use ic_auth_types::ByteBufB64;
use serde::{Deserialize, Serialize};

pub mod agent;
pub mod http;
pub mod setting;

#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct RPCRequest {
    pub method: String,
    pub params: ByteBufB64, // params should be encoded in CBOR format
}

#[derive(Clone, Debug, Serialize)]
pub struct RPCRequestRef<'a> {
    pub method: &'a str,
    pub params: &'a ByteBufB64,
}

// result should be encoded in CBOR format
pub type RPCResponse = Result<ByteBufB64, String>;