prysm-pulse/slasher
terence tsao 6e514b96fd
Remove unused code (#6065)
* Ran code cleanup from goland

* Typo

* Remove unused code

* Gazelle

* Delete comments
2020-05-31 15:47:15 -07:00
..
beaconclient Small fixes for slasher (#6021) 2020-05-28 10:24:54 -04:00
cache Add RemoveOldestFromCache and save span cache on exit (#5953) 2020-05-22 19:44:48 +00:00
db Remove unused code (#6065) 2020-05-31 15:47:15 -07:00
detection Remove unused code (#6065) 2020-05-31 15:47:15 -07:00
flags Refactor dependencies, make Prysm "go gettable" (#6053) 2020-05-31 14:44:34 +08:00
node Refactor dependencies, make Prysm "go gettable" (#6053) 2020-05-31 14:44:34 +08:00
rpc External slashing protection (#5895) 2020-05-20 10:23:22 -05:00
BUILD.bazel Refactor dependencies, make Prysm "go gettable" (#6053) 2020-05-31 14:44:34 +08:00
main.go Ran code cleanup from goland (#6064) 2020-05-31 15:08:36 -05:00
README.md Update README for Slasher (#5106) 2020-03-15 18:46:21 +00:00
usage_test.go Refactor dependencies, make Prysm "go gettable" (#6053) 2020-05-31 14:44:34 +08:00
usage.go Refactor dependencies, make Prysm "go gettable" (#6053) 2020-05-31 14:44:34 +08: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.