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

17
beacon-explorer/Makefile Normal file
View File

@@ -0,0 +1,17 @@
.PHONY: protogen
protogen:
substreams protogen ./substreams.yaml --exclude-paths="sf/substreams,google"
.PHONY: build
build:
cargo build --target wasm32-unknown-unknown --release
module ?= map_block_meta
.PHONY: run
run: build
substreams run -e eth-cl.substreams.pinax.network\:443 $(filter-out $@,$(MAKECMDGOALS)) -s -10
.PHONY: gui
gui: build
substreams gui -e eth-cl.substreams.pinax.network\:443 $(filter-out $@,$(MAKECMDGOALS)) -s -10