Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ft/go eth 1.14 #1

Merged
merged 3 commits into from
Nov 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
8 changes: 4 additions & 4 deletions accounts/abi/bind/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ import (
"io"
"math/big"

"github.com/ava-labs/coreth/accounts"
"github.com/ava-labs/coreth/accounts/external"
"github.com/ava-labs/coreth/accounts/keystore"
"github.com/ava-labs/coreth/core/types"
"github.com/KyberNetwork/ava-coreth/accounts"
"github.com/KyberNetwork/ava-coreth/accounts/external"
"github.com/KyberNetwork/ava-coreth/accounts/keystore"
"github.com/KyberNetwork/ava-coreth/core/types"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/log"
Expand Down
4 changes: 2 additions & 2 deletions accounts/abi/bind/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ import (
"errors"
"math/big"

"github.com/ava-labs/coreth/core/types"
"github.com/ava-labs/coreth/interfaces"
"github.com/KyberNetwork/ava-coreth/core/types"
"github.com/KyberNetwork/ava-coreth/interfaces"
"github.com/ethereum/go-ethereum/common"
)

Expand Down
12 changes: 6 additions & 6 deletions accounts/abi/bind/backends/simulated.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ package backends
import (
"context"

"github.com/ava-labs/coreth/accounts/abi/bind"
"github.com/ava-labs/coreth/core/types"
"github.com/ava-labs/coreth/ethclient/simulated"
"github.com/ava-labs/coreth/interfaces"
"github.com/KyberNetwork/ava-coreth/accounts/abi/bind"
"github.com/KyberNetwork/ava-coreth/core/types"
"github.com/KyberNetwork/ava-coreth/ethclient/simulated"
"github.com/KyberNetwork/ava-coreth/interfaces"
"github.com/ethereum/go-ethereum/common"
)

Expand All @@ -55,7 +55,7 @@ var (
)

// SimulatedBackend is a simulated blockchain.
// Deprecated: use package github.com/ava-labs/coreth/ethclient/simulated instead.
// Deprecated: use package github.com/KyberNetwork/ava-coreth/ethclient/simulated instead.
type SimulatedBackend struct {
*simulated.Backend
simulated.Client
Expand All @@ -72,7 +72,7 @@ func (b *SimulatedBackend) Fork(ctx context.Context, parentHash common.Hash) err
// A simulated backend always uses chainID 1337.
//
// Deprecated: please use simulated.Backend from package
// github.com/ava-labs/coreth/ethclient/simulated instead.
// github.com/KyberNetwork/ava-coreth/ethclient/simulated instead.
func NewSimulatedBackend(alloc types.GenesisAlloc, gasLimit uint64) *SimulatedBackend {
b := simulated.NewBackend(alloc, simulated.WithBlockGasLimit(gasLimit))
return &SimulatedBackend{
Expand Down
10 changes: 5 additions & 5 deletions accounts/abi/bind/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ import (
"strings"
"sync"

"github.com/ava-labs/coreth/accounts/abi"
"github.com/ava-labs/coreth/core/types"
"github.com/ava-labs/coreth/core/vm"
"github.com/ava-labs/coreth/interfaces"
"github.com/ava-labs/coreth/rpc"
"github.com/KyberNetwork/ava-coreth/accounts/abi"
"github.com/KyberNetwork/ava-coreth/core/types"
"github.com/KyberNetwork/ava-coreth/core/vm"
"github.com/KyberNetwork/ava-coreth/interfaces"
"github.com/KyberNetwork/ava-coreth/rpc"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/event"
Expand Down
10 changes: 5 additions & 5 deletions accounts/abi/bind/base_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ import (
"strings"
"testing"

"github.com/ava-labs/coreth/accounts/abi"
"github.com/ava-labs/coreth/accounts/abi/bind"
"github.com/ava-labs/coreth/core/types"
"github.com/ava-labs/coreth/core/vm"
"github.com/ava-labs/coreth/interfaces"
"github.com/KyberNetwork/ava-coreth/accounts/abi"
"github.com/KyberNetwork/ava-coreth/accounts/abi/bind"
"github.com/KyberNetwork/ava-coreth/core/types"
"github.com/KyberNetwork/ava-coreth/core/vm"
"github.com/KyberNetwork/ava-coreth/interfaces"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ethereum/go-ethereum/crypto"
Expand Down
2 changes: 1 addition & 1 deletion accounts/abi/bind/bind.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import (
"text/template"
"unicode"

"github.com/ava-labs/coreth/accounts/abi"
"github.com/KyberNetwork/ava-coreth/accounts/abi"
"github.com/ethereum/go-ethereum/log"
)

Expand Down
Loading