diff --git a/prdoc/pr_2920.prdoc b/prdoc/pr_2920.prdoc
new file mode 100644
index 0000000000000000000000000000000000000000..7745838ab5c0c08cb499f3691fa0d1dd712e4106
--- /dev/null
+++ b/prdoc/pr_2920.prdoc
@@ -0,0 +1,11 @@
+# Schema: Polkadot SDK PRDoc Schema (prdoc) v1.0.0
+# See doc at https://raw.githubusercontent.com/paritytech/polkadot-sdk/master/prdoc/schema_user.json
+
+title: Contracts: Stabilize sr25519_verify host function
+
+doc:
+  - audience: Runtime Dev
+    description: |
+      Removed the `#[unstable]` attrribute on `sr25519_verify` host function.
+
+crates: ["pallet-contracts"]
diff --git a/substrate/frame/contracts/src/wasm/runtime.rs b/substrate/frame/contracts/src/wasm/runtime.rs
index 7b1e35ee1ad727f62e6fcf9149601f9c5f1daeb3..a7f329005f9193fb89ac526b4a104780be2ef7f6 100644
--- a/substrate/frame/contracts/src/wasm/runtime.rs
+++ b/substrate/frame/contracts/src/wasm/runtime.rs
@@ -2229,7 +2229,6 @@ pub mod env {
 
 	/// Verify a sr25519 signature
 	/// See [`pallet_contracts_uapi::HostFn::sr25519_verify`].
-	#[unstable]
 	fn sr25519_verify(
 		ctx: _,
 		memory: _,