not really known
Go to file
2023-12-19 16:15:42 -05:00
.github/workflows Update main.yml 2023-11-01 17:13:06 -04:00
modules Merge pull request #91 from uqbar-dao/bp/fs2 2023-12-19 16:09:38 -05:00
src Merge branch 'v0.4.0' into bp/fs2 2023-12-19 15:48:26 -03:00
.env.example fs: read cache (#49) 2023-11-17 13:18:35 -03:00
.gitignore update to wit 0.5.0 2023-12-15 16:21:06 -05:00
build-release.py add build-release.py 2023-12-09 09:56:41 -08:00
build.rs update wit URL 2023-12-18 12:45:07 -05:00
Cargo.lock remove unused deps 2023-12-19 16:15:42 -05:00
Cargo.toml remove unused deps 2023-12-19 16:15:42 -05:00
README.md ! -> / 2023-12-13 16:45:30 -05:00
rust-toolchain.toml working on mac! 2023-11-01 17:09:47 -04:00
wasi_snapshot_preview1.wasm update deps 2023-12-11 21:47:37 -08:00

Setup

Building components

# Clone the repo.

git clone git@github.com:uqbar-dao/uqbar.git

# Configure dependency retrieval from GitHub
mkdir .cargo
echo "net.git-fetch-with-cli = true" > .cargo/config

# Get some stuff so we can build wasm.

cd uqbar
cargo install wasm-tools
rustup install nightly
rustup target add wasm32-wasi
rustup target add wasm32-wasi --toolchain nightly
cargo install cargo-wasi

# Build the runtime, along with a number of booted-at-startup WASM modules including terminal and key_value
# OPTIONAL: --release flag

cargo +nightly build --release

Boot

Get an eth-sepolia-rpc API key and pass that as an argument. You can get one for free at alchemy.com.

Make sure not to use the same home directory for two nodes at once! You can use any name for the home directory: here we just use home. The -- here separates cargo arguments from binary arguments.

TODO: document feature flags --simulation-mode

cargo +nightly run --release -- home --rpc wss://eth-sepolia.g.alchemy.com/v2/<your-api-key>

On boot you will be prompted to navigate to localhost:8080. Make sure your ETH wallet is connected to the Sepolia test network. Login should be straightforward, just submit the transactions and follow the flow. If you want to register a new ID you will either need Sepolia testnet tokens or an invite code.

Terminal syntax

  • CTRL+C or CTRL+D to gracefully shutdown node

  • CTRL+V to toggle through verbose modes (0-3, 0 is default and lowest verbosity)

  • CTRL+J to toggle debug mode

  • CTRL+S to step through events in debug mode

  • CTRL+L to toggle logging mode, which writes all terminal output to the .terminal_log file. Off by default, this will write all events and verbose prints with timestamps.

  • CTRL+A to jump to beginning of input

  • CTRL+E to jump to end of input

  • UpArrow/DownArrow or CTRL+P/CTRL+N to move up and down through command history

  • CTRL+R to search history, CTRL+R again to toggle through search results, CTRL+G to cancel search

  • /message <address> <json>: send an inter-process message.

    is formatted as @<process_id>. <process_id> is formatted as <process_name>:<package_name>:<publisher_node>.

    • Example: /message our@net:sys:uqbar diagnostics
    • our will always be interpolated by the system as your node's name
    • Can also use /m for same command: /m our@net:sys:uqbar diagnostics
  • /app <address>: set the terminal to a mode where all messages go to a specific app. To clear this selection, use /app clear or simply /app. This is useful for apps that have a command line interface.

    • Example: /app our@net:sys:uqbar, then /m diagnostics
    • Can also use /a for same command: /a our@net:sys:uqbar
    • Example of sending many messages:
      • /a ben.uq@net:sys:uqbar
      • /m hey there
      • /m how are you?
      • /a (to exit app mode)
  • /hi <name> <string>: send a text message to another node's command line.

    • Example: /hi ben.uq hello world

Example usage

Download and install an app:

/m our@main:app_store:uqbar {"Download": {"package": {"package_name": "<pkg>", "publisher_node": "<node>"}, "install_from": "<node>"}}
/m our@main:app_store:uqbar {"Install": {"package_name": "<pkg>", "publisher_node": "<node>"}}