From f28b44205421917df42325603a0e32526a8be744 Mon Sep 17 00:00:00 2001 From: Sabrina Ferguson Date: Thu, 15 Aug 2024 15:23:00 -0400 Subject: [PATCH] fix: silence spellchecker errors --- content/tutorials/guide-viem/10.index.md | 4 ++-- content/tutorials/guide-web3js/10.index.md | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/content/tutorials/guide-viem/10.index.md b/content/tutorials/guide-viem/10.index.md index d0e9324c..18c2546f 100644 --- a/content/tutorials/guide-viem/10.index.md +++ b/content/tutorials/guide-viem/10.index.md @@ -41,14 +41,14 @@ const client = createPublicClient({ }); ``` -/*spellchecker: disable*/ + ::callout{icon="i-heroicons-information-circle" color="blue"} - To use the %%zk_testnet_name%%, specify `zkSyncSepoliaTestnet` as the chain. - For %%zk_mainnet_name%%, replace `zkSyncSepoliaTestnet` with `zkSync`. :: -/*spellchecker: enable*/ + ### Reading Data diff --git a/content/tutorials/guide-web3js/10.index.md b/content/tutorials/guide-web3js/10.index.md index 014f0d8a..08a56910 100644 --- a/content/tutorials/guide-web3js/10.index.md +++ b/content/tutorials/guide-web3js/10.index.md @@ -63,10 +63,12 @@ from the `zks_` namespace of the [JSON-RPC API](https://docs.zksync.io/build/api #### Fetch the Main Contract Address + ```javascript const mainContract = await web3.zkSync.rpc.getMainContract(); console.log(`Main contract: ${mainContract}`); ``` + ### Wallet Configuration