cosmos-sdk/client/v2/internal/offchain/msgSignArbitraryData.proto
Julien Robert 13780bd6d5
feat(x/gov): add yes_quorum parameter (#19167)
Co-authored-by: Robert Zaremba <robert@zaremba.ch>
Co-authored-by: Facundo Medica <14063057+facundomedica@users.noreply.github.com>
2024-01-30 22:04:24 +00:00

20 lines
687 B
Protocol Buffer

syntax = "proto3";
package offchain;
import "cosmos_proto/cosmos.proto";
import "cosmos/msg/v1/msg.proto";
import "amino/amino.proto";
// MsgSignArbitraryData defines an arbitrary, general-purpose, off-chain message
message MsgSignArbitraryData {
option (amino.name) = "offchain/MsgSignArbitraryData";
option (cosmos.msg.v1.signer) = "signer";
// AppDomain is the application requesting off-chain message signing
string app_domain = 1;
// Signer is the sdk.AccAddress of the message signer
string signer = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"];
// Data represents the raw bytes of the content that is signed (text, json, etc)
string data = 3;
}