github.com/celestiaorg/celestia-node@v0.15.0-beta.1/share/eds/byzantine/pb/share.proto (about) 1 syntax = "proto3"; 2 3 package share.eds.byzantine.pb; 4 import "pb/proof.proto"; 5 6 message Share { 7 bytes Data = 1; 8 proof.pb.Proof Proof = 2; 9 } 10 11 enum axis { 12 ROW = 0; 13 COL = 1; 14 } 15 16 message BadEncoding { 17 bytes HeaderHash = 1; 18 uint64 Height = 2; 19 repeated Share Shares = 3; 20 uint32 Index = 4; 21 axis Axis = 5; 22 }