Private Computation Contract
The private computation contract is a CosmWasm smart contract running on Secret Network. It implements the following interface:
Init Message:
/// Include parameters to link this contract with the Private Gateway
pub struct State {
pub gateway_address: HumanAddr,
pub gateway_hash: String,
pub gateway_key: Binary,
}Handle Message:
/// See Private Gateway docs for PrivContractHandleMsg definition.
pub enum HandleMsg {
Input { message: PrivContractHandleMsg },
}Handle Response:
/// Define a struct for each handle message response. Example:
pub struct ScoreResponse {
pub name: String,
pub result: String,
}Data Structs:
Last updated