Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix typos & invalid links #704

Merged
merged 9 commits into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/learn/Proxies.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ On this page, you will find a detailed overview of the various proxy types, extr

**Proxy Types**
---
1. **Any** - This proxy type allow delegate account to make any call that are supported by proxy pallet. This is highest level of priveledge so should always use that with caution.
1. **Any** - This proxy type allows delegate account to make any call that is supported by proxy pallet. This is the highest level of privilege so should always use that with caution.

2. **NonTransfer** - This proxy type allow delegate account to make any call supported by proxy pallet expect for the asset transfer funtionalities. This can come handy when you want to keep your funds secure in cold storage and want to delegate all the other functionalities to a proxy account.
2. **NonTransfer** - This proxy type allows delegate account to make any call supported by proxy pallet expect for the asset transfer functionalities. This can come handy when you want to keep your funds secure in cold storage and want to delegate all the other functionalities to a proxy account.
To see complete list of functionality, checkout the source code in Astar repo.

3. **Balances** - This proxy type gives control of handling accounts and balances to the delegate account. Complete list of calls can be found [here](https://docs.rs/pallet-balances/latest/pallet_balances/pallet/enum.Call.html).

4. **Assets** - This proxy type allows delegate account to control the functionalities related to fungible assets which includes asset issuance, transferal, minting etc. This is to be notes that this proxy types doesn't control the native currency like Astar or Shiden which are controled by Balances proxy.
4. **Assets** - This proxy type allows delegate account to control the functionalities related to fungible assets which includes asset issuance, transferal, minting etc. This is to be noted that this proxy types doesn't control the native currency like Astar or Shiden which are controlled by Balances proxy.

5. **IdentityJudgement** - This proxy type allows a single functionality to delegate account which is to provide a judgement to an identity in a naming system. The delegator must be a registrar.

Expand Down Expand Up @@ -110,4 +110,4 @@ This implementation adds an additional layer of security to proxies, providing c

Check out this [**video**](https://www.youtube.com/watch?v=3L7Vu2SX0PE) by Polkadot to learn how to set up time-delayed proxies.

:::
:::
4 changes: 2 additions & 2 deletions docs/learn/accounts.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The private key is a cryptographically-secure sequence of randomly-generated num

The address format used in Substrate-based chains like Astar is ss58. ss58 is a modification of Base-58-check from Bitcoin, with some minor modifications. Notably, the format contains an address type prefix that identifies an address as belonging to a specific network.

Astar supports spezialized accounts, such as Proxy and Keyless accounts.
Astar supports specialized accounts, such as Proxy and Keyless accounts.
You can read more about Proxy accounts [here](/docs/learn/Proxies).

## EVM Accounts
Expand All @@ -29,4 +29,4 @@ Astar EVM side allows Ethereum-style addresses (H160 format), which is 40+2 hex-

[Create an EVM account](/docs/use/evm-guides/setup-metamask/)

[Read about Substrate accounts](https://docs.substrate.io/learn/accounts-addresses-keys/)
[Read about Substrate accounts](https://docs.substrate.io/learn/accounts-addresses-keys/)
2 changes: 1 addition & 1 deletion docs/learn/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ A concept of layer 2 scaling. Modular blockchain systems move two or more of the
A modular framework for building blockchains. Astar is built with Substrate.

### Swanky Suite
A suite of tools for building Wasm smart contracts on Astar that simplifly compilation, deployment and testing.
A suite of tools for building Wasm smart contracts on Astar that simplify compilation, deployment and testing.

### Testnet
Short for "test network": an experimental network where testing and development takes place. Networks are often executed on a testnet before they are deployed to a mainnet.
Expand Down
16 changes: 8 additions & 8 deletions docs/learn/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,27 @@ Whether you're an aspiring developer or a newcomer to the world of blockchain, t
To expand your knowledge about building applications or utilizing various tools on Astar, we recommend exploring the [build](/docs/build) section.

## Foundations
[About Astar](/docs/learn/astar)
[About Astar](/docs/learn/astar.md)

[Astar Tokens](docs/learn/astar-tokens)
[Astar Tokens](/docs/learn/astar-tokens.md)

[Account](/docs/learn/Accounts)
[Accounts](/docs/learn/accounts.md)

[Polkadot](/docs/learn/architecture/astar-parachain)
[Polkadot](/docs/learn/architecture/astar-parachain.md)

[Astar zkEVM](/docs/learn/architecture/astar-zkevm)
[Astar zkEVM](/docs/learn/architecture/astar-zkevm.md)

[Smart Contracts](/docs/learn/smart-contracts)
[Smart Contracts](/docs/learn/smart-contracts.md)

[dApp Staking](/docs/learn/dapp-staking)

## Advanced
[Tokenomics](/docs/learn/tokenomics2)

[Networks](/docs/learn/networks)
[Networks](/docs/learn/networks.md)

[Multichain Interoperability](/docs/learn/interoperability/xcm)

[Proxy Accounts](/docs/learn/Proxies.md)

[zkEVM](/docs/learn/zkEVM)
[zkEVM](/docs/learn/zkEVM)
4 changes: 2 additions & 2 deletions docs/learn/zkEVM/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ Astar zkEVM is censorship resistant from the protocol level, even though in the

### How can developers get started with building on Astar zkEVM? Are there any specific toolkits or SDKs available?

See the [buid section](/docs/build/zkEVM/quickstart.md) for more about how to get started.
See the [build section](/docs/build/zkEVM/quickstart.md) for more about how to get started.

Current developers within the Astar community can benefit significantly from the expansive developer resources present in the Ethereum ecosystem where suppport and tools, including Hardhat and Truffle, are highly accessible. Eventually, Astar will introduce tools and SDKs tailored to specific Astar zkEVM functionalities.
Current developers within the Astar community can benefit significantly from the expansive developer resources present in the Ethereum ecosystem where support and tools, including Hardhat and Truffle, are highly accessible. Eventually, Astar will introduce tools and SDKs tailored to specific Astar zkEVM functionalities.

### How does gas pricing on Astar zkEVM compare to Ethereum and Polygon?

Expand Down
2 changes: 1 addition & 1 deletion docs/use/evm-guides/rescuse-lockdrop.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ To support our users in accessing their funds, we are temporarily updating Shide

### Reconnecting Your Lockdrop Account:

#### Prerequesite:
#### Prerequisite:
The EVM address will be used to dispatch the call on behalf of the lockdrop account. Please ensure that the **EVM address holds native tokens (ASTR or SDN) to cover gas fees** for the dispatch call.

#### Steps:
Expand Down
4 changes: 2 additions & 2 deletions docs/use/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ This section will guide you to troubleshoot and solve most issues when connectin
4. If you have other extensions installed, please revoke access of those extensions.

## Getting Errors Or Unable To Execute Certain Functions;
Some of you may be unable to execute certain funtions. Please try these steps.
Some of you may be unable to execute certain functions. Please try these steps.
1. Update metadata (if required).
2. Clear cache, restart browser and connect wallet to the portal again.
3. On the top right corner, switch to a different endpoint.
4. Brave browser is known to give errors. Use Chrome or Firefox instead.
5. Use VPN.

## Unable To Claim Staking Rewards;
1. If you can't claim the staking rewards on the portal. Visit [HERE](/docs/use/dapp-staking/for-stakers/manage-dApp-Staking#my-staking-panel).
1. If you can't claim the staking rewards on the portal. Visit [HERE](/docs/use/dapp-staking/for-stakers/manage-dApp-Staking.md#my-staking-panel).
2. If the transferrable balance in the wallet is too low, you might not be able to claim the staking rewards. Top up your wallet and then claim the rewards.

## After signing the transaction, the portal spins indefinitely;
Expand Down