From 19402f6b8d073910ad3ab0177f1dd0564bb14699 Mon Sep 17 00:00:00 2001 From: ochuko awhe <7204868+amochuko@users.noreply.github.com> Date: Sat, 7 Sep 2024 15:03:32 +0100 Subject: [PATCH] Update 03-interact-with-the-registry.mdx fix a typo and remove --private-key flag from command because the command makes no changes to contract storage Signed-off-by: ochuko awhe <7204868+amochuko@users.noreply.github.com> --- .../07-icm-registry/03-interact-with-the-registry.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/course/interchain-messaging/07-icm-registry/03-interact-with-the-registry.mdx b/content/course/interchain-messaging/07-icm-registry/03-interact-with-the-registry.mdx index 466d5d74..162c4f56 100644 --- a/content/course/interchain-messaging/07-icm-registry/03-interact-with-the-registry.mdx +++ b/content/course/interchain-messaging/07-icm-registry/03-interact-with-the-registry.mdx @@ -8,7 +8,7 @@ icon: Terminal import { Step, Steps } from 'fumadocs-ui/components/steps'; -Let's start by interacting the registry. Registry is deployed on specific addresses depending the chain you're operating and the status of the network at the deployment time. For your local network you can find it out with the following command: +Let's start by interacting with the registry. Registry is deployed on specific addresses depending the chain you're operating and the status of the network at the deployment time. For your local network you can find it out with the following command: @@ -56,8 +56,8 @@ export MYBLOCKCHAIN_REGISTRY_ADDRESS=0x5678... Let's interact with the Registry by getting the latest version of the Interchain Messaging Messenger deployed on C-Chain: ```bash -cast call --rpc-url local-c --private-key $PK $C_CHAIN_REGISTRY_ADDRESS "latestVersion()(uint256)" +cast call --rpc-url local-c $C_CHAIN_REGISTRY_ADDRESS "latestVersion()(uint256)" ``` - \ No newline at end of file +