#bridge #phala #immutability #blockchain #environment #pruntime #change

immutable_env

程序启动时从环境获取且永远不会改变的不可变环境变量

1个不稳定版本

0.1.0 2023年5月23日

#10#pruntime

MIT 许可证

2KB

Phala区块链

Build

Phala Network 是离链计算协议,为AI代理提供去中心化执行层。

原生构建

依赖项

展开
  • 系统依赖项

    • Ubuntu(已测试22.04)
    apt install -y build-essential pkg-config libssl-dev protobuf-compiler
    
    • macOS
    brew install protobuf
    
    • 有关更多protobuf安装选项,请参阅此处
  • Rust

    curl https://sh.rustup.rs -sSf | sh
    
  • Substrate依赖项

    git submodule update --init
    sh ./scripts/init.sh
    
  • LLVM 14

    wget https://apt.llvm.org/llvm.sh
    chmod +x llvm.sh
    ./llvm.sh 14
    

构建区块链和桥接

请确保您已安装Rust和LLVM-10。

针对Mac用户:您还需要从Homebrew或MacPort安装 llvmbinutils,并将它们的二进制文件添加到您的 $PATH

运行 git submodule update --init 在构建之前获取子模块,如果您在克隆代码时未添加 --recursive 选项。

cargo build --release

构建脚本强制使用LLVM-10或更高版本。LLVM-10是必需的,因为rust加密库的wasm端口 ring。我们必须在保持与 当前 rustc 兼容性的同时将C代码编译成wasm。

运行

请参阅运行脚本

子页面

  • RPC:RPC文档
  • 测试:如何测试组件

外部资源

依赖项

~300–760KB
~18K SLoC