Skip to content

Commit

Permalink
org name change
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumemichel committed Jan 23, 2024
1 parent 6d1a891 commit 9c1cb04
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# hermes

[![ProbeLab](https://img.shields.io/badge/made%20by-ProbeLab-blue.svg)](https://probelab.io)
[![Build status](https://img.shields.io/github/actions/workflow/status/plprobelab/hermes/go-test.yml?branch=main)](https://github.com/plprobelab/hermes/actions)
[![GoDoc](https://pkg.go.dev/badge/github.com/plprobelab/hermes)](https://pkg.go.dev/github.com/plprobelab/hermes)
[![Build status](https://img.shields.io/github/actions/workflow/status/probe-lab/hermes/go-test.yml?branch=main)](https://github.com/probe-lab/hermes/actions)
[![GoDoc](https://pkg.go.dev/badge/github.com/probe-lab/hermes)](https://pkg.go.dev/github.com/probe-lab/hermes)

> A Gossipsub listener and tracer.
## Install

```sh
go get github.com/plprobelab/hermes
go get github.com/probe-lab/hermes
```

## Maintainers
Expand All @@ -22,7 +22,7 @@ go get github.com/plprobelab/hermes

Contributions are welcome!

Please take a look at [the issues](https://github.com/plprobelab/hermes/issues).
Please take a look at [the issues](https://github.com/probe-lab/hermes/issues).

This repository is part of the IPFS project and therefore governed by our [contributing guidelines](https://github.com/ipfs/community/blob/master/CONTRIBUTING.md).

Expand Down
2 changes: 1 addition & 1 deletion eth/gossipsub.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"github.com/protolambda/zrnt/eth2/configs"
"github.com/protolambda/ztyp/codec"

"github.com/plprobelab/hermes/node"
"github.com/probe-lab/hermes/node"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions eth/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ import (
"github.com/libp2p/go-libp2p/core/network"
"github.com/libp2p/go-libp2p/core/peer"
"github.com/libp2p/go-libp2p/core/peerstore"
"github.com/plprobelab/hermes/eth/rpc/methods"
"github.com/plprobelab/hermes/eth/rpc/reqresp"
"github.com/probe-lab/hermes/eth/rpc/methods"
"github.com/probe-lab/hermes/eth/rpc/reqresp"
"github.com/protolambda/zrnt/eth2/beacon/common"
)

Expand Down
2 changes: 1 addition & 1 deletion eth/rpc/methods/blocks.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/protolambda/ztyp/tree"
"github.com/protolambda/ztyp/view"

"github.com/plprobelab/hermes/eth/rpc/reqresp"
"github.com/probe-lab/hermes/eth/rpc/reqresp"
)

// instead of parsing the whole body, we can just leave it as bytes.
Expand Down
2 changes: 1 addition & 1 deletion eth/rpc/methods/goodbye.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package methods
import (
"github.com/protolambda/zrnt/eth2/beacon/common"

"github.com/plprobelab/hermes/eth/rpc/reqresp"
"github.com/probe-lab/hermes/eth/rpc/reqresp"
)

var GoodbyeRPCv1 = reqresp.RPCMethod{
Expand Down
2 changes: 1 addition & 1 deletion eth/rpc/methods/metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package methods
import (
beacon "github.com/protolambda/zrnt/eth2/beacon/common"

"github.com/plprobelab/hermes/eth/rpc/reqresp"
"github.com/probe-lab/hermes/eth/rpc/reqresp"
)

var MetaDataRPCv2 = reqresp.RPCMethod{
Expand Down
2 changes: 1 addition & 1 deletion eth/rpc/methods/ping.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package methods
import (
"github.com/protolambda/zrnt/eth2/beacon/common"

"github.com/plprobelab/hermes/eth/rpc/reqresp"
"github.com/probe-lab/hermes/eth/rpc/reqresp"
)

var PingRPCv1 = reqresp.RPCMethod{
Expand Down
2 changes: 1 addition & 1 deletion eth/rpc/methods/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package methods
import (
beacon "github.com/protolambda/zrnt/eth2/beacon/common"

"github.com/plprobelab/hermes/eth/rpc/reqresp"
"github.com/probe-lab/hermes/eth/rpc/reqresp"
)

var StatusRPCv1 = reqresp.RPCMethod{
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/plprobelab/hermes
module github.com/probe-lab/hermes

go 1.21

Expand Down
4 changes: 2 additions & 2 deletions listeneth.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"github.com/libp2p/go-libp2p/core/crypto"
"github.com/urfave/cli/v2"

"github.com/plprobelab/hermes/eth"
"github.com/plprobelab/hermes/node"
"github.com/probe-lab/hermes/eth"
"github.com/probe-lab/hermes/node"
)

var listenEthCmd = &cli.Command{
Expand Down

0 comments on commit 9c1cb04

Please sign in to comment.