Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.

Commit

Permalink
bing
Browse files Browse the repository at this point in the history
  • Loading branch information
Devon Bear committed Nov 7, 2023
1 parent 0f5ea67 commit f61d044
Show file tree
Hide file tree
Showing 203 changed files with 1,460 additions and 8,858 deletions.
1,376 changes: 0 additions & 1,376 deletions build/tools/go.sum

This file was deleted.

10 changes: 5 additions & 5 deletions cosmos/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ import (
servertypes "github.com/cosmos/cosmos-sdk/server/types"
sdk "github.com/cosmos/cosmos-sdk/types"

"pkg.berachain.dev/polaris/cosmos/config/flags"
"pkg.berachain.dev/polaris/eth"
"pkg.berachain.dev/polaris/eth/accounts"
"pkg.berachain.dev/polaris/eth/node"
"pkg.berachain.dev/polaris/eth/polar"
"github.com/berachain/polaris/cosmos/config/flags"
"github.com/berachain/polaris/eth"
"github.com/berachain/polaris/eth/accounts"
"github.com/berachain/polaris/eth/node"
"github.com/berachain/polaris/eth/polar"
)

type Config = eth.Config
Expand Down
4 changes: 2 additions & 2 deletions cosmos/config/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ import (
"github.com/cosmos/cosmos-sdk/crypto/hd"
sdk "github.com/cosmos/cosmos-sdk/types"

sgconfig "pkg.berachain.dev/polaris/cosmos/config"
"pkg.berachain.dev/polaris/eth/accounts"
sgconfig "github.com/berachain/polaris/cosmos/config"
"github.com/berachain/polaris/eth/accounts"

. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
Expand Down
4 changes: 2 additions & 2 deletions cosmos/config/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ import (

servertypes "github.com/cosmos/cosmos-sdk/server/types"

"pkg.berachain.dev/polaris/eth/common"
"pkg.berachain.dev/polaris/eth/common/hexutil"
"github.com/berachain/polaris/eth/common"
"github.com/berachain/polaris/eth/common/hexutil"
)

// baseTen is for the big.Int string conversation.
Expand Down
6 changes: 3 additions & 3 deletions cosmos/config/parser_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ import (
"testing"
"time"

"pkg.berachain.dev/polaris/cosmos/config/mocks"
"pkg.berachain.dev/polaris/eth/common"
"pkg.berachain.dev/polaris/eth/common/hexutil"
"github.com/berachain/polaris/cosmos/config/mocks"
"github.com/berachain/polaris/eth/common"
"github.com/berachain/polaris/eth/common/hexutil"

. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
Expand Down
2 changes: 1 addition & 1 deletion cosmos/crypto/codec/codec.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types"

"pkg.berachain.dev/polaris/cosmos/crypto/keys/ethsecp256k1"
"github.com/berachain/polaris/cosmos/crypto/keys/ethsecp256k1"
)

// RegisterInterfaces registers the ethsecp256k1 key types.
Expand Down
2 changes: 1 addition & 1 deletion cosmos/crypto/hd/algo.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"github.com/cosmos/cosmos-sdk/crypto/keyring"
cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types"

"pkg.berachain.dev/polaris/cosmos/crypto/keys/ethsecp256k1"
"github.com/berachain/polaris/cosmos/crypto/keys/ethsecp256k1"
)

const (
Expand Down
10 changes: 5 additions & 5 deletions cosmos/crypto/hd/algo_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ import (

"github.com/cosmos/cosmos-sdk/crypto/keyring"

ethsecp256k1 "pkg.berachain.dev/polaris/cosmos/crypto/keys/ethsecp256k1"
"pkg.berachain.dev/polaris/eth/accounts"
"pkg.berachain.dev/polaris/eth/common"
crypto "pkg.berachain.dev/polaris/eth/crypto"
"pkg.berachain.dev/polaris/lib/utils"
ethsecp256k1 "github.com/berachain/polaris/cosmos/crypto/keys/ethsecp256k1"
"github.com/berachain/polaris/eth/accounts"
"github.com/berachain/polaris/eth/common"
crypto "github.com/berachain/polaris/eth/crypto"
"github.com/berachain/polaris/lib/utils"

. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
Expand Down
2 changes: 1 addition & 1 deletion cosmos/crypto/keyring/option.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ package keyring
import (
"github.com/cosmos/cosmos-sdk/crypto/keyring"

"pkg.berachain.dev/polaris/cosmos/crypto/hd"
"github.com/berachain/polaris/cosmos/crypto/hd"
)

// OnlyEthSecp256k1Option defines a function keys options for the ethereum Secp256k1 curve.
Expand Down
8 changes: 4 additions & 4 deletions cosmos/crypto/keyring/option_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ import (
cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types"
"github.com/cosmos/cosmos-sdk/std"

cryptocodec "pkg.berachain.dev/polaris/cosmos/crypto/codec"
"pkg.berachain.dev/polaris/cosmos/crypto/hd"
accounts "pkg.berachain.dev/polaris/eth/accounts"
"pkg.berachain.dev/polaris/eth/common"
cryptocodec "github.com/berachain/polaris/cosmos/crypto/codec"
"github.com/berachain/polaris/cosmos/crypto/hd"
accounts "github.com/berachain/polaris/eth/accounts"
"github.com/berachain/polaris/eth/common"

. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
Expand Down
2 changes: 1 addition & 1 deletion cosmos/crypto/keys/ethsecp256k1/keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (

cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types"

"pkg.berachain.dev/polaris/eth/crypto"
"github.com/berachain/polaris/eth/crypto"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion cosmos/crypto/keys/ethsecp256k1/keys_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (

cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types"

ethcrypto "pkg.berachain.dev/polaris/eth/crypto"
ethcrypto "github.com/berachain/polaris/eth/crypto"

. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
Expand Down
2 changes: 1 addition & 1 deletion cosmos/crypto/keys/ethsecp256k1/signature_cgo.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
package ethsecp256k1

import (
"pkg.berachain.dev/polaris/eth/crypto"
"github.com/berachain/polaris/eth/crypto"
)

// Sign signs the provided message using the ECDSA private key. It returns an error if the
Expand Down
2 changes: 1 addition & 1 deletion cosmos/crypto/keys/ethsecp256k1/signature_cgo_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ package ethsecp256k1
import (
"crypto/ecdsa"

"pkg.berachain.dev/polaris/eth/crypto"
"github.com/berachain/polaris/eth/crypto"

. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
Expand Down
4 changes: 2 additions & 2 deletions cosmos/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ require (
google.golang.org/grpc v1.59.0
google.golang.org/protobuf v1.31.0
github.com/berachain/polaris/contracts v0.0.0-20231031220135-f3bf0d0ee45f
github.com/berachain/polaris/eth v0.0.0-20231104204753-faadca38b64d
github.com/berachain/polaris/lib v0.0.0-20231104204753-faadca38b64d
github.com/berachain/polaris/eth 0f5ea6720c02455a614ef432b6343dbef7593fa7
github.com/berachain/polaris/lib 0f5ea6720c02455a614ef432b6343dbef7593fa7
)

require (
Expand Down
Loading

0 comments on commit f61d044

Please sign in to comment.