Skip to content
Merged
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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.9.3
1.9.4
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.24.9
require (
connectrpc.com/connect v1.19.1
github.com/ava-labs/avalanche-network-runner v1.8.4-0.20251014185609-6911ff015e4c
github.com/ava-labs/avalanche-tooling-sdk-go v0.3.1-0.20251104164521-f70fb5a5ca66
github.com/ava-labs/avalanche-tooling-sdk-go v0.3.1-0.20251119175214-1e692807e754
github.com/ava-labs/avalanchego v1.14.0-fuji-rc.1
github.com/ava-labs/coreth v0.15.4-rc.4
github.com/ava-labs/icm-services v1.4.1-0.20251021221544-ae1d7d5a81f3
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPd
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs=
github.com/ava-labs/avalanche-network-runner v1.8.4-0.20251014185609-6911ff015e4c h1:uIriOOpMqG+oF7JbYKGJwYem/sXoRxLAjUoe7x3EpWU=
github.com/ava-labs/avalanche-network-runner v1.8.4-0.20251014185609-6911ff015e4c/go.mod h1:NS2385T7YN9VVdIRbM+5NpskLTF2I6ArTdts4qUFwoI=
github.com/ava-labs/avalanche-tooling-sdk-go v0.3.1-0.20251104164521-f70fb5a5ca66 h1:Czs2TO9VLJ8jcdu8h8ZHlo/6gT7weJdv2Gq9tA1a4eQ=
github.com/ava-labs/avalanche-tooling-sdk-go v0.3.1-0.20251104164521-f70fb5a5ca66/go.mod h1:CBQrORCol0SIWNEtL+niqUX5dqcVk2v8aJ7cADpGyg0=
github.com/ava-labs/avalanche-tooling-sdk-go v0.3.1-0.20251119175214-1e692807e754 h1:/F2H8+r8eWw5kanebwx9MLvZ/g9I2gOlDnSu8tQNJlw=
github.com/ava-labs/avalanche-tooling-sdk-go v0.3.1-0.20251119175214-1e692807e754/go.mod h1:CBQrORCol0SIWNEtL+niqUX5dqcVk2v8aJ7cADpGyg0=
github.com/ava-labs/avalanchego v1.14.0-fuji-rc.1 h1:/eQUKFGzK+CY2rHOypox87Cqpc9DEIOIjYgEtuRar9g=
github.com/ava-labs/avalanchego v1.14.0-fuji-rc.1/go.mod h1:wEiDa5Lc3oKm9l2AxJOXmLz00Wg7b3hUttgkfzgRoDA=
github.com/ava-labs/coreth v0.15.4-rc.4 h1:ze7/IwDptWG1u2d32uUZz9Ix9ycVUtlB8JufuSKSSS4=
Expand Down
4 changes: 2 additions & 2 deletions tests/e2e/commands/etna.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ const (
PoSString = "proof-of-stake"
PoAString = "proof-of-authority"
// TODO: when mapping is compatible, remove these constants
GraniteFujiAvagoVersion = "v1.14.0-fuji"
GraniteFujiSubnetEVMVersion = "v0.8.0-fuji"
GraniteFujiAvagoVersion = "v1.14.0"
GraniteFujiSubnetEVMVersion = "v0.8.0"
)

func CreateEtnaSubnetEvmConfig(
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/testcases/node/create/suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
)

const (
avalanchegoVersion = "v1.14.0-fuji"
avalanchegoVersion = "v1.14.0"
network = "fuji"
networkCapitalized = "Fuji"
numNodes = 1
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/testcases/subnet/sov/etna/suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func createEtnaSubnetEvmConfig(poa, pos bool) string {
exists, err = utils.SubnetConfigExists(utils.BlockchainName)
gomega.Expect(err).Should(gomega.BeNil())
gomega.Expect(exists).Should(gomega.BeTrue())
return "v1.14.0-fuji"
return "v1.14.0"
}

func createEtnaSubnetEvmConfigWithoutProxyOwner(poa, pos bool) {
Expand Down
Loading