Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
chore: rename topos-network to topos-protocol (#22)
Browse files Browse the repository at this point in the history
Co-authored-by: Marko Atanasievski <[email protected]>
  • Loading branch information
hadjiszs and atanmarko committed Sep 7, 2023
1 parent 99814a7 commit 4eb9b65
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
8 changes: 4 additions & 4 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions consensus/ibft/frost/frost_backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion consensus/ibft/transport.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 4eb9b65

Please sign in to comment.