From 4b8d6edf2e8259f52256e6ab3148ac468685c7f8 Mon Sep 17 00:00:00 2001 From: codilion Date: Wed, 4 Jun 2025 14:04:22 +0200 Subject: [PATCH 1/2] the is_founder view function is only useful if the user already did the migration to v8. --- docs/guides/founder/migrate-to-v8.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docs/guides/founder/migrate-to-v8.md b/docs/guides/founder/migrate-to-v8.md index b0f9e7d2..3d549a91 100644 --- a/docs/guides/founder/migrate-to-v8.md +++ b/docs/guides/founder/migrate-to-v8.md @@ -30,12 +30,6 @@ libra --version # Must show version ≥ 8.0 If not installed, follow → Install the Open Libra CLI from [source code](https://docs.openlibra.io/getting-started/install-open-libra-cli) or [binaries](https://docs.openlibra.io/getting-started/install-open-libra-cli/install-open-libra-cli-binaries) -### Verify You're a Founder -```bash -libra query view -f 0x1::founder::is_founder --args -``` -If this returns **true**, continue with this guide. - ## Quick Start ⚡ 1. **Re-join the network** From 35819878be7cd3bd72066cb16648e4587bdef1f6 Mon Sep 17 00:00:00 2001 From: codilion Date: Wed, 4 Jun 2025 14:11:15 +0200 Subject: [PATCH 2/2] activity::is_pre_v8 is the correct one --- docs/guides/founder/migrate-to-v8.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/guides/founder/migrate-to-v8.md b/docs/guides/founder/migrate-to-v8.md index 3d549a91..397d1df2 100644 --- a/docs/guides/founder/migrate-to-v8.md +++ b/docs/guides/founder/migrate-to-v8.md @@ -30,6 +30,12 @@ libra --version # Must show version ≥ 8.0 If not installed, follow → Install the Open Libra CLI from [source code](https://docs.openlibra.io/getting-started/install-open-libra-cli) or [binaries](https://docs.openlibra.io/getting-started/install-open-libra-cli/install-open-libra-cli-binaries) +### Verify if account is a Pre-v8 address +```bash +libra query view -f 0x1::activity::is_pre_v8 --args +``` +If this returns **true**, continue with this guide. + ## Quick Start ⚡ 1. **Re-join the network**