Skip to content

Commit 76642b3

Browse files
committed
Package rename to complete repo move
1 parent 4ad0652 commit 76642b3

File tree

17 files changed

+25
-25
lines changed

17 files changed

+25
-25
lines changed

example/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ import (
99
"os"
1010
"time"
1111

12+
"github.com/base-org/op-enclave/bindings"
13+
"github.com/base-org/op-enclave/op-withdrawer/withdrawals"
1214
bindings2 "github.com/ethereum-optimism/optimism/op-e2e/bindings"
1315
"github.com/ethereum-optimism/optimism/op-node/rollup/derive"
1416
"github.com/ethereum-optimism/optimism/op-service/predeploys"
@@ -19,8 +21,6 @@ import (
1921
"github.com/ethereum/go-ethereum/crypto"
2022
"github.com/ethereum/go-ethereum/ethclient"
2123
"github.com/ethereum/go-ethereum/ethclient/gethclient"
22-
"github.com/mdehoog/op-enclave/bindings"
23-
"github.com/mdehoog/op-enclave/op-withdrawer/withdrawals"
2424
)
2525

2626
const pollInterval = 250 * time.Millisecond

go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/mdehoog/op-enclave
1+
module github.com/base-org/op-enclave
22

33
go 1.22.6
44

@@ -7,7 +7,7 @@ require (
77
github.com/ethereum-optimism/optimism v1.9.3
88
github.com/ethereum/go-ethereum v1.14.11
99
github.com/hashicorp/go-multierror v1.1.1
10-
github.com/mdehoog/op-enclave/op-enclave v0.0.0
10+
github.com/base-org/op-enclave/op-enclave v0.0.0
1111
github.com/prometheus/client_golang v1.20.4
1212
github.com/urfave/cli/v2 v2.27.4
1313
)
@@ -111,7 +111,7 @@ require (
111111
rsc.io/tmplfunc v0.0.3 // indirect
112112
)
113113

114-
replace github.com/mdehoog/op-enclave/op-enclave => ./op-enclave
114+
replace github.com/base-org/op-enclave/op-enclave => ./op-enclave
115115

116116
replace github.com/ethereum/go-ethereum => github.com/mdehoog/op-geth v0.0.0-20241003075401-d8f4cde5a852
117117

op-batcher/cmd/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"context"
55
"os"
66

7+
"github.com/base-org/op-enclave/op-batcher/batcher"
78
"github.com/ethereum-optimism/optimism/op-batcher/flags"
8-
"github.com/mdehoog/op-enclave/op-batcher/batcher"
99
"github.com/urfave/cli/v2"
1010

1111
opservice "github.com/ethereum-optimism/optimism/op-service"

op-da/cmd/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"context"
55
"os"
66

7+
"github.com/base-org/op-enclave/op-da/da"
8+
"github.com/base-org/op-enclave/op-da/flags"
79
"github.com/ethereum-optimism/optimism/op-service/ctxinterrupt"
8-
"github.com/mdehoog/op-enclave/op-da/da"
9-
"github.com/mdehoog/op-enclave/op-da/flags"
1010

1111
"github.com/urfave/cli/v2"
1212

op-da/da/config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package da
22

33
import (
4-
"github.com/mdehoog/op-enclave/op-da/flags"
4+
"github.com/base-org/op-enclave/op-da/flags"
55
"github.com/urfave/cli/v2"
66

77
oplog "github.com/ethereum-optimism/optimism/op-service/log"

op-da/da/service.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ import (
77
"os"
88
"sync/atomic"
99

10+
"github.com/base-org/op-enclave/op-da/flags"
1011
altda "github.com/ethereum-optimism/optimism/op-alt-da"
1112
opservice "github.com/ethereum-optimism/optimism/op-service"
1213
"github.com/ethereum-optimism/optimism/op-service/cliapp"
1314
oplog "github.com/ethereum-optimism/optimism/op-service/log"
1415
"github.com/ethereum/go-ethereum/log"
15-
"github.com/mdehoog/op-enclave/op-da/flags"
1616
"github.com/urfave/cli/v2"
1717
)
1818

op-enclave/cmd/enclave/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ package main
33
import (
44
"net/http"
55

6+
enclave2 "github.com/base-org/op-enclave/op-enclave/enclave"
67
oplog "github.com/ethereum-optimism/optimism/op-service/log"
78
"github.com/ethereum/go-ethereum/log"
89
"github.com/ethereum/go-ethereum/rpc"
9-
enclave2 "github.com/mdehoog/op-enclave/op-enclave/enclave"
1010
"github.com/mdlayher/vsock"
1111
)
1212

op-enclave/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/mdehoog/op-enclave/op-enclave
1+
module github.com/base-org/op-enclave/op-enclave
22

33
go 1.22.6
44

op-proposer/cmd/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ import (
44
"context"
55
"os"
66

7+
"github.com/base-org/op-enclave/op-proposer/flags"
8+
"github.com/base-org/op-enclave/op-proposer/proposer"
79
opservice "github.com/ethereum-optimism/optimism/op-service"
810
"github.com/ethereum-optimism/optimism/op-service/cliapp"
911
"github.com/ethereum-optimism/optimism/op-service/ctxinterrupt"
1012
oplog "github.com/ethereum-optimism/optimism/op-service/log"
1113
"github.com/ethereum/go-ethereum/log"
12-
"github.com/mdehoog/op-enclave/op-proposer/flags"
13-
"github.com/mdehoog/op-enclave/op-proposer/proposer"
1414
"github.com/urfave/cli/v2"
1515
)
1616

op-proposer/proposer/config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package proposer
22

33
import (
4+
"github.com/base-org/op-enclave/op-proposer/flags"
45
"github.com/ethereum-optimism/optimism/op-proposer/proposer"
5-
"github.com/mdehoog/op-enclave/op-proposer/flags"
66
"github.com/urfave/cli/v2"
77
)
88

op-proposer/proposer/driver.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import (
88
"sync"
99
"time"
1010

11+
"github.com/base-org/op-enclave/bindings"
12+
"github.com/base-org/op-enclave/op-enclave/enclave"
1113
"github.com/ethereum-optimism/optimism/op-proposer/metrics"
1214
"github.com/ethereum-optimism/optimism/op-service/eth"
1315
"github.com/ethereum-optimism/optimism/op-service/txmgr"
@@ -16,8 +18,6 @@ import (
1618
"github.com/ethereum/go-ethereum/accounts/abi/bind"
1719
"github.com/ethereum/go-ethereum/core/types"
1820
"github.com/ethereum/go-ethereum/log"
19-
"github.com/mdehoog/op-enclave/bindings"
20-
"github.com/mdehoog/op-enclave/op-enclave/enclave"
2121
)
2222

2323
var (

op-proposer/proposer/l2_output_submitter.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import (
44
"context"
55
"fmt"
66

7+
thisflags "github.com/base-org/op-enclave/op-proposer/flags"
78
"github.com/ethereum-optimism/optimism/op-proposer/flags"
89
opservice "github.com/ethereum-optimism/optimism/op-service"
910
"github.com/ethereum-optimism/optimism/op-service/cliapp"
1011
oplog "github.com/ethereum-optimism/optimism/op-service/log"
11-
thisflags "github.com/mdehoog/op-enclave/op-proposer/flags"
1212
"github.com/urfave/cli/v2"
1313
)
1414

op-proposer/proposer/prover.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ import (
44
"context"
55
"fmt"
66

7+
"github.com/base-org/op-enclave/op-enclave/enclave"
78
"github.com/ethereum-optimism/optimism/op-node/rollup/derive"
89
"github.com/ethereum-optimism/optimism/op-service/eth"
910
"github.com/ethereum-optimism/optimism/op-service/predeploys"
1011
"github.com/ethereum/go-ethereum/common"
1112
"github.com/ethereum/go-ethereum/common/hexutil"
1213
"github.com/ethereum/go-ethereum/core/types"
1314
"github.com/hashicorp/go-multierror"
14-
"github.com/mdehoog/op-enclave/op-enclave/enclave"
1515
)
1616

1717
type Prover struct {

op-proposer/proposer/service.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import (
88
"sync/atomic"
99
"time"
1010

11+
"github.com/base-org/op-enclave/op-enclave/enclave"
12+
"github.com/base-org/op-enclave/op-proposer/metrics"
1113
"github.com/ethereum-optimism/optimism/op-proposer/proposer/rpc"
1214
opservice "github.com/ethereum-optimism/optimism/op-service"
1315
"github.com/ethereum-optimism/optimism/op-service/cliapp"
@@ -21,8 +23,6 @@ import (
2123
"github.com/ethereum/go-ethereum/ethclient"
2224
"github.com/ethereum/go-ethereum/log"
2325
gethrpc "github.com/ethereum/go-ethereum/rpc"
24-
"github.com/mdehoog/op-enclave/op-enclave/enclave"
25-
"github.com/mdehoog/op-enclave/op-proposer/metrics"
2626
)
2727

2828
var ErrAlreadyStopped = errors.New("already stopped")

op-withdrawer/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ import (
77
"os"
88
"time"
99

10+
"github.com/base-org/op-enclave/bindings"
11+
"github.com/base-org/op-enclave/op-withdrawer/withdrawals"
1012
"github.com/ethereum-optimism/optimism/op-node/rollup/derive"
1113
"github.com/ethereum-optimism/optimism/op-service/ctxinterrupt"
1214
oplog "github.com/ethereum-optimism/optimism/op-service/log"
@@ -17,8 +19,6 @@ import (
1719
"github.com/ethereum/go-ethereum/ethclient"
1820
"github.com/ethereum/go-ethereum/ethclient/gethclient"
1921
"github.com/ethereum/go-ethereum/log"
20-
"github.com/mdehoog/op-enclave/bindings"
21-
"github.com/mdehoog/op-enclave/op-withdrawer/withdrawals"
2222
"github.com/urfave/cli/v2"
2323
)
2424

op-withdrawer/withdrawals/withdrawals.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ import (
77
"math/big"
88
"time"
99

10+
"github.com/base-org/op-enclave/bindings"
1011
"github.com/ethereum-optimism/optimism/op-node/withdrawals"
1112
"github.com/ethereum/go-ethereum"
1213
"github.com/ethereum/go-ethereum/accounts/abi/bind"
1314
"github.com/ethereum/go-ethereum/common"
1415
"github.com/ethereum/go-ethereum/core/types"
1516
"github.com/ethereum/go-ethereum/ethclient/gethclient"
16-
"github.com/mdehoog/op-enclave/bindings"
1717
)
1818

1919
type ProofClient interface {

testnet/genesis.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import (
1313
"path/filepath"
1414
"time"
1515

16+
"github.com/base-org/op-enclave/bindings"
1617
altda "github.com/ethereum-optimism/optimism/op-alt-da"
1718
"github.com/ethereum-optimism/optimism/op-chain-ops/deployer/opcm"
1819
"github.com/ethereum-optimism/optimism/op-chain-ops/deployer/state"
@@ -29,7 +30,6 @@ import (
2930
"github.com/ethereum/go-ethereum/crypto"
3031
"github.com/ethereum/go-ethereum/ethclient"
3132
"github.com/ethereum/go-ethereum/log"
32-
"github.com/mdehoog/op-enclave/bindings"
3333
"github.com/urfave/cli/v2"
3434
)
3535

0 commit comments

Comments
 (0)