prysm-pulse/slasher
Ivan Martinez dee3f02e2c
Change prometheus port for different parts of Prysm (#5504)
* Change prometheus flag from default 8080 and sort flags
* Merge branch 'master' of https://github.com/prysmaticlabs/prysm into change-prometheus-port
* Fix build
* Merge branch 'master' of https://github.com/prysmaticlabs/prysm into change-prometheus-port
* Merge branch 'master' into change-prometheus-port
2020-04-19 08:36:19 +00:00
..
beaconclient Align code base to v0.11 (#5127) 2020-04-14 20:27:03 +00:00
cache slasher retrieve and cache validator public key (#5220) 2020-04-02 06:08:23 +03:00
db Align code base to v0.11 (#5127) 2020-04-14 20:27:03 +00:00
detection Align code base to v0.11 (#5127) 2020-04-14 20:27:03 +00:00
flags Change prometheus port for different parts of Prysm (#5504) 2020-04-19 08:36:19 +00:00
node Change prometheus port for different parts of Prysm (#5504) 2020-04-19 08:36:19 +00:00
rpc proper error checking and type assertions (#5424) 2020-04-14 16:41:09 +00:00
BUILD.bazel Allow setting flags via yaml config file. (#4878) 2020-03-19 14:46:44 -07:00
main.go Change prometheus port for different parts of Prysm (#5504) 2020-04-19 08:36:19 +00:00
README.md Update README for Slasher (#5106) 2020-03-15 18:46:21 +00:00
usage_test.go Allow setting flags via yaml config file. (#4878) 2020-03-19 14:46:44 -07:00
usage.go Change prometheus port for different parts of Prysm (#5504) 2020-04-19 08:36:19 +00:00

Hash Slinging Slasher Server Implementation

This is the main project folder for a slasher server implementation for Ethereum Serenity in Golang by Prysmatic Labs. A slasher listens for all broadcasted messages using a running beacon node in order to detect slashable attestations and block proposals. It uses the min-max-surround method by Protolambda.

The slasher requires a connection to a synced beacon node in order to listen for attestations and block proposals. To run the slasher, type:

bazel run //slasher -- \
    --datadir PATH/FOR/DB \
    --span-map-cache \
    --beacon-rpc-provider localhost:4000

The beacon node entered in beacon-rpc-provider will then receive slashings from the slasher client and send them to any requesting proposer to be put into a block.