Move utils/quartz-proto to core/quartz-proto Fix Cargo.toml paths Add default working-directory for cosmwasm CI jobs Fix default working-directory Rename .cargo/config -> config.toml Update working-directory Update cosmwasm workflows Update rust.yml paths Add aliases to cargo config.toml Test working-directory Update cosmwasm CI jobs Use --manifest-path Use dtolnay/rust-toolchain action Fix workflow Remove --locked SSH agent SSH agent for schema Remove unused SSH key Exclude cw-tee-mtcs from rust CI jobs Clippy fix cargo fmt Add CONTRIBUTING.md Update README.md
30 lines
586 B
Protocol Buffer
30 lines
586 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package quartz;
|
|
|
|
service Core {
|
|
rpc Instantiate (InstantiateRequest) returns (InstantiateResponse) {}
|
|
rpc SessionCreate (SessionCreateRequest) returns (SessionCreateResponse) {}
|
|
rpc SessionSetPubKey (SessionSetPubKeyRequest) returns (SessionSetPubKeyResponse) {}
|
|
}
|
|
|
|
message InstantiateRequest {}
|
|
|
|
message InstantiateResponse {
|
|
string message = 1;
|
|
}
|
|
|
|
message SessionCreateRequest {}
|
|
|
|
message SessionCreateResponse {
|
|
string message = 1;
|
|
}
|
|
|
|
message SessionSetPubKeyRequest {
|
|
string message = 1;
|
|
}
|
|
|
|
message SessionSetPubKeyResponse {
|
|
string message = 1;
|
|
}
|