Skip to content

Commit a6552f6

Browse files
authored
Update Gov params and update links (#72)
* docs: fix broken links and update gov params * docs: update quorum * docs: update wrong doc link
1 parent 69c0e89 commit a6552f6

16 files changed

+21
-27
lines changed

pages/dev-advanced-concepts/account-structure.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Both EVM derived (0x) and Sei bech32 derived addresses on Sei are derived from t
1010

1111
**Manual Association**:
1212

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).
1414

1515
### Key Points
1616

pages/dev-advanced-concepts/hardware-wallets.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ To use Compass for secure transaction signing with a Ledger device:
2828

2929
Before you can use your Ledger device to sign transactions, ensure you have the Cosmos app installed. You can download it from the Ledger app store:
3030

31-
[Ledger App Store - Cosmos App](https://www.ledger.com/apps/cosmos)
31+
[Ledger App Store - Cosmos App](https://www.ledger.com/coin/wallet/cosmos)

pages/dev-advanced-concepts/querying-historical-state.mdx

-2
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,3 @@ While archive nodes provide the raw historical data, indexers are essential for
3737
## **Indexer Providers**:
3838

3939
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.
40-
41-
**ADD SECTION ON EVENTS**

pages/dev-ecosystem-providers/bridges.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Bridges facilitate cross-chain transfers and interoperability between different
44

55
## **Squid**:
66
Enables one-click cross-chain swaps across various EVM blockchains.
7-
- [Squid](https://blockworks.co/news/squid-one-click-cross-chain-swaps-cosmos)
7+
- [Squid](https://app.squidrouter.com/)
88

99
## **Wormhole**:
1010
A popular bridge for transferring assets across multiple blockchains.

pages/dev-frontend-dapps.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ Connecting to wallets is a crucial step in developing dApps. Here are some recom
99
### EVM and EVM RPC dApps:
1010

1111
- **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/)
1313
- **Viem**: A lightweight and flexible library for Ethereum development.
14-
- [Viem Documentation](https://viem.sh/docs)
14+
- [Viem Documentation](https://viem.sh/docs/getting-started)
1515
- **Ethers.js**: A complete and compact library for interacting with the Ethereum blockchain and its ecosystem. Known for its simplicity and extensive functionality.
16-
- [Ethers.js Documentation](https://docs.ethers.io/v5/)
16+
- [Ethers.js Documentation](https://docs.ethers.io/v6/)
1717

1818
### CosmWasm/Cosmos RPC dApps
1919

pages/dev-intro.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Sei is built for developers
22

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.
44

55

66
## Features

pages/dev-node/join-a-network.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## 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
33

44
## Install Seid Binary
55
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.

pages/dev-smart-contracts.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ CosmWasm is a smart contract platform built for the Cosmos ecosystem, enabling c
8181

8282
Interoperability is a key feature of the Sei blockchain, allowing EVM and CosmWasm contracts to interact seamlessly.
8383

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)
8585
- **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.
8686
- [Pointer Contracts Documentation](./dev-tutorials/pointer-contracts.mdx)
8787

pages/dev-tutorials/building-a-frontend.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ npm install ethers
5050
## Defining Contract Addresses and ABI
5151
In this tutorial, we will be using the **Wasm Precompile** to interact with our CosmWasm contract from the EVM.
5252
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.
5454

5555
First, import the address and ABI of the CosmWasm precompile from `@sei-js/evm`.
5656

pages/dev-tutorials/nft-contract-tutorial.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Before we start, ensure you have:
2626

2727
<Callout type="info">
2828
You can obtain devnet tokens from one of the faucets listed
29-
[here](/getting-tokens/faucets).
29+
[here](../dev-ecosystem-providers/faucets).
3030
</Callout>
3131

3232
## Setting Up Your Project
@@ -185,7 +185,7 @@ Before starting, ensure you have:
185185

186186
<Callout type="info">
187187
You can obtain devnet tokens from one of the faucets listed
188-
[here](/getting-tokens/faucets).
188+
[here](../dev-ecosystem-providers/faucets).
189189
</Callout>
190190

191191
## Setting Up Your Environment

pages/dev-tutorials/tokenfactory-tutorial.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ To create a token on the devnet, ensure you have the following setup:
1616

1717
<Callout type="info">
1818
You can obtain devnet tokens from one of the faucets listed
19-
[here](/getting-tokens/faucets).
19+
[here](../dev-ecosystem-providers/faucets).
2020
</Callout>
2121

2222
## Creating a Denom

pages/dev-validators/validator-faq.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ A validator operator's "self-bond" refers to the amount of Sei delegated to itse
7777

7878
### Is there a faucet?
7979

80-
Refer to the [faucet page](https://www.docs.sei.io/running-validator/faucet) for details on faucets.
80+
Refer to the [faucet page](../dev-ecosystem-providers/faucets) for details on faucets.
8181

8282
### Is there a minimum amount of Sei that must be staked to be an active (bonded) validator?
8383

pages/general-governance.mdx

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Governance on the Sei blockchain allows stakers to propose, discuss, and vote on
1010

1111
The governance process follows a structured timeline to ensure thorough discussion and consideration of each proposal.
1212

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.
1414
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.
1515
3. **Voting Period**: Once the deposit period ends, the proposal enters the voting period, where stakers can cast their votes.
1616
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
4848

4949
The following is a basic outline of the governance process:
5050

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.
5252

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.
5454

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:
5656
- `Yes`: In favor.
5757
- `No`: Not in favor.
5858
- `NoWithVeto`: Not in favor, and the deposit should be burned.
5959
- `Abstain`: Voter abstains. Abstain votes count toward meeting the quorum.
6060

6161
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.
6363
- The total number of `NoWithVeto` votes is less than 33.4% of the total vote.
6464
- `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.
6565

pages/resources-resources.mdx

-5
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ The Cosmos SDK is a modular framework for building custom blockchains within the
1414
- [Transaction Structure Documentation](https://docs.cosmos.network/main/learn/advanced/transactions)
1515
- **IBC (Inter-Blockchain Communication)**: IBC is a protocol that enables communication and asset transfers between different blockchains within the Cosmos ecosystem.
1616
- [IBC Overview](https://docs.cosmos.network/v0.45/ibc/overview.html)
17-
- **Event structure**: ADD THIS
1817

1918
### EVM (Ethereum Virtual Machine)
2019

@@ -34,7 +33,3 @@ CosmWasm is a smart contract platform built for the Cosmos ecosystem, enabling d
3433
- **Rust**: Rust is the primary programming language used for writing CosmWasm smart contracts. It is known for its safety, performance, and concurrency.
3534
- [Rust Documentation](https://doc.rust-lang.org/beta/)
3635

37-
@sei-js
38-
39-
- Link to typedocs
40-
- Explain what it is

pages/user-guides/block-explorers.mdx

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { Tabs } from "nextra/components";
12
import { Callout } from "nextra/components";
23

34
# Block Explorers

pages/user-guides/wallet-setup.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,6 @@ TokenFactory and CW20 tokens can only be visible in MetaMask if there's a pointe
103103
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.
104104

105105
<Callout type="info">
106-
Visit our [Pointer Contract page](../interoperability/pointer-contracts.mdx)
106+
Visit our [Pointer Contract page](../dev-tutorials/pointer-contracts.mdx)
107107
to learn more.
108108
</Callout>

0 commit comments

Comments
 (0)