upgrade v6 to v7 (#15989)

* upgrade v6 to v7

* changelog

* update-go-ssz
This commit is contained in:
Bastin
2025-11-06 17:16:23 +01:00
committed by GitHub
parent d6005026e0
commit 92bd211e4d
3030 changed files with 15365 additions and 15362 deletions

View File

@@ -3,7 +3,7 @@ load("@prysm//tools/go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["analyzer.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/analyzers/comparesame",
importpath = "github.com/OffchainLabs/prysm/v7/tools/analyzers/comparesame",
visibility = ["//visibility:public"],
deps = [
"@org_golang_x_tools//go/analysis:go_default_library",

View File

@@ -3,7 +3,7 @@ package comparesame
import (
"testing"
"github.com/OffchainLabs/prysm/v6/build/bazel"
"github.com/OffchainLabs/prysm/v7/build/bazel"
"golang.org/x/tools/go/analysis/analysistest"
)

View File

@@ -3,7 +3,7 @@ load("@prysm//tools/go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["analyzer.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/analyzers/cryptorand",
importpath = "github.com/OffchainLabs/prysm/v7/tools/analyzers/cryptorand",
visibility = ["//visibility:public"],
deps = [
"@org_golang_x_tools//go/analysis:go_default_library",

View File

@@ -3,7 +3,7 @@ package cryptorand
import (
"testing"
"github.com/OffchainLabs/prysm/v6/build/bazel"
"github.com/OffchainLabs/prysm/v7/build/bazel"
"golang.org/x/tools/go/analysis/analysistest"
)

View File

@@ -3,7 +3,7 @@ load("@prysm//tools/go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = ["analyzer.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/analyzers/errcheck",
importpath = "github.com/OffchainLabs/prysm/v7/tools/analyzers/errcheck",
visibility = ["//visibility:public"],
deps = ["@com_github_kisielk_errcheck//errcheck:go_default_library"],
)

View File

@@ -3,7 +3,7 @@ load("@prysm//tools/go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = ["analyzer.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/analyzers/featureconfig",
importpath = "github.com/OffchainLabs/prysm/v7/tools/analyzers/featureconfig",
visibility = ["//visibility:public"],
deps = [
"@org_golang_x_tools//go/analysis:go_default_library",

View File

@@ -3,7 +3,7 @@ load("@prysm//tools/go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = ["analyzer.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/analyzers/gocognit",
importpath = "github.com/OffchainLabs/prysm/v7/tools/analyzers/gocognit",
visibility = ["//visibility:public"],
deps = [
"@com_github_uudashr_gocognit//:go_default_library",

View File

@@ -6,7 +6,7 @@ go_library(
"analyzer.go",
"ineffassign.go",
],
importpath = "github.com/OffchainLabs/prysm/v6/tools/analyzers/ineffassign",
importpath = "github.com/OffchainLabs/prysm/v7/tools/analyzers/ineffassign",
visibility = ["//visibility:public"],
deps = [
"@org_golang_x_tools//go/analysis:go_default_library",

View File

@@ -3,7 +3,7 @@ package ineffassign
import (
"testing"
"github.com/OffchainLabs/prysm/v6/build/bazel"
"github.com/OffchainLabs/prysm/v7/build/bazel"
"golang.org/x/tools/go/analysis/analysistest"
)

View File

@@ -3,7 +3,7 @@ load("@prysm//tools/go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = ["analyzer.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/analyzers/interfacechecker",
importpath = "github.com/OffchainLabs/prysm/v7/tools/analyzers/interfacechecker",
visibility = ["//visibility:public"],
deps = [
"@org_golang_x_tools//go/analysis:go_default_library",

View File

@@ -3,7 +3,7 @@ load("@prysm//tools/go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["analyzer.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/analyzers/logcapitalization",
importpath = "github.com/OffchainLabs/prysm/v7/tools/analyzers/logcapitalization",
visibility = ["//visibility:public"],
deps = [
"@org_golang_x_tools//go/analysis:go_default_library",

View File

@@ -5,8 +5,8 @@ import (
"golang.org/x/tools/go/analysis/analysistest"
"github.com/OffchainLabs/prysm/v6/build/bazel"
"github.com/OffchainLabs/prysm/v6/tools/analyzers/logcapitalization"
"github.com/OffchainLabs/prysm/v7/build/bazel"
"github.com/OffchainLabs/prysm/v7/tools/analyzers/logcapitalization"
)
func init() {

View File

@@ -3,7 +3,7 @@ load("@prysm//tools/go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["analyzer.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/analyzers/logruswitherror",
importpath = "github.com/OffchainLabs/prysm/v7/tools/analyzers/logruswitherror",
visibility = ["//visibility:public"],
deps = [
"@org_golang_x_tools//go/analysis:go_default_library",

View File

@@ -3,7 +3,7 @@ package logruswitherror
import (
"testing"
"github.com/OffchainLabs/prysm/v6/build/bazel"
"github.com/OffchainLabs/prysm/v7/build/bazel"
"golang.org/x/tools/go/analysis/analysistest"
)

View File

@@ -6,7 +6,7 @@ go_library(
"analyzer.go",
"maligned.go",
],
importpath = "github.com/OffchainLabs/prysm/v6/tools/analyzers/maligned",
importpath = "github.com/OffchainLabs/prysm/v7/tools/analyzers/maligned",
visibility = ["//visibility:public"],
deps = [
"@org_golang_x_tools//go/analysis:go_default_library",

View File

@@ -3,7 +3,7 @@ load("@prysm//tools/go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["analyzer.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/analyzers/nop",
importpath = "github.com/OffchainLabs/prysm/v7/tools/analyzers/nop",
visibility = ["//visibility:public"],
deps = [
"@org_golang_x_tools//go/analysis:go_default_library",

View File

@@ -3,7 +3,7 @@ package nop
import (
"testing"
"github.com/OffchainLabs/prysm/v6/build/bazel"
"github.com/OffchainLabs/prysm/v7/build/bazel"
"golang.org/x/tools/go/analysis/analysistest"
)

View File

@@ -3,7 +3,7 @@ load("@prysm//tools/go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["analyzer.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/analyzers/nopanic",
importpath = "github.com/OffchainLabs/prysm/v7/tools/analyzers/nopanic",
visibility = ["//visibility:public"],
deps = [
"@org_golang_x_tools//go/analysis:go_default_library",

View File

@@ -3,7 +3,7 @@ package nopanic
import (
"testing"
"github.com/OffchainLabs/prysm/v6/build/bazel"
"github.com/OffchainLabs/prysm/v7/build/bazel"
"golang.org/x/tools/go/analysis/analysistest"
)

View File

@@ -3,7 +3,7 @@ load("@prysm//tools/go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["analyzer.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/analyzers/properpermissions",
importpath = "github.com/OffchainLabs/prysm/v7/tools/analyzers/properpermissions",
visibility = ["//visibility:public"],
deps = [
"@org_golang_x_tools//go/analysis:go_default_library",

View File

@@ -3,7 +3,7 @@ package properpermissions
import (
"testing"
"github.com/OffchainLabs/prysm/v6/build/bazel"
"github.com/OffchainLabs/prysm/v7/build/bazel"
"golang.org/x/tools/go/analysis/analysistest"
)

View File

@@ -3,7 +3,7 @@ load("@prysm//tools/go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["analyzer.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/analyzers/recursivelock",
importpath = "github.com/OffchainLabs/prysm/v7/tools/analyzers/recursivelock",
visibility = ["//visibility:public"],
deps = [
"@org_golang_x_tools//go/analysis:go_default_library",

View File

@@ -3,7 +3,7 @@ package recursivelock
import (
"testing"
"github.com/OffchainLabs/prysm/v6/build/bazel"
"github.com/OffchainLabs/prysm/v7/build/bazel"
"golang.org/x/tools/go/analysis/analysistest"
)

View File

@@ -3,7 +3,7 @@ load("@prysm//tools/go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["analyzer.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/analyzers/shadowpredecl",
importpath = "github.com/OffchainLabs/prysm/v7/tools/analyzers/shadowpredecl",
visibility = ["//visibility:public"],
deps = [
"@org_golang_x_tools//go/analysis:go_default_library",

View File

@@ -3,7 +3,7 @@ package shadowpredecl
import (
"testing"
"github.com/OffchainLabs/prysm/v6/build/bazel"
"github.com/OffchainLabs/prysm/v7/build/bazel"
"golang.org/x/tools/go/analysis/analysistest"
)

View File

@@ -3,7 +3,7 @@ load("@prysm//tools/go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["analyzer.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/analyzers/slicedirect",
importpath = "github.com/OffchainLabs/prysm/v7/tools/analyzers/slicedirect",
visibility = ["//visibility:public"],
deps = [
"@org_golang_x_tools//go/analysis:go_default_library",

View File

@@ -3,7 +3,7 @@ package slicedirect
import (
"testing"
"github.com/OffchainLabs/prysm/v6/build/bazel"
"github.com/OffchainLabs/prysm/v7/build/bazel"
"golang.org/x/tools/go/analysis/analysistest"
)

View File

@@ -3,7 +3,7 @@ load("@prysm//tools/go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["analyzer.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/analyzers/uintcast",
importpath = "github.com/OffchainLabs/prysm/v7/tools/analyzers/uintcast",
visibility = ["//visibility:public"],
deps = [
"@com_github_gostaticanalysis_comment//:go_default_library",

View File

@@ -3,8 +3,8 @@ package uintcast_test
import (
"testing"
"github.com/OffchainLabs/prysm/v6/build/bazel"
"github.com/OffchainLabs/prysm/v6/tools/analyzers/uintcast"
"github.com/OffchainLabs/prysm/v7/build/bazel"
"github.com/OffchainLabs/prysm/v7/tools/analyzers/uintcast"
"golang.org/x/tools/go/analysis/analysistest"
)

View File

@@ -5,7 +5,7 @@ load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
go_library(
name = "go_default_library",
srcs = ["main.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/beacon-fuzz",
importpath = "github.com/OffchainLabs/prysm/v7/tools/beacon-fuzz",
visibility = ["//visibility:private"],
deps = [
"//io/file:go_default_library",

View File

@@ -9,7 +9,7 @@ import (
"strconv"
"text/template"
"github.com/OffchainLabs/prysm/v6/io/file"
"github.com/OffchainLabs/prysm/v7/io/file"
)
var (

View File

@@ -5,7 +5,7 @@ go_library(
name = "go_default_library",
testonly = True,
srcs = ["main.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/benchmark-files-gen",
importpath = "github.com/OffchainLabs/prysm/v7/tools/benchmark-files-gen",
visibility = ["//visibility:private"],
deps = [
"//beacon-chain/core/helpers:go_default_library",

View File

@@ -6,20 +6,20 @@ import (
"os"
"path"
"github.com/OffchainLabs/prysm/v6/beacon-chain/core/helpers"
"github.com/OffchainLabs/prysm/v6/beacon-chain/core/signing"
"github.com/OffchainLabs/prysm/v6/beacon-chain/core/time"
"github.com/OffchainLabs/prysm/v6/beacon-chain/core/transition"
"github.com/OffchainLabs/prysm/v6/beacon-chain/state"
state_native "github.com/OffchainLabs/prysm/v6/beacon-chain/state/state-native"
"github.com/OffchainLabs/prysm/v6/config/params"
"github.com/OffchainLabs/prysm/v6/consensus-types/blocks"
"github.com/OffchainLabs/prysm/v6/consensus-types/primitives"
"github.com/OffchainLabs/prysm/v6/io/file"
ethpb "github.com/OffchainLabs/prysm/v6/proto/prysm/v1alpha1"
"github.com/OffchainLabs/prysm/v6/runtime/interop"
"github.com/OffchainLabs/prysm/v6/testing/benchmark"
"github.com/OffchainLabs/prysm/v6/testing/util"
"github.com/OffchainLabs/prysm/v7/beacon-chain/core/helpers"
"github.com/OffchainLabs/prysm/v7/beacon-chain/core/signing"
"github.com/OffchainLabs/prysm/v7/beacon-chain/core/time"
"github.com/OffchainLabs/prysm/v7/beacon-chain/core/transition"
"github.com/OffchainLabs/prysm/v7/beacon-chain/state"
state_native "github.com/OffchainLabs/prysm/v7/beacon-chain/state/state-native"
"github.com/OffchainLabs/prysm/v7/config/params"
"github.com/OffchainLabs/prysm/v7/consensus-types/blocks"
"github.com/OffchainLabs/prysm/v7/consensus-types/primitives"
"github.com/OffchainLabs/prysm/v7/io/file"
ethpb "github.com/OffchainLabs/prysm/v7/proto/prysm/v1alpha1"
"github.com/OffchainLabs/prysm/v7/runtime/interop"
"github.com/OffchainLabs/prysm/v7/testing/benchmark"
"github.com/OffchainLabs/prysm/v7/testing/util"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
)

View File

@@ -4,7 +4,7 @@ load("@io_bazel_rules_go//go:def.bzl", "go_binary")
go_library(
name = "go_default_library",
srcs = ["main.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/blocktree",
importpath = "github.com/OffchainLabs/prysm/v7/tools/blocktree",
visibility = ["//visibility:private"],
deps = [
"//beacon-chain/db/filters:go_default_library",

View File

@@ -15,9 +15,9 @@ import (
"fmt"
"strconv"
"github.com/OffchainLabs/prysm/v6/beacon-chain/db/filters"
"github.com/OffchainLabs/prysm/v6/beacon-chain/db/kv"
"github.com/OffchainLabs/prysm/v6/consensus-types/primitives"
"github.com/OffchainLabs/prysm/v7/beacon-chain/db/filters"
"github.com/OffchainLabs/prysm/v7/beacon-chain/db/kv"
"github.com/OffchainLabs/prysm/v7/consensus-types/primitives"
"github.com/emicklei/dot"
)

View File

@@ -5,7 +5,7 @@ load("//tools:prysm_image.bzl", "prysm_image_upload")
go_library(
name = "go_default_library",
srcs = ["bootnode.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/bootnode",
importpath = "github.com/OffchainLabs/prysm/v7/tools/bootnode",
visibility = ["//visibility:private"],
deps = [
"//async:go_default_library",

View File

@@ -24,16 +24,16 @@ import (
"time"
"github.com/OffchainLabs/go-bitfield"
"github.com/OffchainLabs/prysm/v6/async"
"github.com/OffchainLabs/prysm/v6/beacon-chain/core/signing"
"github.com/OffchainLabs/prysm/v6/config/params"
ecdsaprysm "github.com/OffchainLabs/prysm/v6/crypto/ecdsa"
"github.com/OffchainLabs/prysm/v6/encoding/bytesutil"
"github.com/OffchainLabs/prysm/v6/io/logs"
"github.com/OffchainLabs/prysm/v6/network"
pb "github.com/OffchainLabs/prysm/v6/proto/prysm/v1alpha1"
_ "github.com/OffchainLabs/prysm/v6/runtime/maxprocs"
"github.com/OffchainLabs/prysm/v6/runtime/version"
"github.com/OffchainLabs/prysm/v7/async"
"github.com/OffchainLabs/prysm/v7/beacon-chain/core/signing"
"github.com/OffchainLabs/prysm/v7/config/params"
ecdsaprysm "github.com/OffchainLabs/prysm/v7/crypto/ecdsa"
"github.com/OffchainLabs/prysm/v7/encoding/bytesutil"
"github.com/OffchainLabs/prysm/v7/io/logs"
"github.com/OffchainLabs/prysm/v7/network"
pb "github.com/OffchainLabs/prysm/v7/proto/prysm/v1alpha1"
_ "github.com/OffchainLabs/prysm/v7/runtime/maxprocs"
"github.com/OffchainLabs/prysm/v7/runtime/version"
gcrypto "github.com/ethereum/go-ethereum/crypto"
gethlog "github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/p2p/discover"

View File

@@ -9,11 +9,11 @@ import (
"testing"
"time"
ecdsaprysm "github.com/OffchainLabs/prysm/v6/crypto/ecdsa"
"github.com/OffchainLabs/prysm/v6/network"
_ "github.com/OffchainLabs/prysm/v6/runtime/maxprocs"
"github.com/OffchainLabs/prysm/v6/testing/assert"
"github.com/OffchainLabs/prysm/v6/testing/require"
ecdsaprysm "github.com/OffchainLabs/prysm/v7/crypto/ecdsa"
"github.com/OffchainLabs/prysm/v7/network"
_ "github.com/OffchainLabs/prysm/v7/runtime/maxprocs"
"github.com/OffchainLabs/prysm/v7/testing/assert"
"github.com/OffchainLabs/prysm/v7/testing/require"
"github.com/ethereum/go-ethereum/p2p/discover"
"github.com/ethereum/go-ethereum/p2p/enode"
"github.com/libp2p/go-libp2p/core/crypto"

View File

@@ -5,7 +5,7 @@ load("//tools:prysm_image.bzl", "prysm_image_upload")
go_library(
name = "go_default_library",
srcs = ["main.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/enr-calculator",
importpath = "github.com/OffchainLabs/prysm/v7/tools/enr-calculator",
visibility = ["//visibility:private"],
deps = [
"//crypto/ecdsa:go_default_library",

View File

@@ -9,9 +9,9 @@ import (
"flag"
"net"
ecdsaprysm "github.com/OffchainLabs/prysm/v6/crypto/ecdsa"
"github.com/OffchainLabs/prysm/v6/io/file"
_ "github.com/OffchainLabs/prysm/v6/runtime/maxprocs"
ecdsaprysm "github.com/OffchainLabs/prysm/v7/crypto/ecdsa"
"github.com/OffchainLabs/prysm/v7/io/file"
_ "github.com/OffchainLabs/prysm/v7/runtime/maxprocs"
"github.com/ethereum/go-ethereum/p2p/enode"
"github.com/ethereum/go-ethereum/p2p/enr"
"github.com/libp2p/go-libp2p/core/crypto"

View File

@@ -5,7 +5,7 @@ load("//tools:prysm_image.bzl", "prysm_image_upload")
go_library(
name = "go_default_library",
srcs = ["main.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/eth1exporter",
importpath = "github.com/OffchainLabs/prysm/v7/tools/eth1exporter",
visibility = ["//visibility:private"],
deps = [
"//runtime/maxprocs:go_default_library",

View File

@@ -14,7 +14,7 @@ import (
"strings"
"time"
_ "github.com/OffchainLabs/prysm/v6/runtime/maxprocs"
_ "github.com/OffchainLabs/prysm/v7/runtime/maxprocs"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/ethclient"
"github.com/ethereum/go-ethereum/params"

View File

@@ -4,7 +4,7 @@ load("@prysm//tools/go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = ["main.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/exploredb",
importpath = "github.com/OffchainLabs/prysm/v7/tools/exploredb",
visibility = ["//visibility:private"],
deps = [
"//beacon-chain/db/kv:go_default_library",

View File

@@ -17,12 +17,12 @@ import (
"sync"
"time"
"github.com/OffchainLabs/prysm/v6/beacon-chain/db/kv"
"github.com/OffchainLabs/prysm/v6/beacon-chain/state"
"github.com/OffchainLabs/prysm/v6/config/params"
"github.com/OffchainLabs/prysm/v6/consensus-types/primitives"
"github.com/OffchainLabs/prysm/v6/encoding/bytesutil"
ethpb "github.com/OffchainLabs/prysm/v6/proto/prysm/v1alpha1"
"github.com/OffchainLabs/prysm/v7/beacon-chain/db/kv"
"github.com/OffchainLabs/prysm/v7/beacon-chain/state"
"github.com/OffchainLabs/prysm/v7/config/params"
"github.com/OffchainLabs/prysm/v7/consensus-types/primitives"
"github.com/OffchainLabs/prysm/v7/encoding/bytesutil"
ethpb "github.com/OffchainLabs/prysm/v7/proto/prysm/v1alpha1"
"github.com/dustin/go-humanize"
log "github.com/sirupsen/logrus"
"github.com/status-im/keycard-go/hexutils"

View File

@@ -4,7 +4,7 @@ load("@io_bazel_rules_go//go:def.bzl", "go_binary")
go_library(
name = "go_default_library",
srcs = ["main.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/extractor",
importpath = "github.com/OffchainLabs/prysm/v7/tools/extractor",
visibility = ["//visibility:public"],
deps = [
"//beacon-chain/core/transition/interop:go_default_library",

View File

@@ -5,10 +5,10 @@ import (
"flag"
"fmt"
"github.com/OffchainLabs/prysm/v6/beacon-chain/core/transition/interop"
"github.com/OffchainLabs/prysm/v6/beacon-chain/db/kv"
"github.com/OffchainLabs/prysm/v6/config/features"
"github.com/OffchainLabs/prysm/v6/consensus-types/primitives"
"github.com/OffchainLabs/prysm/v7/beacon-chain/core/transition/interop"
"github.com/OffchainLabs/prysm/v7/beacon-chain/db/kv"
"github.com/OffchainLabs/prysm/v7/config/features"
"github.com/OffchainLabs/prysm/v7/consensus-types/primitives"
)
var (

View File

@@ -4,7 +4,7 @@ load("@io_bazel_rules_go//go:def.bzl", "go_binary")
go_library(
name = "go_default_library",
srcs = ["forkchecker.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/forkchecker",
importpath = "github.com/OffchainLabs/prysm/v7/tools/forkchecker",
visibility = ["//visibility:private"],
deps = [
"//config/params:go_default_library",

View File

@@ -16,9 +16,9 @@ import (
"reflect"
"time"
"github.com/OffchainLabs/prysm/v6/config/params"
"github.com/OffchainLabs/prysm/v6/consensus-types/primitives"
pb "github.com/OffchainLabs/prysm/v6/proto/prysm/v1alpha1"
"github.com/OffchainLabs/prysm/v7/config/params"
"github.com/OffchainLabs/prysm/v7/consensus-types/primitives"
pb "github.com/OffchainLabs/prysm/v7/proto/prysm/v1alpha1"
"github.com/sirupsen/logrus"
"google.golang.org/grpc"
"google.golang.org/protobuf/types/known/emptypb"

View File

@@ -4,7 +4,7 @@ load("@prysm//tools/go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = ["main.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/gocovmerge",
importpath = "github.com/OffchainLabs/prysm/v7/tools/gocovmerge",
visibility = ["//visibility:private"],
deps = [
"@com_github_sirupsen_logrus//:go_default_library",

View File

@@ -5,7 +5,7 @@ load("//tools:prysm_image.bzl", "prysm_image_upload")
go_library(
name = "go_default_library",
srcs = ["main.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/http-request-sink",
importpath = "github.com/OffchainLabs/prysm/v7/tools/http-request-sink",
visibility = ["//visibility:private"],
deps = ["//config/params:go_default_library"],
)

View File

@@ -15,7 +15,7 @@ import (
"strconv"
"time"
"github.com/OffchainLabs/prysm/v6/config/params"
"github.com/OffchainLabs/prysm/v7/config/params"
)
func main() {

View File

@@ -9,8 +9,8 @@ import (
"path/filepath"
"testing"
"github.com/OffchainLabs/prysm/v6/config/params"
"github.com/OffchainLabs/prysm/v6/testing/require"
"github.com/OffchainLabs/prysm/v7/config/params"
"github.com/OffchainLabs/prysm/v7/testing/require"
)
type sampleRPCRequest struct {

View File

@@ -4,7 +4,7 @@ load("@io_bazel_rules_go//go:def.bzl", "go_binary")
go_library(
name = "go_default_library",
srcs = ["main.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/interop/convert-keys",
importpath = "github.com/OffchainLabs/prysm/v7/tools/interop/convert-keys",
visibility = ["//visibility:public"],
deps = [
"//config/params:go_default_library",

View File

@@ -9,8 +9,8 @@ import (
"fmt"
"os"
"github.com/OffchainLabs/prysm/v6/config/params"
"github.com/OffchainLabs/prysm/v6/tools/unencrypted-keys-gen/keygen"
"github.com/OffchainLabs/prysm/v7/config/params"
"github.com/OffchainLabs/prysm/v7/tools/unencrypted-keys-gen/keygen"
log "github.com/sirupsen/logrus"
"gopkg.in/yaml.v2"
)

View File

@@ -4,7 +4,7 @@ load("@io_bazel_rules_go//go:def.bzl", "go_binary")
go_library(
name = "go_default_library",
srcs = ["main.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/interop/export-genesis",
importpath = "github.com/OffchainLabs/prysm/v7/tools/interop/export-genesis",
visibility = ["//visibility:private"],
deps = [
"//beacon-chain/db/kv:go_default_library",

View File

@@ -5,8 +5,8 @@ import (
"fmt"
"os"
"github.com/OffchainLabs/prysm/v6/beacon-chain/db/kv"
"github.com/OffchainLabs/prysm/v6/io/file"
"github.com/OffchainLabs/prysm/v7/beacon-chain/db/kv"
"github.com/OffchainLabs/prysm/v7/io/file"
)
// A basic tool to extract genesis.ssz from existing beaconchain.db.

View File

@@ -4,7 +4,7 @@ load("@prysm//tools/go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["main.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/interop/split-keys",
importpath = "github.com/OffchainLabs/prysm/v7/tools/interop/split-keys",
visibility = ["//visibility:private"],
deps = [
"//io/file:go_default_library",

View File

@@ -20,11 +20,11 @@ import (
"os"
"path"
"github.com/OffchainLabs/prysm/v6/io/file"
"github.com/OffchainLabs/prysm/v6/validator/accounts/wallet"
"github.com/OffchainLabs/prysm/v6/validator/keymanager"
"github.com/OffchainLabs/prysm/v6/validator/keymanager/derived"
"github.com/OffchainLabs/prysm/v6/validator/keymanager/local"
"github.com/OffchainLabs/prysm/v7/io/file"
"github.com/OffchainLabs/prysm/v7/validator/accounts/wallet"
"github.com/OffchainLabs/prysm/v7/validator/keymanager"
"github.com/OffchainLabs/prysm/v7/validator/keymanager/derived"
"github.com/OffchainLabs/prysm/v7/validator/keymanager/local"
"github.com/tyler-smith/go-bip39"
util "github.com/wealdtech/go-eth2-util"
)

View File

@@ -8,10 +8,10 @@ import (
"strings"
"testing"
"github.com/OffchainLabs/prysm/v6/testing/require"
"github.com/OffchainLabs/prysm/v6/validator/accounts/wallet"
"github.com/OffchainLabs/prysm/v6/validator/keymanager"
"github.com/OffchainLabs/prysm/v6/validator/keymanager/local"
"github.com/OffchainLabs/prysm/v7/testing/require"
"github.com/OffchainLabs/prysm/v7/validator/accounts/wallet"
"github.com/OffchainLabs/prysm/v7/validator/keymanager"
"github.com/OffchainLabs/prysm/v7/validator/keymanager/local"
)
const testMnemonic = "abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about"

View File

@@ -4,7 +4,7 @@ load("@prysm//tools/go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["main.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/keystores",
importpath = "github.com/OffchainLabs/prysm/v7/tools/keystores",
visibility = ["//visibility:private"],
deps = [
"//crypto/bls:go_default_library",

View File

@@ -13,10 +13,10 @@ import (
"path/filepath"
"strings"
"github.com/OffchainLabs/prysm/v6/crypto/bls"
"github.com/OffchainLabs/prysm/v6/io/file"
"github.com/OffchainLabs/prysm/v6/io/prompt"
"github.com/OffchainLabs/prysm/v6/validator/keymanager"
"github.com/OffchainLabs/prysm/v7/crypto/bls"
"github.com/OffchainLabs/prysm/v7/io/file"
"github.com/OffchainLabs/prysm/v7/io/prompt"
"github.com/OffchainLabs/prysm/v7/validator/keymanager"
"github.com/google/uuid"
"github.com/logrusorgru/aurora"
"github.com/pkg/errors"

View File

@@ -10,11 +10,11 @@ import (
"strings"
"testing"
"github.com/OffchainLabs/prysm/v6/config/params"
"github.com/OffchainLabs/prysm/v6/crypto/bls"
"github.com/OffchainLabs/prysm/v6/testing/assert"
"github.com/OffchainLabs/prysm/v6/testing/require"
"github.com/OffchainLabs/prysm/v6/validator/keymanager"
"github.com/OffchainLabs/prysm/v7/config/params"
"github.com/OffchainLabs/prysm/v7/crypto/bls"
"github.com/OffchainLabs/prysm/v7/testing/assert"
"github.com/OffchainLabs/prysm/v7/testing/require"
"github.com/OffchainLabs/prysm/v7/validator/keymanager"
"github.com/google/uuid"
"github.com/urfave/cli/v2"
keystorev4 "github.com/wealdtech/go-eth2-wallet-encryptor-keystorev4"

View File

@@ -10,7 +10,7 @@ go_library(
"config_exclusion.go",
"main.go",
],
importpath = "github.com/OffchainLabs/prysm/v6/tools/nogo_config",
importpath = "github.com/OffchainLabs/prysm/v7/tools/nogo_config",
visibility = ["//visibility:private"],
)

View File

@@ -5,7 +5,7 @@ load("//tools:prysm_image.bzl", "prysm_image_upload")
go_library(
name = "go_default_library",
srcs = ["main.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/pcli",
importpath = "github.com/OffchainLabs/prysm/v7/tools/pcli",
visibility = ["//visibility:private"],
deps = [
"//beacon-chain/core/epoch/precompute:go_default_library",

View File

@@ -10,17 +10,17 @@ import (
"strings"
"time"
"github.com/OffchainLabs/prysm/v6/beacon-chain/core/epoch/precompute"
"github.com/OffchainLabs/prysm/v6/beacon-chain/core/transition"
"github.com/OffchainLabs/prysm/v6/beacon-chain/state"
state_native "github.com/OffchainLabs/prysm/v6/beacon-chain/state/state-native"
"github.com/OffchainLabs/prysm/v6/config/params"
"github.com/OffchainLabs/prysm/v6/consensus-types/interfaces"
"github.com/OffchainLabs/prysm/v6/encoding/ssz/detect"
"github.com/OffchainLabs/prysm/v6/encoding/ssz/equality"
ethpb "github.com/OffchainLabs/prysm/v6/proto/prysm/v1alpha1"
prefixed "github.com/OffchainLabs/prysm/v6/runtime/logging/logrus-prefixed-formatter"
"github.com/OffchainLabs/prysm/v6/runtime/version"
"github.com/OffchainLabs/prysm/v7/beacon-chain/core/epoch/precompute"
"github.com/OffchainLabs/prysm/v7/beacon-chain/core/transition"
"github.com/OffchainLabs/prysm/v7/beacon-chain/state"
state_native "github.com/OffchainLabs/prysm/v7/beacon-chain/state/state-native"
"github.com/OffchainLabs/prysm/v7/config/params"
"github.com/OffchainLabs/prysm/v7/consensus-types/interfaces"
"github.com/OffchainLabs/prysm/v7/encoding/ssz/detect"
"github.com/OffchainLabs/prysm/v7/encoding/ssz/equality"
ethpb "github.com/OffchainLabs/prysm/v7/proto/prysm/v1alpha1"
prefixed "github.com/OffchainLabs/prysm/v7/runtime/logging/logrus-prefixed-formatter"
"github.com/OffchainLabs/prysm/v7/runtime/version"
"github.com/kr/pretty"
"github.com/pkg/errors"
fssz "github.com/prysmaticlabs/fastssz"

View File

@@ -4,7 +4,7 @@ load("@prysm//tools/go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = ["main.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/replay-http",
importpath = "github.com/OffchainLabs/prysm/v7/tools/replay-http",
visibility = ["//visibility:private"],
deps = [
"@com_github_pkg_errors//:go_default_library",

View File

@@ -16,7 +16,7 @@ go_library(
"data/ssz/merkle-proofs.md",
"data/extra.md",
],
importpath = "github.com/OffchainLabs/prysm/v6/tools/specs-checker",
importpath = "github.com/OffchainLabs/prysm/v7/tools/specs-checker",
visibility = ["//visibility:public"],
deps = [
"//config/params:go_default_library",

View File

@@ -10,7 +10,7 @@ import (
"path/filepath"
"regexp"
"github.com/OffchainLabs/prysm/v6/config/params"
"github.com/OffchainLabs/prysm/v7/config/params"
"github.com/urfave/cli/v2"
)

View File

@@ -4,7 +4,7 @@ load("@io_bazel_rules_go//go:def.bzl", "go_binary")
go_library(
name = "go_default_library",
srcs = ["main.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/unencrypted-keys-gen",
importpath = "github.com/OffchainLabs/prysm/v7/tools/unencrypted-keys-gen",
visibility = [
"//tools/interop/convert-keys:__pkg__",
],

View File

@@ -3,7 +3,7 @@ load("@prysm//tools/go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = ["keygen.go"],
importpath = "github.com/OffchainLabs/prysm/v6/tools/unencrypted-keys-gen/keygen",
importpath = "github.com/OffchainLabs/prysm/v7/tools/unencrypted-keys-gen/keygen",
visibility = ["//visibility:public"],
deps = ["@com_github_sirupsen_logrus//:go_default_library"],
)

View File

@@ -5,9 +5,9 @@ import (
"log"
"os"
"github.com/OffchainLabs/prysm/v6/crypto/bls"
"github.com/OffchainLabs/prysm/v6/runtime/interop"
"github.com/OffchainLabs/prysm/v6/tools/unencrypted-keys-gen/keygen"
"github.com/OffchainLabs/prysm/v7/crypto/bls"
"github.com/OffchainLabs/prysm/v7/runtime/interop"
"github.com/OffchainLabs/prysm/v7/tools/unencrypted-keys-gen/keygen"
)
var (

View File

@@ -5,9 +5,9 @@ import (
"encoding/json"
"testing"
"github.com/OffchainLabs/prysm/v6/testing/assert"
"github.com/OffchainLabs/prysm/v6/testing/require"
"github.com/OffchainLabs/prysm/v6/tools/unencrypted-keys-gen/keygen"
"github.com/OffchainLabs/prysm/v7/testing/assert"
"github.com/OffchainLabs/prysm/v7/testing/require"
"github.com/OffchainLabs/prysm/v7/tools/unencrypted-keys-gen/keygen"
)
func TestSavesUnencryptedKeys(t *testing.T) {