add beacon chain explorer

This commit is contained in:
YaroShkvorets
2024-03-27 21:24:55 -04:00
parent ac908c42fe
commit a7aeb1b64d
20 changed files with 1348 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
syntax = "proto3";
package beacon.blobs.v1;
message Blobs {
uint64 slot = 1;
repeated string blobs = 2;
}

View File

@@ -0,0 +1,22 @@
syntax = "proto3";
package beacon.block_meta.v1;
import "google/protobuf/timestamp.proto";
message BlockMeta {
uint64 slot = 1;
string root = 2;
string state_root = 3;
Spec spec = 4;
google.protobuf.Timestamp timestamp = 5;
}
enum Spec {
UNSPECIFIED = 0;
PHASE0 = 1;
ALTAIR = 2;
BELLATRIX = 3;
CAPELLA = 4;
DENEB = 5;
}