code.vegaprotocol.io/vega@v0.79.0/protos/sources/vega/commands/v1/signature.proto (about)

     1  syntax = "proto3";
     2  
     3  package vega.commands.v1;
     4  
     5  option go_package = "code.vegaprotocol.io/vega/protos/vega/commands/v1";
     6  
     7  // Signature definition that allows the network to authenticate external data.
     8  message Signature {
     9    // Hex encoded bytes of the signature.
    10    string value = 1;
    11    // Algorithm used to create the signature.
    12    string algo = 2;
    13    // Version of the algorithm used to create the signature.
    14    uint32 version = 3;
    15  }