diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 661a4ad0a4..a998138ddf 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,9 +1,9 @@ -* @topos-network/protocol +* @topos-protocol/protocol # Github Actions -/.github/workflows/ @topos-network/protocol @topos-network/tools +/.github/workflows/ @topos-protocol/protocol @topos-protocol/tools # Docker -/docker @topos-network/protocol @topos-network/tools +/docker @topos-protocol/protocol @topos-protocol/tools diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1334fc06fc..19beb0d83a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -55,8 +55,8 @@ jobs: ghcr.io/goreleaser/goreleaser-cross:${GOLANG_CROSS_VERSION} \ --rm-dist --skip-validate env: - PACKAGE_NAME: github.com/topos-protocol/polygon-edge - GOLANG_CROSS_VERSION: v1.20.5 + PACKAGE_NAME: github.com/topos-network/polygon-edge + GOLANG_CROSS_VERSION: v1.18.3 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} VERSION: ${{ steps.prepare.outputs.tag_name }} SLACK_WEBHOOK: ${{ secrets.SLACK_EDGE_GITHUB_URL }} diff --git a/.goreleaser.yml b/.goreleaser.yml index d8938840aa..446170d70b 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -16,7 +16,7 @@ builds: env: - CC=o64-clang - CXX=o64-clang++ - ldflags: -s -w -X 'github.com/topos-network/polygon-edge/versioning.Version=v{{ .Version }}' + ldflags: -s -w -X 'github.com/topos-protocol/polygon-edge/versioning.Version=v{{ .Version }}' - id: darwin-arm64 main: ./main.go @@ -28,7 +28,7 @@ builds: env: - CC=oa64-clang - CXX=oa64-clang++ - ldflags: -s -w -X 'github.com/topos-network/polygon-edge/versioning.Version=v{{ .Version }}' + ldflags: -s -w -X 'github.com/topos-protocol/polygon-edge/versioning.Version=v{{ .Version }}' - id: linux-amd64 main: ./main.go @@ -42,7 +42,7 @@ builds: - CXX=g++ ldflags: # We need to build a static binary because we are building in a glibc based system and running in a musl container - -s -w -linkmode external -extldflags "-static" -X 'github.com/topos-network/polygon-edge/versioning.Version=v{{ .Version }}' + -s -w -linkmode external -extldflags "-static" -X 'github.com/topos-protocol/polygon-edge/versioning.Version=v{{ .Version }}' tags: - netgo - osusergo @@ -59,7 +59,7 @@ builds: - CXX=aarch64-linux-gnu-g++ ldflags: # We need to build a static binary because we are building in a glibc based system and running in a musl container - -s -w -linkmode external -extldflags "-static" -X 'github.com/topos-network/polygon-edge/versioning.Version=v{{ .Version }}' + -s -w -linkmode external -extldflags "-static" -X 'github.com/topos-protocol/polygon-edge/versioning.Version=v{{ .Version }}' tags: - netgo - osusergo diff --git a/consensus/ibft/frost/frost_backend.go b/consensus/ibft/frost/frost_backend.go index 0d350c50d2..664820b2c2 100644 --- a/consensus/ibft/frost/frost_backend.go +++ b/consensus/ibft/frost/frost_backend.go @@ -2,8 +2,8 @@ package frost import ( "github.com/0xPolygon/go-ibft/core" - "github.com/topos-network/go-topos-sequencer-client/frostclient" - protofrost "github.com/topos-network/go-topos-sequencer-client/frostclient/proto" + "github.com/topos-protocol/go-topos-sequencer-client/frostclient" + protofrost "github.com/topos-protocol/go-topos-sequencer-client/frostclient/proto" ) type FrostTransport interface { diff --git a/consensus/ibft/transport.go b/consensus/ibft/transport.go index 3c559e1f90..14481d2cf6 100644 --- a/consensus/ibft/transport.go +++ b/consensus/ibft/transport.go @@ -5,7 +5,7 @@ import ( "github.com/0xPolygon/polygon-edge/network" "github.com/0xPolygon/polygon-edge/types" "github.com/libp2p/go-libp2p/core/peer" - protofrost "github.com/topos-network/go-topos-sequencer-client/frostclient/proto" + protofrost "github.com/topos-protocol/go-topos-sequencer-client/frostclient/proto" ) type transport interface {