diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,14 @@
 The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
 and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)
 
+## 0.52.11
+### Added
+- Alias for Blockchain.info raw address endpoint.
+
+### Fixed
+- Fix unknown message types without payload upstream.
+- Randomise peer timeouts upstream.
+
 ## 0.52.10
 ### Fixed
 - Fix binary search algorithm for blocks upstream.
diff --git a/haskoin-store.cabal b/haskoin-store.cabal
--- a/haskoin-store.cabal
+++ b/haskoin-store.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 8da603bad75fb23c0d6a7345d5cada0616da0b4eacf590201b701ddc69e71a4f
+-- hash: 87f5b73f7854f6eded593b1618c50d419021619838e0e2128617012623c736bb
 
 name:           haskoin-store
-version:        0.52.10
+version:        0.52.11
 synopsis:       Storage and index for Bitcoin and Bitcoin Cash
 description:    Please see the README on GitHub at <https://github.com/haskoin/haskoin-store#readme>
 category:       Bitcoin, Finance, Network
@@ -61,7 +61,7 @@
     , hashable >=1.3.0.0
     , haskoin-core >=0.19.0
     , haskoin-node >=0.17.0
-    , haskoin-store-data ==0.52.10
+    , haskoin-store-data ==0.52.11
     , hedis >=0.12.13
     , http-types >=0.12.3
     , lens >=4.18.1
@@ -115,7 +115,7 @@
     , haskoin-core >=0.19.0
     , haskoin-node >=0.17.0
     , haskoin-store
-    , haskoin-store-data ==0.52.10
+    , haskoin-store-data ==0.52.11
     , hedis >=0.12.13
     , http-types >=0.12.3
     , lens >=4.18.1
@@ -174,7 +174,7 @@
     , haskoin-core >=0.19.0
     , haskoin-node >=0.17.0
     , haskoin-store
-    , haskoin-store-data ==0.52.10
+    , haskoin-store-data ==0.52.11
     , hedis >=0.12.13
     , hspec >=2.7.1
     , http-types >=0.12.3
diff --git a/src/Haskoin/Store/Web.hs b/src/Haskoin/Store/Web.hs
--- a/src/Haskoin/Store/Web.hs
+++ b/src/Haskoin/Store/Web.hs
@@ -676,6 +676,7 @@
     S.get  "/blockchain/balance" scottyShortBal
     S.post "/blockchain/balance" scottyShortBal
     S.get  "/blockchain/rawaddr/:addr" scottyRawAddr
+    S.get  "/blockchain/address/:addr" scottyRawAddr
     S.post "/blockchain/unspent" scottyBinfoUnspent
     S.get  "/blockchain/unspent" scottyBinfoUnspent
     S.get  "/blockchain/rawtx/:txid" scottyBinfoTx
