Skip to content

Commit

Permalink
chore: fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
itsacoyote committed Apr 12, 2024
1 parent 9da6a08 commit 7474d18
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 15 deletions.
9 changes: 8 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
File renamed without changes.
12 changes: 1 addition & 11 deletions content/40.tooling/00.zksync-block-explorers.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.**
<br />
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

Expand Down Expand Up @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions content/40.tooling/10.zksync-cli/30.zksync-cli-contract.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 7474d18

Please sign in to comment.