Soundness Gitpod 部署教程

您可以使用 VPS、Codespace 或 Gitpod。

  • 检查更新和升级
复制代码
sudo apt update && sudo apt upgrade -y
  • 安装 Proto
复制代码
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
复制代码
source $HOME/.cargo/env
  • 检查 Rust 和 Cargo 版本
复制代码
rustc --version
cargo --version
  • 设置 Cargo 环境
复制代码
echo 'source $HOME/.cargo/env' >> ~/.bashrc
source ~/.bashrc
  • 下载 Soundness 安装程序
复制代码
curl -sSL https://raw.githubusercontent.com/soundnesslabs/soundness-layer/main/soundnessup/install | bash

重新加载 Bash Shell

复制代码
source ~/.bashrc
  • 安装和更新 Soundness
复制代码
soundnessup install
soundnessup update
  • 生成密钥
复制代码
soundness-cli generate-key --name my-key
  • 将 my-key 更改为您喜欢的任何名称。
    备份种子短语和公钥!
  • 将公钥提交至 Discord
复制代码
!access your_pubkey

可以使用一键脚本:

复制代码
sudo apt update && sudo apt upgrade -y && \
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && \
source $HOME/.cargo/env && rustc --version && cargo --version && echo 'source $HOME/.cargo/env' >> ~/.bashrc && source ~/.bashrc && \
curl -sSL https://raw.githubusercontent.com/soundnesslabs/soundness-layer/main/soundnessup/install | bash && \
source ~/.bashrc && soundnessup install && \
soundnessup update && soundness-cli generate-key --name my-key
相关推荐
_下雨天.4 小时前
LVS负载均衡
服务器·负载均衡·lvs
灵感__idea6 小时前
Hello 算法:贪心的世界
前端·javascript·算法
小成202303202657 小时前
Linux高级02
linux·开发语言
mounter6257 小时前
【硬核前沿】CXL 深度解析:重塑数据中心架构的“高速公路”,Linux 内核如何应对挑战?-- CXL 协议详解与 LSF/MM 最新动态
linux·服务器·网络·架构·kernel
++==7 小时前
Linux 进程间通信与线程同步技术详解:IPC 机制、线程 API、同步工具与经典同步问题
linux
特长腿特长7 小时前
centos、ubantu系列机的用户和用户组的结构是什么?具体怎么配置?用户组权限怎么使用?这篇文章持续更新,帮助你复习linux的基础知识
linux·运维·centos
zzzyyy5388 小时前
Linux环境变量
linux·运维·服务器
GreenTea8 小时前
一文搞懂Harness Engineering与Meta-Harness
前端·人工智能·后端
pluvium278 小时前
记对 xonsh shell 的使用, 脚本编写, 迁移及调优
linux·python·shell·xonsh
无级程序员8 小时前
centos7 安装 llvm-toolset-7-clang出错的问题解决
linux·centos