Skip to content

Commit b5526cb

Browse files
committed
Revert "Change yetanotherco modules to lambdaclass"
This reverts commit 958cf2e.
1 parent 958cf2e commit b5526cb

14 files changed

Lines changed: 27 additions & 27 deletions

File tree

operator/cmd/actions/deposit_into_strategy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"github.com/Layr-Labs/eigensdk-go/signerv2"
1313
"github.com/ethereum/go-ethereum/common"
1414
"github.com/urfave/cli/v2"
15-
"github.com/lambdaclass/aligned_layer/core/config"
15+
"github.com/yetanotherco/aligned_layer/core/config"
1616
)
1717

1818
var (

operator/cmd/actions/register.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ package actions
22

33
import (
44
"context"
5-
operator "github.com/lambdaclass/aligned_layer/operator/pkg"
5+
operator "github.com/yetanotherco/aligned_layer/operator/pkg"
66
"time"
77

88
"github.com/ethereum/go-ethereum/crypto"
99
"github.com/urfave/cli/v2"
10-
"github.com/lambdaclass/aligned_layer/core/config"
10+
"github.com/yetanotherco/aligned_layer/core/config"
1111
)
1212

1313
var registerFlags = []cli.Flag{

operator/cmd/actions/start.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66

77
sdkutils "github.com/Layr-Labs/eigensdk-go/utils"
88
"github.com/urfave/cli/v2"
9-
"github.com/lambdaclass/aligned_layer/core/config"
10-
operator "github.com/lambdaclass/aligned_layer/operator/pkg"
9+
"github.com/yetanotherco/aligned_layer/core/config"
10+
operator "github.com/yetanotherco/aligned_layer/operator/pkg"
1111
)
1212

1313
var StartFlags = []cli.Flag{

operator/cmd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66

77
"github.com/urfave/cli/v2"
8-
"github.com/lambdaclass/aligned_layer/operator/cmd/actions"
8+
"github.com/yetanotherco/aligned_layer/operator/cmd/actions"
99
)
1010

1111
var (

operator/halo2ipa/halo2ipa_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package halo2ipa_test
22

33
import (
44
"encoding/binary"
5-
"github.com/lambdaclass/aligned_layer/operator/halo2ipa"
5+
"github.com/yetanotherco/aligned_layer/operator/halo2ipa"
66
"os"
77
"testing"
88
)

operator/halo2kzg/halo2kzg_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package halo2kzg_test
22

33
import (
44
"encoding/binary"
5-
"github.com/lambdaclass/aligned_layer/operator/halo2kzg"
5+
"github.com/yetanotherco/aligned_layer/operator/halo2kzg"
66
"os"
77
"testing"
88
)

operator/mina/mina_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66
"testing"
77

8-
"github.com/lambdaclass/aligned_layer/operator/mina"
8+
"github.com/yetanotherco/aligned_layer/operator/mina"
99
)
1010

1111
func TestMinaStateProofVerifies(t *testing.T) {

operator/pkg/operator.go

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ import (
1111
"time"
1212

1313
"github.com/ethereum/go-ethereum/crypto"
14-
"github.com/lambdaclass/aligned_layer/operator/mina"
15-
"github.com/lambdaclass/aligned_layer/operator/risc_zero"
14+
"github.com/yetanotherco/aligned_layer/operator/mina"
15+
"github.com/yetanotherco/aligned_layer/operator/risc_zero"
1616

1717
"github.com/prometheus/client_golang/prometheus"
18-
"github.com/lambdaclass/aligned_layer/metrics"
18+
"github.com/yetanotherco/aligned_layer/metrics"
1919

20-
"github.com/lambdaclass/aligned_layer/operator/halo2ipa"
21-
"github.com/lambdaclass/aligned_layer/operator/halo2kzg"
22-
"github.com/lambdaclass/aligned_layer/operator/sp1"
20+
"github.com/yetanotherco/aligned_layer/operator/halo2ipa"
21+
"github.com/yetanotherco/aligned_layer/operator/halo2kzg"
22+
"github.com/yetanotherco/aligned_layer/operator/sp1"
2323

2424
"github.com/Layr-Labs/eigensdk-go/crypto/bls"
2525
"github.com/Layr-Labs/eigensdk-go/logging"
@@ -30,12 +30,12 @@ import (
3030
"github.com/consensys/gnark/backend/witness"
3131
ethcommon "github.com/ethereum/go-ethereum/common"
3232
"github.com/ethereum/go-ethereum/event"
33-
"github.com/lambdaclass/aligned_layer/common"
34-
servicemanager "github.com/lambdaclass/aligned_layer/contracts/bindings/AlignedLayerServiceManager"
35-
"github.com/lambdaclass/aligned_layer/core/chainio"
36-
"github.com/lambdaclass/aligned_layer/core/types"
33+
"github.com/yetanotherco/aligned_layer/common"
34+
servicemanager "github.com/yetanotherco/aligned_layer/contracts/bindings/AlignedLayerServiceManager"
35+
"github.com/yetanotherco/aligned_layer/core/chainio"
36+
"github.com/yetanotherco/aligned_layer/core/types"
3737

38-
"github.com/lambdaclass/aligned_layer/core/config"
38+
"github.com/yetanotherco/aligned_layer/core/config"
3939
)
4040

4141
type Operator struct {

operator/pkg/register.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"time"
77

88
"github.com/Layr-Labs/eigensdk-go/types"
9-
"github.com/lambdaclass/aligned_layer/core/chainio"
10-
"github.com/lambdaclass/aligned_layer/core/config"
9+
"github.com/yetanotherco/aligned_layer/core/chainio"
10+
"github.com/yetanotherco/aligned_layer/core/config"
1111
)
1212

1313
// RegisterOperator operator registers the operator with the given public key for the given quorum IDs.

operator/pkg/rpc_client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"time"
77

88
"github.com/Layr-Labs/eigensdk-go/logging"
9-
"github.com/lambdaclass/aligned_layer/core/types"
9+
"github.com/yetanotherco/aligned_layer/core/types"
1010
)
1111

1212
// AggregatorRpcClient is the client to communicate with the aggregator via RPC

0 commit comments

Comments
 (0)