You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pages/dev-advanced-concepts/account-structure.mdx
+1-1
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ Both EVM derived (0x) and Sei bech32 derived addresses on Sei are derived from t
10
10
11
11
**Manual Association**:
12
12
13
-
- If the chain does not yet have the public key, users can manually associate their accounts using the `sei_associate` function. This is a gasless function that requires at least 1 wei in their account to execute. More details can be found in the [EVM RPC Endpoints documentation](https://v2.docs.sei.io/evm-rpc-endpoints#sei_associate).
13
+
- If the chain does not yet have the public key, users can manually associate their accounts using the `sei_associate` function. This is a gasless function that requires at least 1 wei in their account to execute. More details can be found in the [EVM RPC Endpoints documentation](./evm-rpc-endpoints).
Copy file name to clipboardExpand all lines: pages/dev-advanced-concepts/querying-historical-state.mdx
-2
Original file line number
Diff line number
Diff line change
@@ -37,5 +37,3 @@ While archive nodes provide the raw historical data, indexers are essential for
37
37
## **Indexer Providers**:
38
38
39
39
There are several indexer providers that you can use to query historical data on the Sei blockchain. Refer to the [Indexer Providers](https://www.notion.so/Advanced-concepts-cfcc51a81ede49d186bb9aa36fc73d83?pvs=21) section for more information on available services.
Copy file name to clipboardExpand all lines: pages/dev-frontend-dapps.mdx
+3-3
Original file line number
Diff line number
Diff line change
@@ -9,11 +9,11 @@ Connecting to wallets is a crucial step in developing dApps. Here are some recom
9
9
### EVM and EVM RPC dApps:
10
10
11
11
-**Wagmi**: A React-based library for Ethereum dApps that simplifies wallet connection and interaction. Provides hooks for interacting with Ethereum wallets and contracts for use with modern frontend libraries and frameworks.
12
-
-[Wagmi Documentation](https://wagmi.sh/docs)
12
+
-[Wagmi Documentation](https://wagmi.sh/)
13
13
-**Viem**: A lightweight and flexible library for Ethereum development.
-**Ethers.js**: A complete and compact library for interacting with the Ethereum blockchain and its ecosystem. Known for its simplicity and extensive functionality.
Copy file name to clipboardExpand all lines: pages/dev-intro.mdx
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Sei is built for developers
2
2
3
-
Sei is a high-performance, low-fee, designated proof-of-stake blockchain designed for developers. It supports optimistic parallel execution of both EVM and CosmWasm, opening up new design possibilities. With unique optimizations like twin turbo consensus and SeiDB, Sei ensures consistent 400ms block times and a transaction throughput that’s orders of magnitude higher than Ethereum. This means faster, more cost-effective operations. Plus, Sei’s seamless interoperability between EVM and CosmWasm gives developers native access to the entire Cosmos ecosystem, including IBC tokens, multi-sig accounts, fee grants, and more.
3
+
Sei is a high-performance, low-fee, delegated proof-of-stake blockchain designed for developers. It supports optimistic parallel execution of both EVM and CosmWasm, opening up new design possibilities. With unique optimizations like twin turbo consensus and SeiDB, Sei ensures consistent 400ms block times and a transaction throughput that’s orders of magnitude higher than Ethereum. This means faster, more cost-effective operations. Plus, Sei’s seamless interoperability between EVM and CosmWasm gives developers native access to the entire Cosmos ecosystem, including IBC tokens, multi-sig accounts, fee grants, and more.
Copy file name to clipboardExpand all lines: pages/dev-node/join-a-network.mdx
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
## Join a Network
2
-
Follow this guide to join an existing network through statesync To quickly stand up a fresh full node and join in the network, it's recommended to sync through state sync. If you want to run a local instance of Sei, see Running a Local Node
2
+
Follow this guide to join an existing network through statesync. To quickly stand up a fresh full node and join in the network, it's recommended to sync through state sync. If you want to run a local instance of Sei, see Running a Local Node
3
3
4
4
## Install Seid Binary
5
5
To stand up a sei node, the first step is to download and install seid on your machine. If you have not done so, follow the steps in Install Seid.
Copy file name to clipboardExpand all lines: pages/dev-smart-contracts.mdx
+1-1
Original file line number
Diff line number
Diff line change
@@ -81,7 +81,7 @@ CosmWasm is a smart contract platform built for the Cosmos ecosystem, enabling c
81
81
82
82
Interoperability is a key feature of the Sei blockchain, allowing EVM and CosmWasm contracts to interact seamlessly.
83
83
84
-
- EVM Precompile Contracts: Precompiles are smart contracts pre-bundled into the chain. Sei has many precompiles to enable EVM dApps and contracts to access native Cosmos functions, such as staking and executing CosmWasm contracts. The official precompiles can be found in [@sei-js/evm](https://github.com/sei-protocol/sei-js/tree/main/packages/evm/src/precompiles)
84
+
- EVM Precompile Contracts: Precompiles are smart contracts pre-bundled into the chain. Sei has many precompiles to enable EVM dApps and contracts to access native Cosmos functions, such as staking and executing CosmWasm contracts. The official precompiles can be found in [@sei-js/evm](https://github.com/sei-protocol/sei-js/tree/main/packages/evm)
85
85
-**Pointer Contracts**: These contracts act as intermediaries, enabling calls between EVM and CosmWasm contracts. This allows developers to leverage the strengths of both environments and create more versatile dApps.
Copy file name to clipboardExpand all lines: pages/dev-tutorials/building-a-frontend.mdx
+1-1
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ npm install ethers
50
50
## Defining Contract Addresses and ABI
51
51
In this tutorial, we will be using the **Wasm Precompile** to interact with our CosmWasm contract from the EVM.
52
52
Precompiles (short for Precompiled contracts) are EVM compatible contracts that are built into the chain. The Wasm Precompile is a unique smart contract on Sei that enables EVM clients to query and execute CosmWasm contracts.
53
-
Refer to the docs on [interoperability](./interoperability.mdx) for more details about precompiles.
53
+
Refer to the docs on [interoperability](../dev-advanced-concepts/interoperability/introduction) for more details about precompiles.
54
54
55
55
First, import the address and ABI of the CosmWasm precompile from `@sei-js/evm`.
Copy file name to clipboardExpand all lines: pages/general-governance.mdx
+5-5
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ Governance on the Sei blockchain allows stakers to propose, discuss, and vote on
10
10
11
11
The governance process follows a structured timeline to ensure thorough discussion and consideration of each proposal.
12
12
13
-
1.**Proposal Submission**: Any staker can submit a proposal by paying a deposit.
13
+
1.**Proposal Submission**: Any user can submit a proposal by paying a deposit.
14
14
2.**Deposit Period**: The community has a specific period to add their deposits to the proposal. If the minimum deposit threshold is met, the proposal moves to the voting period.
15
15
3.**Voting Period**: Once the deposit period ends, the proposal enters the voting period, where stakers can cast their votes.
16
16
4.**Result Period**: After the voting period, the results are tallied and the outcome is determined.
@@ -48,18 +48,18 @@ Community members vote with their staked Sei. One staked Sei equals one vote. If
48
48
49
49
The following is a basic outline of the governance process:
50
50
51
-
1.**Proposal Submission**: A user submits a proposal and a one-week deposit period begins.
51
+
1.**Proposal Submission**: A user submits a proposal and a two days deposit period begins.
52
52
53
-
2.**Deposit Period**: Users deposit Sei as collateral to back the proposal. This period ends after the one-week deposit period or a minimum expedited threshold of 7000 Sei is deposited. Deposits protect against spam. If a minimum deposit of 3500 Sei is not met, all deposits are burned and the proposal does not proceed.
53
+
2.**Deposit Period**: Users deposit Sei as collateral to back the proposal. This period ends after two days deposit period or a minimum expedited threshold of 7000 Sei is deposited. Deposits protect against spam. If a minimum deposit of 3500 Sei is not met, all deposits are burned and the proposal does not proceed.
54
54
55
-
3.**Voting Period**: The one-week vote period begins. The voting options are:
55
+
3.**Voting Period**: The five-days vote period begins. The voting options are:
56
56
-`Yes`: In favor.
57
57
-`No`: Not in favor.
58
58
-`NoWithVeto`: Not in favor, and the deposit should be burned.
59
59
-`Abstain`: Voter abstains. Abstain votes count toward meeting the quorum.
60
60
61
61
4.**Tallying Votes**: The votes are tallied. Proposals pass if they meet three conditions:
62
-
-`Quorum` is met: at least 30% of all staked Sei must vote.
62
+
-`Quorum` is met: at least 33.4% of all staked Sei must vote.
63
63
- The total number of `NoWithVeto` votes is less than 33.4% of the total vote.
64
64
-`Threshold` is met: the number of `Yes` votes is greater than the number of `No` and `NoWithVeto` votes. `Abstain` votes are excluded from the `Threshold` tally.
-**IBC (Inter-Blockchain Communication)**: IBC is a protocol that enables communication and asset transfers between different blockchains within the Cosmos ecosystem.
@@ -34,7 +33,3 @@ CosmWasm is a smart contract platform built for the Cosmos ecosystem, enabling d
34
33
-**Rust**: Rust is the primary programming language used for writing CosmWasm smart contracts. It is known for its safety, performance, and concurrency.
Copy file name to clipboardExpand all lines: pages/user-guides/wallet-setup.mdx
+1-1
Original file line number
Diff line number
Diff line change
@@ -103,6 +103,6 @@ TokenFactory and CW20 tokens can only be visible in MetaMask if there's a pointe
103
103
Similarly, CW721 NFTs can only be visible in MetaMask if a pointer contract created for it. Once created, you can import it into your wallet like a standard ERC721 NFT.
0 commit comments