File tree 17 files changed +25
-25
lines changed
17 files changed +25
-25
lines changed Original file line number Diff line number Diff line change 9
9
"os"
10
10
"time"
11
11
12
+ "github.com/base-org/op-enclave/bindings"
13
+ "github.com/base-org/op-enclave/op-withdrawer/withdrawals"
12
14
bindings2 "github.com/ethereum-optimism/optimism/op-e2e/bindings"
13
15
"github.com/ethereum-optimism/optimism/op-node/rollup/derive"
14
16
"github.com/ethereum-optimism/optimism/op-service/predeploys"
@@ -19,8 +21,6 @@ import (
19
21
"github.com/ethereum/go-ethereum/crypto"
20
22
"github.com/ethereum/go-ethereum/ethclient"
21
23
"github.com/ethereum/go-ethereum/ethclient/gethclient"
22
- "github.com/mdehoog/op-enclave/bindings"
23
- "github.com/mdehoog/op-enclave/op-withdrawer/withdrawals"
24
24
)
25
25
26
26
const pollInterval = 250 * time .Millisecond
Original file line number Diff line number Diff line change 1
- module github.com/mdehoog /op-enclave
1
+ module github.com/base-org /op-enclave
2
2
3
3
go 1.22.6
4
4
@@ -7,7 +7,7 @@ require (
7
7
github.com/ethereum-optimism/optimism v1.9.3
8
8
github.com/ethereum/go-ethereum v1.14.11
9
9
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
11
11
github.com/prometheus/client_golang v1.20.4
12
12
github.com/urfave/cli/v2 v2.27.4
13
13
)
@@ -111,7 +111,7 @@ require (
111
111
rsc.io/tmplfunc v0.0.3 // indirect
112
112
)
113
113
114
- replace github.com/mdehoog /op-enclave/op-enclave => ./op-enclave
114
+ replace github.com/base-org /op-enclave/op-enclave => ./op-enclave
115
115
116
116
replace github.com/ethereum/go-ethereum => github.com/mdehoog/op-geth v0.0.0-20241003075401-d8f4cde5a852
117
117
Original file line number Diff line number Diff line change 4
4
"context"
5
5
"os"
6
6
7
+ "github.com/base-org/op-enclave/op-batcher/batcher"
7
8
"github.com/ethereum-optimism/optimism/op-batcher/flags"
8
- "github.com/mdehoog/op-enclave/op-batcher/batcher"
9
9
"github.com/urfave/cli/v2"
10
10
11
11
opservice "github.com/ethereum-optimism/optimism/op-service"
Original file line number Diff line number Diff line change 4
4
"context"
5
5
"os"
6
6
7
+ "github.com/base-org/op-enclave/op-da/da"
8
+ "github.com/base-org/op-enclave/op-da/flags"
7
9
"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"
10
10
11
11
"github.com/urfave/cli/v2"
12
12
Original file line number Diff line number Diff line change 1
1
package da
2
2
3
3
import (
4
- "github.com/mdehoog /op-enclave/op-da/flags"
4
+ "github.com/base-org /op-enclave/op-da/flags"
5
5
"github.com/urfave/cli/v2"
6
6
7
7
oplog "github.com/ethereum-optimism/optimism/op-service/log"
Original file line number Diff line number Diff line change @@ -7,12 +7,12 @@ import (
7
7
"os"
8
8
"sync/atomic"
9
9
10
+ "github.com/base-org/op-enclave/op-da/flags"
10
11
altda "github.com/ethereum-optimism/optimism/op-alt-da"
11
12
opservice "github.com/ethereum-optimism/optimism/op-service"
12
13
"github.com/ethereum-optimism/optimism/op-service/cliapp"
13
14
oplog "github.com/ethereum-optimism/optimism/op-service/log"
14
15
"github.com/ethereum/go-ethereum/log"
15
- "github.com/mdehoog/op-enclave/op-da/flags"
16
16
"github.com/urfave/cli/v2"
17
17
)
18
18
Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ package main
3
3
import (
4
4
"net/http"
5
5
6
+ enclave2 "github.com/base-org/op-enclave/op-enclave/enclave"
6
7
oplog "github.com/ethereum-optimism/optimism/op-service/log"
7
8
"github.com/ethereum/go-ethereum/log"
8
9
"github.com/ethereum/go-ethereum/rpc"
9
- enclave2 "github.com/mdehoog/op-enclave/op-enclave/enclave"
10
10
"github.com/mdlayher/vsock"
11
11
)
12
12
Original file line number Diff line number Diff line change 1
- module github.com/mdehoog /op-enclave/op-enclave
1
+ module github.com/base-org /op-enclave/op-enclave
2
2
3
3
go 1.22.6
4
4
Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ import (
4
4
"context"
5
5
"os"
6
6
7
+ "github.com/base-org/op-enclave/op-proposer/flags"
8
+ "github.com/base-org/op-enclave/op-proposer/proposer"
7
9
opservice "github.com/ethereum-optimism/optimism/op-service"
8
10
"github.com/ethereum-optimism/optimism/op-service/cliapp"
9
11
"github.com/ethereum-optimism/optimism/op-service/ctxinterrupt"
10
12
oplog "github.com/ethereum-optimism/optimism/op-service/log"
11
13
"github.com/ethereum/go-ethereum/log"
12
- "github.com/mdehoog/op-enclave/op-proposer/flags"
13
- "github.com/mdehoog/op-enclave/op-proposer/proposer"
14
14
"github.com/urfave/cli/v2"
15
15
)
16
16
Original file line number Diff line number Diff line change 1
1
package proposer
2
2
3
3
import (
4
+ "github.com/base-org/op-enclave/op-proposer/flags"
4
5
"github.com/ethereum-optimism/optimism/op-proposer/proposer"
5
- "github.com/mdehoog/op-enclave/op-proposer/flags"
6
6
"github.com/urfave/cli/v2"
7
7
)
8
8
Original file line number Diff line number Diff line change 8
8
"sync"
9
9
"time"
10
10
11
+ "github.com/base-org/op-enclave/bindings"
12
+ "github.com/base-org/op-enclave/op-enclave/enclave"
11
13
"github.com/ethereum-optimism/optimism/op-proposer/metrics"
12
14
"github.com/ethereum-optimism/optimism/op-service/eth"
13
15
"github.com/ethereum-optimism/optimism/op-service/txmgr"
@@ -16,8 +18,6 @@ import (
16
18
"github.com/ethereum/go-ethereum/accounts/abi/bind"
17
19
"github.com/ethereum/go-ethereum/core/types"
18
20
"github.com/ethereum/go-ethereum/log"
19
- "github.com/mdehoog/op-enclave/bindings"
20
- "github.com/mdehoog/op-enclave/op-enclave/enclave"
21
21
)
22
22
23
23
var (
Original file line number Diff line number Diff line change @@ -4,11 +4,11 @@ import (
4
4
"context"
5
5
"fmt"
6
6
7
+ thisflags "github.com/base-org/op-enclave/op-proposer/flags"
7
8
"github.com/ethereum-optimism/optimism/op-proposer/flags"
8
9
opservice "github.com/ethereum-optimism/optimism/op-service"
9
10
"github.com/ethereum-optimism/optimism/op-service/cliapp"
10
11
oplog "github.com/ethereum-optimism/optimism/op-service/log"
11
- thisflags "github.com/mdehoog/op-enclave/op-proposer/flags"
12
12
"github.com/urfave/cli/v2"
13
13
)
14
14
Original file line number Diff line number Diff line change @@ -4,14 +4,14 @@ import (
4
4
"context"
5
5
"fmt"
6
6
7
+ "github.com/base-org/op-enclave/op-enclave/enclave"
7
8
"github.com/ethereum-optimism/optimism/op-node/rollup/derive"
8
9
"github.com/ethereum-optimism/optimism/op-service/eth"
9
10
"github.com/ethereum-optimism/optimism/op-service/predeploys"
10
11
"github.com/ethereum/go-ethereum/common"
11
12
"github.com/ethereum/go-ethereum/common/hexutil"
12
13
"github.com/ethereum/go-ethereum/core/types"
13
14
"github.com/hashicorp/go-multierror"
14
- "github.com/mdehoog/op-enclave/op-enclave/enclave"
15
15
)
16
16
17
17
type Prover struct {
Original file line number Diff line number Diff line change 8
8
"sync/atomic"
9
9
"time"
10
10
11
+ "github.com/base-org/op-enclave/op-enclave/enclave"
12
+ "github.com/base-org/op-enclave/op-proposer/metrics"
11
13
"github.com/ethereum-optimism/optimism/op-proposer/proposer/rpc"
12
14
opservice "github.com/ethereum-optimism/optimism/op-service"
13
15
"github.com/ethereum-optimism/optimism/op-service/cliapp"
@@ -21,8 +23,6 @@ import (
21
23
"github.com/ethereum/go-ethereum/ethclient"
22
24
"github.com/ethereum/go-ethereum/log"
23
25
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"
26
26
)
27
27
28
28
var ErrAlreadyStopped = errors .New ("already stopped" )
Original file line number Diff line number Diff line change 7
7
"os"
8
8
"time"
9
9
10
+ "github.com/base-org/op-enclave/bindings"
11
+ "github.com/base-org/op-enclave/op-withdrawer/withdrawals"
10
12
"github.com/ethereum-optimism/optimism/op-node/rollup/derive"
11
13
"github.com/ethereum-optimism/optimism/op-service/ctxinterrupt"
12
14
oplog "github.com/ethereum-optimism/optimism/op-service/log"
@@ -17,8 +19,6 @@ import (
17
19
"github.com/ethereum/go-ethereum/ethclient"
18
20
"github.com/ethereum/go-ethereum/ethclient/gethclient"
19
21
"github.com/ethereum/go-ethereum/log"
20
- "github.com/mdehoog/op-enclave/bindings"
21
- "github.com/mdehoog/op-enclave/op-withdrawer/withdrawals"
22
22
"github.com/urfave/cli/v2"
23
23
)
24
24
Original file line number Diff line number Diff line change @@ -7,13 +7,13 @@ import (
7
7
"math/big"
8
8
"time"
9
9
10
+ "github.com/base-org/op-enclave/bindings"
10
11
"github.com/ethereum-optimism/optimism/op-node/withdrawals"
11
12
"github.com/ethereum/go-ethereum"
12
13
"github.com/ethereum/go-ethereum/accounts/abi/bind"
13
14
"github.com/ethereum/go-ethereum/common"
14
15
"github.com/ethereum/go-ethereum/core/types"
15
16
"github.com/ethereum/go-ethereum/ethclient/gethclient"
16
- "github.com/mdehoog/op-enclave/bindings"
17
17
)
18
18
19
19
type ProofClient interface {
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import (
13
13
"path/filepath"
14
14
"time"
15
15
16
+ "github.com/base-org/op-enclave/bindings"
16
17
altda "github.com/ethereum-optimism/optimism/op-alt-da"
17
18
"github.com/ethereum-optimism/optimism/op-chain-ops/deployer/opcm"
18
19
"github.com/ethereum-optimism/optimism/op-chain-ops/deployer/state"
@@ -29,7 +30,6 @@ import (
29
30
"github.com/ethereum/go-ethereum/crypto"
30
31
"github.com/ethereum/go-ethereum/ethclient"
31
32
"github.com/ethereum/go-ethereum/log"
32
- "github.com/mdehoog/op-enclave/bindings"
33
33
"github.com/urfave/cli/v2"
34
34
)
35
35
You can’t perform that action at this time.
0 commit comments