Environment Setup
Supported Operating Systems
The Phat Contract uses the Rust-based ink! language, and is ultimately compiled to WebAssembly (WASM for short).
You compile your contract on both macOS and Linux distributions (we use Ubuntu 22.04 as the default Linux distribution);
For Windows users, we recommend setting up a Linux development environment with a virtual machine (video tutorial).
Note
The Mac M1/M2 chips do not support the deployment of a local testnet at this time. If you are using a machine with these chips, you will have to deploy to the live testnet through DevPHAse, swanky phala, or Phat UI.
Information to connect to the Phala Live Testnet PoC6
RPC WS Endpoint: wss://poc6.phala.network/ws
RPC HTTP Endpoint: https:/poc6.phala.network/rpc
Cluster ID: 0x0000000000000000000000000000000000000000000000000000000000000001
Worker: 0xac5087e0e21de2b2637511e6710db74e5ec2dbc3f02db76ffa02662878ecf333
Install Toolchains
Phat Contract shares the same toolchains as ink!.
Rust
A prerequisite for compiling Phat Contracts is to have Rust and Cargo (Rustβs project manager) installed.
Rust officially recommends using rustup
tool to install and manage different Rust versions. Hereβs an installation guide.
ink!
We recommend installing cargo-contract
. Itβs a CLI tool that helps set up and manage contracts written with ink!.
Then you can install the cargo-contract
with
Then check your cargo-contract
and ensure itβs updated to 3.2.x
with ink! 4 support
Last updated