Some checks failed
CodeQL / Analyze (push) Waiting to run
Docker Build & Push Simapp (main) / docker-build (push) Waiting to run
golangci-lint / lint (push) Waiting to run
Tests / Code Coverage / build (amd64) (push) Waiting to run
Tests / Code Coverage / build (arm64) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[additional-args:-tags="test_e2e" name:e2e path:./e2e]) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[name:08-wasm path:./modules/light-clients/08-wasm]) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[name:ibc-go path:.]) (push) Waiting to run
Deploy to GitHub Pages / Deploy to GitHub Pages (push) Has been cancelled
Buf-Push / push (push) Has been cancelled
66 lines
2.1 KiB
Protocol Buffer
66 lines
2.1 KiB
Protocol Buffer
syntax = "proto3";
|
|
package ibc.lightclients.wasm.v1;
|
|
|
|
option go_package = "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/v10/types";
|
|
|
|
import "cosmos/msg/v1/msg.proto";
|
|
|
|
// Msg defines the ibc/08-wasm Msg service.
|
|
service Msg {
|
|
option (cosmos.msg.v1.service) = true;
|
|
|
|
// StoreCode defines a rpc handler method for MsgStoreCode.
|
|
rpc StoreCode(MsgStoreCode) returns (MsgStoreCodeResponse);
|
|
|
|
// RemoveChecksum defines a rpc handler method for MsgRemoveChecksum.
|
|
rpc RemoveChecksum(MsgRemoveChecksum) returns (MsgRemoveChecksumResponse);
|
|
|
|
// MigrateContract defines a rpc handler method for MsgMigrateContract.
|
|
rpc MigrateContract(MsgMigrateContract) returns (MsgMigrateContractResponse);
|
|
}
|
|
|
|
// MsgStoreCode defines the request type for the StoreCode rpc.
|
|
message MsgStoreCode {
|
|
option (cosmos.msg.v1.signer) = "signer";
|
|
|
|
// signer address
|
|
string signer = 1;
|
|
// wasm byte code of light client contract. It can be raw or gzip compressed
|
|
bytes wasm_byte_code = 2;
|
|
}
|
|
|
|
// MsgStoreCodeResponse defines the response type for the StoreCode rpc
|
|
message MsgStoreCodeResponse {
|
|
// checksum is the sha256 hash of the stored code
|
|
bytes checksum = 1;
|
|
}
|
|
|
|
// MsgRemoveChecksum defines the request type for the MsgRemoveChecksum rpc.
|
|
message MsgRemoveChecksum {
|
|
option (cosmos.msg.v1.signer) = "signer";
|
|
|
|
// signer address
|
|
string signer = 1;
|
|
// checksum is the sha256 hash to be removed from the store
|
|
bytes checksum = 2;
|
|
}
|
|
|
|
// MsgStoreChecksumResponse defines the response type for the StoreCode rpc
|
|
message MsgRemoveChecksumResponse {}
|
|
|
|
// MsgMigrateContract defines the request type for the MigrateContract rpc.
|
|
message MsgMigrateContract {
|
|
option (cosmos.msg.v1.signer) = "signer";
|
|
|
|
// signer address
|
|
string signer = 1;
|
|
// the client id of the contract
|
|
string client_id = 2;
|
|
// checksum is the sha256 hash of the new wasm byte code for the contract
|
|
bytes checksum = 3;
|
|
// the json encoded message to be passed to the contract on migration
|
|
bytes msg = 4;
|
|
}
|
|
|
|
// MsgMigrateContractResponse defines the response type for the MigrateContract rpc
|
|
message MsgMigrateContractResponse {}
|