Skip to content

Commit 232dfc4

Browse files
Merge pull request #200 from yash251/main
fix: typos
2 parents 7dc8124 + 7035bcf commit 232dfc4

File tree

21 files changed

+24
-85
lines changed

21 files changed

+24
-85
lines changed

STYLE_GUIDE.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Great documentation is simple and to the point. It should aim to convey more mea
2121

2222
- To be clear and inclusive, avoid using jargon and obscure words where possible.
2323
- Limit the number of clauses in a sentence and make sure that your points are structured.
24-
- Avoid qualifying language, which is ~~quite~~ often ~~completely~~ uneccessary.
24+
- Avoid qualifying language, which is ~~quite~~ often ~~completely~~ unnecessary.
2525
- Information should be simply organized and easy to find.
2626

2727
### Self-explanatory
@@ -34,7 +34,7 @@ Great documentation is self-explanatory. Documentation shouldn't need more docum
3434
The Sei Docs are structured using the [Nextra](https://nextra.site). Are a guideline, we have split the pages by target audience.
3535

3636
### General
37-
Docs in these section describe Sei and topics that are applicable to all audiences. This is general information that is not specfic to users or developers. Information here is meant to be as layman as possible and should be understandable by everyone.
37+
Docs in these section describe Sei and topics that are applicable to all audiences. This is general information that is not specific to users or developers. Information here is meant to be as layman as possible and should be understandable by everyone.
3838

3939
Information here might include:
4040
- What is Sei?
@@ -167,7 +167,7 @@ When code blocks are used, they should always be prettified by specifying the la
167167
168168
When writing code blocks, avoid
169169
1. Creating large code blocks. Break your code into smaller, more digestible pieces.
170-
2. Writing too much documentation in between lines. If neccessary, break the code block up and add text to explain each code block instead.
170+
2. Writing too much documentation in between lines. If necessary, break the code block up and add text to explain each code block instead.
171171
172172
For tutorials, the goal should be to write code blocks that can be directly copied and used by the reader.
173173

pages/dev-advanced-concepts/wallet-association.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ next: true
77
Wallet association on the Sei network ensures the public key becomes known to the chain. Without this step, the chain cannot determine the Bech32 (`sei...`) address or the EVM-compatible (`0x...`) address from one another.
88

99

10-
Below are **4 distinct methods** for associating a wallet along with relevant defitnitions. Each method differs in terms of security considerations and required actions.
10+
Below are **4 distinct methods** for associating a wallet along with relevant definitions. Each method differs in terms of security considerations and required actions.
1111

1212
---
1313

pages/dev-ecosystem-providers/ecosystem-map.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Sei Ecosystem is the epicenter of technological advancement, bringing together c
1515

1616
<EcosystemDynamicSection category="Consumer Apps" />
1717

18-
## Infastructure
18+
## Infrastructure
1919

2020
<EcosystemDynamicSection category="Infrastructure" />
2121

pages/dev-ecosystem-providers/indexers/goldrush.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ on each for an address.
4545

4646
There are 4 primary developer tools for using the APIs:
4747

48-
1. [GoldRush APIs](https://goldrush.dev/docs/api) - enteprise-grade REST APIs to use with any programming language. Switch blockchains with one path parameter.
48+
1. [GoldRush APIs](https://goldrush.dev/docs/api) - enterprise-grade REST APIs to use with any programming language. Switch blockchains with one path parameter.
4949

5050
```sh
5151
curl -X GET https://api.covalenthq.com/v1/sei-mainnet/address/0x6d68A318D0632f7B9Ce9d6757Dea0e9dE19D7CCA/balances_v2/ \

pages/dev-interoperability.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import interoperability from '../public/assets/interoperability.png';
66

77
EVM and CosmWasm based smart contracts co-exist on Sei, but live in different execution environments.
88
This creates a challenge for users, who use wallets that typically only support a single execution environment.
9-
Likewise for devlelopers, existing tooling and libraries can only interact with either EVM or Wasm (Think EthersJS vs CosmJS).
9+
Likewise for developers, existing tooling and libraries can only interact with either EVM or Wasm (Think EthersJS vs CosmJS).
1010

1111
To bridge the gap between EVM and Wasm, Sei has introduced two interoperability features, allowing for smooth and easy interactions between both environments.
1212
Precompiled EVM contracts and Pointer Contracts enable all contracts to be accessible from both VM environments.

pages/dev-interoperability/precompiles/bank.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ This precompile enables EVM clients to interact with the bank module.
3737
```
3838

3939
### Queries
40-
- `balance`: Queries the balance of the given acount for specified denom.
40+
- `balance`: Queries the balance of the given account for specified denom.
4141
```solidity
4242
/// Queries the balance of the given account for the specified denom.
4343
/// @param acc The Sei address of the account to query.
@@ -48,7 +48,7 @@ This precompile enables EVM clients to interact with the bank module.
4848
string memory denom
4949
) external view returns (uint256 amount);
5050
```
51-
- `all_balances`: Queries all balances of the given acount.
51+
- `all_balances`: Queries all balances of the given account.
5252
```solidity
5353
/// Queries the balance of the given account for all balances.
5454
/// @param acc The Sei address of the account to query.

pages/dev-interoperability/precompiles/cosmwasm.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ This precompile serves as an interface to the CosmWasm module, enabling EVM base
7070
```solidity
7171
/// Queries a CosmWasm contract.
7272
/// @param contractAddress The Sei address of the contract to query.
73-
/// @param req The query requeest object. The format is specified by the contract code.
73+
/// @param req The query request object. The format is specified by the contract code.
7474
/// @return The response from the CosmWasm contract.
7575
function query(
7676
string memory contractAddress,

pages/dev-interoperability/precompiles/oracle.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Callout } from "nextra/components";
22

3-
# Orcale Precompile
3+
# Oracle Precompile
44

55
**Address**: `0x0000000000000000000000000000000000001008`
66

pages/dev-node/configure-general-settings.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Structure of ~/.sei/config
88
│-- app.toml # seid configuration file
99
│-- client.toml # configurations for the cli wallet (ex seid)
1010
│-- config.toml # Tendermint configuration file
11-
│-- genesis.json # gensesis transactions
11+
│-- genesis.json # genesis transactions
1212
│-- node_key.json # private key used for node authentication in the p2p protocol (its corresponding public key is the nodeid)
1313
└-- priv_validator_key.json # key used by the validator on the node to sign blocks
1414
```

pages/dev-node/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Before running the script, take a moment to understand the configurable paramete
116116
- The script will download the specified version, extract it, and install it using `make install`.
117117
- If `enable_unsafe_reset` is `True`, it will reset the Tendermint state and any existing configs + keys.
118118
- The script will initialize the node with the given moniker and chain ID.
119-
- For non-local environments, it will fetch state sync parameters, persistent peers, and apropriate genesis file.
119+
- For non-local environments, it will fetch state sync parameters, persistent peers, and appropriate genesis file.
120120

121121

122122
5. **Configuration Files**:

0 commit comments

Comments
 (0)