Skip to content
Open
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
a066b5f
refactor: share EVM rpc package
JonathanOppenheimer Dec 22, 2025
ba3be69
fix: readd test data
JonathanOppenheimer Dec 22, 2025
9dd34c3
chore: lint
JonathanOppenheimer Dec 22, 2025
25f3d96
chore: go mod tidy
JonathanOppenheimer Dec 22, 2025
f5b11d9
chore: go mod tidy
JonathanOppenheimer Dec 22, 2025
78a79a2
test: add main_test with both registration types
JonathanOppenheimer Jan 2, 2026
454f387
refactor: use emulate
JonathanOppenheimer Jan 2, 2026
3f8deff
chore: go mod tidy
JonathanOppenheimer Jan 2, 2026
3644591
fix: austin comments
JonathanOppenheimer Jan 2, 2026
6334a91
style: extra comments
JonathanOppenheimer Jan 2, 2026
31f078a
Merge branch 'master' into JonathanOppenheimer/share-rpc-package
JonathanOppenheimer Jan 2, 2026
6aaeb47
Update graft/evm/libevmtest/testmain.go
JonathanOppenheimer Jan 2, 2026
1bdd35b
style: remove exit code prints
JonathanOppenheimer Jan 2, 2026
d562356
fix: austin global comment
JonathanOppenheimer Jan 2, 2026
2505f52
chore: go mod tidy
JonathanOppenheimer Jan 2, 2026
2eeb9b7
Update graft/evm/libevmtest/testmain.go
JonathanOppenheimer Jan 2, 2026
26aa3e2
chore: lint
JonathanOppenheimer Jan 2, 2026
99920b1
Merge remote-tracking branch 'origin/master' into JonathanOppenheimer…
JonathanOppenheimer Jan 5, 2026
841809e
chore: lint
JonathanOppenheimer Jan 5, 2026
823133c
chore: update header years
JonathanOppenheimer Jan 5, 2026
72ea713
chore: one more license header
JonathanOppenheimer Jan 5, 2026
b0d1402
Update graft/evm/rpc/notify_test.go
JonathanOppenheimer Jan 5, 2026
0843f45
Merge branch 'master' into JonathanOppenheimer/share-rpc-package
JonathanOppenheimer Jan 5, 2026
e6b8812
Merge remote-tracking branch 'origin' into JonathanOppenheimer/share-…
JonathanOppenheimer Jan 12, 2026
360cbe8
chore: go mod tidy
JonathanOppenheimer Jan 12, 2026
f6ef488
Update graft/evm/libevmtest/testmain.go
JonathanOppenheimer Jan 13, 2026
a199267
Update graft/evm/libevmtest/testmain.go
JonathanOppenheimer Jan 13, 2026
f4026f8
refactor: remove atomic var
JonathanOppenheimer Jan 13, 2026
5941bbe
Merge branch 'master' into JonathanOppenheimer/share-rpc-package
JonathanOppenheimer Jan 13, 2026
e5d4854
docs: properly license files
JonathanOppenheimer Jan 13, 2026
a745a28
test: delete extra client test
JonathanOppenheimer Jan 13, 2026
417818a
chore: lint
JonathanOppenheimer Jan 13, 2026
31d0685
Merge branch 'master' into JonathanOppenheimer/share-rpc-package
JonathanOppenheimer Jan 13, 2026
7df6b24
chore: fix license
JonathanOppenheimer Jan 13, 2026
a8cd3b2
Merge branch 'master' into JonathanOppenheimer/share-rpc-package
JonathanOppenheimer Jan 13, 2026
795c9d3
test: fix import cycle and test all rpc tests under registration
JonathanOppenheimer Jan 16, 2026
2fb8c17
Merge branch 'master' into JonathanOppenheimer/share-rpc-package
JonathanOppenheimer Jan 16, 2026
50e3dcd
chore: lint
JonathanOppenheimer Jan 16, 2026
38d5dd9
chore: lint
JonathanOppenheimer Jan 16, 2026
9313137
test: fix bindings test
JonathanOppenheimer Jan 16, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion graft/coreth/accounts/abi/bind/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import (

"github.com/ava-labs/avalanchego/graft/coreth/accounts/abi"
"github.com/ava-labs/avalanchego/graft/coreth/nativeasset"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
ethereum "github.com/ava-labs/libevm"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/types"
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/cmd/simulator/metrics/metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"

"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
)

type Metrics struct {
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/eth/api_backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import (
"github.com/ava-labs/avalanchego/graft/coreth/eth/tracers"
"github.com/ava-labs/avalanchego/graft/coreth/internal/ethapi"
"github.com/ava-labs/avalanchego/graft/coreth/params"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/libevm/accounts"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/bloombits"
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/eth/api_debug.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import (
"time"

"github.com/ava-labs/avalanchego/graft/coreth/internal/ethapi"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/avalanchego/vms/evm/sync/customrawdb"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/hexutil"
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/eth/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ import (
"github.com/ava-labs/avalanchego/graft/coreth/miner"
"github.com/ava-labs/avalanchego/graft/coreth/node"
"github.com/ava-labs/avalanchego/graft/coreth/params"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/avalanchego/utils/timer/mockable"
"github.com/ava-labs/avalanchego/vms/evm/sync/customrawdb"
"github.com/ava-labs/libevm/accounts"
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/eth/filters/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import (
"time"

"github.com/ava-labs/avalanchego/graft/coreth/internal/ethapi"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
ethereum "github.com/ava-labs/libevm"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/hexutil"
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/eth/filters/api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import (
"strings"
"testing"

"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/libevm/common"
)

Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/eth/filters/filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import (
"fmt"
"math/big"

"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/bloombits"
"github.com/ava-labs/libevm/core/types"
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/eth/filters/filter_system.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import (

"github.com/ava-labs/avalanchego/graft/coreth/core"
"github.com/ava-labs/avalanchego/graft/coreth/params"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
ethereum "github.com/ava-labs/libevm"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/bloombits"
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/eth/filters/filter_system_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import (
"github.com/ava-labs/avalanchego/graft/coreth/internal/ethapi"
"github.com/ava-labs/avalanchego/graft/coreth/params"
"github.com/ava-labs/avalanchego/graft/coreth/plugin/evm/customtypes"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/avalanchego/vms/evm/sync/customrawdb"
ethereum "github.com/ava-labs/libevm"
"github.com/ava-labs/libevm/common"
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/eth/filters/filter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import (
"github.com/ava-labs/avalanchego/graft/coreth/consensus/dummy"
"github.com/ava-labs/avalanchego/graft/coreth/core"
"github.com/ava-labs/avalanchego/graft/coreth/params"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/avalanchego/vms/evm/sync/customrawdb"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/rawdb"
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/eth/gasprice/fee_info_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
"math/big"

"github.com/ava-labs/avalanchego/graft/coreth/core"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/libevm/core/types"
lru "github.com/hashicorp/golang-lru"
)
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/eth/gasprice/feehistory.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import (
"math/big"
"slices"

"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/log"
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/eth/gasprice/feehistory_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import (

"github.com/ava-labs/avalanchego/graft/coreth/core"
"github.com/ava-labs/avalanchego/graft/coreth/params"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/types"
ethparams "github.com/ava-labs/libevm/params"
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/eth/gasprice/gasprice.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import (
"github.com/ava-labs/avalanchego/graft/coreth/core"
"github.com/ava-labs/avalanchego/graft/coreth/params"
"github.com/ava-labs/avalanchego/graft/coreth/plugin/evm/customheader"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/avalanchego/utils/timer/mockable"
"github.com/ava-labs/avalanchego/vms/evm/acp176"
"github.com/ava-labs/libevm/common"
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/eth/gasprice/gasprice_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import (
"github.com/ava-labs/avalanchego/graft/coreth/params"
"github.com/ava-labs/avalanchego/graft/coreth/plugin/evm/customtypes"
"github.com/ava-labs/avalanchego/graft/coreth/plugin/evm/upgrade/ap4"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/rawdb"
"github.com/ava-labs/libevm/core/types"
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/eth/tracers/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import (
"github.com/ava-labs/avalanchego/graft/coreth/core"
"github.com/ava-labs/avalanchego/graft/coreth/internal/ethapi"
"github.com/ava-labs/avalanchego/graft/coreth/params"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/hexutil"
"github.com/ava-labs/libevm/core/state"
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/eth/tracers/api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import (
"github.com/ava-labs/avalanchego/graft/coreth/core"
"github.com/ava-labs/avalanchego/graft/coreth/internal/ethapi"
"github.com/ava-labs/avalanchego/graft/coreth/params"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/avalanchego/vms/evm/sync/customrawdb"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/hexutil"
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/ethclient/corethclient/corethclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import (
"runtime/debug"

"github.com/ava-labs/avalanchego/graft/coreth/ethclient"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
ethereum "github.com/ava-labs/libevm"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/hexutil"
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/ethclient/ethclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import (
"math/big"

"github.com/ava-labs/avalanchego/graft/coreth/plugin/evm/customtypes"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
ethereum "github.com/ava-labs/libevm"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/hexutil"
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/ethclient/simulated/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ import (
"github.com/ava-labs/avalanchego/graft/coreth/interfaces"
"github.com/ava-labs/avalanchego/graft/coreth/node"
"github.com/ava-labs/avalanchego/graft/coreth/params"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/constants"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/avalanchego/utils/timer/mockable"
ethereum "github.com/ava-labs/libevm"
"github.com/ava-labs/libevm/common"
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/ethclient/simulated/backend_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import (
"github.com/ava-labs/avalanchego/graft/coreth/accounts/abi/bind"
"github.com/ava-labs/avalanchego/graft/coreth/params"
"github.com/ava-labs/avalanchego/graft/coreth/plugin/evm/customtypes"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/types"
"github.com/ava-labs/libevm/crypto"
Expand Down
16 changes: 9 additions & 7 deletions graft/coreth/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,14 @@ go 1.24.11

require (
github.com/VictoriaMetrics/fastcache v1.12.1
github.com/ava-labs/avalanchego v1.14.1-0.20251120155522-df4a8e531761
github.com/ava-labs/avalanchego v1.14.1-antithesis-docker-image-fix
github.com/ava-labs/avalanchego/graft/evm v0.0.0-00010101000000-000000000000
github.com/ava-labs/firewood-go-ethhash/ffi v0.0.18
github.com/ava-labs/libevm v1.13.15-0.20251210210615-b8e76562a300
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
github.com/deckarep/golang-set/v2 v2.1.0
github.com/go-cmd/cmd v1.4.3
github.com/google/go-cmp v0.7.0
github.com/gorilla/rpc v1.2.0
github.com/gorilla/websocket v1.5.0
github.com/hashicorp/go-bexpr v0.1.10
github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d
github.com/holiman/billy v0.0.0-20240216141850-2abb0c79d3c4
Expand All @@ -40,7 +38,6 @@ require (
golang.org/x/crypto v0.45.0
golang.org/x/exp v0.0.0-20241215155358-4a5509556b9e
golang.org/x/sync v0.18.0
golang.org/x/time v0.12.0
google.golang.org/protobuf v1.36.8
gopkg.in/natefinch/lumberjack.v2 v2.0.0
)
Expand Down Expand Up @@ -69,6 +66,7 @@ require (
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect
github.com/crate-crypto/go-ipa v0.0.0-20231025140028-3c0104f4b233 // indirect
github.com/crate-crypto/go-kzg-4844 v1.1.0 // indirect
github.com/deckarep/golang-set/v2 v2.1.0 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.0 // indirect
github.com/dlclark/regexp2 v1.7.0 // indirect
github.com/dop251/goja v0.0.0-20230806174421-c933cf95e127 // indirect
Expand Down Expand Up @@ -98,6 +96,7 @@ require (
github.com/google/renameio/v2 v2.0.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.1 // indirect
github.com/huin/goupnp v1.3.0 // indirect
Expand Down Expand Up @@ -158,6 +157,7 @@ require (
golang.org/x/sys v0.38.0 // indirect
golang.org/x/term v0.37.0 // indirect
golang.org/x/text v0.31.0 // indirect
golang.org/x/time v0.12.0 // indirect
golang.org/x/tools v0.38.0 // indirect
gonum.org/v1/gonum v0.16.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20250707201910-8d1bb00bc6a7 // indirect
Expand All @@ -184,6 +184,8 @@ tool (
github.com/onsi/ginkgo/v2/ginkgo
)

replace github.com/ava-labs/avalanchego => ../../

replace github.com/ava-labs/avalanchego/graft/evm => ../evm
replace (
github.com/ava-labs/avalanchego => ../../
github.com/ava-labs/avalanchego/graft/evm => ../evm
github.com/ava-labs/avalanchego/graft/subnet-evm => ../subnet-evm
)
2 changes: 1 addition & 1 deletion graft/coreth/internal/ethapi/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ import (
"github.com/ava-labs/avalanchego/graft/coreth/eth/gasestimator"
"github.com/ava-labs/avalanchego/graft/coreth/params"
"github.com/ava-labs/avalanchego/graft/coreth/plugin/evm/customtypes"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/firewood"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/libevm/accounts"
"github.com/ava-labs/libevm/accounts/keystore"
"github.com/ava-labs/libevm/accounts/scwallet"
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/internal/ethapi/api_extra.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (

"github.com/ava-labs/avalanchego/graft/coreth/core"
"github.com/ava-labs/avalanchego/graft/coreth/params"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
)

type DetailedExecutionResult struct {
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/internal/ethapi/api_extra_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"github.com/ava-labs/avalanchego/graft/coreth/core"
"github.com/ava-labs/avalanchego/graft/coreth/params"
"github.com/ava-labs/avalanchego/graft/coreth/plugin/evm/customtypes"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"

ethparams "github.com/ava-labs/libevm/params"
)
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/internal/ethapi/api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ import (
"github.com/ava-labs/avalanchego/graft/coreth/internal/blocktest"
"github.com/ava-labs/avalanchego/graft/coreth/params"
"github.com/ava-labs/avalanchego/graft/coreth/plugin/evm/upgrade/ap3"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/coreth/utils"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/libevm/accounts"
"github.com/ava-labs/libevm/accounts/keystore"
"github.com/ava-labs/libevm/common"
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/internal/ethapi/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import (
"github.com/ava-labs/avalanchego/graft/coreth/consensus"
"github.com/ava-labs/avalanchego/graft/coreth/core"
"github.com/ava-labs/avalanchego/graft/coreth/params"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/libevm/accounts"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/core/bloombits"
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/internal/ethapi/mocks_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion graft/coreth/internal/ethapi/transaction_args.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import (

"github.com/ava-labs/avalanchego/graft/coreth/core"
"github.com/ava-labs/avalanchego/graft/coreth/params"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/libevm/common"
"github.com/ava-labs/libevm/common/hexutil"
"github.com/ava-labs/libevm/common/math"
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/node/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ package node

import (
"github.com/ava-labs/avalanchego/graft/coreth/internal/debug"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/libevm/common/hexutil"
"github.com/ava-labs/libevm/crypto"
)
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/node/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
package node

import (
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/libevm/accounts"
)

Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/plugin/evm/vm.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ import (
"github.com/ava-labs/avalanchego/graft/coreth/plugin/evm/vmerrors"
"github.com/ava-labs/avalanchego/graft/coreth/plugin/evm/vmsync"
"github.com/ava-labs/avalanchego/graft/coreth/precompile/precompileconfig"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/coreth/sync/client/stats"
"github.com/ava-labs/avalanchego/graft/coreth/sync/handlers"
"github.com/ava-labs/avalanchego/graft/coreth/triedb/hashdb"
"github.com/ava-labs/avalanchego/graft/coreth/warp"
"github.com/ava-labs/avalanchego/graft/evm/constants"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/avalanchego/ids"
"github.com/ava-labs/avalanchego/network/p2p"
"github.com/ava-labs/avalanchego/network/p2p/acp118"
Expand Down
2 changes: 1 addition & 1 deletion graft/coreth/plugin/evm/vm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ import (
"github.com/ava-labs/avalanchego/graft/coreth/plugin/evm/upgrade/ap0"
"github.com/ava-labs/avalanchego/graft/coreth/plugin/evm/upgrade/ap1"
"github.com/ava-labs/avalanchego/graft/coreth/plugin/evm/vmtest"
"github.com/ava-labs/avalanchego/graft/coreth/rpc"
"github.com/ava-labs/avalanchego/graft/coreth/utils"
"github.com/ava-labs/avalanchego/graft/coreth/utils/utilstest"
"github.com/ava-labs/avalanchego/graft/evm/constants"
"github.com/ava-labs/avalanchego/graft/evm/rpc"
"github.com/ava-labs/avalanchego/ids"
"github.com/ava-labs/avalanchego/snow/snowtest"
"github.com/ava-labs/avalanchego/upgrade"
Expand Down
Loading
Loading