Skip to content

Commit

Permalink
Migrate from base-org/ to base/ (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdehoog authored Feb 11, 2025
1 parent 254f325 commit 3130c9d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 13 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ Golang utility for proving and finalizing ETH withdrawals from op-stack chains.

<!-- Badge row 1 - status -->

[![GitHub contributors](https://img.shields.io/github/contributors/base-org/withdrawer)](https://github.com/base-org/withdrawer/graphs/contributors)
[![GitHub commit activity](https://img.shields.io/github/commit-activity/w/base-org/withdrawer)](https://github.com/base-org/withdrawer/graphs/contributors)
[![GitHub Stars](https://img.shields.io/github/stars/base-org/withdrawer.svg)](https://github.com/base-org/withdrawer/stargazers)
![GitHub repo size](https://img.shields.io/github/repo-size/base-org/withdrawer)
[![GitHub](https://img.shields.io/github/license/base-org/withdrawer?color=blue)](https://github.com/base-org/withdrawer/blob/main/LICENSE)
[![GitHub contributors](https://img.shields.io/github/contributors/base/withdrawer)](https://github.com/base/withdrawer/graphs/contributors)
[![GitHub commit activity](https://img.shields.io/github/commit-activity/w/base/withdrawer)](https://github.com/base/withdrawer/graphs/contributors)
[![GitHub Stars](https://img.shields.io/github/stars/base/withdrawer.svg)](https://github.com/base/withdrawer/stargazers)
![GitHub repo size](https://img.shields.io/github/repo-size/base/withdrawer)
[![GitHub](https://img.shields.io/github/license/base/withdrawer?color=blue)](https://github.com/base/withdrawer/blob/main/LICENSE)

<!-- Badge row 2 - links and profiles -->

Expand All @@ -20,13 +20,13 @@ Golang utility for proving and finalizing ETH withdrawals from op-stack chains.

<!-- Badge row 3 - detailed status -->

[![GitHub pull requests by-label](https://img.shields.io/github/issues-pr-raw/base-org/withdrawer)](https://github.com/base-org/withdrawer/pulls)
[![GitHub Issues](https://img.shields.io/github/issues-raw/base-org/withdrawer.svg)](https://github.com/base-org/withdrawer/issues)
[![GitHub pull requests by-label](https://img.shields.io/github/issues-pr-raw/base/withdrawer)](https://github.com/base/withdrawer/pulls)
[![GitHub Issues](https://img.shields.io/github/issues-raw/base/withdrawer.svg)](https://github.com/base/withdrawer/issues)

## Installation

```
git clone https://github.com/base-org/withdrawer.git
git clone https://github.com/base/withdrawer.git
cd withdrawer
go install .
```
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/base-org/withdrawer
module github.com/base/withdrawer

go 1.21.1

Expand Down
2 changes: 0 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,6 @@ github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvq
github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg=
github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek=
github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps=
github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import (
"github.com/ethereum/go-ethereum/ethclient"
"github.com/ethereum/go-ethereum/rpc"

"github.com/base-org/withdrawer/signer"
"github.com/base-org/withdrawer/withdraw"
"github.com/base/withdrawer/signer"
"github.com/base/withdrawer/withdraw"
)

type network struct {
Expand Down

0 comments on commit 3130c9d

Please sign in to comment.