├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── batch_contribution_10.json ├── client ├── msg.go └── req.go ├── cmd └── cmd.go ├── compile.sh ├── current_state_10.json ├── go.mod ├── go.sum ├── parsers.go ├── parsers_test.go ├── powersoftau.go └── powersoftau_test.go /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaucube/eth-kzg-ceremony-alt/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaucube/eth-kzg-ceremony-alt/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaucube/eth-kzg-ceremony-alt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaucube/eth-kzg-ceremony-alt/HEAD/README.md -------------------------------------------------------------------------------- /batch_contribution_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaucube/eth-kzg-ceremony-alt/HEAD/batch_contribution_10.json -------------------------------------------------------------------------------- /client/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaucube/eth-kzg-ceremony-alt/HEAD/client/msg.go -------------------------------------------------------------------------------- /client/req.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaucube/eth-kzg-ceremony-alt/HEAD/client/req.go -------------------------------------------------------------------------------- /cmd/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaucube/eth-kzg-ceremony-alt/HEAD/cmd/cmd.go -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaucube/eth-kzg-ceremony-alt/HEAD/compile.sh -------------------------------------------------------------------------------- /current_state_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaucube/eth-kzg-ceremony-alt/HEAD/current_state_10.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaucube/eth-kzg-ceremony-alt/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaucube/eth-kzg-ceremony-alt/HEAD/go.sum -------------------------------------------------------------------------------- /parsers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaucube/eth-kzg-ceremony-alt/HEAD/parsers.go -------------------------------------------------------------------------------- /parsers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaucube/eth-kzg-ceremony-alt/HEAD/parsers_test.go -------------------------------------------------------------------------------- /powersoftau.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaucube/eth-kzg-ceremony-alt/HEAD/powersoftau.go -------------------------------------------------------------------------------- /powersoftau_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaucube/eth-kzg-ceremony-alt/HEAD/powersoftau_test.go --------------------------------------------------------------------------------