Skip to content
Open
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 docs/.vitepress/constants/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const constants = Object.freeze({

celestiaNodeArabicaTag: "v0.23.4-arabica",
celestiaNodeArabicaEvolveTag: "v1.0.0-beta.1",
celestiaNodeMochaTag: "v0.23.4-mocha",
celestiaNodeMochaTag: "v0.30.2-mocha",
celestiaNodeMochaEvolveTag: "v1.0.0-beta.1",
celestiaNodeMainnetTag: "v0.22.3",
celestiaNodeMainnetEvolveTag: "v1.0.0-beta.1",
Expand Down
4 changes: 2 additions & 2 deletions test/docker-e2e/docker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const (
// it must be the string "test" as it is handled explicitly in app/node.
celestiaChainID = "test"
// celestiaAppVersion specifies the tag of the celestia-app image to deploy in tests.
celestiaAppVersion = "v5.0.2"
celestiaAppVersion = "v8.0.1-mocha"

// EVM test constants shared across EVM-related tests.
evmTestChainID = "1234"
Expand Down Expand Up @@ -151,7 +151,7 @@ func (s *DockerTestSuite) CreateDANetwork() *da.Network {
daNetwork, err := da.NewNetworkBuilder(t).
WithDockerClient(s.dockerClient).
WithDockerNetworkID(s.dockerNetworkID).
WithImage(container.NewImage("ghcr.io/celestiaorg/celestia-node", "v0.25.3", "10001:10001")).
WithImage(container.NewImage("ghcr.io/celestiaorg/celestia-node", "v0.30.2-mocha", "10001:10001")).
WithNode(bridgeNodeConfig).
Build(ctx)
s.Require().NoError(err)
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/da_client_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func TestClient_SubmitAndGetBlobAgainstRealNode(t *testing.T) {

chainImage := container.Image{
Repository: "ghcr.io/celestiaorg/celestia-app",
Version: "v5.0.10",
Version: "v8.0.1-mocha",
UIDGID: "10001:10001",
}

Expand Down Expand Up @@ -93,7 +93,7 @@ func TestClient_SubmitAndGetBlobAgainstRealNode(t *testing.T) {

daImage := container.Image{
Repository: "ghcr.io/celestiaorg/celestia-node",
Version: "v0.26.4",
Version: "v0.30.2-mocha",
UIDGID: "10001:10001",
}

Expand Down
4 changes: 2 additions & 2 deletions test/e2e/da_posting_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func TestEvNode_PostsToDA(t *testing.T) {
// 1) Start celestia-app chain
chainImage := container.Image{
Repository: "ghcr.io/celestiaorg/celestia-app",
Version: "v5.0.10",
Version: "v8.0.1-mocha",
UIDGID: "10001:10001",
}

Expand Down Expand Up @@ -95,7 +95,7 @@ func TestEvNode_PostsToDA(t *testing.T) {
// 2) Start celestia-node (bridge)
daImage := container.Image{
Repository: "ghcr.io/celestiaorg/celestia-node",
Version: "v0.28.4-mocha",
Version: "v0.30.2-mocha",
UIDGID: "10001:10001",
}

Expand Down
Loading