Skip to content

Commit

Permalink
Change yetanotherco modules to lambdaclass
Browse files Browse the repository at this point in the history
  • Loading branch information
xqft committed Aug 20, 2024
1 parent a90a4ca commit 958cf2e
Show file tree
Hide file tree
Showing 14 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion operator/cmd/actions/deposit_into_strategy.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/Layr-Labs/eigensdk-go/signerv2"
"github.com/ethereum/go-ethereum/common"
"github.com/urfave/cli/v2"
"github.com/yetanotherco/aligned_layer/core/config"
"github.com/lambdaclass/aligned_layer/core/config"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions operator/cmd/actions/register.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ package actions

import (
"context"
operator "github.com/yetanotherco/aligned_layer/operator/pkg"
operator "github.com/lambdaclass/aligned_layer/operator/pkg"
"time"

"github.com/ethereum/go-ethereum/crypto"
"github.com/urfave/cli/v2"
"github.com/yetanotherco/aligned_layer/core/config"
"github.com/lambdaclass/aligned_layer/core/config"
)

var registerFlags = []cli.Flag{
Expand Down
4 changes: 2 additions & 2 deletions operator/cmd/actions/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (

sdkutils "github.com/Layr-Labs/eigensdk-go/utils"
"github.com/urfave/cli/v2"
"github.com/yetanotherco/aligned_layer/core/config"
operator "github.com/yetanotherco/aligned_layer/operator/pkg"
"github.com/lambdaclass/aligned_layer/core/config"
operator "github.com/lambdaclass/aligned_layer/operator/pkg"
)

var StartFlags = []cli.Flag{
Expand Down
2 changes: 1 addition & 1 deletion operator/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"

"github.com/urfave/cli/v2"
"github.com/yetanotherco/aligned_layer/operator/cmd/actions"
"github.com/lambdaclass/aligned_layer/operator/cmd/actions"

Check failure on line 8 in operator/cmd/main.go

View workflow job for this annotation

GitHub Actions / build

no required module provides package github.com/lambdaclass/aligned_layer/operator/cmd/actions; to add it:
)

var (
Expand Down
2 changes: 1 addition & 1 deletion operator/halo2ipa/halo2ipa_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package halo2ipa_test

import (
"encoding/binary"
"github.com/yetanotherco/aligned_layer/operator/halo2ipa"
"github.com/lambdaclass/aligned_layer/operator/halo2ipa"

Check failure on line 5 in operator/halo2ipa/halo2ipa_test.go

View workflow job for this annotation

GitHub Actions / test

no required module provides package github.com/lambdaclass/aligned_layer/operator/halo2ipa; to add it:
"os"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion operator/halo2kzg/halo2kzg_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package halo2kzg_test

import (
"encoding/binary"
"github.com/yetanotherco/aligned_layer/operator/halo2kzg"
"github.com/lambdaclass/aligned_layer/operator/halo2kzg"

Check failure on line 5 in operator/halo2kzg/halo2kzg_test.go

View workflow job for this annotation

GitHub Actions / test

no required module provides package github.com/lambdaclass/aligned_layer/operator/halo2kzg; to add it:
"os"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion operator/mina/mina_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"testing"

"github.com/yetanotherco/aligned_layer/operator/mina"
"github.com/lambdaclass/aligned_layer/operator/mina"
)

func TestMinaStateProofVerifies(t *testing.T) {
Expand Down
22 changes: 11 additions & 11 deletions operator/pkg/operator.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ import (
"time"

"github.com/ethereum/go-ethereum/crypto"
"github.com/yetanotherco/aligned_layer/operator/mina"
"github.com/yetanotherco/aligned_layer/operator/risc_zero"
"github.com/lambdaclass/aligned_layer/operator/mina"
"github.com/lambdaclass/aligned_layer/operator/risc_zero"

"github.com/prometheus/client_golang/prometheus"
"github.com/yetanotherco/aligned_layer/metrics"
"github.com/lambdaclass/aligned_layer/metrics"

"github.com/yetanotherco/aligned_layer/operator/halo2ipa"
"github.com/yetanotherco/aligned_layer/operator/halo2kzg"
"github.com/yetanotherco/aligned_layer/operator/sp1"
"github.com/lambdaclass/aligned_layer/operator/halo2ipa"
"github.com/lambdaclass/aligned_layer/operator/halo2kzg"
"github.com/lambdaclass/aligned_layer/operator/sp1"

"github.com/Layr-Labs/eigensdk-go/crypto/bls"
"github.com/Layr-Labs/eigensdk-go/logging"
Expand All @@ -30,12 +30,12 @@ import (
"github.com/consensys/gnark/backend/witness"
ethcommon "github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/event"
"github.com/yetanotherco/aligned_layer/common"
servicemanager "github.com/yetanotherco/aligned_layer/contracts/bindings/AlignedLayerServiceManager"
"github.com/yetanotherco/aligned_layer/core/chainio"
"github.com/yetanotherco/aligned_layer/core/types"
"github.com/lambdaclass/aligned_layer/common"
servicemanager "github.com/lambdaclass/aligned_layer/contracts/bindings/AlignedLayerServiceManager"
"github.com/lambdaclass/aligned_layer/core/chainio"
"github.com/lambdaclass/aligned_layer/core/types"

"github.com/yetanotherco/aligned_layer/core/config"
"github.com/lambdaclass/aligned_layer/core/config"
)

type Operator struct {
Expand Down
4 changes: 2 additions & 2 deletions operator/pkg/register.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"time"

"github.com/Layr-Labs/eigensdk-go/types"
"github.com/yetanotherco/aligned_layer/core/chainio"
"github.com/yetanotherco/aligned_layer/core/config"
"github.com/lambdaclass/aligned_layer/core/chainio"
"github.com/lambdaclass/aligned_layer/core/config"
)

// RegisterOperator operator registers the operator with the given public key for the given quorum IDs.
Expand Down
2 changes: 1 addition & 1 deletion operator/pkg/rpc_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"time"

"github.com/Layr-Labs/eigensdk-go/logging"
"github.com/yetanotherco/aligned_layer/core/types"
"github.com/lambdaclass/aligned_layer/core/types"
)

// AggregatorRpcClient is the client to communicate with the aggregator via RPC
Expand Down
2 changes: 1 addition & 1 deletion operator/pkg/s3.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"io"
"net/http"

"github.com/yetanotherco/aligned_layer/operator/merkle_tree"
"github.com/lambdaclass/aligned_layer/operator/merkle_tree"
)

func (o *Operator) getBatchFromS3(batchURL string, expectedMerkleRoot [32]byte) ([]VerificationData, error) {
Expand Down
2 changes: 1 addition & 1 deletion operator/pkg/verification_data.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package operator

import (
"github.com/yetanotherco/aligned_layer/common"
"github.com/lambdaclass/aligned_layer/common"
)

type VerificationData struct {
Expand Down
2 changes: 1 addition & 1 deletion operator/risc_zero/risc_zero_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"os"
"testing"

"github.com/yetanotherco/aligned_layer/operator/risc_zero"
"github.com/lambdaclass/aligned_layer/operator/risc_zero"

Check failure on line 7 in operator/risc_zero/risc_zero_test.go

View workflow job for this annotation

GitHub Actions / test

no required module provides package github.com/lambdaclass/aligned_layer/operator/risc_zero; to add it:
)

func TestFibonacciRiscZeroProofVerifies(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion operator/sp1/sp1_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"os"
"testing"

"github.com/yetanotherco/aligned_layer/operator/sp1"
"github.com/lambdaclass/aligned_layer/operator/sp1"

Check failure on line 7 in operator/sp1/sp1_test.go

View workflow job for this annotation

GitHub Actions / test

no required module provides package github.com/lambdaclass/aligned_layer/operator/sp1; to add it:
)

const MaxProofSize = 2 * 1024 * 1024
Expand Down

0 comments on commit 958cf2e

Please sign in to comment.