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

P2p sdk handlers #1031

Merged
merged 38 commits into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from 37 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
362d094
rename tx handlers
ceyonur Dec 25, 2023
30598a9
add p2p sdk handlers
ceyonur Dec 25, 2023
dab4a6b
Merge branch 'master' into p2p-sdk-handlers
ceyonur Dec 25, 2023
08f8bb0
fix tests
ceyonur Dec 25, 2023
c49eba4
fix imports
ceyonur Dec 25, 2023
e8c2bde
bump min go version
ceyonur Dec 25, 2023
0f67575
Merge branch 'bump-min-go-version' into p2p-sdk-handlers
ceyonur Dec 25, 2023
0bf3ed3
downgrade golangci
ceyonur Dec 25, 2023
01fca28
Merge branch 'bump-min-go-version' into p2p-sdk-handlers
ceyonur Dec 25, 2023
987b9aa
remove noop handler
ceyonur Dec 27, 2023
f7ac02e
bump avago rc
ceyonur Dec 28, 2023
b801b64
Merge branch 'p2p-sdk-handlers' of github.com:ava-labs/subnet-evm int…
ceyonur Dec 28, 2023
f90f91f
fix uint64
ceyonur Dec 28, 2023
f35444a
bump avalanchego rc version
ceyonur Jan 3, 2024
61b730b
fix linter
ceyonur Jan 3, 2024
1fe51f7
revert txpool uint change
ceyonur Jan 3, 2024
7bc46ac
bump subnet-evm version
ceyonur Jan 3, 2024
1782f18
run simulator in a different step
ceyonur Jan 3, 2024
49c3c3c
remove load test from precompile tests
ceyonur Jan 3, 2024
d5a24de
run simulator in a different step
ceyonur Jan 3, 2024
828e077
remove load test from precompile tests
ceyonur Jan 3, 2024
a9b8f3d
rename simulator to load test
ceyonur Jan 4, 2024
c3994e3
Merge branch 'master' into split-load-test
ceyonur Jan 4, 2024
dad0b17
parallelize e2e steps
ceyonur Jan 4, 2024
4888cdd
Merge branch 'split-load-test' of github.com:ava-labs/subnet-evm into…
ceyonur Jan 4, 2024
2a45e5f
use checkout
ceyonur Jan 4, 2024
1593c72
Merge branch 'master' into bump-min-go-version
ceyonur Jan 4, 2024
b182b18
split to different workflows
ceyonur Jan 4, 2024
7e9fc6c
Merge branch 'bump-min-go-version' into p2p-sdk-handlers
ceyonur Jan 4, 2024
867aaad
move to same folder
ceyonur Jan 4, 2024
ddc63ea
Merge branch 'split-load-test' into p2p-sdk-handlers
ceyonur Jan 4, 2024
e29a8b4
Merge branch 'master' into split-load-test
ceyonur Jan 5, 2024
1642e9f
Merge branch 'split-load-test' into p2p-sdk-handlers
ceyonur Jan 5, 2024
7f8009f
bump avago
ceyonur Jan 5, 2024
31dc86d
add time to codec
ceyonur Jan 5, 2024
ae4f5eb
fix load test (#1043)
patrick-ogrady Jan 22, 2024
acd3f4a
Merge branch 'master' into p2p-sdk-handlers
ceyonur Jan 22, 2024
9b4808a
Fix racey bloom access and replace time.Sleep with require.Eventually
StephenButtolph Jan 22, 2024
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ The Subnet EVM runs in a separate process from the main AvalancheGo process and
[v0.5.8] AvalancheGo@v1.10.13-v1.10.14 (Protocol Version: 29)
[v0.5.9] AvalancheGo@v1.10.15-v1.10.17 (Protocol Version: 30)
[v0.5.10] AvalancheGo@v1.10.15-v1.10.17 (Protocol Version: 30)
[v0.5.11] AvalancheGo@v1.10.18-v1.10.18 (Protocol Version: 31)
```

## API
Expand Down
1 change: 1 addition & 0 deletions compatibility.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"rpcChainVMProtocolVersion": {
"v0.5.11": 31,
"v0.5.10": 30,
"v0.5.9": 30,
"v0.5.8": 29,
Expand Down
37 changes: 19 additions & 18 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ go 1.20

require (
github.com/VictoriaMetrics/fastcache v1.10.0
github.com/ava-labs/avalanche-network-runner v1.7.4-0.20231127162258-2f3ceed8ae4b
github.com/ava-labs/avalanchego v1.10.17
github.com/ava-labs/avalanche-network-runner v1.7.4-rc.0
github.com/ava-labs/avalanchego v1.10.18
github.com/cespare/cp v0.1.0
github.com/cockroachdb/pebble v0.0.0-20230209160836-829675f94811
github.com/davecgh/go-spew v1.1.1
Expand All @@ -29,8 +29,8 @@ require (
github.com/mattn/go-colorable v0.1.13
github.com/mattn/go-isatty v0.0.16
github.com/olekukonko/tablewriter v0.0.5
github.com/onsi/ginkgo/v2 v2.8.1
github.com/onsi/gomega v1.26.0
github.com/onsi/ginkgo/v2 v2.13.1
github.com/onsi/gomega v1.29.0
github.com/prometheus/client_golang v1.16.0
github.com/prometheus/client_model v0.3.0
github.com/shirou/gopsutil v3.21.11+incompatible
Expand All @@ -43,11 +43,11 @@ require (
github.com/tyler-smith/go-bip39 v1.1.0
github.com/urfave/cli/v2 v2.17.2-0.20221006022127-8f469abc00aa
go.uber.org/goleak v1.2.1
go.uber.org/mock v0.2.0
golang.org/x/crypto v0.14.0
golang.org/x/sync v0.3.0
golang.org/x/sys v0.13.0
golang.org/x/text v0.13.0
go.uber.org/mock v0.4.0
golang.org/x/crypto v0.17.0
golang.org/x/sync v0.5.0
golang.org/x/sys v0.15.0
golang.org/x/text v0.14.0
golang.org/x/time v0.1.0
google.golang.org/protobuf v1.31.0
gopkg.in/natefinch/lumberjack.v2 v2.0.0
Expand All @@ -57,7 +57,7 @@ require (
github.com/DataDog/zstd v1.5.2 // indirect
github.com/Microsoft/go-winio v0.5.2 // indirect
github.com/NYTimes/gziphandler v1.1.1 // indirect
github.com/ava-labs/coreth v0.12.9-rc.9 // indirect
github.com/ava-labs/coreth v0.12.10-rc.5 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/bits-and-blooms/bitset v1.7.0 // indirect
github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect
Expand All @@ -68,26 +68,27 @@ require (
github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect
github.com/cockroachdb/redact v1.1.3 // indirect
github.com/consensys/bavard v0.1.13 // indirect
github.com/consensys/gnark-crypto v0.10.0 // indirect
github.com/consensys/gnark-crypto v0.12.1 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/crate-crypto/go-kzg-4844 v0.2.0 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect
github.com/deepmap/oapi-codegen v1.8.2 // indirect
github.com/dlclark/regexp2 v1.7.0 // indirect
github.com/ethereum/c-kzg-4844 v0.2.0 // indirect
github.com/getsentry/sentry-go v0.18.0 // indirect
github.com/go-logr/logr v1.2.3 // indirect
github.com/go-logr/logr v1.3.0 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
github.com/go-stack/stack v1.8.1 // indirect
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
github.com/gofrs/flock v0.8.1 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang-jwt/jwt/v4 v4.3.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb // indirect
github.com/google/btree v1.1.2 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect
github.com/google/renameio/v2 v2.0.0 // indirect
github.com/gorilla/mux v1.8.0 // indirect
Expand Down Expand Up @@ -125,7 +126,6 @@ require (
github.com/rogpeppe/go-internal v1.10.0 // indirect
github.com/rs/cors v1.7.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/spaolacci/murmur3 v1.1.0 // indirect
github.com/spf13/afero v1.8.2 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/subosito/gotenv v1.3.0 // indirect
Expand All @@ -144,10 +144,11 @@ require (
go.opentelemetry.io/proto/otlp v0.19.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.26.0 // indirect
golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df // indirect
golang.org/x/mod v0.11.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/term v0.13.0 // indirect
golang.org/x/exp v0.0.0-20231127185646-65229373498e // indirect
golang.org/x/mod v0.14.0 // indirect
golang.org/x/net v0.19.0 // indirect
golang.org/x/term v0.15.0 // indirect
golang.org/x/tools v0.16.0 // indirect
gonum.org/v1/gonum v0.11.0 // indirect
google.golang.org/genproto v0.0.0-20230711160842-782d3b101e98 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20230711160842-782d3b101e98 // indirect
Expand Down
Loading
Loading