Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
unxnn committed Dec 24, 2021
1 parent 03c2fbe commit 7f7ae6c
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: docker/metadata-action@v3
with:
images: |
europe-west4-docker.pkg.dev/stakewiselabs/public/operator-sidecar
europe-west4-docker.pkg.dev/stakewiselabs/public/ethnode-sidecar
tags: |
type=ref,event=branch
type=ref,event=tag
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
BINARY_NAME=opertor-sidecar
BINARY_NAME=sidecar

build:
GOARCH=amd64 GOOS=darwin go build -o ${BINARY_NAME}-darwin main.go
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# StakeWise Node Operator Sidecar
# StakeWise ETH1/ETH2 Nodes Sidecar


4 changes: 2 additions & 2 deletions clients/eth1.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package clients
import (
"fmt"
"github.com/go-resty/resty/v2"
"github.com/stakewise/operator-sidecar/common/hexutil"
"github.com/stakewise/operator-sidecar/config"
"github.com/stakewise/ethnode-sidecar/common/hexutil"
"github.com/stakewise/ethnode-sidecar/config"
"log"
"net/http"
)
Expand Down
2 changes: 1 addition & 1 deletion clients/eth2.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package clients
import (
"fmt"
"github.com/go-resty/resty/v2"
"github.com/stakewise/operator-sidecar/config"
"github.com/stakewise/ethnode-sidecar/config"
"log"
"net/http"
"strconv"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/stakewise/operator-sidecar
module github.com/stakewise/ethnode-sidecar

go 1.17

Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package main

import (
"github.com/gorilla/mux"
"github.com/stakewise/operator-sidecar/clients"
"github.com/stakewise/operator-sidecar/config"
"github.com/stakewise/ethnode-sidecar/clients"
"github.com/stakewise/ethnode-sidecar/config"
"log"
"net/http"
"time"
Expand Down

0 comments on commit 7f7ae6c

Please sign in to comment.