[AUTO] rename Go module + update internal import paths

Workflow: c1fc594f020d23958b641a4e5a856b6e52c49d3bece94b95594864db16c1b0fc on branch main
This commit is contained in:
github-actions[bot] 2024-10-17 01:49:47 +00:00 committed by GitHub
parent 2bd6bd01d2
commit 0b56af5a01
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
791 changed files with 3552 additions and 3552 deletions

View file

@ -24,8 +24,8 @@ import (
"io"
"math/big"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/crypto"
)
// The ABI holds information about a contract's context and available

View file

@ -26,9 +26,9 @@ import (
"strings"
"testing"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/math"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/math"
"github.com/ava-labs/libevm/crypto"
)
const jsondata = `

View file

@ -23,13 +23,13 @@ import (
"io"
"math/big"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/accounts/external"
"github.com/ethereum/go-ethereum/accounts/keystore"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/log"
"github.com/ava-labs/libevm/accounts"
"github.com/ava-labs/libevm/accounts/external"
"github.com/ava-labs/libevm/accounts/keystore"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/crypto"
"github.com/ava-labs/libevm/log"
)
// ErrNoChainID is returned whenever the user failed to specify a chain id.

View file

@ -21,9 +21,9 @@ import (
"errors"
"math/big"
"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ava-labs/libevm"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/types"
)
var (

View file

@ -19,9 +19,9 @@ package backends
import (
"context"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/ethclient/simulated"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/ethclient/simulated"
)
// SimulatedBackend is a simulated blockchain.

View file

@ -24,12 +24,12 @@ import (
"strings"
"sync"
"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/event"
"github.com/ava-labs/libevm"
"github.com/ava-labs/libevm/accounts/abi"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/crypto"
"github.com/ava-labs/libevm/event"
)
const basefeeWiggleMultiplier = 2

View file

@ -24,14 +24,14 @@ import (
"strings"
"testing"
"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ava-labs/libevm"
"github.com/ava-labs/libevm/accounts/abi"
"github.com/ava-labs/libevm/accounts/abi/bind"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/hexutil"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/crypto"
"github.com/ava-labs/libevm/rlp"
"github.com/stretchr/testify/assert"
)

View file

@ -29,8 +29,8 @@ import (
"text/template"
"unicode"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/log"
"github.com/ava-labs/libevm/accounts/abi"
"github.com/ava-labs/libevm/log"
)
// Lang is a target programming language selector to generate bindings for.

File diff suppressed because one or more lines are too long

View file

@ -16,7 +16,7 @@
package bind
import "github.com/ethereum/go-ethereum/accounts/abi"
import "github.com/ava-labs/libevm/accounts/abi"
// tmplData is the data structure required to fill the binding template.
type tmplData struct {
@ -91,12 +91,12 @@ import (
"strings"
"errors"
ethereum "github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/event"
ethereum "github.com/ava-labs/libevm"
"github.com/ava-labs/libevm/accounts/abi"
"github.com/ava-labs/libevm/accounts/abi/bind"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/event"
)
// Reference imports to suppress errors if they are not otherwise used.

View file

@ -21,10 +21,10 @@ import (
"errors"
"time"
"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/log"
"github.com/ava-labs/libevm"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/log"
)
// WaitMined waits for tx to be mined on the blockchain.

View file

@ -23,12 +23,12 @@ import (
"testing"
"time"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/ethclient/simulated"
"github.com/ethereum/go-ethereum/params"
"github.com/ava-labs/libevm/accounts/abi/bind"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/crypto"
"github.com/ava-labs/libevm/ethclient/simulated"
"github.com/ava-labs/libevm/params"
)
var testKey, _ = crypto.HexToECDSA("b71c71a67e1177ad4e901695e1b4b9ee17ae16c6668d313eac2f96dbcda3f291")

View file

@ -21,8 +21,8 @@ import (
"fmt"
"strings"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/crypto"
)
type Error struct {

View file

@ -20,8 +20,8 @@ import (
"fmt"
"strings"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/crypto"
)
// Event is an event potentially triggered by the EVM's LOG mechanism. The Event

View file

@ -25,8 +25,8 @@ import (
"strings"
"testing"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/crypto"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)

View file

@ -20,7 +20,7 @@ import (
"fmt"
"strings"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ava-labs/libevm/crypto"
)
// FunctionType represents different types of functions a contract might have.

View file

@ -22,8 +22,8 @@ import (
"math/big"
"reflect"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/math"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/math"
)
// packBytesSlice packs the given bytes as [L, V] as the canonical representation

View file

@ -27,7 +27,7 @@ import (
"strings"
"testing"
"github.com/ethereum/go-ethereum/common"
"github.com/ava-labs/libevm/common"
)
// TestPack tests the general pack/unpack tests in packing_test.go

View file

@ -19,7 +19,7 @@ package abi
import (
"math/big"
"github.com/ethereum/go-ethereum/common"
"github.com/ava-labs/libevm/common"
)
type packUnpackTest struct {

View file

@ -23,9 +23,9 @@ import (
"math/big"
"reflect"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/math"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/math"
"github.com/ava-labs/libevm/crypto"
)
// MakeTopics converts a filter query argument list into a filter topic set.

View file

@ -22,8 +22,8 @@ import (
"reflect"
"testing"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/crypto"
)
func TestMakeTopics(t *testing.T) {

View file

@ -26,7 +26,7 @@ import (
"unicode"
"unicode/utf8"
"github.com/ethereum/go-ethereum/common"
"github.com/ava-labs/libevm/common"
)
// Type enumerator

View file

@ -22,7 +22,7 @@ import (
"testing"
"github.com/davecgh/go-spew/spew"
"github.com/ethereum/go-ethereum/common"
"github.com/ava-labs/libevm/common"
)
// typeWithoutStringer is a alias for the Type type which simply doesn't implement

View file

@ -24,7 +24,7 @@ import (
"math/big"
"reflect"
"github.com/ethereum/go-ethereum/common"
"github.com/ava-labs/libevm/common"
)
var (

View file

@ -27,7 +27,7 @@ import (
"strings"
"testing"
"github.com/ethereum/go-ethereum/common"
"github.com/ava-labs/libevm/common"
"github.com/stretchr/testify/require"
)

View file

@ -21,10 +21,10 @@ import (
"fmt"
"math/big"
"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/event"
"github.com/ava-labs/libevm"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/event"
"golang.org/x/crypto/sha3"
)

View file

@ -20,7 +20,7 @@ import (
"bytes"
"testing"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ava-labs/libevm/common/hexutil"
)
func TestTextHash(t *testing.T) {

View file

@ -22,15 +22,15 @@ import (
"math/big"
"sync"
"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/rpc"
"github.com/ethereum/go-ethereum/signer/core/apitypes"
"github.com/ava-labs/libevm"
"github.com/ava-labs/libevm/accounts"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/hexutil"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/event"
"github.com/ava-labs/libevm/log"
"github.com/ava-labs/libevm/rpc"
"github.com/ava-labs/libevm/signer/core/apitypes"
)
type ExternalBackend struct {

View file

@ -28,9 +28,9 @@ import (
"time"
mapset "github.com/deckarep/golang-set/v2"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/log"
"github.com/ava-labs/libevm/accounts"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/log"
"golang.org/x/exp/slices"
)

View file

@ -28,8 +28,8 @@ import (
"github.com/cespare/cp"
"github.com/davecgh/go-spew/spew"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/common"
"github.com/ava-labs/libevm/accounts"
"github.com/ava-labs/libevm/common"
"golang.org/x/exp/slices"
)

View file

@ -24,7 +24,7 @@ import (
"time"
mapset "github.com/deckarep/golang-set/v2"
"github.com/ethereum/go-ethereum/log"
"github.com/ava-labs/libevm/log"
)
// fileCache is a cache of files seen during scan of keystore.

View file

@ -28,9 +28,9 @@ import (
"strings"
"time"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ava-labs/libevm/accounts"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/crypto"
"github.com/google/uuid"
)

View file

@ -32,11 +32,11 @@ import (
"sync"
"time"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/event"
"github.com/ava-labs/libevm/accounts"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/crypto"
"github.com/ava-labs/libevm/event"
)
var (

View file

@ -26,10 +26,10 @@ import (
"testing"
"time"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/event"
"github.com/ava-labs/libevm/accounts"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/crypto"
"github.com/ava-labs/libevm/event"
"golang.org/x/exp/slices"
)

View file

@ -37,10 +37,10 @@ import (
"os"
"path/filepath"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/math"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ava-labs/libevm/accounts"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/math"
"github.com/ava-labs/libevm/crypto"
"github.com/google/uuid"
"golang.org/x/crypto/pbkdf2"
"golang.org/x/crypto/scrypt"

View file

@ -20,7 +20,7 @@ import (
"os"
"testing"
"github.com/ethereum/go-ethereum/common"
"github.com/ava-labs/libevm/common"
)
const (

View file

@ -22,7 +22,7 @@ import (
"os"
"path/filepath"
"github.com/ethereum/go-ethereum/common"
"github.com/ava-labs/libevm/common"
)
type keyStorePlain struct {

View file

@ -25,8 +25,8 @@ import (
"strings"
"testing"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/crypto"
)
func tmpKeyStoreIface(t *testing.T, encrypted bool) (dir string, ks keyStore) {

View file

@ -25,8 +25,8 @@ import (
"errors"
"fmt"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ava-labs/libevm/accounts"
"github.com/ava-labs/libevm/crypto"
"github.com/google/uuid"
"golang.org/x/crypto/pbkdf2"
)

View file

@ -19,10 +19,10 @@ package keystore
import (
"math/big"
"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ava-labs/libevm"
"github.com/ava-labs/libevm/accounts"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/crypto"
)
// keystoreWallet implements the accounts.Wallet interface for the original

View file

@ -23,7 +23,7 @@ import (
"os"
"time"
"github.com/ethereum/go-ethereum/log"
"github.com/ava-labs/libevm/log"
"github.com/fsnotify/fsnotify"
)

View file

@ -21,8 +21,8 @@ import (
"sort"
"sync"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/event"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/event"
)
// managerSubBufferSize determines how many incoming wallet events

View file

@ -41,10 +41,10 @@ import (
"sync"
"time"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/log"
"github.com/ava-labs/libevm/accounts"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/event"
"github.com/ava-labs/libevm/log"
pcsc "github.com/gballet/go-libpcsclite"
)

View file

@ -27,7 +27,7 @@ import (
"errors"
"fmt"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ava-labs/libevm/crypto"
pcsc "github.com/gballet/go-libpcsclite"
"golang.org/x/crypto/pbkdf2"
"golang.org/x/text/unicode/norm"

View file

@ -33,12 +33,12 @@ import (
"sync"
"time"
"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/log"
"github.com/ava-labs/libevm"
"github.com/ava-labs/libevm/accounts"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/crypto"
"github.com/ava-labs/libevm/log"
pcsc "github.com/gballet/go-libpcsclite"
"github.com/status-im/keycard-go/derivationpath"
)

View file

@ -23,9 +23,9 @@ import (
"sync/atomic"
"time"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/log"
"github.com/ava-labs/libevm/accounts"
"github.com/ava-labs/libevm/event"
"github.com/ava-labs/libevm/log"
"github.com/karalabe/usb"
)

View file

@ -28,13 +28,13 @@ import (
"io"
"math/big"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ava-labs/libevm/accounts"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/hexutil"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/crypto"
"github.com/ava-labs/libevm/log"
"github.com/ava-labs/libevm/rlp"
)
// ledgerOpcode is an enumeration encoding the supported Ledger opcodes.

View file

@ -27,12 +27,12 @@ import (
"io"
"math/big"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/accounts/usbwallet/trezor"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/log"
"github.com/ava-labs/libevm/accounts"
"github.com/ava-labs/libevm/accounts/usbwallet/trezor"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/hexutil"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/log"
"github.com/golang/protobuf/proto"
)

View file

@ -25,12 +25,12 @@ import (
"sync"
"time"
"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/log"
"github.com/ava-labs/libevm"
"github.com/ava-labs/libevm/accounts"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/crypto"
"github.com/ava-labs/libevm/log"
"github.com/karalabe/usb"
)

View file

@ -17,8 +17,8 @@
package engine
import (
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/rpc"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/rpc"
)
// EngineAPIError is a standardized error message between consensus and execution

View file

@ -6,9 +6,9 @@ import (
"encoding/json"
"errors"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/hexutil"
"github.com/ava-labs/libevm/core/types"
)
var _ = (*payloadAttributesMarshaling)(nil)

View file

@ -7,9 +7,9 @@ import (
"errors"
"math/big"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/hexutil"
"github.com/ava-labs/libevm/core/types"
)
var _ = (*executableDataMarshaling)(nil)

View file

@ -7,7 +7,7 @@ import (
"errors"
"math/big"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ava-labs/libevm/common/hexutil"
)
var _ = (*executionPayloadEnvelopeMarshaling)(nil)

View file

@ -20,10 +20,10 @@ import (
"fmt"
"math/big"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/trie"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/hexutil"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/trie"
)
// PayloadVersion denotes the version of PayloadAttributes used to request the

View file

@ -20,10 +20,10 @@ import (
"encoding/binary"
"fmt"
"github.com/ethereum/go-ethereum/common/lru"
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ava-labs/libevm/common/lru"
"github.com/ava-labs/libevm/ethdb"
"github.com/ava-labs/libevm/log"
"github.com/ava-labs/libevm/rlp"
)
// canonicalStore stores instances of the given type in a database and caches

View file

@ -23,14 +23,14 @@ import (
"sync"
"time"
"github.com/ethereum/go-ethereum/beacon/params"
"github.com/ethereum/go-ethereum/beacon/types"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/lru"
"github.com/ethereum/go-ethereum/common/mclock"
"github.com/ethereum/go-ethereum/core/rawdb"
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/log"
"github.com/ava-labs/libevm/beacon/params"
"github.com/ava-labs/libevm/beacon/types"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/lru"
"github.com/ava-labs/libevm/common/mclock"
"github.com/ava-labs/libevm/core/rawdb"
"github.com/ava-labs/libevm/ethdb"
"github.com/ava-labs/libevm/log"
)
var (

View file

@ -21,10 +21,10 @@ import (
"testing"
"time"
"github.com/ethereum/go-ethereum/beacon/params"
"github.com/ethereum/go-ethereum/beacon/types"
"github.com/ethereum/go-ethereum/common/mclock"
"github.com/ethereum/go-ethereum/ethdb/memorydb"
"github.com/ava-labs/libevm/beacon/params"
"github.com/ava-labs/libevm/beacon/types"
"github.com/ava-labs/libevm/common/mclock"
"github.com/ava-labs/libevm/ethdb/memorydb"
)
var (

View file

@ -21,10 +21,10 @@ import (
"crypto/sha256"
mrand "math/rand"
"github.com/ethereum/go-ethereum/beacon/merkle"
"github.com/ethereum/go-ethereum/beacon/params"
"github.com/ethereum/go-ethereum/beacon/types"
"github.com/ethereum/go-ethereum/common"
"github.com/ava-labs/libevm/beacon/merkle"
"github.com/ava-labs/libevm/beacon/params"
"github.com/ava-labs/libevm/beacon/types"
"github.com/ava-labs/libevm/common"
)
func GenerateTestCommittee() *types.SerializedSyncCommittee {

View file

@ -22,8 +22,8 @@ import (
"errors"
"reflect"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/hexutil"
)
// Value represents either a 32 byte leaf value or hash node in a binary merkle tree/partial proof.

View file

@ -22,9 +22,9 @@ import (
"fmt"
"math/bits"
"github.com/ethereum/go-ethereum/beacon/params"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ava-labs/libevm/beacon/params"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/hexutil"
bls "github.com/protolambda/bls12-381-util"
)

View file

@ -24,9 +24,9 @@ import (
"strconv"
"strings"
"github.com/ethereum/go-ethereum/beacon/merkle"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ava-labs/libevm/beacon/merkle"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/hexutil"
"gopkg.in/yaml.v3"
)

View file

@ -6,7 +6,7 @@ import (
"encoding/json"
"errors"
"github.com/ethereum/go-ethereum/common"
"github.com/ava-labs/libevm/common"
)
var _ = (*headerMarshaling)(nil)

View file

@ -6,7 +6,7 @@ import (
"encoding/json"
"errors"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ava-labs/libevm/common/hexutil"
)
var _ = (*syncAggregateMarshaling)(nil)

View file

@ -21,9 +21,9 @@ import (
"crypto/sha256"
"encoding/binary"
"github.com/ethereum/go-ethereum/beacon/merkle"
"github.com/ethereum/go-ethereum/beacon/params"
"github.com/ethereum/go-ethereum/common"
"github.com/ava-labs/libevm/beacon/merkle"
"github.com/ava-labs/libevm/beacon/params"
"github.com/ava-labs/libevm/common"
)
//go:generate go run github.com/fjl/gencodec -type Header -field-override headerMarshaling -out gen_header_json.go

View file

@ -20,9 +20,9 @@ import (
"errors"
"fmt"
"github.com/ethereum/go-ethereum/beacon/merkle"
"github.com/ethereum/go-ethereum/beacon/params"
"github.com/ethereum/go-ethereum/common"
"github.com/ava-labs/libevm/beacon/merkle"
"github.com/ava-labs/libevm/beacon/params"
"github.com/ava-labs/libevm/common"
)
// BootstrapData contains a sync committee where light sync can be started,

View file

@ -53,10 +53,10 @@ import (
"time"
"github.com/cespare/cp"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto/signify"
"github.com/ethereum/go-ethereum/internal/build"
"github.com/ethereum/go-ethereum/params"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/crypto/signify"
"github.com/ava-labs/libevm/internal/build"
"github.com/ava-labs/libevm/params"
)
var (
@ -244,8 +244,8 @@ func doInstall(cmdline []string) {
func buildFlags(env build.Environment, staticLinking bool, buildTags []string) (flags []string) {
var ld []string
if env.Commit != "" {
ld = append(ld, "-X", "github.com/ethereum/go-ethereum/internal/version.gitCommit="+env.Commit)
ld = append(ld, "-X", "github.com/ethereum/go-ethereum/internal/version.gitDate="+env.Date)
ld = append(ld, "-X", "github.com/ava-labs/libevm/internal/version.gitCommit="+env.Commit)
ld = append(ld, "-X", "github.com/ava-labs/libevm/internal/version.gitDate="+env.Date)
}
// Strip DWARF on darwin. This used to be required for certain things,
// and there is no downside to this, so we just keep doing it.

View file

@ -23,8 +23,8 @@ import (
"os"
"strings"
"github.com/ethereum/go-ethereum/signer/core/apitypes"
"github.com/ethereum/go-ethereum/signer/fourbyte"
"github.com/ava-labs/libevm/signer/core/apitypes"
"github.com/ava-labs/libevm/signer/fourbyte"
)
func init() {

View file

@ -24,12 +24,12 @@ import (
"regexp"
"strings"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/cmd/utils"
"github.com/ethereum/go-ethereum/common/compiler"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/internal/flags"
"github.com/ethereum/go-ethereum/log"
"github.com/ava-labs/libevm/accounts/abi/bind"
"github.com/ava-labs/libevm/cmd/utils"
"github.com/ava-labs/libevm/common/compiler"
"github.com/ava-labs/libevm/crypto"
"github.com/ava-labs/libevm/internal/flags"
"github.com/ava-labs/libevm/log"
"github.com/urfave/cli/v2"
)

View file

@ -25,13 +25,13 @@ import (
"os"
"time"
"github.com/ethereum/go-ethereum/cmd/utils"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/p2p/discover"
"github.com/ethereum/go-ethereum/p2p/enode"
"github.com/ethereum/go-ethereum/p2p/nat"
"github.com/ethereum/go-ethereum/p2p/netutil"
"github.com/ava-labs/libevm/cmd/utils"
"github.com/ava-labs/libevm/crypto"
"github.com/ava-labs/libevm/log"
"github.com/ava-labs/libevm/p2p/discover"
"github.com/ava-labs/libevm/p2p/enode"
"github.com/ava-labs/libevm/p2p/nat"
"github.com/ava-labs/libevm/p2p/netutil"
)
func main() {

View file

@ -35,25 +35,25 @@ import (
"strings"
"time"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/accounts/keystore"
"github.com/ethereum/go-ethereum/cmd/utils"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/internal/ethapi"
"github.com/ethereum/go-ethereum/internal/flags"
"github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/node"
"github.com/ethereum/go-ethereum/params"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ethereum/go-ethereum/rpc"
"github.com/ethereum/go-ethereum/signer/core"
"github.com/ethereum/go-ethereum/signer/core/apitypes"
"github.com/ethereum/go-ethereum/signer/fourbyte"
"github.com/ethereum/go-ethereum/signer/rules"
"github.com/ethereum/go-ethereum/signer/storage"
"github.com/ava-labs/libevm/accounts"
"github.com/ava-labs/libevm/accounts/keystore"
"github.com/ava-labs/libevm/cmd/utils"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/hexutil"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/crypto"
"github.com/ava-labs/libevm/internal/ethapi"
"github.com/ava-labs/libevm/internal/flags"
"github.com/ava-labs/libevm/log"
"github.com/ava-labs/libevm/node"
"github.com/ava-labs/libevm/params"
"github.com/ava-labs/libevm/rlp"
"github.com/ava-labs/libevm/rpc"
"github.com/ava-labs/libevm/signer/core"
"github.com/ava-labs/libevm/signer/core/apitypes"
"github.com/ava-labs/libevm/signer/fourbyte"
"github.com/ava-labs/libevm/signer/rules"
"github.com/ava-labs/libevm/signer/storage"
"github.com/mattn/go-colorable"
"github.com/mattn/go-isatty"
"github.com/urfave/cli/v2"

View file

@ -21,8 +21,8 @@ import (
"os"
"testing"
"github.com/ethereum/go-ethereum/internal/cmdtest"
"github.com/ethereum/go-ethereum/internal/reexec"
"github.com/ava-labs/libevm/internal/cmdtest"
"github.com/ava-labs/libevm/internal/reexec"
)
const registeredName = "clef-test"

View file

@ -22,8 +22,8 @@ import (
"sync/atomic"
"time"
"github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/p2p/enode"
"github.com/ava-labs/libevm/log"
"github.com/ava-labs/libevm/p2p/enode"
)
type crawler struct {

View file

@ -24,13 +24,13 @@ import (
"strings"
"time"
"github.com/ethereum/go-ethereum/cmd/devp2p/internal/v4test"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/internal/flags"
"github.com/ethereum/go-ethereum/p2p/discover"
"github.com/ethereum/go-ethereum/p2p/enode"
"github.com/ethereum/go-ethereum/params"
"github.com/ava-labs/libevm/cmd/devp2p/internal/v4test"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/crypto"
"github.com/ava-labs/libevm/internal/flags"
"github.com/ava-labs/libevm/p2p/discover"
"github.com/ava-labs/libevm/p2p/enode"
"github.com/ava-labs/libevm/params"
"github.com/urfave/cli/v2"
)

View file

@ -21,10 +21,10 @@ import (
"fmt"
"time"
"github.com/ethereum/go-ethereum/cmd/devp2p/internal/v5test"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/internal/flags"
"github.com/ethereum/go-ethereum/p2p/discover"
"github.com/ava-labs/libevm/cmd/devp2p/internal/v5test"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/internal/flags"
"github.com/ava-labs/libevm/p2p/discover"
"github.com/urfave/cli/v2"
)

View file

@ -23,8 +23,8 @@ import (
"strings"
"github.com/cloudflare/cloudflare-go"
"github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/p2p/dnsdisc"
"github.com/ava-labs/libevm/log"
"github.com/ava-labs/libevm/p2p/dnsdisc"
"github.com/urfave/cli/v2"
)

View file

@ -29,8 +29,8 @@ import (
"github.com/aws/aws-sdk-go-v2/credentials"
"github.com/aws/aws-sdk-go-v2/service/route53"
"github.com/aws/aws-sdk-go-v2/service/route53/types"
"github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/p2p/dnsdisc"
"github.com/ava-labs/libevm/log"
"github.com/ava-labs/libevm/p2p/dnsdisc"
"github.com/urfave/cli/v2"
"golang.org/x/exp/slices"
)

View file

@ -25,11 +25,11 @@ import (
"path/filepath"
"time"
"github.com/ethereum/go-ethereum/accounts/keystore"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/console/prompt"
"github.com/ethereum/go-ethereum/p2p/dnsdisc"
"github.com/ethereum/go-ethereum/p2p/enode"
"github.com/ava-labs/libevm/accounts/keystore"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/console/prompt"
"github.com/ava-labs/libevm/p2p/dnsdisc"
"github.com/ava-labs/libevm/p2p/enode"
"github.com/urfave/cli/v2"
)

View file

@ -28,9 +28,9 @@ import (
"strconv"
"strings"
"github.com/ethereum/go-ethereum/p2p/enode"
"github.com/ethereum/go-ethereum/p2p/enr"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ava-labs/libevm/p2p/enode"
"github.com/ava-labs/libevm/p2p/enr"
"github.com/ava-labs/libevm/rlp"
"github.com/urfave/cli/v2"
)

View file

@ -30,16 +30,16 @@ import (
"sort"
"strings"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/core/forkid"
"github.com/ethereum/go-ethereum/core/state"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/eth/protocols/eth"
"github.com/ethereum/go-ethereum/params"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/hexutil"
"github.com/ava-labs/libevm/core"
"github.com/ava-labs/libevm/core/forkid"
"github.com/ava-labs/libevm/core/state"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/crypto"
"github.com/ava-labs/libevm/eth/protocols/eth"
"github.com/ava-labs/libevm/params"
"github.com/ava-labs/libevm/rlp"
"golang.org/x/exp/slices"
)

View file

@ -21,9 +21,9 @@ import (
"strconv"
"testing"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/eth/protocols/eth"
"github.com/ethereum/go-ethereum/p2p"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/eth/protocols/eth"
"github.com/ava-labs/libevm/p2p"
"github.com/stretchr/testify/assert"
)

View file

@ -25,12 +25,12 @@ import (
"time"
"github.com/davecgh/go-spew/spew"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/eth/protocols/eth"
"github.com/ethereum/go-ethereum/eth/protocols/snap"
"github.com/ethereum/go-ethereum/p2p"
"github.com/ethereum/go-ethereum/p2p/rlpx"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ava-labs/libevm/crypto"
"github.com/ava-labs/libevm/eth/protocols/eth"
"github.com/ava-labs/libevm/eth/protocols/snap"
"github.com/ava-labs/libevm/p2p"
"github.com/ava-labs/libevm/p2p/rlpx"
"github.com/ava-labs/libevm/rlp"
)
var (

View file

@ -25,7 +25,7 @@ import (
"path"
"time"
"github.com/ethereum/go-ethereum/common"
"github.com/ava-labs/libevm/common"
"github.com/golang-jwt/jwt/v4"
)

View file

@ -16,8 +16,8 @@
package ethtest
import (
"github.com/ethereum/go-ethereum/p2p"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ava-labs/libevm/p2p"
"github.com/ava-labs/libevm/rlp"
)
// Unexported devp2p message codes from p2p/peer.go.

View file

@ -24,14 +24,14 @@ import (
"math/rand"
"reflect"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/state"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/eth/protocols/snap"
"github.com/ethereum/go-ethereum/internal/utesting"
"github.com/ethereum/go-ethereum/trie"
"github.com/ethereum/go-ethereum/trie/trienode"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/state"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/crypto"
"github.com/ava-labs/libevm/eth/protocols/snap"
"github.com/ava-labs/libevm/internal/utesting"
"github.com/ava-labs/libevm/trie"
"github.com/ava-labs/libevm/trie/trienode"
"golang.org/x/crypto/sha3"
)

View file

@ -21,15 +21,15 @@ import (
"math/big"
"reflect"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/consensus/misc/eip4844"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/crypto/kzg4844"
"github.com/ethereum/go-ethereum/eth/protocols/eth"
"github.com/ethereum/go-ethereum/internal/utesting"
"github.com/ethereum/go-ethereum/p2p"
"github.com/ethereum/go-ethereum/p2p/enode"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/consensus/misc/eip4844"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/crypto"
"github.com/ava-labs/libevm/crypto/kzg4844"
"github.com/ava-labs/libevm/eth/protocols/eth"
"github.com/ava-labs/libevm/internal/utesting"
"github.com/ava-labs/libevm/p2p"
"github.com/ava-labs/libevm/p2p/enode"
"github.com/holiman/uint256"
)

View file

@ -24,14 +24,14 @@ import (
"testing"
"time"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ethereum/go-ethereum/eth"
"github.com/ethereum/go-ethereum/eth/catalyst"
"github.com/ethereum/go-ethereum/eth/ethconfig"
"github.com/ethereum/go-ethereum/internal/utesting"
"github.com/ethereum/go-ethereum/node"
"github.com/ethereum/go-ethereum/p2p"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/hexutil"
"github.com/ava-labs/libevm/eth"
"github.com/ava-labs/libevm/eth/catalyst"
"github.com/ava-labs/libevm/eth/ethconfig"
"github.com/ava-labs/libevm/internal/utesting"
"github.com/ava-labs/libevm/node"
"github.com/ava-labs/libevm/p2p"
)
func makeJWTSecret() (string, [32]byte, error) {

View file

@ -22,10 +22,10 @@ import (
"os"
"time"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/eth/protocols/eth"
"github.com/ethereum/go-ethereum/internal/utesting"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/eth/protocols/eth"
"github.com/ava-labs/libevm/internal/utesting"
)
// sendTxs sends the given transactions to the node and

View file

@ -24,9 +24,9 @@ import (
"net"
"time"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/internal/utesting"
"github.com/ethereum/go-ethereum/p2p/discover/v4wire"
"github.com/ava-labs/libevm/crypto"
"github.com/ava-labs/libevm/internal/utesting"
"github.com/ava-labs/libevm/p2p/discover/v4wire"
)
const (

View file

@ -22,9 +22,9 @@ import (
"net"
"time"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/p2p/discover/v4wire"
"github.com/ethereum/go-ethereum/p2p/enode"
"github.com/ava-labs/libevm/crypto"
"github.com/ava-labs/libevm/p2p/discover/v4wire"
"github.com/ava-labs/libevm/p2p/enode"
)
const waitTime = 300 * time.Millisecond

View file

@ -22,10 +22,10 @@ import (
"sync"
"time"
"github.com/ethereum/go-ethereum/internal/utesting"
"github.com/ethereum/go-ethereum/p2p/discover/v5wire"
"github.com/ethereum/go-ethereum/p2p/enode"
"github.com/ethereum/go-ethereum/p2p/netutil"
"github.com/ava-labs/libevm/internal/utesting"
"github.com/ava-labs/libevm/p2p/discover/v5wire"
"github.com/ava-labs/libevm/p2p/enode"
"github.com/ava-labs/libevm/p2p/netutil"
)
// Suite is the discv5 test suite.

View file

@ -24,11 +24,11 @@ import (
"net"
"time"
"github.com/ethereum/go-ethereum/common/mclock"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/p2p/discover/v5wire"
"github.com/ethereum/go-ethereum/p2p/enode"
"github.com/ethereum/go-ethereum/p2p/enr"
"github.com/ava-labs/libevm/common/mclock"
"github.com/ava-labs/libevm/crypto"
"github.com/ava-labs/libevm/p2p/discover/v5wire"
"github.com/ava-labs/libevm/p2p/enode"
"github.com/ava-labs/libevm/p2p/enr"
)
// readError represents an error during packet reading.

View file

@ -21,9 +21,9 @@ import (
"fmt"
"net"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/p2p/enode"
"github.com/ethereum/go-ethereum/p2p/enr"
"github.com/ava-labs/libevm/crypto"
"github.com/ava-labs/libevm/p2p/enode"
"github.com/ava-labs/libevm/p2p/enr"
"github.com/urfave/cli/v2"
)

View file

@ -20,9 +20,9 @@ import (
"fmt"
"os"
"github.com/ethereum/go-ethereum/internal/debug"
"github.com/ethereum/go-ethereum/internal/flags"
"github.com/ethereum/go-ethereum/p2p/enode"
"github.com/ava-labs/libevm/internal/debug"
"github.com/ava-labs/libevm/internal/flags"
"github.com/ava-labs/libevm/p2p/enode"
"github.com/urfave/cli/v2"
)

View file

@ -23,8 +23,8 @@ import (
"os"
"time"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/p2p/enode"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/p2p/enode"
"golang.org/x/exp/slices"
)

View file

@ -25,11 +25,11 @@ import (
"strings"
"time"
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/core/forkid"
"github.com/ethereum/go-ethereum/p2p/enr"
"github.com/ethereum/go-ethereum/params"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ava-labs/libevm/core"
"github.com/ava-labs/libevm/core/forkid"
"github.com/ava-labs/libevm/p2p/enr"
"github.com/ava-labs/libevm/params"
"github.com/ava-labs/libevm/rlp"
"github.com/urfave/cli/v2"
)

View file

@ -21,12 +21,12 @@ import (
"fmt"
"net"
"github.com/ethereum/go-ethereum/cmd/devp2p/internal/ethtest"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/p2p"
"github.com/ethereum/go-ethereum/p2p/enode"
"github.com/ethereum/go-ethereum/p2p/rlpx"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ava-labs/libevm/cmd/devp2p/internal/ethtest"
"github.com/ava-labs/libevm/crypto"
"github.com/ava-labs/libevm/p2p"
"github.com/ava-labs/libevm/p2p/enode"
"github.com/ava-labs/libevm/p2p/rlpx"
"github.com/ava-labs/libevm/rlp"
"github.com/urfave/cli/v2"
)

View file

@ -19,10 +19,10 @@ package main
import (
"os"
"github.com/ethereum/go-ethereum/cmd/devp2p/internal/v4test"
"github.com/ethereum/go-ethereum/internal/flags"
"github.com/ethereum/go-ethereum/internal/utesting"
"github.com/ethereum/go-ethereum/log"
"github.com/ava-labs/libevm/cmd/devp2p/internal/v4test"
"github.com/ava-labs/libevm/internal/flags"
"github.com/ava-labs/libevm/internal/utesting"
"github.com/ava-labs/libevm/log"
"github.com/urfave/cli/v2"
)

View file

@ -26,13 +26,13 @@ import (
"strings"
"time"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/internal/era"
"github.com/ethereum/go-ethereum/internal/ethapi"
"github.com/ethereum/go-ethereum/internal/flags"
"github.com/ethereum/go-ethereum/params"
"github.com/ethereum/go-ethereum/trie"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/internal/era"
"github.com/ava-labs/libevm/internal/ethapi"
"github.com/ava-labs/libevm/internal/flags"
"github.com/ava-labs/libevm/params"
"github.com/ava-labs/libevm/trie"
"github.com/urfave/cli/v2"
)

View file

@ -21,8 +21,8 @@ import (
"os"
"strings"
"github.com/ethereum/go-ethereum/accounts/keystore"
"github.com/ethereum/go-ethereum/cmd/utils"
"github.com/ava-labs/libevm/accounts/keystore"
"github.com/ava-labs/libevm/cmd/utils"
"github.com/urfave/cli/v2"
)

View file

@ -22,9 +22,9 @@ import (
"os"
"path/filepath"
"github.com/ethereum/go-ethereum/accounts/keystore"
"github.com/ethereum/go-ethereum/cmd/utils"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ava-labs/libevm/accounts/keystore"
"github.com/ava-labs/libevm/cmd/utils"
"github.com/ava-labs/libevm/crypto"
"github.com/google/uuid"
"github.com/urfave/cli/v2"
)

Some files were not shown because too many files have changed in this diff Show more