sei-protocol/sei-chain
Fork: 808 Star: 2703 (更新于 2024-11-03 18:24:53)
license: Apache-2.0
Language: TypeScript .
最后发布版本: v5.7.5 ( 2024-08-08 01:33:14)
Sei
Sei is the fastest general purpose L1 blockchain and the first parallelized EVM. This allows Sei to get the best of Solana and Ethereum - a hyper optimized execution layer that benefits from the tooling and mindshare around the EVM.
Overview
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.
Documentation
For the most up to date documentation please visit https://www.docs.sei.io/
Sei Optimizations
Sei introduces four major innovations:
- Twin Turbo Consensus: This feature allows Sei to reach the fastest time to finality of any blockchain at 400ms, unlocking web2 like experiences for applications.
- Optimistic Parallelization: This feature allows developers to unlock parallel processing for their Ethereum applications, with no additional work.
- SeiDB: This major upgrade allows Sei to handle the much higher rate of data storage, reads and writes which become extremely important for a high performance blockchain.
- Interoperable EVM: This allows existing developers in the Ethereum ecosystem to deploy their applications, tooling and infrastructure to Sei with no changes, while benefiting from the 100x performance improvements offered by Sei.
All these features combine to unlock a brand new, scalable design space for the Ethereum Ecosystem.
Testnet
Get started
How to validate on the Sei Testnet This is the Sei Atlantic-2 Testnet ()
Genesis Published
Hardware Requirements
Minimum
- 64 GB RAM
- 1 TB NVME SSD
- 16 Cores (modern CPU's)
Operating System
Linux (x86_64) or Linux (amd64) Recommended Arch Linux
Dependencies
Prerequisite: go1.18+ required.
- Arch Linux:
pacman -S go
- Ubuntu:
sudo snap install go --classic
Prerequisite: git.
- Arch Linux:
pacman -S git
- Ubuntu:
sudo apt-get install git
Optional requirement: GNU make.
- Arch Linux:
pacman -S make
- Ubuntu:
sudo apt-get install make
Seid Installation Steps
Clone git repository
git clone https://github.com/sei-protocol/sei-chain
cd sei-chain
git checkout $VERSION
make install
Generate keys
-
seid keys add [key_name]
-
seid keys add [key_name] --recover
to regenerate keys with your mnemonic -
seid keys add [key_name] --ledger
to generate keys with ledger device
Validator setup instructions
-
Install seid binary
-
Initialize node:
seid init <moniker> --chain-id sei-testnet-1
-
Download the Genesis file:
wget https://github.com/sei-protocol/testnet/raw/main/sei-testnet-1/genesis.json -P $HOME/.sei/config/
-
Edit the minimum-gas-prices in ${HOME}/.sei/config/app.toml:
sed -i 's/minimum-gas-prices = ""/minimum-gas-prices = "0.01usei"/g' $HOME/.sei/config/app.toml
-
Start seid by creating a systemd service to run the node in the background
nano /etc/systemd/system/seid.service
Copy and paste the following text into your service file. Be sure to edit as you see fit.
[Unit]
Description=Sei-Network Node
After=network.target
[Service]
Type=simple
User=root
WorkingDirectory=/root/
ExecStart=/root/go/bin/seid start
Restart=on-failure
StartLimitInterval=0
RestartSec=3
LimitNOFILE=65535
LimitMEMLOCK=209715200
[Install]
WantedBy=multi-user.target
Start the node
Start seid on Linux
- Reload the service files:
sudo systemctl daemon-reload
- Create the symlinlk:
sudo systemctl enable seid.service
- Start the node sudo:
systemctl start seid && journalctl -u seid -f
Start a chain on 4 node docker cluster
- Start local 4 node cluster:
make docker-cluster-start
- SSH into a docker container:
docker exec -it [container_name] /bin/bash
- Stop local 4 node cluster:
make docker-cluster-stop
Create Validator Transaction
seid tx staking create-validator \
--from {{KEY_NAME}} \
--chain-id \
--moniker="<VALIDATOR_NAME>" \
--commission-max-change-rate=0.01 \
--commission-max-rate=1.0 \
--commission-rate=0.05 \
--details="<description>" \
--security-contact="<contact_information>" \
--website="<your_website>" \
--pubkey $(seid tendermint show-validator) \
--min-self-delegation="1" \
--amount <token delegation>usei \
--node localhost:26657
Build with Us!
If you are interested in building with Sei Network: Email us at team@seinetwork.io DM us on Twitter https://twitter.com/SeiNetwork
最近版本更新:(数据更新于 2024-09-10 09:44:13)
2024-08-08 01:33:14 v5.7.5
2024-07-09 23:55:44 v5.6.2
2024-06-14 10:02:12 v5.5.5
2024-05-23 04:42:45 v5.5.2
2024-05-08 12:28:42 v5.2.2
2024-04-26 01:42:09 v3.9.0
2024-03-19 01:08:50 v3.8.0
2024-02-23 07:06:45 v3.7.0
2024-01-20 03:02:33 v3.6.1
2024-01-17 16:03:51 v4.0.0-evm-devnet
sei-protocol/sei-chain同语言 TypeScript最近更新仓库
2024-11-22 01:36:46 twentyhq/twenty
2024-11-21 22:40:05 LLOneBot/LLOneBot
2024-11-21 20:34:48 CopilotKit/CopilotKit
2024-11-21 16:58:07 labring/FastGPT
2024-11-21 16:14:54 RSSNext/Follow
2024-11-21 16:12:23 x-extends/vxe-table