├── .gitmodules ├── Black-Paper.md ├── LICENSE ├── README.md ├── hellhound-black-paper.pdf ├── hellhound-red-paper.pdf ├── hellhound_architecture_overview.png └── main.go /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/hellhound/HEAD/.gitmodules -------------------------------------------------------------------------------- /Black-Paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/hellhound/HEAD/Black-Paper.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/hellhound/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/hellhound/HEAD/README.md -------------------------------------------------------------------------------- /hellhound-black-paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/hellhound/HEAD/hellhound-black-paper.pdf -------------------------------------------------------------------------------- /hellhound-red-paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/hellhound/HEAD/hellhound-red-paper.pdf -------------------------------------------------------------------------------- /hellhound_architecture_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/hellhound/HEAD/hellhound_architecture_overview.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- 1 | import "fmt" 2 | 3 | func main(){ 4 | fmt.PrintLn("Hellhound Power Unleashed!"); 5 | } 6 | --------------------------------------------------------------------------------