Skip to content

Commit 3130c9d

Browse files
authored
Migrate from base-org/ to base/ (#29)
1 parent 254f325 commit 3130c9d

File tree

4 files changed

+11
-13
lines changed

4 files changed

+11
-13
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ Golang utility for proving and finalizing ETH withdrawals from op-stack chains.
44

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

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

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

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

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

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

2626
## Installation
2727

2828
```
29-
git clone https://github.com/base-org/withdrawer.git
29+
git clone https://github.com/base/withdrawer.git
3030
cd withdrawer
3131
go install .
3232
```

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/base-org/withdrawer
1+
module github.com/base/withdrawer
22

33
go 1.21.1
44

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,6 @@ github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvq
150150
github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
151151
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
152152
github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
153-
github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg=
154-
github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
155153
github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek=
156154
github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps=
157155
github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ import (
1818
"github.com/ethereum/go-ethereum/ethclient"
1919
"github.com/ethereum/go-ethereum/rpc"
2020

21-
"github.com/base-org/withdrawer/signer"
22-
"github.com/base-org/withdrawer/withdraw"
21+
"github.com/base/withdrawer/signer"
22+
"github.com/base/withdrawer/withdraw"
2323
)
2424

2525
type network struct {

0 commit comments

Comments
 (0)