Sei中文文档(Sei Docs CHN)-by Chainguys
  • 导览(INTRODUCTION)
    • 版权声明(Copyright Notice)
    • 概览 (Overview)
    • Sei 设计空间 (Sei Design Space)
    • DEX 优化 (DEX Optimizations)
    • Sei 生态系统 (Sei Ecosystem)
  • 智能合约和本地开发 (Smart contracts & local development)
    • Sei工具指南 (Sei Tool Guide)
    • 设置一个本地节点 (Set up a local network)
    • 本地 Sei 脚本部署 (Local Sei script deployment)
    • Sei.go
    • CosmWasm合约测试 (CosmWasm Contract Testing)
    • 部署通用合约 (Deploy a generic contract)
    • 部署交易合约 (Deploy an exchange contract)
    • 非完整节点下部署和开发 (Deploy & develop without Full Node)
    • Dex 模块教程 (Dex Module Tutorial)
    • 代币工厂模块教程 (Tokenfactory Module Tutorial)
    • IBC转账 (IBC Transfers)
  • 订单匹配(order match)
    • 并行性 (Parallelism)
    • 资格 (Eligibility)
    • DEX 合约间依赖 (DEX Inter—Contract Dependencies)
    • 白名单商店 (Whitelisted Store)
  • 节点&验证者 (NODES&VALIDATORS)
    • 加入测试网 (Joining Testnets)
    • 更新 (Upgrades)
    • Seinami激励测试网 (Seinami Incentivized Testnet)
      • 加入激励测试网 (Joining Incentivized Testnet)
      • 所有测试任务 (All Testnet Missions)
      • 行为准则 (Code of Conduct)
      • 奖励发放详情 (Rewards Distribution Details)
  • 基础API端点 (Basic API Endpoints)
  • 模块化端点 (Module Endpoints)
  • 状态同步 (Statesync)
  • 恢复操作(Recovery Operations)
  • 治理(GOVERNANCE)
    • 创建提案 (Creating Proposals)
    • 管理质押 (Managing Staking)
    • 对提案投票表决 (Voting on Proposals)
  • 预言机(ORACLE)
    • 预言机参与 (Oracle Participation)
  • 钱包(WALLETS)
    • 钱包集成(Wallet Integration)
    • 转账 (Transfers)
  • 更多(More)
    • 推特(Twitter)
由 GitBook 提供支持
在本页
  1. 节点&验证者 (NODES&VALIDATORS)

更新 (Upgrades)

All chain upgrades can be found here

所有更新都可以到这里找到

sei-devnet-1 (deprecated 已弃用)

sei-testnet-2 (deprecated 已弃用)

sei-devnet-1 (active testnet 活跃的测试网 )

  • 1.0.6beta->1.0.7beta-postfix

    • Time 时间: 07/22/2022 15:00 UTC

    • Height 高度: 1133762

atlantic-1 (active incentivized testnet 活跃的激励测试网)

  • 1.0.6beta-val-count-fix-->1.0.7beta-postfix

    • Time 时间: 07/22/2022 16:00 UTC

    • Height 高度: 836963

  • 1.1.0beta-->1.0.7beta-postfix

    • Time 时间: 08/03/2022 15:30 UTC

    • Height 高度: 1862331

更新说明 Upgrade Instructions

You can find various instructions for upgrading. The docs below are from the 1.0.3beta upgrade

您可以找到各种升级说明。以下文档来自 1.0.3beta 升级

方法1:手动 (Method 1: Manual)

Once the chain reaches the upgrade height, you will encounter the following panic error message:

一旦链达到升级高度,您将遇到以下恐慌性错误消息:

ERR UPGRADE "1.0.3beta" NEEDED at height: 153759

You will then stop your chain process and run the following commands:

# Checkout the binary for 1.0.3beta
git clone https://github.com/sei-protocol/sei-chain.git
cd sei-chain/
git fetch --tags -f
git checkout 1.0.3beta
# Build the new tool
make install
# Restart the chain process. Ensure that your GOPATH is in your PATH 
seid start --home ~/.sei

### 方法2: Cosmovisor (Method 2: Cosmovisor)

go install github.com/cosmos/cosmos-sdk/cosmovisor/cmd/cosmovisor@latest

Cosmovisor utilizes a file called upgrade-info.json and symlinks to different versions of the seid binary to perform the upgrade automatically for you. The layout looks as follows:

Cosmovisor 使用一个名为 upgrade-info.json 的文件和指向不同版本的 seid 二进制文件的符号链接,来自动为您执行升级。布局如下所示:

~/.sei/cosmovisor
├── current -> genesis or upgrades/<name>
├── genesis
│   └── bin
│       └── seid
└── upgrades
    └── 1.0.3beta
        ├── bin
        │   └── seid
        └── upgrade-info.json

6 directories, 3 files

Before the migration, current is a symlink to the current version of seid (genesis/ before the migration and 1.0.3beta after the migration). The upgrades/ directory holds the various upgrades binaries, including the one for 1.0.3beta. To set the following file structure up, run the following:

在迁移之前,current 是当前版本的 seid 的符号链接(迁移前的genesis/ 和迁移后的1.0.3beta)。 upgrades/ 目录包含各种升级二进制文件,包括用于 1.0.3beta 的二进制文件。要设置以下文件结构,请运行以下命令:

# Export environment variables
DAEMON_RESTART_AFTER_UPGRADE=true 
DAEMON_NAME=seid 
DAEMON_HOME=~/.sei
# Create cosmovisor folder
mkdir -p $DAEMON_HOME/cosmovisor/genesis/bin
# Copy 1.0.0beta seid binary into the genesis folder
cp build/seid $DAEMON_HOME/cosmovisor/genesis/bin
# Instead of running 1.0.0beta with ./build/seid start, you would run it with cosmovisor
cosmovisor run start --home ~/.sei
# Checkout 1.0.1beta branch, build the new seid binary and move it into the upgrade folder
mkdir -p $DAEMON_HOME/cosmovisor/upgrades/1.0.3beta/bin
# Checkout the binary for 1.0.1beta
git clone --depth 1 --branch 1.0.3beta https://github.com/sei-protocol/sei-chain.git
# Build the new tool
cd sei-chain/
make install
cp $(which seid) $DAEMON_HOME/cosmovisor/upgrades/1.0.3beta/bin
上一页加入测试网 (Joining Testnets)下一页Seinami激励测试网 (Seinami Incentivized Testnet)

最后更新于2年前

is a sidecar / wrapper around a cosmos sdk binary that can perform upgrades for you. The page has a lot of information, so we'll just put the necessary details below.

是一个可以为您执行升级的 cosmos sdk 二进制文件的边车(sidecar)/封装器。该页面有很多信息,因此我们将在下面放置必要的详细信息。

Note: Some folks are seeing issues, with this. You can try building directly from the source ()

注意:有些人看到了这个问题。您可以尝试直接从源代码构建()

Cosmovisor
Cosmovisor
instructions
说明