Skip to content

Commit

Permalink
Move from base-org to base (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdehoog authored Feb 11, 2025
1 parent a565781 commit 415860b
Show file tree
Hide file tree
Showing 20 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
url = https://github.com/ethereum-optimism/optimism
[submodule "lib/nitro-validator"]
path = contracts/lib/nitro-validator
url = https://github.com/base-org/nitro-validator
url = https://github.com/base/nitro-validator
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module github.com/base-org/op-enclave
module github.com/base/op-enclave

go 1.22.6

require (
github.com/aws/aws-sdk-go v1.55.5
github.com/base-org/op-enclave/op-enclave v0.0.0
github.com/base/op-enclave/op-enclave v0.0.0
github.com/ethereum-optimism/optimism v1.10.1-0.20250106160657-d1ccc976f7c4
github.com/ethereum/go-ethereum v1.14.11
github.com/hashicorp/go-multierror v1.1.1
Expand Down Expand Up @@ -112,6 +112,6 @@ require (
rsc.io/tmplfunc v0.0.3 // indirect
)

replace github.com/base-org/op-enclave/op-enclave => ./op-enclave
replace github.com/base/op-enclave/op-enclave => ./op-enclave

replace github.com/ethereum/go-ethereum => github.com/ethereum-optimism/op-geth v1.101411.5-rc.1.0.20241219170731-928070c7fc09
2 changes: 1 addition & 1 deletion op-batcher/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"os"

"github.com/base-org/op-enclave/op-batcher/batcher"
"github.com/base/op-enclave/op-batcher/batcher"
"github.com/ethereum-optimism/optimism/op-batcher/flags"
"github.com/urfave/cli/v2"

Expand Down
4 changes: 2 additions & 2 deletions op-da/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"context"
"os"

"github.com/base-org/op-enclave/op-da/da"
"github.com/base-org/op-enclave/op-da/flags"
"github.com/base/op-enclave/op-da/da"
"github.com/base/op-enclave/op-da/flags"
"github.com/ethereum-optimism/optimism/op-service/ctxinterrupt"

"github.com/urfave/cli/v2"
Expand Down
2 changes: 1 addition & 1 deletion op-da/da/config.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package da

import (
"github.com/base-org/op-enclave/op-da/flags"
"github.com/base/op-enclave/op-da/flags"
"github.com/urfave/cli/v2"

oplog "github.com/ethereum-optimism/optimism/op-service/log"
Expand Down
2 changes: 1 addition & 1 deletion op-da/da/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"os"
"sync/atomic"

"github.com/base-org/op-enclave/op-da/flags"
"github.com/base/op-enclave/op-da/flags"
altda "github.com/ethereum-optimism/optimism/op-alt-da"
opservice "github.com/ethereum-optimism/optimism/op-service"
"github.com/ethereum-optimism/optimism/op-service/cliapp"
Expand Down
2 changes: 1 addition & 1 deletion op-enclave/cmd/enclave/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"net/http"

enclave2 "github.com/base-org/op-enclave/op-enclave/enclave"
enclave2 "github.com/base/op-enclave/op-enclave/enclave"
oplog "github.com/ethereum-optimism/optimism/op-service/log"
"github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/rpc"
Expand Down
2 changes: 1 addition & 1 deletion op-enclave/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/base-org/op-enclave/op-enclave
module github.com/base/op-enclave/op-enclave

go 1.22.6

Expand Down
4 changes: 2 additions & 2 deletions op-proposer/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"context"
"os"

"github.com/base-org/op-enclave/op-proposer/flags"
"github.com/base-org/op-enclave/op-proposer/proposer"
"github.com/base/op-enclave/op-proposer/flags"
"github.com/base/op-enclave/op-proposer/proposer"
opservice "github.com/ethereum-optimism/optimism/op-service"
"github.com/ethereum-optimism/optimism/op-service/cliapp"
"github.com/ethereum-optimism/optimism/op-service/ctxinterrupt"
Expand Down
2 changes: 1 addition & 1 deletion op-proposer/proposer/config.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package proposer

import (
"github.com/base-org/op-enclave/op-proposer/flags"
"github.com/base/op-enclave/op-proposer/flags"
"github.com/ethereum-optimism/optimism/op-proposer/proposer"
"github.com/urfave/cli/v2"
)
Expand Down
4 changes: 2 additions & 2 deletions op-proposer/proposer/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"sync"
"time"

"github.com/base-org/op-enclave/bindings"
"github.com/base-org/op-enclave/op-enclave/enclave"
"github.com/base/op-enclave/bindings"
"github.com/base/op-enclave/op-enclave/enclave"
"github.com/ethereum-optimism/optimism/op-proposer/metrics"
"github.com/ethereum-optimism/optimism/op-service/eth"
"github.com/ethereum-optimism/optimism/op-service/txmgr"
Expand Down
2 changes: 1 addition & 1 deletion op-proposer/proposer/l2_output_submitter.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"fmt"

thisflags "github.com/base-org/op-enclave/op-proposer/flags"
thisflags "github.com/base/op-enclave/op-proposer/flags"
"github.com/ethereum-optimism/optimism/op-proposer/flags"
opservice "github.com/ethereum-optimism/optimism/op-service"
"github.com/ethereum-optimism/optimism/op-service/cliapp"
Expand Down
2 changes: 1 addition & 1 deletion op-proposer/proposer/prover.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"fmt"

"github.com/base-org/op-enclave/op-enclave/enclave"
"github.com/base/op-enclave/op-enclave/enclave"
"github.com/ethereum-optimism/optimism/op-node/rollup/derive"
"github.com/ethereum-optimism/optimism/op-service/eth"
"github.com/ethereum-optimism/optimism/op-service/predeploys"
Expand Down
4 changes: 2 additions & 2 deletions op-proposer/proposer/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"sync/atomic"
"time"

"github.com/base-org/op-enclave/op-enclave/enclave"
"github.com/base-org/op-enclave/op-proposer/metrics"
"github.com/base/op-enclave/op-enclave/enclave"
"github.com/base/op-enclave/op-proposer/metrics"
"github.com/ethereum-optimism/optimism/op-proposer/proposer/rpc"
opservice "github.com/ethereum-optimism/optimism/op-service"
"github.com/ethereum-optimism/optimism/op-service/cliapp"
Expand Down
4 changes: 2 additions & 2 deletions op-withdrawer/example/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"os"
"time"

"github.com/base-org/op-enclave/bindings"
"github.com/base-org/op-enclave/op-withdrawer/withdrawals"
"github.com/base/op-enclave/bindings"
"github.com/base/op-enclave/op-withdrawer/withdrawals"
bindings2 "github.com/ethereum-optimism/optimism/op-e2e/bindings"
"github.com/ethereum-optimism/optimism/op-node/rollup/derive"
"github.com/ethereum-optimism/optimism/op-service/predeploys"
Expand Down
4 changes: 2 additions & 2 deletions op-withdrawer/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"os"
"time"

"github.com/base-org/op-enclave/bindings"
"github.com/base-org/op-enclave/op-withdrawer/withdrawals"
"github.com/base/op-enclave/bindings"
"github.com/base/op-enclave/op-withdrawer/withdrawals"
"github.com/ethereum-optimism/optimism/op-node/rollup/derive"
"github.com/ethereum-optimism/optimism/op-service/ctxinterrupt"
oplog "github.com/ethereum-optimism/optimism/op-service/log"
Expand Down
2 changes: 1 addition & 1 deletion op-withdrawer/withdrawals/withdrawals.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"math/big"
"time"

"github.com/base-org/op-enclave/bindings"
"github.com/base/op-enclave/bindings"
"github.com/ethereum-optimism/optimism/op-node/withdrawals"
"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
Expand Down
2 changes: 1 addition & 1 deletion register-signer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This utility can be used to register an op-enclave signer key with the
## Installation

```
go install github.com/base-org/op-enclave/register-signer
go install github.com/base/op-enclave/register-signer
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions register-signer/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"os"
"time"

"github.com/base-org/op-enclave/bindings"
"github.com/base-org/op-enclave/op-withdrawer/withdrawals"
"github.com/base/op-enclave/bindings"
"github.com/base/op-enclave/op-withdrawer/withdrawals"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"
Expand Down
4 changes: 2 additions & 2 deletions testnet/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
"path/filepath"
"time"

"github.com/base-org/op-enclave/bindings"
"github.com/base-org/op-enclave/op-enclave/enclave"
"github.com/base/op-enclave/bindings"
"github.com/base/op-enclave/op-enclave/enclave"
altda "github.com/ethereum-optimism/optimism/op-alt-da"
"github.com/ethereum-optimism/optimism/op-chain-ops/foundry"
"github.com/ethereum-optimism/optimism/op-chain-ops/genesis"
Expand Down

0 comments on commit 415860b

Please sign in to comment.