diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index b4f5fb8b81..ce4cccbb6d 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed + +- Removed `/vac/waku/relay/2.0.0-beta2` from `WakuRelay` protocols. + ### Fixed - Documentation links. diff --git a/packages/core/src/lib/relay/constants.ts b/packages/core/src/lib/relay/constants.ts index ba123de3cd..9dbc346a48 100644 --- a/packages/core/src/lib/relay/constants.ts +++ b/packages/core/src/lib/relay/constants.ts @@ -4,10 +4,7 @@ export const minute = 60 * second; /** * RelayCodec is the libp2p identifier for the waku relay protocol */ -export const RelayCodecs = [ - "/vac/waku/relay/2.0.0-beta2", - "/vac/waku/relay/2.0.0", -]; +export const RelayCodecs = ["/vac/waku/relay/2.0.0"]; export const RelayPingContentTopic = "/relay-ping/1/ping/null";