Skip to content

Commit baffc0a

Browse files
osrmGunit2481
andauthored
docs: fix typos & invalid links (#704)
* fix invalid links index.md fix invalid links. * fix typos Proxies.md "priveledge → privilege" "This proxy type allow" -> "This proxy type allows" "make any call that are supported" -> "make any call that is supported" "expect for the asset transfer funtionalities." -> "except for the asset transfer fucntionalities." (I referenced the description of proxy type in this docs: https://wiki.polkadot.network/docs/learn-proxies) "This is to be notes that" -> "This is to be noted that" * fix typo and invalid links accounts.md * fix typo glossary.md "simplifly" → "simplify" * fix typos faq.md "buid section" -> "build section" "suppport" -> "support" * fix typo and invalid link troubleshooting.md * fix typo rescuse-lockdrop.md "Prerequesite" -> "Prerequisite" * Review & fix typos * Fix typos --------- Co-authored-by: Gaius_sama <85451570+Gunit2481@users.noreply.github.com>
1 parent e6e2a59 commit baffc0a

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

docs/learn/Proxies.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ On this page, you will find a detailed overview of the various proxy types, extr
1010

1111
**Proxy Types**
1212
---
13-
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.
13+
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.
1414

15-
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.
15+
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.
1616
To see complete list of functionality, checkout the source code in Astar repo.
1717

1818
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).
1919

20-
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.
20+
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.
2121

2222
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.
2323

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

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

113-
:::
113+
:::

docs/learn/accounts.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The private key is a cryptographically-secure sequence of randomly-generated num
1616

1717
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.
1818

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

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

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

32-
[Read about Substrate accounts](https://docs.substrate.io/learn/accounts-addresses-keys/)
32+
[Read about Substrate accounts](https://docs.substrate.io/learn/accounts-addresses-keys/)

docs/learn/glossary.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ A concept of layer 2 scaling. Modular blockchain systems move two or more of the
108108
A modular framework for building blockchains. Astar is built with Substrate.
109109

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

113113
### Testnet
114114
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.

docs/learn/index.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,27 @@ Whether you're an aspiring developer or a newcomer to the world of blockchain, t
66
To expand your knowledge about building applications or utilizing various tools on Astar, we recommend exploring the [build](/docs/build) section.
77

88
## Foundations
9-
[About Astar](/docs/learn/astar)
9+
[About Astar](/docs/learn/astar.md)
1010

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

13-
[Account](/docs/learn/Accounts)
13+
[Accounts](/docs/learn/accounts.md)
1414

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

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

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

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

2323
## Advanced
2424
[Tokenomics](/docs/learn/tokenomics2)
2525

26-
[Networks](/docs/learn/networks)
26+
[Networks](/docs/learn/networks.md)
2727

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

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

32-
[zkEVM](/docs/learn/zkEVM)
32+
[zkEVM](/docs/learn/zkEVM)

docs/learn/zkEVM/faq.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ Astar zkEVM is censorship resistant from the protocol level, even though in the
7676

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

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

81-
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.
81+
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.
8282

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

docs/use/evm-guides/rescuse-lockdrop.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ To support our users in accessing their funds, we are temporarily updating Shide
88

99
### Reconnecting Your Lockdrop Account:
1010

11-
#### Prerequesite:
11+
#### Prerequisite:
1212
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.
1313

1414
#### Steps:

docs/use/troubleshooting.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ This section will guide you to troubleshoot and solve most issues when connectin
2323
4. If you have other extensions installed, please revoke access of those extensions.
2424

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

3333
## Unable To Claim Staking Rewards;
34-
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).
34+
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).
3535
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.
3636

3737
## After signing the transaction, the portal spins indefinitely;

0 commit comments

Comments
 (0)