You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-19Lines changed: 7 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
# Subnet EVM
2
2
3
-
[](https://github.com/ava-labs/subnet-evm/actions/workflows/lint-tests-release.yml)
@@ -72,7 +60,7 @@ To support these changes, there have been a number of changes to the SubnetEVM b
72
60
73
61
### Clone Subnet-evm
74
62
75
-
First install Go 1.22.8 or later. Follow the instructions [here](https://go.dev/doc/install). You can verify by running `go version`.
63
+
First install Go 1.23.6 or later. Follow the instructions [here](https://go.dev/doc/install). You can verify by running `go version`.
76
64
77
65
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`.
78
66
@@ -96,5 +84,5 @@ To run a local network, it is recommended to use the [avalanche-cli](https://git
96
84
97
85
There are two options when using the Avalanche-CLI:
98
86
99
-
1. Use an official Subnet-EVM release: https://docs.avax.network/subnets/build-first-subnet
100
-
2. Build and deploy a locally built (and optionally modified) version of Subnet-EVM: https://docs.avax.network/subnets/create-custom-subnet
87
+
1. Use an official Subnet-EVM release: <https://docs.avax.network/subnets/build-first-subnet>
88
+
2. Build and deploy a locally built (and optionally modified) version of Subnet-EVM: <https://docs.avax.network/subnets/create-custom-subnet>
Copy file name to clipboardExpand all lines: RELEASES.md
+37-3Lines changed: 37 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,17 +2,51 @@
2
2
3
3
## Pending Release
4
4
5
-
* Refactored trie_prefetcher.go to be structurally similar to upstream.
5
+
** IMPORTANT: `eth_getProof` calls for historical state will be rejected by default.
6
+
* On archive nodes (`"pruning-enabled": false`): queries for historical proofs for state older than approximately 24 hours preceding the last accepted block will be rejected by default. This can be adjusted with the new option `historical-proof-query-window` which defines the number of blocks before the last accepted block which should be accepted for state proof queries, or set to `0` to accept any block number state query (previous behavior).
7
+
* On `pruning` nodes: queries for proofs past the tip buffer (32 blocks) will be rejected. This is in support of moving to a path based storage scheme, which does not support historical state proofs.
8
+
* Added `Fortuna` upgrade as optional and defaulting to a `nil` timestamp.
This version is backwards compatible to [v0.7.0](https://github.com/ava-labs/subnet-evm/releases/tag/v0.7.0). It is optional, **but strongly encouraged as it's fixing an important bug in uptime tracking.**
13
+
14
+
### AvalancheGo Compatibility
15
+
16
+
The plugin version is unchanged at 39 and is compatible with AvalancheGo version v1.12.2.
17
+
18
+
### Updates
19
+
20
+
* Fixed concurrency issue in validators/uptime manager
0 commit comments