From 7f98e4192d6b3e549ef6ac0de05250936876e757 Mon Sep 17 00:00:00 2001
From: Preston Evans <32944016+preston-evans98@users.noreply.github.com>
Date: Mon, 17 Jul 2023 07:36:22 -0700
Subject: [PATCH] Update links for branch renaming (#495)
---
README.md | 4 ++--
examples/demo-nft-module/README.md | 12 ++++++------
rollup-interface/README.md | 2 +-
3 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/README.md b/README.md
index f61cc833b..11df5ec7b 100644
--- a/README.md
+++ b/README.md
@@ -1,11 +1,11 @@
![](./assets/banner.jpg)
-
+
-
+
diff --git a/examples/demo-nft-module/README.md b/examples/demo-nft-module/README.md
index 96258806c..441030d06 100644
--- a/examples/demo-nft-module/README.md
+++ b/examples/demo-nft-module/README.md
@@ -41,8 +41,8 @@ Here are defining basic dependencies in `Cargo.toml` that module needs to get st
```toml
[dependencies]
anyhow = { anyhow = "1.0.62" }
-sov-modules-api = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "main", default-features = false }
-sov-modules-macros = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "main" }
+sov-modules-api = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "stable", default-features = false }
+sov-modules-macros = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "stable" }
```
### Establishing the Root Module Structure
@@ -121,9 +121,9 @@ Before we start implementing the `Module` trait, there are several preparatory s
serde = { version = "1", features = ["derive"] }
serde_json = "1"
- sov-modules-api = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "main", default-features = false }
- sov-modules-macros = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "main" }
- sov-state = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "main", default-features = false }
+ sov-modules-api = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "stable", default-features = false }
+ sov-modules-macros = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "stable" }
+ sov-state = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "stable", default-features = false }
[features]
default = ["native"]
@@ -371,7 +371,7 @@ Temporary storage is needed for testing, so we enable the `temp` feature of `sov
```toml
[dev-dependencies]
-sov-state = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "main", features = ["temp"] }
+sov-state = { git = "https://github.com/Sovereign-Labs/sovereign-sdk.git", branch = "stable", features = ["temp"] }
```
Here is some boilerplate for NFT module integration tests:
diff --git a/rollup-interface/README.md b/rollup-interface/README.md
index 88156712e..808b616e7 100644
--- a/rollup-interface/README.md
+++ b/rollup-interface/README.md
@@ -3,7 +3,7 @@