docs
Plug-and-Play Documentation
Filter by:--toolall0x Swap API@aashari/boilerplate-mcp-server@layerzerolabs/devtools-evm-hardhat@modelcontextprotocol/sdkArbitrum Stylus: Move CompilerClaude Code MCP Server ModeCreditCoin Wormhole NTTGitHub MCP Server (Claude Code CLI)LayerZero Cardano EndpointMCP Discovery Endpoint (.well-known/mcp.json)Ripple xrpl-py DAO InteractionRootStock BTC Bridge (Flyover v2.3)Stylus Rust SDKSui Move CLISui Prover & BuilderTempo Payment Enginexrpl.js
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-stylusmove
module stylus::test_bench {
public entry fun compute_gas_benchmark() {
let mut i = 0;
while (i < 10000) { i = i + 1; };
}
}