docs

Plug-and-Play Documentation

docs.sh — Copy-paste snippets
[ _ ][ 🗗 ][ X ]

Your GitHub repository is your most important DevRel blog. Tested configs, copy-paste ready.

--tool@Arbitrum Stylus: Move Compiler

Deploys Move code on Arbitrum reducing WASM compute costs by 10x. Before: Move devs restricted to Sui/Aptos. After: Full EVM equivalence plus 10x cheaper computation loops using Rust/Move.

install
cargo install --git https://github.com/OffchainLabs/cargo-stylus
move
module stylus::test_bench {
  public entry fun compute_gas_benchmark() {
    let mut i = 0;
    while (i < 10000) { i = i + 1; };
  }
}