Skip to content
Draft
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
name: subnet-evm-e2e-logs-precompile
path: /tmp/e2e-test/precompile-data
retention-days: 5

e2e_warp:
name: e2e warp tests
runs-on: ubuntu-latest
Expand All @@ -94,7 +94,7 @@ jobs:
- name: Setup Contracts
run: ./scripts/run_task.sh setup-contracts
- name: Run Warp E2E Tests
uses: ava-labs/avalanchego/.github/actions/run-monitored-tmpnet-cmd@8564a57d3ca61f976c90b4ad96e41640a2a3cdc4
uses: ava-labs/avalanchego/.github/actions/run-monitored-tmpnet-cmd@b4cae25c024cce8606062e7fc8559f9d4a4a4b4a
with:
run: ./scripts/run_task.sh test-e2e-warp-ci
artifact_prefix: warp
Expand All @@ -106,7 +106,7 @@ jobs:
loki_push_url: ${{ secrets.LOKI_PUSH_URL || '' }}
loki_username: ${{ secrets.LOKI_ID || '' }}
loki_password: ${{ secrets.LOKI_PASSWORD || '' }}

e2e_load:
name: e2e load tests
runs-on: ubuntu-latest
Expand All @@ -116,7 +116,7 @@ jobs:
with:
fetch-depth: 0
- name: Run E2E Load Tests
uses: ava-labs/avalanchego/.github/actions/run-monitored-tmpnet-cmd@8564a57d3ca61f976c90b4ad96e41640a2a3cdc4
uses: ava-labs/avalanchego/.github/actions/run-monitored-tmpnet-cmd@b4cae25c024cce8606062e7fc8559f9d4a4a4b4a
with:
run: ./scripts/run_task.sh test-e2e-load-ci
artifact_prefix: load
Expand All @@ -128,7 +128,7 @@ jobs:
loki_push_url: ${{ secrets.LOKI_PUSH_URL || '' }}
loki_username: ${{ secrets.LOKI_ID || '' }}
loki_password: ${{ secrets.LOKI_PASSWORD || '' }}

test_build_image:
name: Image build
runs-on: ubuntu-latest
Expand All @@ -140,7 +140,7 @@ jobs:
sudo apt -y install qemu-system qemu-user-static
- name: Check image build
run: ./scripts/run_task.sh test-build-image

test_build_antithesis_images:
name: Build Antithesis images
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ARG AVALANCHEGO_NODE_IMAGE="invalid-image"

# ============= Compilation Stage ================
FROM --platform=$BUILDPLATFORM golang:1.24.8-bookworm AS builder
FROM --platform=$BUILDPLATFORM golang:1.24.9-bookworm AS builder

WORKDIR /build

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ The Subnet EVM runs in a separate process from the main AvalancheGo process and
[v0.7.7] [email protected] (Protocol Version: 42)
[v0.7.8] [email protected] (Protocol Version: 43)
[v0.7.9] [email protected] (Protocol Version: 43)
[v0.8.0-fuji] [email protected] (Protocol Version: 44)
```

## API
Expand Down Expand Up @@ -69,7 +70,7 @@ To support these changes, there have been a number of changes to the SubnetEVM b

### Clone Subnet-evm

First install Go 1.24.8 or later. Follow the instructions [here](https://go.dev/doc/install). You can verify by running `go version`.
First install Go 1.24.9 or later. Follow the instructions [here](https://go.dev/doc/install). You can verify by running `go version`.

Set `$GOPATH` environment variable properly for Go to look for Go Workspaces. Please read [this](https://go.dev/doc/code) for details. You can verify by running `echo $GOPATH`.

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.8.0-fuji": 44,
"v0.7.10": 43,
"v0.7.9": 43,
"v0.7.8": 43,
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module github.com/ava-labs/subnet-evm

go 1.24.8
go 1.24.9

require (
github.com/VictoriaMetrics/fastcache v1.12.1
github.com/antithesishq/antithesis-sdk-go v0.3.8
github.com/ava-labs/avalanchego v1.13.6-rc.1
github.com/ava-labs/avalanchego v1.14.0-fuji
github.com/ava-labs/firewood-go-ethhash/ffi v0.0.13
github.com/ava-labs/libevm v1.13.15-0.20251002164226-35926db4d661
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ github.com/antithesishq/antithesis-sdk-go v0.3.8/go.mod h1:IUpT2DPAKh6i/YhSbt6Gl
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8=
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio=
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs=
github.com/ava-labs/avalanchego v1.13.6-rc.1 h1:O4qeGhxRVO5O8vfu2LMpwU5AdES/8bB2MeDPcrHmYIc=
github.com/ava-labs/avalanchego v1.13.6-rc.1/go.mod h1:27SGpJ0L+3jVMfjY8X5nmgkZ3sFSc7vGeJj+SFjAKL0=
github.com/ava-labs/avalanchego v1.14.0-fuji h1:lST0h7vykj+cqaK6FHsnnVNqJWGXzjf8IS/028wvlBE=
github.com/ava-labs/avalanchego v1.14.0-fuji/go.mod h1:wEiDa5Lc3oKm9l2AxJOXmLz00Wg7b3hUttgkfzgRoDA=
github.com/ava-labs/coreth v0.15.4-rc.4 h1:ze7/IwDptWG1u2d32uUZz9Ix9ycVUtlB8JufuSKSSS4=
github.com/ava-labs/coreth v0.15.4-rc.4/go.mod h1:yVwuMyPkZ48xzZ0y2OdIwaoUqvSsgPYoodyX9BZJ2uo=
github.com/ava-labs/firewood-go-ethhash/ffi v0.0.13 h1:obPwnVCkF5+B2f8WbTepHj0ZgiW21vKUgFCtATuAYNY=
Expand Down
2 changes: 1 addition & 1 deletion plugin/evm/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var (
// GitCommit is set by the build script
GitCommit string
// Version is the version of Subnet EVM
Version string = "v0.7.10"
Version string = "v0.8.0-fuji"
)

func init() {
Expand Down
Loading