diff --git a/.vscode/settings.json b/.vscode/settings.json index 6d2cb901..7cbd388d 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -10,6 +10,13 @@ "[markdown]": { "editor.wordWrap": "on", "editor.defaultFormatter": "DavidAnson.vscode-markdownlint", - "editor.formatOnSave": true + "editor.formatOnSave": true, + "editor.suggest.showWords": false, + "editor.quickSuggestions": { + "other": "on", + "comments": "off", + "strings": "off" + }, + "editor.tabCompletion": "onlySnippets" } } diff --git a/.vscode/markdown-snippets.code-snippets b/.vscode/snippets.code-snippets similarity index 100% rename from .vscode/markdown-snippets.code-snippets rename to .vscode/snippets.code-snippets diff --git a/content/40.tooling/00.zksync-block-explorers.md b/content/40.tooling/00.zksync-block-explorers.md index 8ed92587..19e2fc7c 100644 --- a/content/40.tooling/00.zksync-block-explorers.md +++ b/content/40.tooling/00.zksync-block-explorers.md @@ -17,13 +17,7 @@ The API provides various endpoints for many use cases you might want in your app It is compatible with :external-link{text="Etherscan API" href="https://docs.etherscan.io/"}, which makes it easy to transition your existing apps to zkSync Era network. -::callout{icon="i-heroicons-exclamation-triangle" color="amber"} -**The API does not fully cover all the functionality yet.** -
-We are working on additional endpoints to cover more use cases and to make developers’ experience better. Stay tuned for further updates. -:: - -Feel free to contribute and create issues and feature requests in [zkSync Era Block Explorer GitHub repo](https://github.com/matter-labs/block-explorer). +Feel free to contribute and create issues and feature requests in :external-link{text="zkSync Era Block Explorer GitHub repo" href="https://github.com/matter-labs/block-explorer"}. ## Other block explorers @@ -57,10 +51,6 @@ Routescan's zkSync Explorer allows you to explore and search for transactions, a - :external-link{text="Hyperscan" href="https://hyperscan.xyz/"} -### zkScan Lite - -:external-link{text="zkScan" href="https://zkscan.io/"} Block Explorer and Analytics Platform for zkSync Lite. - ### OKLink :external-link{text="OKLink" href="https://www.oklink.com/zksync"} provides a familiar UI with data on transactions, blocks, account balances and more. diff --git a/content/40.tooling/10.zksync-cli/30.zksync-cli-contract.md b/content/40.tooling/10.zksync-cli/30.zksync-cli-contract.md index f9bc86f8..db73d4a7 100644 --- a/content/40.tooling/10.zksync-cli/30.zksync-cli-contract.md +++ b/content/40.tooling/10.zksync-cli/30.zksync-cli-contract.md @@ -66,7 +66,7 @@ zksync-cli contract read ? Enter method to call: balanceOf(address) ``` - - Alternatively, you can specify the ABI file manually using the `--abi` option. [See example](#using-local-abi-file) + - Alternatively, you can specify the ABI file manually using the `--abi` option. [See example](#using-a-local-abi-file) 1. You will be prompted to enter **arguments** for the method, one by one. @@ -151,7 +151,7 @@ zksync-cli contract write ? Enter method to call: transfer(address,uint256) ``` - - Alternatively, you can specify the ABI file manually using the `--abi` option. [See example](#using-local-abi-file) + - Alternatively, you can specify the ABI file manually using the `--abi` option. [See example](#using-a-local-abi-file) 1. You will be prompted to enter **arguments** for the method, one by one. @@ -197,7 +197,7 @@ zksync-cli contract encode ? Enter method to call: transfer(address,uint256) ``` - - Alternatively, you can specify the ABI file using the `--abi` option. [See example](#using-local-abi-file) + - Alternatively, you can specify the ABI file using the `--abi` option. [See example](#using-a-local-abi-file) ```bash ? Contract method to call