Skip to content

Commit

Permalink
spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
seiyan-writer committed Jan 13, 2025
1 parent 2290915 commit 4193ce0
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions pages/build/cosmwasm-general.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ CosmWasm architecture prevents almost all the known risk vectors of Ethereum.

CosmWasm runs the Web Assembly, Wasm virtual machine guarantees high performance.

**Interoprable**
**Interoperable**

CosmWasm was built for multi-chain, cross-chain world, deeply integrated with IBC (Inter-blockchain communication).

Expand Down Expand Up @@ -46,7 +46,7 @@ use cosmwasm_std::{
entry_point, to_binary, Binary, Deps, DepsMut, Empty, Env, MessageInfo,
Response, StdResult,
};
// serde is a serialization/deserilization library
// serde is a serialization/deserialization library
use serde::{Deserialize, Serialize};

// Query response data structure
Expand Down
2 changes: 1 addition & 1 deletion pages/build/nft-contract-tutorial.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This tutorial guides you through the creation and deployment of an NFT contract
<Tabs items={["EVM", "CosmWasm"]}>
<Tabs.Tab>

In this section, we'll use Foundry to deploy an ERC-721 contract to the Ethereum network. ERC-721 is a standard for NFT contracts on Ethereum. Learm more about ERC-721 [here](https://erc721.org/).
In this section, we'll use Foundry to deploy an ERC-721 contract to the Ethereum network. ERC-721 is a standard for NFT contracts on Ethereum. Learn more about ERC-721 [here](https://erc721.org/).

## Requirements

Expand Down
2 changes: 1 addition & 1 deletion pages/learn/dev-interoperability.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import interoperability from '../../public/assets/interoperability.png';

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

To bridge the gap between EVM and Wasm, Sei has introduced two interoperability features, allowing for smooth and easy interactions between both environments.
Precompiled EVM contracts and Pointer Contracts enable all contracts to be accessible from both VM environments.
Expand Down
2 changes: 1 addition & 1 deletion pages/learn/wallet-association.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ next: true
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.


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

---

Expand Down
2 changes: 1 addition & 1 deletion pages/node/configure-general-settings.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Structure of ~/.sei/config
│-- app.toml # seid configuration file
│-- client.toml # configurations for the cli wallet (ex seid)
│-- config.toml # Tendermint configuration file
│-- genesis.json # gensesis transactions
│-- genesis.json # genesis transactions
│-- node_key.json # private key used for node authentication in the p2p protocol (its corresponding public key is the nodeid)
└-- priv_validator_key.json # key used by the validator on the node to sign blocks
```
Expand Down
2 changes: 1 addition & 1 deletion pages/node/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ Before running the script, take a moment to understand the configurable paramete
- The script will download the specified version, extract it, and install it using `make install`.
- If `enable_unsafe_reset` is `True`, it will reset the Tendermint state and any existing configs + keys.
- The script will initialize the node with the given moniker and chain ID.
- For non-local environments, it will fetch state sync parameters, persistent peers, and apropriate genesis file.
- For non-local environments, it will fetch state sync parameters, persistent peers, and appropriate genesis file.


5. **Configuration Files**:
Expand Down
2 changes: 1 addition & 1 deletion pages/providers/ecosystem-map.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Sei Ecosystem is the epicenter of technological advancement, bringing together c

<EcosystemDynamicSection category="Consumer Apps" />

## Infastructure
## Infrastructure

<EcosystemDynamicSection category="Infrastructure" />

Expand Down
2 changes: 1 addition & 1 deletion pages/providers/indexers/goldrush.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ on each for an address.

There are 4 primary developer tools for using the APIs:

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

```sh
curl -X GET https://api.covalenthq.com/v1/sei-mainnet/address/0x6d68A318D0632f7B9Ce9d6757Dea0e9dE19D7CCA/balances_v2/ \
Expand Down
4 changes: 2 additions & 2 deletions pages/reference/precompiles/bank.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ This precompile enables EVM clients to interact with the bank module.
```

### Queries
- `balance`: Queries the balance of the given acount for specified denom.
- `balance`: Queries the balance of the given account for specified denom.
```solidity
/// Queries the balance of the given account for the specified denom.
/// @param acc The Sei address of the account to query.
Expand All @@ -48,7 +48,7 @@ This precompile enables EVM clients to interact with the bank module.
string memory denom
) external view returns (uint256 amount);
```
- `all_balances`: Queries all balances of the given acount.
- `all_balances`: Queries all balances of the given account.
```solidity
/// Queries the balance of the given account for all balances.
/// @param acc The Sei address of the account to query.
Expand Down
2 changes: 1 addition & 1 deletion pages/reference/precompiles/cosmwasm.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ This precompile serves as an interface to the CosmWasm module, enabling EVM base
```solidity
/// Queries a CosmWasm contract.
/// @param contractAddress The Sei address of the contract to query.
/// @param req The query requeest object. The format is specified by the contract code.
/// @param req The query request object. The format is specified by the contract code.
/// @return The response from the CosmWasm contract.
function query(
string memory contractAddress,
Expand Down
2 changes: 1 addition & 1 deletion pages/reference/precompiles/oracle.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Callout } from "nextra/components";

# Orcale Precompile
# Oracle Precompile

**Address**: `0x0000000000000000000000000000000000001008`

Expand Down

0 comments on commit 4193ce0

Please sign in to comment.