From ffd4aa21cc0c9d75a99fca9b2b60e40e217a8986 Mon Sep 17 00:00:00 2001 From: Tomasz Kurcz Date: Wed, 10 Jul 2024 18:09:31 +0200 Subject: [PATCH 1/2] storey: introduction --- src/pages/storey.mdx | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/pages/storey.mdx b/src/pages/storey.mdx index 1a843c41..0d7506d9 100644 --- a/src/pages/storey.mdx +++ b/src/pages/storey.mdx @@ -3,3 +3,24 @@ tags: ["storey"] --- # Introduction + +[Storey](https://docs.rs/cw-storey/latest/cw_storey/) is an alternative to +[StoragePlus](cw-storage-plus) and fulfills the same purpose. The +[StoragePlus introduction](cw-storage-plus) could very well be transplanted +here, verbatim - feel free to give it a read if you're not sure what this +software does. + +While StoragePlus has been around for years and is the established way of +storing your data on-chain, Storey is the new kid on the block. + +Storey is currently **prototype software**, meaning the API might change +rapidly, **storage layout might break between versions**, and you might stumble +into bugs and missing features. It's probably a good idea not to use it for +serious production software just yet. If you do, please keep in mind the +increased maintenance burden and be careful! + +On the other hand, it is a solution we want to move toward - we appreciate +anyone willing to help us test it. We also appreciate feedback, feature +requests, and bug reports. + +If you decide to give this a try, kudos to you! From 4e5553c107fc6431b6b4c0240696fca5771c1174 Mon Sep 17 00:00:00 2001 From: Tomasz Kurcz Date: Thu, 11 Jul 2024 15:31:11 +0200 Subject: [PATCH 2/2] storey: callout about storey being a prototype --- src/pages/storey.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pages/storey.mdx b/src/pages/storey.mdx index 0d7506d9..c12f6642 100644 --- a/src/pages/storey.mdx +++ b/src/pages/storey.mdx @@ -2,6 +2,8 @@ tags: ["storey"] --- +import { Callout } from "nextra/components"; + # Introduction [Storey](https://docs.rs/cw-storey/latest/cw_storey/) is an alternative to @@ -13,11 +15,13 @@ software does. While StoragePlus has been around for years and is the established way of storing your data on-chain, Storey is the new kid on the block. + Storey is currently **prototype software**, meaning the API might change rapidly, **storage layout might break between versions**, and you might stumble into bugs and missing features. It's probably a good idea not to use it for serious production software just yet. If you do, please keep in mind the increased maintenance burden and be careful! + On the other hand, it is a solution we want to move toward - we appreciate anyone willing to help us test it. We also appreciate feedback, feature