mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 11:57:18 +00:00
aed6e13498
* initial commit for cli integration of web3signer * resolving conflicts and execution * remove aggregation slot from proto * rem aggregation slot * define a sync message block root struct * fix sync message name * sync message block root struct * amend where sync committee block root is used * altered switch statement to return correct json request by type * fixing fork data import, types, and unit tests * reverting unwanted changes * reverting more unwanted changes * fixing deepsource issues * fixing formatting * more fixes for deepsource and code clean up * only want to fetch once for fetch validating public keys * adding more comments * new unit tests for requests and fixing a mapper issue * Update validator/client/validator.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update validator/accounts/wallet/wallet.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * adjusting comment * adjusting comment * fixing import organization * including more unit tests * adding new cli edit * adding in checks for wallet initialize * adding web3signer flags to main.go * some how resolved files did not save correctly * adding in check to make sure web flag only works with types imported and derived * Update validator/client/sync_committee.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update validator/client/aggregate.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update validator/accounts/wallet/wallet.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update cmd/validator/wallet/wallet.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update cmd/validator/wallet/wallet.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update cmd/validator/main.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update cmd/validator/flags/flags.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update cmd/validator/flags/flags.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update cmd/validator/wallet/wallet.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update cmd/validator/wallet/wallet.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * reverting changes that accidently got checked in * reverting * reverting * continuing to revert unintenteded changes * reverting * removing more unneeded changes * addressing review comment * initial refactor * adding in more clarifying comments * fixing mock * resolving desource issues * addressing gosec scan for helper go file * addressing gosec * trying to fix bazel build * removal of interface to fix build * fixing maligned struct * addressing deepsource * fixing deepsource * addressing efficiency of type checking * fixing bazel test failure * fixing go linter errors * gaz * web changes * add w3signer * new kind * proper use * align * adding prysm validator flags to help flags list * addressing root comment * ci lint * fixing standardapi tests * fixing accounts_test after removal of keymanager from rpc server * fixing more unit tests * Update cmd/validator/flags/flags.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update cmd/validator/flags/flags.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update validator/client/service.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update validator/client/service.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * addressing missed err checks * fixing mock tests * fixing gofmt * unskipping minimal e2e test and removing related TODOs * Update testing/endtoend/components/validator.go Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> * Update testing/endtoend/components/validator.go Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> * adding some error wrapers to clarify failure point * fixing bazel build with new error checks * taking preston's advice to make test fail faster to understand what's going on with the test * checking if genesis validators root is not zero hash * adding check for genesis validators root giving zero hash * fixing missing dependency * adding check for wallet * log all * fixing errors for http responses * switching marshal to pretty print * adding pretty sign request test * fixing base url setting * adding in check for web3signer and temporary wallet instead of having to open the wallet * refactoring web3signer to not require wallet * bazel build fix * fixing gazelle build * adding content type of request * fixing more bazel * removing unused code * removing unused comments * adding skip test back in * addressing a validation and error message * fix parse * body * fixing logic for datadir * improving error handling * show resp * fix * sign resp as str * point of pointer remove * sign resp * unmarshal sig resp * read body as str * adding more verbose logging * removing unused result * fixing unit test * reconfiguring files to properly nest code and mocks * fix build issue * using context when using client function calls * fixing based on suggestion * addressing comments * gaz * removing defined max timeout * reverting json print pretty * Update validator/accounts/wallet_edit.go Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> * removing unneeded code restrictions * should not introduce new code that may impact existing key manager types * adjusting comments * adding in json validation * running go mod tidy * some logging * more logs * fixing typo * remove logs * testing without byte trim * fixing order or properties * gaz * tidy * reverting some logs * removing the confusing comments * Update validator/client/aggregate.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update validator/client/aggregate.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * addressing pr comments * editing bytes test * Run gazelle update-repos * run gazelle * improving unit test coverage * fixing text * fixing a potential escaped error Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com>
122 lines
5.3 KiB
Modula-2
122 lines
5.3 KiB
Modula-2
module github.com/prysmaticlabs/prysm
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
contrib.go.opencensus.io/exporter/jaeger v0.2.1
|
|
github.com/aristanetworks/goarista v0.0.0-20200521140103-6c3304613b30
|
|
github.com/bazelbuild/rules_go v0.23.2
|
|
github.com/d4l3k/messagediff v1.2.1
|
|
github.com/dgraph-io/ristretto v0.0.4-0.20210318174700-74754f61e018
|
|
github.com/dustin/go-humanize v1.0.0
|
|
github.com/emicklei/dot v0.11.0
|
|
github.com/ethereum/go-ethereum v1.10.13
|
|
github.com/ferranbt/fastssz v0.0.0-20210905181407-59cf6761a7d5
|
|
github.com/fjl/memsize v0.0.0-20190710130421-bcb5799ab5e5
|
|
github.com/fsnotify/fsnotify v1.4.9
|
|
github.com/ghodss/yaml v1.0.0
|
|
github.com/go-yaml/yaml v2.1.0+incompatible
|
|
github.com/gogo/protobuf v1.3.2
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible
|
|
github.com/golang/gddo v0.0.0-20200528160355-8d077c1d8f4c
|
|
github.com/golang/mock v1.6.0
|
|
github.com/golang/protobuf v1.5.2
|
|
github.com/golang/snappy v0.0.4
|
|
github.com/google/gofuzz v1.2.0
|
|
github.com/google/uuid v1.3.0
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/grpc-ecosystem/go-grpc-middleware v1.2.2
|
|
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.0.1
|
|
github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d
|
|
github.com/herumi/bls-eth-go-binary v0.0.0-20210917013441-d37c07cfda4e
|
|
github.com/ianlancetaylor/cgosymbolizer v0.0.0-20200424224625-be1b05b0b279
|
|
github.com/ipfs/go-log/v2 v2.4.0
|
|
github.com/joonix/log v0.0.0-20200409080653-9c1d2ceb5f1d
|
|
github.com/json-iterator/go v1.1.11
|
|
github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213
|
|
github.com/kevinms/leakybucket-go v0.0.0-20200115003610-082473db97ca
|
|
github.com/kr/pretty v0.3.0
|
|
github.com/libp2p/go-libp2p v0.17.0
|
|
github.com/libp2p/go-libp2p-blankhost v0.3.0
|
|
github.com/libp2p/go-libp2p-core v0.13.0
|
|
github.com/libp2p/go-libp2p-noise v0.3.0
|
|
github.com/libp2p/go-libp2p-peerstore v0.6.0
|
|
github.com/libp2p/go-libp2p-pubsub v0.6.1
|
|
github.com/libp2p/go-libp2p-swarm v0.9.0
|
|
github.com/libp2p/go-tcp-transport v0.4.0
|
|
github.com/logrusorgru/aurora v2.0.3+incompatible
|
|
github.com/manifoldco/promptui v0.7.0
|
|
github.com/minio/highwayhash v1.0.1
|
|
github.com/minio/sha256-simd v1.0.0
|
|
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826
|
|
github.com/multiformats/go-multiaddr v0.4.0
|
|
github.com/patrickmn/go-cache v2.1.0+incompatible
|
|
github.com/paulbellamy/ratecounter v0.2.0
|
|
github.com/pborman/uuid v1.2.1
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/prometheus/client_golang v1.11.0
|
|
github.com/prometheus/client_model v0.2.0
|
|
github.com/prometheus/prom2json v1.3.0
|
|
github.com/prysmaticlabs/eth2-types v0.0.0-20210303084904-c9735a06829d
|
|
github.com/prysmaticlabs/go-bitfield v0.0.0-20210809151128-385d8c5e3fb7
|
|
github.com/prysmaticlabs/prombbolt v0.0.0-20210126082820-9b7adba6db7c
|
|
github.com/prysmaticlabs/protoc-gen-go-cast v0.0.0-20211014160335-757fae4f38c6
|
|
github.com/r3labs/sse v0.0.0-20210224172625-26fe804710bc
|
|
github.com/rs/cors v1.7.0
|
|
github.com/schollz/progressbar/v3 v3.3.4
|
|
github.com/sirupsen/logrus v1.6.0
|
|
github.com/status-im/keycard-go v0.0.0-20200402102358-957c09536969
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/supranational/blst v0.3.5
|
|
github.com/thomaso-mirodin/intmath v0.0.0-20160323211736-5dc6d854e46e
|
|
github.com/trailofbits/go-mutexasserts v0.0.0-20200708152505-19999e7d3cef
|
|
github.com/tyler-smith/go-bip39 v1.1.0
|
|
github.com/urfave/cli/v2 v2.3.0
|
|
github.com/wealdtech/go-bytesutil v1.1.1
|
|
github.com/wealdtech/go-eth2-util v1.6.3
|
|
github.com/wealdtech/go-eth2-wallet-encryptor-keystorev4 v1.1.3
|
|
github.com/wercker/journalhook v0.0.0-20180428041537-5d0a5ae867b3
|
|
github.com/x-cray/logrus-prefixed-formatter v0.5.2
|
|
go.etcd.io/bbolt v1.3.5
|
|
go.opencensus.io v0.23.0
|
|
go.uber.org/automaxprocs v1.3.0
|
|
golang.org/x/crypto v0.0.0-20211117183948-ae814b36b871
|
|
golang.org/x/exp v0.0.0-20200513190911-00229845015e
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
|
|
golang.org/x/tools v0.1.8
|
|
google.golang.org/genproto v0.0.0-20210426193834-eac7f76ac494
|
|
google.golang.org/grpc v1.40.0
|
|
google.golang.org/protobuf v1.27.1
|
|
gopkg.in/d4l3k/messagediff.v1 v1.2.1
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
k8s.io/client-go v0.18.3
|
|
)
|
|
|
|
require (
|
|
github.com/StackExchange/wmi v0.0.0-20210224194228-fe8f1750fd46 // indirect
|
|
github.com/allegro/bigcache v1.2.1 // indirect
|
|
github.com/cespare/cp v1.1.1 // indirect
|
|
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf // indirect
|
|
github.com/deckarep/golang-set v1.7.1 // indirect
|
|
github.com/fatih/color v1.9.0 // indirect
|
|
github.com/gballet/go-libpcsclite v0.0.0-20191108122812-4678299bea08 // indirect
|
|
github.com/go-logr/logr v0.2.1 // indirect
|
|
github.com/go-ole/go-ole v1.2.5 // indirect
|
|
github.com/go-playground/validator/v10 v10.10.0
|
|
github.com/peterh/liner v1.2.0 // indirect
|
|
github.com/prometheus/tsdb v0.10.0 // indirect
|
|
golang.org/x/sys v0.0.0-20211124211545-fe61309f8881 // indirect
|
|
google.golang.org/api v0.34.0 // indirect
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
k8s.io/klog/v2 v2.3.0 // indirect
|
|
k8s.io/utils v0.0.0-20200520001619-278ece378a50 // indirect
|
|
)
|
|
|
|
replace github.com/json-iterator/go => github.com/prestonvanloon/go v1.1.7-0.20190722034630-4f2e55fcf87b
|
|
|
|
// See https://github.com/prysmaticlabs/grpc-gateway/issues/2
|
|
replace github.com/grpc-ecosystem/grpc-gateway/v2 => github.com/prysmaticlabs/grpc-gateway/v2 v2.3.1-0.20210702154020-550e1cd83ec1
|
|
|
|
replace github.com/ferranbt/fastssz => github.com/prysmaticlabs/fastssz v0.0.0-20220110145812-fafb696cae88
|