[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-sui-walrus-cli":3,"mdc-xihb6t-key":31,"related-org-sui-walrus-cli":2426,"related-repo-sui-walrus-cli":2600},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":22,"topics":26,"repo":27,"sourceUrl":29,"mdContent":30},"walrus-cli","manage Walrus blobs via CLI","Walrus CLI client for storing, reading, and managing blobs from the command line. Use when the user needs to run walrus store, walrus read, walrus blob-status, walrus extend, walrus delete, walrus share, or any other walrus CLI command. Also use for CLI installation, configuration (client_config.yaml), JSON mode for scripting, gas budgets, wallet configuration, and logging. For blob lifecycle management details, see `walrus-blob-lifecycle`. For quilts, see `walrus-quilts`.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"sui","Sui (Mysten Labs)","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fsui.png","MystenLabs",[13,16,19],{"name":14,"slug":8,"type":15},"Sui","tag",{"name":17,"slug":18,"type":15},"CLI","cli",{"name":20,"slug":21,"type":15},"Storage","storage",1,"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002Fwalrus-skills","2026-07-16T06:02:52.586222",null,[],{"repoUrl":23,"stars":22,"forks":22,"topics":28,"description":25},[],"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002Fwalrus-skills\u002Ftree\u002FHEAD\u002Fwalrus-cli","---\nname: walrus-cli\ndescription: >\n  Walrus CLI client for storing, reading, and managing blobs from the command line.\n  Use when the user needs to run walrus store, walrus read, walrus blob-status,\n  walrus extend, walrus delete, walrus share, or any other walrus CLI command.\n  Also use for CLI installation, configuration (client_config.yaml), JSON mode for\n  scripting, gas budgets, wallet configuration, and logging. For blob lifecycle\n  management details, see `walrus-blob-lifecycle`. For quilts, see `walrus-quilts`.\n---\n\n# Walrus CLI\n\n> **Source constraint:** All information in this skill is sourced from the\n> [Walrus client documentation](https:\u002F\u002Fdocs.wal.app\u002Fdocs\u002Fwalrus-client\u002Fwalrus-cli).\n> When extending this skill, only pull from these sources.\n\nThe `walrus` CLI is the primary command-line tool for interacting with Walrus. It supports storing and reading blobs, checking blob status, managing blob lifecycle (extend, delete, burn, share), and working with quilts. All commands support JSON output for scripting.\n\nAll patterns in this skill are derived from:\n- https:\u002F\u002Fdocs.wal.app\u002Fdocs\u002Fwalrus-client\u002Fwalrus-cli\n- https:\u002F\u002Fdocs.wal.app\u002Fdocs\u002Fwalrus-client\u002Fstoring-blobs\n- https:\u002F\u002Fdocs.wal.app\u002Fdocs\u002Fwalrus-client\u002Freading-blobs\n- https:\u002F\u002Fdocs.wal.app\u002Fdocs\u002Fwalrus-client\u002Fjson-mode\n\nIf unsure about any CLI command, fetch the relevant page before answering.\n\n---\n\n## Related skills\n\n| Topic | Skill | Load when |\n|-------|-------|-----------|\n| Blob lifecycle | `walrus-blob-lifecycle` | Extending, deleting, burning, sharing blobs; large uploads |\n| Quilts | `walrus-quilts` | Batching small blobs with store-quilt\u002Fread-quilt |\n| HTTP API | `walrus-http-api` | Using REST endpoints instead of the CLI |\n| TypeScript SDK | `walrus-ts-sdk` | Programmatic access from TypeScript |\n| Encryption | `walrus-data-security` | Encrypting data before storing |\n\n---\n\n## Skill Content\n\n### Installation\n\nInstall with `suiup`:\n\n```sh\ncurl -sSfL https:\u002F\u002Fraw.githubusercontent.com\u002FMystenlabs\u002Fsuiup\u002Fmain\u002Finstall.sh | sh\nsuiup install sui\nsuiup install walrus\n```\n\nUpdate to the latest version:\n\n```sh\nsuiup update walrus\n```\n\nSwitch to a specific network version:\n\n```sh\n# Correct syntax: walrus@\u003Cnetwork>\nsuiup install walrus@mainnet\nsuiup install walrus@testnet\n```\n\nVerify with `walrus --help`. Each subcommand also supports `--help`. If you get `spawn walrus ENOENT` or `command not found`, the binary is not in your PATH. Re-run the `suiup` installer or add `~\u002F.suiup\u002Fbin` to your PATH.\n\n### Configuration\n\nThe CLI reads `client_config.yaml` from the current directory, `$XDG_CONFIG_HOME\u002Fwalrus\u002F`, `~\u002F.config\u002Fwalrus\u002F`, or `~\u002F.walrus\u002F`. Download the latest config:\n\n```sh\ncurl --create-dirs https:\u002F\u002Fdocs.wal.app\u002Fsetup\u002Fclient_config.yaml \\\n  -o ~\u002F.config\u002Fwalrus\u002Fclient_config.yaml\n```\n\nUse `--config \u003CPATH>` to specify a custom config location. Use `--wallet \u003CPATH>` for a non-standard Sui wallet config. Use `--context \u003CNAME>` to switch between multiple contexts in the config.\n\n### Storing blobs\n\n```sh\n# Store a file for 5 epochs\nwalrus store myfile.png --epochs 5\n\n# Store multiple files (glob patterns supported)\nwalrus store *.png --epochs 10\n\n# Store as permanent (cannot be deleted before expiry)\nwalrus store myfile.png --epochs 30 --permanent\n\n# Store as deletable (default)\nwalrus store myfile.png --epochs 10 --deletable\n\n# Store using an upload relay\nwalrus store myfile.png --epochs 5 --upload-relay https:\u002F\u002Frelay.example.com\n```\n\n#### Blob lifetime options\n\n| Option | Description |\n|--------|-------------|\n| `--epochs \u003CN>` | Number of epochs (max 53 = 2 years). Use `--epochs max` for maximum. |\n| `--earliest-expiry-time \u003CTIME>` | RFC 3339 date or relaxed format (for example, `2025-06-20 15:00:00`) |\n| `--end-epoch \u003CN>` | Specific end epoch number |\n\nA blob expires at the beginning of its end epoch. Storing with `--epochs 1` right before an epoch change means near-immediate expiration.\n\n#### Blob permanence\n\n| Option | Behavior |\n|--------|----------|\n| `--deletable` | Owner can delete before expiry (default for new blobs) |\n| `--permanent` | Cannot be deleted before expiry, even by the uploader |\n\n#### Automatic optimizations\n\n- If a permanent blob with the same content and sufficient lifetime exists, the client skips re-upload (override with `--force`).\n- If a suitable storage resource exists in your wallet, it is reused instead of buying a new one.\n- If the blob is already certified but deletable or has insufficient lifetime, the client skips sending encoded data and just collects the certificate.\n\n### Reading blobs\n\n```sh\n# Check blob status by blob ID\nwalrus blob-status --blob-id \u003CBLOB_ID>\n\n# Check blob status by file (re-encodes to derive blob ID)\nwalrus blob-status --file myfile.png\n\n# Read a blob to stdout\nwalrus read \u003CBLOB_ID>\n\n# Read a blob to a file\nwalrus read \u003CBLOB_ID> --out output.dat\n```\n\n#### Consistency checks\n\nStarting with v1.37, the CLI uses a performant consistency check by default. Use `--strict-consistency-check` for the full check or `--skip-consistency-check` if the writer is known and trusted.\n\n### JSON mode\n\nAll commands are available in JSON mode for scripting:\n\n```sh\n# Store via JSON mode\nwalrus json '{\n  \"config\": \"path\u002Fto\u002Fclient_config.yaml\",\n  \"command\": {\n    \"store\": {\n      \"files\": [\"README.md\", \"LICENSE\"],\n      \"epochs\": 100\n    }\n  }\n}'\n\n# Read via JSON mode\nwalrus json '{\n  \"command\": {\n    \"read\": {\n      \"blobId\": \"4BKcDC0Ih5RJ8R0tFMz3MZVNZV8b2goT6_JiEEwNHQo\"\n    }\n  }\n}'\n```\n\nJSON mode uses camelCase instead of kebab-case for option names. It also accepts input from stdin. Output is always JSON-formatted, suitable for piping to `jq`.\n\nUse `--json` with any standard command to get JSON output without full JSON mode:\n\n```sh\nwalrus store myfile.png --epochs 5 --json\n```\n\n### Querying system info\n\n```sh\n# Show current epoch, pricing, and network parameters\nwalrus info\n\n# Show with JSON output\nwalrus info --json\n```\n\n`walrus info` shows the current epoch number, epoch duration, price per storage unit, write fee, and maximum epochs ahead. Use this to verify pricing before large uploads.\n\n### Switching between testnet and mainnet\n\nThe config file supports multiple contexts. Switch with:\n\n```sh\n# Use testnet context for a single command\nwalrus --context testnet store myfile.png --epochs 5\n\n# Use mainnet context\nwalrus --context mainnet blob-status --blob-id \u003CBLOB_ID>\n```\n\nContexts are defined in `client_config.yaml` under the `contexts:` key. Each context specifies `system_object`, `staking_object`, `n_shards`, and `rpc_urls`.\n\n### Contract parameters\n\nThese are the current Walrus contract parameters for each network:\n\n| Parameter | Mainnet | Testnet |\n|-----------|---------|---------|\n| `system_object` | `0x2734a3f967c2dcfb4545a04a72e55432c461e78c1afca993ad642380e35429d6` | `0x6c2547cbf202cdf4e19a069a17dbb2fcc407e4ea1049614550ca1e8bd842e0c4` |\n| `staking_object` | `0x10b9d30c28448939337279d46fa7e1a2b0e33d5a0e13f1096ee412e1ece41e55` | `0x954e63bc1b3b0523f25e7ba0d2b81fdf8fe08cc2eb53e7b73e87a37e5c4fc601` |\n| `n_shards` | 1000 | 1000 |\n\nThese values are also available in the default `client_config.yaml` and via `walrus info --json`.\n\n### Logging\n\n```sh\n# Enable trace-level logging\nRUST_LOG=walrus=trace walrus info\n\n# Default is info level; debug and trace give deeper insight\nRUST_LOG=walrus=debug walrus store myfile.png --epochs 5\n```\n\n### Gas budget\n\nUse `--gas-budget \u003CMIST>` to set the maximum SUI the command can spend. If omitted, the gas budget is estimated automatically.\n\n### Rules\n\n1. **Always specify blob lifetime.** The `--epochs` argument is mandatory for `walrus store`. There is no default.\n2. **All blobs are public.** Encrypt sensitive data before storing. See the `walrus-data-security` skill.\n3. **Use JSON mode for automation.** The `walrus json` command and `--json` flag produce machine-parseable output for CI\u002FCD pipelines and scripts.\n4. **Blob ID is not object ID.** Blob ID identifies content. Sui object ID identifies the on-chain object. Some commands take one, some take the other. Check `--help` for each command.\n5. **Generate shell completions.** Run `walrus completion bash|zsh|fish` and place the output in the appropriate completions directory.\n\n### Common mistakes\n\n- **Storing with `--epochs 1` near an epoch boundary.** The blob expires at the beginning of its end epoch, which could be almost immediately. Use a generous epoch count.\n- **Expecting delete to make data unavailable.** Delete only removes slivers from current and future storage nodes. If another copy of the same blob exists (uploaded by someone else), the data remains accessible. All blobs are public.\n- **Forgetting `--json` in scripts.** Human-readable output is the default. Use `--json` or `walrus json` for parseable output in automation.\n- **Running `walrus` without configuration.** The CLI needs `client_config.yaml`. Download it or specify with `--config`. Without it, you get an error about missing configuration.\n- **Not having SUI\u002FWAL tokens.** Write operations require SUI for gas and WAL for storage. On testnet, request tokens from the Sui faucet (`sui client faucet`) and the WAL faucet. On mainnet, acquire SUI and WAL through exchanges.\n- **`Cannot find gas coin for signer address` error.** The wallet has no SUI. Fund the address with SUI for gas fees.\n- **Using `suiup switch walrus 1.48.1` (wrong syntax).** The correct syntax is `suiup install walrus@mainnet` or `suiup install walrus@testnet`. Version numbers are not used directly.\n- **Confusing blob ID with Sui object ID.** Some commands take `--blob-id` (content hash, URL-safe base64), others take `--blob-obj-id` or `--object-id` (Sui object, `0x...` hex). Check `--help` for the specific command.\n- **Testnet blobs disappearing quickly.** Testnet epoch duration is shorter than mainnet (14 days). If you store with low epochs, blobs expire faster than expected. Use `walrus info` to check current epoch duration.\n",{"data":32,"body":33},{"name":4,"description":6},{"type":34,"children":35},"root",[36,44,71,85,90,130,135,139,146,289,292,298,305,318,397,402,425,430,478,530,536,573,616,645,651,889,896,985,998,1004,1059,1065,1091,1097,1281,1287,1308,1314,1319,1512,1525,1537,1572,1578,1636,1647,1653,1658,1761,1810,1816,1821,1926,1945,1951,2060,2066,2078,2084,2190,2196,2420],{"type":37,"tag":38,"props":39,"children":40},"element","h1",{"id":4},[41],{"type":42,"value":43},"text","Walrus CLI",{"type":37,"tag":45,"props":46,"children":47},"blockquote",{},[48],{"type":37,"tag":49,"props":50,"children":51},"p",{},[52,58,60,69],{"type":37,"tag":53,"props":54,"children":55},"strong",{},[56],{"type":42,"value":57},"Source constraint:",{"type":42,"value":59}," All information in this skill is sourced from the\n",{"type":37,"tag":61,"props":62,"children":66},"a",{"href":63,"rel":64},"https:\u002F\u002Fdocs.wal.app\u002Fdocs\u002Fwalrus-client\u002Fwalrus-cli",[65],"nofollow",[67],{"type":42,"value":68},"Walrus client documentation",{"type":42,"value":70},".\nWhen extending this skill, only pull from these sources.",{"type":37,"tag":49,"props":72,"children":73},{},[74,76,83],{"type":42,"value":75},"The ",{"type":37,"tag":77,"props":78,"children":80},"code",{"className":79},[],[81],{"type":42,"value":82},"walrus",{"type":42,"value":84}," CLI is the primary command-line tool for interacting with Walrus. It supports storing and reading blobs, checking blob status, managing blob lifecycle (extend, delete, burn, share), and working with quilts. All commands support JSON output for scripting.",{"type":37,"tag":49,"props":86,"children":87},{},[88],{"type":42,"value":89},"All patterns in this skill are derived from:",{"type":37,"tag":91,"props":92,"children":93},"ul",{},[94,103,112,121],{"type":37,"tag":95,"props":96,"children":97},"li",{},[98],{"type":37,"tag":61,"props":99,"children":101},{"href":63,"rel":100},[65],[102],{"type":42,"value":63},{"type":37,"tag":95,"props":104,"children":105},{},[106],{"type":37,"tag":61,"props":107,"children":110},{"href":108,"rel":109},"https:\u002F\u002Fdocs.wal.app\u002Fdocs\u002Fwalrus-client\u002Fstoring-blobs",[65],[111],{"type":42,"value":108},{"type":37,"tag":95,"props":113,"children":114},{},[115],{"type":37,"tag":61,"props":116,"children":119},{"href":117,"rel":118},"https:\u002F\u002Fdocs.wal.app\u002Fdocs\u002Fwalrus-client\u002Freading-blobs",[65],[120],{"type":42,"value":117},{"type":37,"tag":95,"props":122,"children":123},{},[124],{"type":37,"tag":61,"props":125,"children":128},{"href":126,"rel":127},"https:\u002F\u002Fdocs.wal.app\u002Fdocs\u002Fwalrus-client\u002Fjson-mode",[65],[129],{"type":42,"value":126},{"type":37,"tag":49,"props":131,"children":132},{},[133],{"type":42,"value":134},"If unsure about any CLI command, fetch the relevant page before answering.",{"type":37,"tag":136,"props":137,"children":138},"hr",{},[],{"type":37,"tag":140,"props":141,"children":143},"h2",{"id":142},"related-skills",[144],{"type":42,"value":145},"Related skills",{"type":37,"tag":147,"props":148,"children":149},"table",{},[150,174],{"type":37,"tag":151,"props":152,"children":153},"thead",{},[154],{"type":37,"tag":155,"props":156,"children":157},"tr",{},[158,164,169],{"type":37,"tag":159,"props":160,"children":161},"th",{},[162],{"type":42,"value":163},"Topic",{"type":37,"tag":159,"props":165,"children":166},{},[167],{"type":42,"value":168},"Skill",{"type":37,"tag":159,"props":170,"children":171},{},[172],{"type":42,"value":173},"Load when",{"type":37,"tag":175,"props":176,"children":177},"tbody",{},[178,201,223,245,267],{"type":37,"tag":155,"props":179,"children":180},{},[181,187,196],{"type":37,"tag":182,"props":183,"children":184},"td",{},[185],{"type":42,"value":186},"Blob lifecycle",{"type":37,"tag":182,"props":188,"children":189},{},[190],{"type":37,"tag":77,"props":191,"children":193},{"className":192},[],[194],{"type":42,"value":195},"walrus-blob-lifecycle",{"type":37,"tag":182,"props":197,"children":198},{},[199],{"type":42,"value":200},"Extending, deleting, burning, sharing blobs; large uploads",{"type":37,"tag":155,"props":202,"children":203},{},[204,209,218],{"type":37,"tag":182,"props":205,"children":206},{},[207],{"type":42,"value":208},"Quilts",{"type":37,"tag":182,"props":210,"children":211},{},[212],{"type":37,"tag":77,"props":213,"children":215},{"className":214},[],[216],{"type":42,"value":217},"walrus-quilts",{"type":37,"tag":182,"props":219,"children":220},{},[221],{"type":42,"value":222},"Batching small blobs with store-quilt\u002Fread-quilt",{"type":37,"tag":155,"props":224,"children":225},{},[226,231,240],{"type":37,"tag":182,"props":227,"children":228},{},[229],{"type":42,"value":230},"HTTP API",{"type":37,"tag":182,"props":232,"children":233},{},[234],{"type":37,"tag":77,"props":235,"children":237},{"className":236},[],[238],{"type":42,"value":239},"walrus-http-api",{"type":37,"tag":182,"props":241,"children":242},{},[243],{"type":42,"value":244},"Using REST endpoints instead of the CLI",{"type":37,"tag":155,"props":246,"children":247},{},[248,253,262],{"type":37,"tag":182,"props":249,"children":250},{},[251],{"type":42,"value":252},"TypeScript SDK",{"type":37,"tag":182,"props":254,"children":255},{},[256],{"type":37,"tag":77,"props":257,"children":259},{"className":258},[],[260],{"type":42,"value":261},"walrus-ts-sdk",{"type":37,"tag":182,"props":263,"children":264},{},[265],{"type":42,"value":266},"Programmatic access from TypeScript",{"type":37,"tag":155,"props":268,"children":269},{},[270,275,284],{"type":37,"tag":182,"props":271,"children":272},{},[273],{"type":42,"value":274},"Encryption",{"type":37,"tag":182,"props":276,"children":277},{},[278],{"type":37,"tag":77,"props":279,"children":281},{"className":280},[],[282],{"type":42,"value":283},"walrus-data-security",{"type":37,"tag":182,"props":285,"children":286},{},[287],{"type":42,"value":288},"Encrypting data before storing",{"type":37,"tag":136,"props":290,"children":291},{},[],{"type":37,"tag":140,"props":293,"children":295},{"id":294},"skill-content",[296],{"type":42,"value":297},"Skill Content",{"type":37,"tag":299,"props":300,"children":302},"h3",{"id":301},"installation",[303],{"type":42,"value":304},"Installation",{"type":37,"tag":49,"props":306,"children":307},{},[308,310,316],{"type":42,"value":309},"Install with ",{"type":37,"tag":77,"props":311,"children":313},{"className":312},[],[314],{"type":42,"value":315},"suiup",{"type":42,"value":317},":",{"type":37,"tag":319,"props":320,"children":325},"pre",{"className":321,"code":322,"language":323,"meta":324,"style":324},"language-sh shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","curl -sSfL https:\u002F\u002Fraw.githubusercontent.com\u002FMystenlabs\u002Fsuiup\u002Fmain\u002Finstall.sh | sh\nsuiup install sui\nsuiup install walrus\n","sh","",[326],{"type":37,"tag":77,"props":327,"children":328},{"__ignoreMap":324},[329,362,380],{"type":37,"tag":330,"props":331,"children":333},"span",{"class":332,"line":22},"line",[334,340,346,351,357],{"type":37,"tag":330,"props":335,"children":337},{"style":336},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[338],{"type":42,"value":339},"curl",{"type":37,"tag":330,"props":341,"children":343},{"style":342},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[344],{"type":42,"value":345}," -sSfL",{"type":37,"tag":330,"props":347,"children":348},{"style":342},[349],{"type":42,"value":350}," https:\u002F\u002Fraw.githubusercontent.com\u002FMystenlabs\u002Fsuiup\u002Fmain\u002Finstall.sh",{"type":37,"tag":330,"props":352,"children":354},{"style":353},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[355],{"type":42,"value":356}," |",{"type":37,"tag":330,"props":358,"children":359},{"style":336},[360],{"type":42,"value":361}," sh\n",{"type":37,"tag":330,"props":363,"children":365},{"class":332,"line":364},2,[366,370,375],{"type":37,"tag":330,"props":367,"children":368},{"style":336},[369],{"type":42,"value":315},{"type":37,"tag":330,"props":371,"children":372},{"style":342},[373],{"type":42,"value":374}," install",{"type":37,"tag":330,"props":376,"children":377},{"style":342},[378],{"type":42,"value":379}," sui\n",{"type":37,"tag":330,"props":381,"children":383},{"class":332,"line":382},3,[384,388,392],{"type":37,"tag":330,"props":385,"children":386},{"style":336},[387],{"type":42,"value":315},{"type":37,"tag":330,"props":389,"children":390},{"style":342},[391],{"type":42,"value":374},{"type":37,"tag":330,"props":393,"children":394},{"style":342},[395],{"type":42,"value":396}," walrus\n",{"type":37,"tag":49,"props":398,"children":399},{},[400],{"type":42,"value":401},"Update to the latest version:",{"type":37,"tag":319,"props":403,"children":405},{"className":321,"code":404,"language":323,"meta":324,"style":324},"suiup update walrus\n",[406],{"type":37,"tag":77,"props":407,"children":408},{"__ignoreMap":324},[409],{"type":37,"tag":330,"props":410,"children":411},{"class":332,"line":22},[412,416,421],{"type":37,"tag":330,"props":413,"children":414},{"style":336},[415],{"type":42,"value":315},{"type":37,"tag":330,"props":417,"children":418},{"style":342},[419],{"type":42,"value":420}," update",{"type":37,"tag":330,"props":422,"children":423},{"style":342},[424],{"type":42,"value":396},{"type":37,"tag":49,"props":426,"children":427},{},[428],{"type":42,"value":429},"Switch to a specific network version:",{"type":37,"tag":319,"props":431,"children":433},{"className":321,"code":432,"language":323,"meta":324,"style":324},"# Correct syntax: walrus@\u003Cnetwork>\nsuiup install walrus@mainnet\nsuiup install walrus@testnet\n",[434],{"type":37,"tag":77,"props":435,"children":436},{"__ignoreMap":324},[437,446,462],{"type":37,"tag":330,"props":438,"children":439},{"class":332,"line":22},[440],{"type":37,"tag":330,"props":441,"children":443},{"style":442},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[444],{"type":42,"value":445},"# Correct syntax: walrus@\u003Cnetwork>\n",{"type":37,"tag":330,"props":447,"children":448},{"class":332,"line":364},[449,453,457],{"type":37,"tag":330,"props":450,"children":451},{"style":336},[452],{"type":42,"value":315},{"type":37,"tag":330,"props":454,"children":455},{"style":342},[456],{"type":42,"value":374},{"type":37,"tag":330,"props":458,"children":459},{"style":342},[460],{"type":42,"value":461}," walrus@mainnet\n",{"type":37,"tag":330,"props":463,"children":464},{"class":332,"line":382},[465,469,473],{"type":37,"tag":330,"props":466,"children":467},{"style":336},[468],{"type":42,"value":315},{"type":37,"tag":330,"props":470,"children":471},{"style":342},[472],{"type":42,"value":374},{"type":37,"tag":330,"props":474,"children":475},{"style":342},[476],{"type":42,"value":477}," walrus@testnet\n",{"type":37,"tag":49,"props":479,"children":480},{},[481,483,489,491,497,499,505,507,513,515,520,522,528],{"type":42,"value":482},"Verify with ",{"type":37,"tag":77,"props":484,"children":486},{"className":485},[],[487],{"type":42,"value":488},"walrus --help",{"type":42,"value":490},". Each subcommand also supports ",{"type":37,"tag":77,"props":492,"children":494},{"className":493},[],[495],{"type":42,"value":496},"--help",{"type":42,"value":498},". If you get ",{"type":37,"tag":77,"props":500,"children":502},{"className":501},[],[503],{"type":42,"value":504},"spawn walrus ENOENT",{"type":42,"value":506}," or ",{"type":37,"tag":77,"props":508,"children":510},{"className":509},[],[511],{"type":42,"value":512},"command not found",{"type":42,"value":514},", the binary is not in your PATH. Re-run the ",{"type":37,"tag":77,"props":516,"children":518},{"className":517},[],[519],{"type":42,"value":315},{"type":42,"value":521}," installer or add ",{"type":37,"tag":77,"props":523,"children":525},{"className":524},[],[526],{"type":42,"value":527},"~\u002F.suiup\u002Fbin",{"type":42,"value":529}," to your PATH.",{"type":37,"tag":299,"props":531,"children":533},{"id":532},"configuration",[534],{"type":42,"value":535},"Configuration",{"type":37,"tag":49,"props":537,"children":538},{},[539,541,547,549,555,557,563,565,571],{"type":42,"value":540},"The CLI reads ",{"type":37,"tag":77,"props":542,"children":544},{"className":543},[],[545],{"type":42,"value":546},"client_config.yaml",{"type":42,"value":548}," from the current directory, ",{"type":37,"tag":77,"props":550,"children":552},{"className":551},[],[553],{"type":42,"value":554},"$XDG_CONFIG_HOME\u002Fwalrus\u002F",{"type":42,"value":556},", ",{"type":37,"tag":77,"props":558,"children":560},{"className":559},[],[561],{"type":42,"value":562},"~\u002F.config\u002Fwalrus\u002F",{"type":42,"value":564},", or ",{"type":37,"tag":77,"props":566,"children":568},{"className":567},[],[569],{"type":42,"value":570},"~\u002F.walrus\u002F",{"type":42,"value":572},". Download the latest config:",{"type":37,"tag":319,"props":574,"children":576},{"className":321,"code":575,"language":323,"meta":324,"style":324},"curl --create-dirs https:\u002F\u002Fdocs.wal.app\u002Fsetup\u002Fclient_config.yaml \\\n  -o ~\u002F.config\u002Fwalrus\u002Fclient_config.yaml\n",[577],{"type":37,"tag":77,"props":578,"children":579},{"__ignoreMap":324},[580,603],{"type":37,"tag":330,"props":581,"children":582},{"class":332,"line":22},[583,587,592,597],{"type":37,"tag":330,"props":584,"children":585},{"style":336},[586],{"type":42,"value":339},{"type":37,"tag":330,"props":588,"children":589},{"style":342},[590],{"type":42,"value":591}," --create-dirs",{"type":37,"tag":330,"props":593,"children":594},{"style":342},[595],{"type":42,"value":596}," https:\u002F\u002Fdocs.wal.app\u002Fsetup\u002Fclient_config.yaml",{"type":37,"tag":330,"props":598,"children":600},{"style":599},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[601],{"type":42,"value":602}," \\\n",{"type":37,"tag":330,"props":604,"children":605},{"class":332,"line":364},[606,611],{"type":37,"tag":330,"props":607,"children":608},{"style":342},[609],{"type":42,"value":610},"  -o",{"type":37,"tag":330,"props":612,"children":613},{"style":342},[614],{"type":42,"value":615}," ~\u002F.config\u002Fwalrus\u002Fclient_config.yaml\n",{"type":37,"tag":49,"props":617,"children":618},{},[619,621,627,629,635,637,643],{"type":42,"value":620},"Use ",{"type":37,"tag":77,"props":622,"children":624},{"className":623},[],[625],{"type":42,"value":626},"--config \u003CPATH>",{"type":42,"value":628}," to specify a custom config location. Use ",{"type":37,"tag":77,"props":630,"children":632},{"className":631},[],[633],{"type":42,"value":634},"--wallet \u003CPATH>",{"type":42,"value":636}," for a non-standard Sui wallet config. Use ",{"type":37,"tag":77,"props":638,"children":640},{"className":639},[],[641],{"type":42,"value":642},"--context \u003CNAME>",{"type":42,"value":644}," to switch between multiple contexts in the config.",{"type":37,"tag":299,"props":646,"children":648},{"id":647},"storing-blobs",[649],{"type":42,"value":650},"Storing blobs",{"type":37,"tag":319,"props":652,"children":654},{"className":321,"code":653,"language":323,"meta":324,"style":324},"# Store a file for 5 epochs\nwalrus store myfile.png --epochs 5\n\n# Store multiple files (glob patterns supported)\nwalrus store *.png --epochs 10\n\n# Store as permanent (cannot be deleted before expiry)\nwalrus store myfile.png --epochs 30 --permanent\n\n# Store as deletable (default)\nwalrus store myfile.png --epochs 10 --deletable\n\n# Store using an upload relay\nwalrus store myfile.png --epochs 5 --upload-relay https:\u002F\u002Frelay.example.com\n",[655],{"type":37,"tag":77,"props":656,"children":657},{"__ignoreMap":324},[658,666,694,703,712,743,751,760,790,798,807,837,845,854],{"type":37,"tag":330,"props":659,"children":660},{"class":332,"line":22},[661],{"type":37,"tag":330,"props":662,"children":663},{"style":442},[664],{"type":42,"value":665},"# Store a file for 5 epochs\n",{"type":37,"tag":330,"props":667,"children":668},{"class":332,"line":364},[669,673,678,683,688],{"type":37,"tag":330,"props":670,"children":671},{"style":336},[672],{"type":42,"value":82},{"type":37,"tag":330,"props":674,"children":675},{"style":342},[676],{"type":42,"value":677}," store",{"type":37,"tag":330,"props":679,"children":680},{"style":342},[681],{"type":42,"value":682}," myfile.png",{"type":37,"tag":330,"props":684,"children":685},{"style":342},[686],{"type":42,"value":687}," --epochs",{"type":37,"tag":330,"props":689,"children":691},{"style":690},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[692],{"type":42,"value":693}," 5\n",{"type":37,"tag":330,"props":695,"children":696},{"class":332,"line":382},[697],{"type":37,"tag":330,"props":698,"children":700},{"emptyLinePlaceholder":699},true,[701],{"type":42,"value":702},"\n",{"type":37,"tag":330,"props":704,"children":706},{"class":332,"line":705},4,[707],{"type":37,"tag":330,"props":708,"children":709},{"style":442},[710],{"type":42,"value":711},"# Store multiple files (glob patterns supported)\n",{"type":37,"tag":330,"props":713,"children":715},{"class":332,"line":714},5,[716,720,724,729,734,738],{"type":37,"tag":330,"props":717,"children":718},{"style":336},[719],{"type":42,"value":82},{"type":37,"tag":330,"props":721,"children":722},{"style":342},[723],{"type":42,"value":677},{"type":37,"tag":330,"props":725,"children":726},{"style":599},[727],{"type":42,"value":728}," *",{"type":37,"tag":330,"props":730,"children":731},{"style":342},[732],{"type":42,"value":733},".png",{"type":37,"tag":330,"props":735,"children":736},{"style":342},[737],{"type":42,"value":687},{"type":37,"tag":330,"props":739,"children":740},{"style":690},[741],{"type":42,"value":742}," 10\n",{"type":37,"tag":330,"props":744,"children":746},{"class":332,"line":745},6,[747],{"type":37,"tag":330,"props":748,"children":749},{"emptyLinePlaceholder":699},[750],{"type":42,"value":702},{"type":37,"tag":330,"props":752,"children":754},{"class":332,"line":753},7,[755],{"type":37,"tag":330,"props":756,"children":757},{"style":442},[758],{"type":42,"value":759},"# Store as permanent (cannot be deleted before expiry)\n",{"type":37,"tag":330,"props":761,"children":763},{"class":332,"line":762},8,[764,768,772,776,780,785],{"type":37,"tag":330,"props":765,"children":766},{"style":336},[767],{"type":42,"value":82},{"type":37,"tag":330,"props":769,"children":770},{"style":342},[771],{"type":42,"value":677},{"type":37,"tag":330,"props":773,"children":774},{"style":342},[775],{"type":42,"value":682},{"type":37,"tag":330,"props":777,"children":778},{"style":342},[779],{"type":42,"value":687},{"type":37,"tag":330,"props":781,"children":782},{"style":690},[783],{"type":42,"value":784}," 30",{"type":37,"tag":330,"props":786,"children":787},{"style":342},[788],{"type":42,"value":789}," --permanent\n",{"type":37,"tag":330,"props":791,"children":793},{"class":332,"line":792},9,[794],{"type":37,"tag":330,"props":795,"children":796},{"emptyLinePlaceholder":699},[797],{"type":42,"value":702},{"type":37,"tag":330,"props":799,"children":801},{"class":332,"line":800},10,[802],{"type":37,"tag":330,"props":803,"children":804},{"style":442},[805],{"type":42,"value":806},"# Store as deletable (default)\n",{"type":37,"tag":330,"props":808,"children":810},{"class":332,"line":809},11,[811,815,819,823,827,832],{"type":37,"tag":330,"props":812,"children":813},{"style":336},[814],{"type":42,"value":82},{"type":37,"tag":330,"props":816,"children":817},{"style":342},[818],{"type":42,"value":677},{"type":37,"tag":330,"props":820,"children":821},{"style":342},[822],{"type":42,"value":682},{"type":37,"tag":330,"props":824,"children":825},{"style":342},[826],{"type":42,"value":687},{"type":37,"tag":330,"props":828,"children":829},{"style":690},[830],{"type":42,"value":831}," 10",{"type":37,"tag":330,"props":833,"children":834},{"style":342},[835],{"type":42,"value":836}," --deletable\n",{"type":37,"tag":330,"props":838,"children":840},{"class":332,"line":839},12,[841],{"type":37,"tag":330,"props":842,"children":843},{"emptyLinePlaceholder":699},[844],{"type":42,"value":702},{"type":37,"tag":330,"props":846,"children":848},{"class":332,"line":847},13,[849],{"type":37,"tag":330,"props":850,"children":851},{"style":442},[852],{"type":42,"value":853},"# Store using an upload relay\n",{"type":37,"tag":330,"props":855,"children":857},{"class":332,"line":856},14,[858,862,866,870,874,879,884],{"type":37,"tag":330,"props":859,"children":860},{"style":336},[861],{"type":42,"value":82},{"type":37,"tag":330,"props":863,"children":864},{"style":342},[865],{"type":42,"value":677},{"type":37,"tag":330,"props":867,"children":868},{"style":342},[869],{"type":42,"value":682},{"type":37,"tag":330,"props":871,"children":872},{"style":342},[873],{"type":42,"value":687},{"type":37,"tag":330,"props":875,"children":876},{"style":690},[877],{"type":42,"value":878}," 5",{"type":37,"tag":330,"props":880,"children":881},{"style":342},[882],{"type":42,"value":883}," --upload-relay",{"type":37,"tag":330,"props":885,"children":886},{"style":342},[887],{"type":42,"value":888}," https:\u002F\u002Frelay.example.com\n",{"type":37,"tag":890,"props":891,"children":893},"h4",{"id":892},"blob-lifetime-options",[894],{"type":42,"value":895},"Blob lifetime options",{"type":37,"tag":147,"props":897,"children":898},{},[899,915],{"type":37,"tag":151,"props":900,"children":901},{},[902],{"type":37,"tag":155,"props":903,"children":904},{},[905,910],{"type":37,"tag":159,"props":906,"children":907},{},[908],{"type":42,"value":909},"Option",{"type":37,"tag":159,"props":911,"children":912},{},[913],{"type":42,"value":914},"Description",{"type":37,"tag":175,"props":916,"children":917},{},[918,943,968],{"type":37,"tag":155,"props":919,"children":920},{},[921,930],{"type":37,"tag":182,"props":922,"children":923},{},[924],{"type":37,"tag":77,"props":925,"children":927},{"className":926},[],[928],{"type":42,"value":929},"--epochs \u003CN>",{"type":37,"tag":182,"props":931,"children":932},{},[933,935,941],{"type":42,"value":934},"Number of epochs (max 53 = 2 years). Use ",{"type":37,"tag":77,"props":936,"children":938},{"className":937},[],[939],{"type":42,"value":940},"--epochs max",{"type":42,"value":942}," for maximum.",{"type":37,"tag":155,"props":944,"children":945},{},[946,955],{"type":37,"tag":182,"props":947,"children":948},{},[949],{"type":37,"tag":77,"props":950,"children":952},{"className":951},[],[953],{"type":42,"value":954},"--earliest-expiry-time \u003CTIME>",{"type":37,"tag":182,"props":956,"children":957},{},[958,960,966],{"type":42,"value":959},"RFC 3339 date or relaxed format (for example, ",{"type":37,"tag":77,"props":961,"children":963},{"className":962},[],[964],{"type":42,"value":965},"2025-06-20 15:00:00",{"type":42,"value":967},")",{"type":37,"tag":155,"props":969,"children":970},{},[971,980],{"type":37,"tag":182,"props":972,"children":973},{},[974],{"type":37,"tag":77,"props":975,"children":977},{"className":976},[],[978],{"type":42,"value":979},"--end-epoch \u003CN>",{"type":37,"tag":182,"props":981,"children":982},{},[983],{"type":42,"value":984},"Specific end epoch number",{"type":37,"tag":49,"props":986,"children":987},{},[988,990,996],{"type":42,"value":989},"A blob expires at the beginning of its end epoch. Storing with ",{"type":37,"tag":77,"props":991,"children":993},{"className":992},[],[994],{"type":42,"value":995},"--epochs 1",{"type":42,"value":997}," right before an epoch change means near-immediate expiration.",{"type":37,"tag":890,"props":999,"children":1001},{"id":1000},"blob-permanence",[1002],{"type":42,"value":1003},"Blob permanence",{"type":37,"tag":147,"props":1005,"children":1006},{},[1007,1022],{"type":37,"tag":151,"props":1008,"children":1009},{},[1010],{"type":37,"tag":155,"props":1011,"children":1012},{},[1013,1017],{"type":37,"tag":159,"props":1014,"children":1015},{},[1016],{"type":42,"value":909},{"type":37,"tag":159,"props":1018,"children":1019},{},[1020],{"type":42,"value":1021},"Behavior",{"type":37,"tag":175,"props":1023,"children":1024},{},[1025,1042],{"type":37,"tag":155,"props":1026,"children":1027},{},[1028,1037],{"type":37,"tag":182,"props":1029,"children":1030},{},[1031],{"type":37,"tag":77,"props":1032,"children":1034},{"className":1033},[],[1035],{"type":42,"value":1036},"--deletable",{"type":37,"tag":182,"props":1038,"children":1039},{},[1040],{"type":42,"value":1041},"Owner can delete before expiry (default for new blobs)",{"type":37,"tag":155,"props":1043,"children":1044},{},[1045,1054],{"type":37,"tag":182,"props":1046,"children":1047},{},[1048],{"type":37,"tag":77,"props":1049,"children":1051},{"className":1050},[],[1052],{"type":42,"value":1053},"--permanent",{"type":37,"tag":182,"props":1055,"children":1056},{},[1057],{"type":42,"value":1058},"Cannot be deleted before expiry, even by the uploader",{"type":37,"tag":890,"props":1060,"children":1062},{"id":1061},"automatic-optimizations",[1063],{"type":42,"value":1064},"Automatic optimizations",{"type":37,"tag":91,"props":1066,"children":1067},{},[1068,1081,1086],{"type":37,"tag":95,"props":1069,"children":1070},{},[1071,1073,1079],{"type":42,"value":1072},"If a permanent blob with the same content and sufficient lifetime exists, the client skips re-upload (override with ",{"type":37,"tag":77,"props":1074,"children":1076},{"className":1075},[],[1077],{"type":42,"value":1078},"--force",{"type":42,"value":1080},").",{"type":37,"tag":95,"props":1082,"children":1083},{},[1084],{"type":42,"value":1085},"If a suitable storage resource exists in your wallet, it is reused instead of buying a new one.",{"type":37,"tag":95,"props":1087,"children":1088},{},[1089],{"type":42,"value":1090},"If the blob is already certified but deletable or has insufficient lifetime, the client skips sending encoded data and just collects the certificate.",{"type":37,"tag":299,"props":1092,"children":1094},{"id":1093},"reading-blobs",[1095],{"type":42,"value":1096},"Reading blobs",{"type":37,"tag":319,"props":1098,"children":1100},{"className":321,"code":1099,"language":323,"meta":324,"style":324},"# Check blob status by blob ID\nwalrus blob-status --blob-id \u003CBLOB_ID>\n\n# Check blob status by file (re-encodes to derive blob ID)\nwalrus blob-status --file myfile.png\n\n# Read a blob to stdout\nwalrus read \u003CBLOB_ID>\n\n# Read a blob to a file\nwalrus read \u003CBLOB_ID> --out output.dat\n",[1101],{"type":37,"tag":77,"props":1102,"children":1103},{"__ignoreMap":324},[1104,1112,1149,1156,1164,1185,1192,1200,1228,1235,1243],{"type":37,"tag":330,"props":1105,"children":1106},{"class":332,"line":22},[1107],{"type":37,"tag":330,"props":1108,"children":1109},{"style":442},[1110],{"type":42,"value":1111},"# Check blob status by blob ID\n",{"type":37,"tag":330,"props":1113,"children":1114},{"class":332,"line":364},[1115,1119,1124,1129,1134,1139,1144],{"type":37,"tag":330,"props":1116,"children":1117},{"style":336},[1118],{"type":42,"value":82},{"type":37,"tag":330,"props":1120,"children":1121},{"style":342},[1122],{"type":42,"value":1123}," blob-status",{"type":37,"tag":330,"props":1125,"children":1126},{"style":342},[1127],{"type":42,"value":1128}," --blob-id",{"type":37,"tag":330,"props":1130,"children":1131},{"style":353},[1132],{"type":42,"value":1133}," \u003C",{"type":37,"tag":330,"props":1135,"children":1136},{"style":342},[1137],{"type":42,"value":1138},"BLOB_I",{"type":37,"tag":330,"props":1140,"children":1141},{"style":599},[1142],{"type":42,"value":1143},"D",{"type":37,"tag":330,"props":1145,"children":1146},{"style":353},[1147],{"type":42,"value":1148},">\n",{"type":37,"tag":330,"props":1150,"children":1151},{"class":332,"line":382},[1152],{"type":37,"tag":330,"props":1153,"children":1154},{"emptyLinePlaceholder":699},[1155],{"type":42,"value":702},{"type":37,"tag":330,"props":1157,"children":1158},{"class":332,"line":705},[1159],{"type":37,"tag":330,"props":1160,"children":1161},{"style":442},[1162],{"type":42,"value":1163},"# Check blob status by file (re-encodes to derive blob ID)\n",{"type":37,"tag":330,"props":1165,"children":1166},{"class":332,"line":714},[1167,1171,1175,1180],{"type":37,"tag":330,"props":1168,"children":1169},{"style":336},[1170],{"type":42,"value":82},{"type":37,"tag":330,"props":1172,"children":1173},{"style":342},[1174],{"type":42,"value":1123},{"type":37,"tag":330,"props":1176,"children":1177},{"style":342},[1178],{"type":42,"value":1179}," --file",{"type":37,"tag":330,"props":1181,"children":1182},{"style":342},[1183],{"type":42,"value":1184}," myfile.png\n",{"type":37,"tag":330,"props":1186,"children":1187},{"class":332,"line":745},[1188],{"type":37,"tag":330,"props":1189,"children":1190},{"emptyLinePlaceholder":699},[1191],{"type":42,"value":702},{"type":37,"tag":330,"props":1193,"children":1194},{"class":332,"line":753},[1195],{"type":37,"tag":330,"props":1196,"children":1197},{"style":442},[1198],{"type":42,"value":1199},"# Read a blob to stdout\n",{"type":37,"tag":330,"props":1201,"children":1202},{"class":332,"line":762},[1203,1207,1212,1216,1220,1224],{"type":37,"tag":330,"props":1204,"children":1205},{"style":336},[1206],{"type":42,"value":82},{"type":37,"tag":330,"props":1208,"children":1209},{"style":342},[1210],{"type":42,"value":1211}," read",{"type":37,"tag":330,"props":1213,"children":1214},{"style":353},[1215],{"type":42,"value":1133},{"type":37,"tag":330,"props":1217,"children":1218},{"style":342},[1219],{"type":42,"value":1138},{"type":37,"tag":330,"props":1221,"children":1222},{"style":599},[1223],{"type":42,"value":1143},{"type":37,"tag":330,"props":1225,"children":1226},{"style":353},[1227],{"type":42,"value":1148},{"type":37,"tag":330,"props":1229,"children":1230},{"class":332,"line":792},[1231],{"type":37,"tag":330,"props":1232,"children":1233},{"emptyLinePlaceholder":699},[1234],{"type":42,"value":702},{"type":37,"tag":330,"props":1236,"children":1237},{"class":332,"line":800},[1238],{"type":37,"tag":330,"props":1239,"children":1240},{"style":442},[1241],{"type":42,"value":1242},"# Read a blob to a file\n",{"type":37,"tag":330,"props":1244,"children":1245},{"class":332,"line":809},[1246,1250,1254,1258,1262,1266,1271,1276],{"type":37,"tag":330,"props":1247,"children":1248},{"style":336},[1249],{"type":42,"value":82},{"type":37,"tag":330,"props":1251,"children":1252},{"style":342},[1253],{"type":42,"value":1211},{"type":37,"tag":330,"props":1255,"children":1256},{"style":353},[1257],{"type":42,"value":1133},{"type":37,"tag":330,"props":1259,"children":1260},{"style":342},[1261],{"type":42,"value":1138},{"type":37,"tag":330,"props":1263,"children":1264},{"style":599},[1265],{"type":42,"value":1143},{"type":37,"tag":330,"props":1267,"children":1268},{"style":353},[1269],{"type":42,"value":1270},">",{"type":37,"tag":330,"props":1272,"children":1273},{"style":342},[1274],{"type":42,"value":1275}," --out",{"type":37,"tag":330,"props":1277,"children":1278},{"style":342},[1279],{"type":42,"value":1280}," output.dat\n",{"type":37,"tag":890,"props":1282,"children":1284},{"id":1283},"consistency-checks",[1285],{"type":42,"value":1286},"Consistency checks",{"type":37,"tag":49,"props":1288,"children":1289},{},[1290,1292,1298,1300,1306],{"type":42,"value":1291},"Starting with v1.37, the CLI uses a performant consistency check by default. Use ",{"type":37,"tag":77,"props":1293,"children":1295},{"className":1294},[],[1296],{"type":42,"value":1297},"--strict-consistency-check",{"type":42,"value":1299}," for the full check or ",{"type":37,"tag":77,"props":1301,"children":1303},{"className":1302},[],[1304],{"type":42,"value":1305},"--skip-consistency-check",{"type":42,"value":1307}," if the writer is known and trusted.",{"type":37,"tag":299,"props":1309,"children":1311},{"id":1310},"json-mode",[1312],{"type":42,"value":1313},"JSON mode",{"type":37,"tag":49,"props":1315,"children":1316},{},[1317],{"type":42,"value":1318},"All commands are available in JSON mode for scripting:",{"type":37,"tag":319,"props":1320,"children":1322},{"className":321,"code":1321,"language":323,"meta":324,"style":324},"# Store via JSON mode\nwalrus json '{\n  \"config\": \"path\u002Fto\u002Fclient_config.yaml\",\n  \"command\": {\n    \"store\": {\n      \"files\": [\"README.md\", \"LICENSE\"],\n      \"epochs\": 100\n    }\n  }\n}'\n\n# Read via JSON mode\nwalrus json '{\n  \"command\": {\n    \"read\": {\n      \"blobId\": \"4BKcDC0Ih5RJ8R0tFMz3MZVNZV8b2goT6_JiEEwNHQo\"\n    }\n  }\n}'\n",[1323],{"type":37,"tag":77,"props":1324,"children":1325},{"__ignoreMap":324},[1326,1334,1356,1364,1372,1380,1388,1396,1404,1412,1425,1432,1440,1459,1466,1475,1484,1492,1500],{"type":37,"tag":330,"props":1327,"children":1328},{"class":332,"line":22},[1329],{"type":37,"tag":330,"props":1330,"children":1331},{"style":442},[1332],{"type":42,"value":1333},"# Store via JSON mode\n",{"type":37,"tag":330,"props":1335,"children":1336},{"class":332,"line":364},[1337,1341,1346,1351],{"type":37,"tag":330,"props":1338,"children":1339},{"style":336},[1340],{"type":42,"value":82},{"type":37,"tag":330,"props":1342,"children":1343},{"style":342},[1344],{"type":42,"value":1345}," json",{"type":37,"tag":330,"props":1347,"children":1348},{"style":353},[1349],{"type":42,"value":1350}," '",{"type":37,"tag":330,"props":1352,"children":1353},{"style":342},[1354],{"type":42,"value":1355},"{\n",{"type":37,"tag":330,"props":1357,"children":1358},{"class":332,"line":382},[1359],{"type":37,"tag":330,"props":1360,"children":1361},{"style":342},[1362],{"type":42,"value":1363},"  \"config\": \"path\u002Fto\u002Fclient_config.yaml\",\n",{"type":37,"tag":330,"props":1365,"children":1366},{"class":332,"line":705},[1367],{"type":37,"tag":330,"props":1368,"children":1369},{"style":342},[1370],{"type":42,"value":1371},"  \"command\": {\n",{"type":37,"tag":330,"props":1373,"children":1374},{"class":332,"line":714},[1375],{"type":37,"tag":330,"props":1376,"children":1377},{"style":342},[1378],{"type":42,"value":1379},"    \"store\": {\n",{"type":37,"tag":330,"props":1381,"children":1382},{"class":332,"line":745},[1383],{"type":37,"tag":330,"props":1384,"children":1385},{"style":342},[1386],{"type":42,"value":1387},"      \"files\": [\"README.md\", \"LICENSE\"],\n",{"type":37,"tag":330,"props":1389,"children":1390},{"class":332,"line":753},[1391],{"type":37,"tag":330,"props":1392,"children":1393},{"style":342},[1394],{"type":42,"value":1395},"      \"epochs\": 100\n",{"type":37,"tag":330,"props":1397,"children":1398},{"class":332,"line":762},[1399],{"type":37,"tag":330,"props":1400,"children":1401},{"style":342},[1402],{"type":42,"value":1403},"    }\n",{"type":37,"tag":330,"props":1405,"children":1406},{"class":332,"line":792},[1407],{"type":37,"tag":330,"props":1408,"children":1409},{"style":342},[1410],{"type":42,"value":1411},"  }\n",{"type":37,"tag":330,"props":1413,"children":1414},{"class":332,"line":800},[1415,1420],{"type":37,"tag":330,"props":1416,"children":1417},{"style":342},[1418],{"type":42,"value":1419},"}",{"type":37,"tag":330,"props":1421,"children":1422},{"style":353},[1423],{"type":42,"value":1424},"'\n",{"type":37,"tag":330,"props":1426,"children":1427},{"class":332,"line":809},[1428],{"type":37,"tag":330,"props":1429,"children":1430},{"emptyLinePlaceholder":699},[1431],{"type":42,"value":702},{"type":37,"tag":330,"props":1433,"children":1434},{"class":332,"line":839},[1435],{"type":37,"tag":330,"props":1436,"children":1437},{"style":442},[1438],{"type":42,"value":1439},"# Read via JSON mode\n",{"type":37,"tag":330,"props":1441,"children":1442},{"class":332,"line":847},[1443,1447,1451,1455],{"type":37,"tag":330,"props":1444,"children":1445},{"style":336},[1446],{"type":42,"value":82},{"type":37,"tag":330,"props":1448,"children":1449},{"style":342},[1450],{"type":42,"value":1345},{"type":37,"tag":330,"props":1452,"children":1453},{"style":353},[1454],{"type":42,"value":1350},{"type":37,"tag":330,"props":1456,"children":1457},{"style":342},[1458],{"type":42,"value":1355},{"type":37,"tag":330,"props":1460,"children":1461},{"class":332,"line":856},[1462],{"type":37,"tag":330,"props":1463,"children":1464},{"style":342},[1465],{"type":42,"value":1371},{"type":37,"tag":330,"props":1467,"children":1469},{"class":332,"line":1468},15,[1470],{"type":37,"tag":330,"props":1471,"children":1472},{"style":342},[1473],{"type":42,"value":1474},"    \"read\": {\n",{"type":37,"tag":330,"props":1476,"children":1478},{"class":332,"line":1477},16,[1479],{"type":37,"tag":330,"props":1480,"children":1481},{"style":342},[1482],{"type":42,"value":1483},"      \"blobId\": \"4BKcDC0Ih5RJ8R0tFMz3MZVNZV8b2goT6_JiEEwNHQo\"\n",{"type":37,"tag":330,"props":1485,"children":1487},{"class":332,"line":1486},17,[1488],{"type":37,"tag":330,"props":1489,"children":1490},{"style":342},[1491],{"type":42,"value":1403},{"type":37,"tag":330,"props":1493,"children":1495},{"class":332,"line":1494},18,[1496],{"type":37,"tag":330,"props":1497,"children":1498},{"style":342},[1499],{"type":42,"value":1411},{"type":37,"tag":330,"props":1501,"children":1503},{"class":332,"line":1502},19,[1504,1508],{"type":37,"tag":330,"props":1505,"children":1506},{"style":342},[1507],{"type":42,"value":1419},{"type":37,"tag":330,"props":1509,"children":1510},{"style":353},[1511],{"type":42,"value":1424},{"type":37,"tag":49,"props":1513,"children":1514},{},[1515,1517,1523],{"type":42,"value":1516},"JSON mode uses camelCase instead of kebab-case for option names. It also accepts input from stdin. Output is always JSON-formatted, suitable for piping to ",{"type":37,"tag":77,"props":1518,"children":1520},{"className":1519},[],[1521],{"type":42,"value":1522},"jq",{"type":42,"value":1524},".",{"type":37,"tag":49,"props":1526,"children":1527},{},[1528,1529,1535],{"type":42,"value":620},{"type":37,"tag":77,"props":1530,"children":1532},{"className":1531},[],[1533],{"type":42,"value":1534},"--json",{"type":42,"value":1536}," with any standard command to get JSON output without full JSON mode:",{"type":37,"tag":319,"props":1538,"children":1540},{"className":321,"code":1539,"language":323,"meta":324,"style":324},"walrus store myfile.png --epochs 5 --json\n",[1541],{"type":37,"tag":77,"props":1542,"children":1543},{"__ignoreMap":324},[1544],{"type":37,"tag":330,"props":1545,"children":1546},{"class":332,"line":22},[1547,1551,1555,1559,1563,1567],{"type":37,"tag":330,"props":1548,"children":1549},{"style":336},[1550],{"type":42,"value":82},{"type":37,"tag":330,"props":1552,"children":1553},{"style":342},[1554],{"type":42,"value":677},{"type":37,"tag":330,"props":1556,"children":1557},{"style":342},[1558],{"type":42,"value":682},{"type":37,"tag":330,"props":1560,"children":1561},{"style":342},[1562],{"type":42,"value":687},{"type":37,"tag":330,"props":1564,"children":1565},{"style":690},[1566],{"type":42,"value":878},{"type":37,"tag":330,"props":1568,"children":1569},{"style":342},[1570],{"type":42,"value":1571}," --json\n",{"type":37,"tag":299,"props":1573,"children":1575},{"id":1574},"querying-system-info",[1576],{"type":42,"value":1577},"Querying system info",{"type":37,"tag":319,"props":1579,"children":1581},{"className":321,"code":1580,"language":323,"meta":324,"style":324},"# Show current epoch, pricing, and network parameters\nwalrus info\n\n# Show with JSON output\nwalrus info --json\n",[1582],{"type":37,"tag":77,"props":1583,"children":1584},{"__ignoreMap":324},[1585,1593,1605,1612,1620],{"type":37,"tag":330,"props":1586,"children":1587},{"class":332,"line":22},[1588],{"type":37,"tag":330,"props":1589,"children":1590},{"style":442},[1591],{"type":42,"value":1592},"# Show current epoch, pricing, and network parameters\n",{"type":37,"tag":330,"props":1594,"children":1595},{"class":332,"line":364},[1596,1600],{"type":37,"tag":330,"props":1597,"children":1598},{"style":336},[1599],{"type":42,"value":82},{"type":37,"tag":330,"props":1601,"children":1602},{"style":342},[1603],{"type":42,"value":1604}," info\n",{"type":37,"tag":330,"props":1606,"children":1607},{"class":332,"line":382},[1608],{"type":37,"tag":330,"props":1609,"children":1610},{"emptyLinePlaceholder":699},[1611],{"type":42,"value":702},{"type":37,"tag":330,"props":1613,"children":1614},{"class":332,"line":705},[1615],{"type":37,"tag":330,"props":1616,"children":1617},{"style":442},[1618],{"type":42,"value":1619},"# Show with JSON output\n",{"type":37,"tag":330,"props":1621,"children":1622},{"class":332,"line":714},[1623,1627,1632],{"type":37,"tag":330,"props":1624,"children":1625},{"style":336},[1626],{"type":42,"value":82},{"type":37,"tag":330,"props":1628,"children":1629},{"style":342},[1630],{"type":42,"value":1631}," info",{"type":37,"tag":330,"props":1633,"children":1634},{"style":342},[1635],{"type":42,"value":1571},{"type":37,"tag":49,"props":1637,"children":1638},{},[1639,1645],{"type":37,"tag":77,"props":1640,"children":1642},{"className":1641},[],[1643],{"type":42,"value":1644},"walrus info",{"type":42,"value":1646}," shows the current epoch number, epoch duration, price per storage unit, write fee, and maximum epochs ahead. Use this to verify pricing before large uploads.",{"type":37,"tag":299,"props":1648,"children":1650},{"id":1649},"switching-between-testnet-and-mainnet",[1651],{"type":42,"value":1652},"Switching between testnet and mainnet",{"type":37,"tag":49,"props":1654,"children":1655},{},[1656],{"type":42,"value":1657},"The config file supports multiple contexts. Switch with:",{"type":37,"tag":319,"props":1659,"children":1661},{"className":321,"code":1660,"language":323,"meta":324,"style":324},"# Use testnet context for a single command\nwalrus --context testnet store myfile.png --epochs 5\n\n# Use mainnet context\nwalrus --context mainnet blob-status --blob-id \u003CBLOB_ID>\n",[1662],{"type":37,"tag":77,"props":1663,"children":1664},{"__ignoreMap":324},[1665,1673,1706,1713,1721],{"type":37,"tag":330,"props":1666,"children":1667},{"class":332,"line":22},[1668],{"type":37,"tag":330,"props":1669,"children":1670},{"style":442},[1671],{"type":42,"value":1672},"# Use testnet context for a single command\n",{"type":37,"tag":330,"props":1674,"children":1675},{"class":332,"line":364},[1676,1680,1685,1690,1694,1698,1702],{"type":37,"tag":330,"props":1677,"children":1678},{"style":336},[1679],{"type":42,"value":82},{"type":37,"tag":330,"props":1681,"children":1682},{"style":342},[1683],{"type":42,"value":1684}," --context",{"type":37,"tag":330,"props":1686,"children":1687},{"style":342},[1688],{"type":42,"value":1689}," testnet",{"type":37,"tag":330,"props":1691,"children":1692},{"style":342},[1693],{"type":42,"value":677},{"type":37,"tag":330,"props":1695,"children":1696},{"style":342},[1697],{"type":42,"value":682},{"type":37,"tag":330,"props":1699,"children":1700},{"style":342},[1701],{"type":42,"value":687},{"type":37,"tag":330,"props":1703,"children":1704},{"style":690},[1705],{"type":42,"value":693},{"type":37,"tag":330,"props":1707,"children":1708},{"class":332,"line":382},[1709],{"type":37,"tag":330,"props":1710,"children":1711},{"emptyLinePlaceholder":699},[1712],{"type":42,"value":702},{"type":37,"tag":330,"props":1714,"children":1715},{"class":332,"line":705},[1716],{"type":37,"tag":330,"props":1717,"children":1718},{"style":442},[1719],{"type":42,"value":1720},"# Use mainnet context\n",{"type":37,"tag":330,"props":1722,"children":1723},{"class":332,"line":714},[1724,1728,1732,1737,1741,1745,1749,1753,1757],{"type":37,"tag":330,"props":1725,"children":1726},{"style":336},[1727],{"type":42,"value":82},{"type":37,"tag":330,"props":1729,"children":1730},{"style":342},[1731],{"type":42,"value":1684},{"type":37,"tag":330,"props":1733,"children":1734},{"style":342},[1735],{"type":42,"value":1736}," mainnet",{"type":37,"tag":330,"props":1738,"children":1739},{"style":342},[1740],{"type":42,"value":1123},{"type":37,"tag":330,"props":1742,"children":1743},{"style":342},[1744],{"type":42,"value":1128},{"type":37,"tag":330,"props":1746,"children":1747},{"style":353},[1748],{"type":42,"value":1133},{"type":37,"tag":330,"props":1750,"children":1751},{"style":342},[1752],{"type":42,"value":1138},{"type":37,"tag":330,"props":1754,"children":1755},{"style":599},[1756],{"type":42,"value":1143},{"type":37,"tag":330,"props":1758,"children":1759},{"style":353},[1760],{"type":42,"value":1148},{"type":37,"tag":49,"props":1762,"children":1763},{},[1764,1766,1771,1773,1779,1781,1787,1788,1794,1795,1801,1803,1809],{"type":42,"value":1765},"Contexts are defined in ",{"type":37,"tag":77,"props":1767,"children":1769},{"className":1768},[],[1770],{"type":42,"value":546},{"type":42,"value":1772}," under the ",{"type":37,"tag":77,"props":1774,"children":1776},{"className":1775},[],[1777],{"type":42,"value":1778},"contexts:",{"type":42,"value":1780}," key. Each context specifies ",{"type":37,"tag":77,"props":1782,"children":1784},{"className":1783},[],[1785],{"type":42,"value":1786},"system_object",{"type":42,"value":556},{"type":37,"tag":77,"props":1789,"children":1791},{"className":1790},[],[1792],{"type":42,"value":1793},"staking_object",{"type":42,"value":556},{"type":37,"tag":77,"props":1796,"children":1798},{"className":1797},[],[1799],{"type":42,"value":1800},"n_shards",{"type":42,"value":1802},", and ",{"type":37,"tag":77,"props":1804,"children":1806},{"className":1805},[],[1807],{"type":42,"value":1808},"rpc_urls",{"type":42,"value":1524},{"type":37,"tag":299,"props":1811,"children":1813},{"id":1812},"contract-parameters",[1814],{"type":42,"value":1815},"Contract parameters",{"type":37,"tag":49,"props":1817,"children":1818},{},[1819],{"type":42,"value":1820},"These are the current Walrus contract parameters for each network:",{"type":37,"tag":147,"props":1822,"children":1823},{},[1824,1845],{"type":37,"tag":151,"props":1825,"children":1826},{},[1827],{"type":37,"tag":155,"props":1828,"children":1829},{},[1830,1835,1840],{"type":37,"tag":159,"props":1831,"children":1832},{},[1833],{"type":42,"value":1834},"Parameter",{"type":37,"tag":159,"props":1836,"children":1837},{},[1838],{"type":42,"value":1839},"Mainnet",{"type":37,"tag":159,"props":1841,"children":1842},{},[1843],{"type":42,"value":1844},"Testnet",{"type":37,"tag":175,"props":1846,"children":1847},{},[1848,1877,1906],{"type":37,"tag":155,"props":1849,"children":1850},{},[1851,1859,1868],{"type":37,"tag":182,"props":1852,"children":1853},{},[1854],{"type":37,"tag":77,"props":1855,"children":1857},{"className":1856},[],[1858],{"type":42,"value":1786},{"type":37,"tag":182,"props":1860,"children":1861},{},[1862],{"type":37,"tag":77,"props":1863,"children":1865},{"className":1864},[],[1866],{"type":42,"value":1867},"0x2734a3f967c2dcfb4545a04a72e55432c461e78c1afca993ad642380e35429d6",{"type":37,"tag":182,"props":1869,"children":1870},{},[1871],{"type":37,"tag":77,"props":1872,"children":1874},{"className":1873},[],[1875],{"type":42,"value":1876},"0x6c2547cbf202cdf4e19a069a17dbb2fcc407e4ea1049614550ca1e8bd842e0c4",{"type":37,"tag":155,"props":1878,"children":1879},{},[1880,1888,1897],{"type":37,"tag":182,"props":1881,"children":1882},{},[1883],{"type":37,"tag":77,"props":1884,"children":1886},{"className":1885},[],[1887],{"type":42,"value":1793},{"type":37,"tag":182,"props":1889,"children":1890},{},[1891],{"type":37,"tag":77,"props":1892,"children":1894},{"className":1893},[],[1895],{"type":42,"value":1896},"0x10b9d30c28448939337279d46fa7e1a2b0e33d5a0e13f1096ee412e1ece41e55",{"type":37,"tag":182,"props":1898,"children":1899},{},[1900],{"type":37,"tag":77,"props":1901,"children":1903},{"className":1902},[],[1904],{"type":42,"value":1905},"0x954e63bc1b3b0523f25e7ba0d2b81fdf8fe08cc2eb53e7b73e87a37e5c4fc601",{"type":37,"tag":155,"props":1907,"children":1908},{},[1909,1917,1922],{"type":37,"tag":182,"props":1910,"children":1911},{},[1912],{"type":37,"tag":77,"props":1913,"children":1915},{"className":1914},[],[1916],{"type":42,"value":1800},{"type":37,"tag":182,"props":1918,"children":1919},{},[1920],{"type":42,"value":1921},"1000",{"type":37,"tag":182,"props":1923,"children":1924},{},[1925],{"type":42,"value":1921},{"type":37,"tag":49,"props":1927,"children":1928},{},[1929,1931,1936,1938,1944],{"type":42,"value":1930},"These values are also available in the default ",{"type":37,"tag":77,"props":1932,"children":1934},{"className":1933},[],[1935],{"type":42,"value":546},{"type":42,"value":1937}," and via ",{"type":37,"tag":77,"props":1939,"children":1941},{"className":1940},[],[1942],{"type":42,"value":1943},"walrus info --json",{"type":42,"value":1524},{"type":37,"tag":299,"props":1946,"children":1948},{"id":1947},"logging",[1949],{"type":42,"value":1950},"Logging",{"type":37,"tag":319,"props":1952,"children":1954},{"className":321,"code":1953,"language":323,"meta":324,"style":324},"# Enable trace-level logging\nRUST_LOG=walrus=trace walrus info\n\n# Default is info level; debug and trace give deeper insight\nRUST_LOG=walrus=debug walrus store myfile.png --epochs 5\n",[1955],{"type":37,"tag":77,"props":1956,"children":1957},{"__ignoreMap":324},[1958,1966,2001,2008,2016],{"type":37,"tag":330,"props":1959,"children":1960},{"class":332,"line":22},[1961],{"type":37,"tag":330,"props":1962,"children":1963},{"style":442},[1964],{"type":42,"value":1965},"# Enable trace-level logging\n",{"type":37,"tag":330,"props":1967,"children":1968},{"class":332,"line":364},[1969,1974,1979,1983,1987,1992,1997],{"type":37,"tag":330,"props":1970,"children":1971},{"style":599},[1972],{"type":42,"value":1973},"RUST_LOG",{"type":37,"tag":330,"props":1975,"children":1976},{"style":353},[1977],{"type":42,"value":1978},"=",{"type":37,"tag":330,"props":1980,"children":1981},{"style":599},[1982],{"type":42,"value":82},{"type":37,"tag":330,"props":1984,"children":1985},{"style":353},[1986],{"type":42,"value":1978},{"type":37,"tag":330,"props":1988,"children":1989},{"style":342},[1990],{"type":42,"value":1991},"trace",{"type":37,"tag":330,"props":1993,"children":1994},{"style":336},[1995],{"type":42,"value":1996}," walrus",{"type":37,"tag":330,"props":1998,"children":1999},{"style":342},[2000],{"type":42,"value":1604},{"type":37,"tag":330,"props":2002,"children":2003},{"class":332,"line":382},[2004],{"type":37,"tag":330,"props":2005,"children":2006},{"emptyLinePlaceholder":699},[2007],{"type":42,"value":702},{"type":37,"tag":330,"props":2009,"children":2010},{"class":332,"line":705},[2011],{"type":37,"tag":330,"props":2012,"children":2013},{"style":442},[2014],{"type":42,"value":2015},"# Default is info level; debug and trace give deeper insight\n",{"type":37,"tag":330,"props":2017,"children":2018},{"class":332,"line":714},[2019,2023,2027,2031,2035,2040,2044,2048,2052,2056],{"type":37,"tag":330,"props":2020,"children":2021},{"style":599},[2022],{"type":42,"value":1973},{"type":37,"tag":330,"props":2024,"children":2025},{"style":353},[2026],{"type":42,"value":1978},{"type":37,"tag":330,"props":2028,"children":2029},{"style":599},[2030],{"type":42,"value":82},{"type":37,"tag":330,"props":2032,"children":2033},{"style":353},[2034],{"type":42,"value":1978},{"type":37,"tag":330,"props":2036,"children":2037},{"style":342},[2038],{"type":42,"value":2039},"debug",{"type":37,"tag":330,"props":2041,"children":2042},{"style":336},[2043],{"type":42,"value":1996},{"type":37,"tag":330,"props":2045,"children":2046},{"style":342},[2047],{"type":42,"value":677},{"type":37,"tag":330,"props":2049,"children":2050},{"style":342},[2051],{"type":42,"value":682},{"type":37,"tag":330,"props":2053,"children":2054},{"style":342},[2055],{"type":42,"value":687},{"type":37,"tag":330,"props":2057,"children":2058},{"style":690},[2059],{"type":42,"value":693},{"type":37,"tag":299,"props":2061,"children":2063},{"id":2062},"gas-budget",[2064],{"type":42,"value":2065},"Gas budget",{"type":37,"tag":49,"props":2067,"children":2068},{},[2069,2070,2076],{"type":42,"value":620},{"type":37,"tag":77,"props":2071,"children":2073},{"className":2072},[],[2074],{"type":42,"value":2075},"--gas-budget \u003CMIST>",{"type":42,"value":2077}," to set the maximum SUI the command can spend. If omitted, the gas budget is estimated automatically.",{"type":37,"tag":299,"props":2079,"children":2081},{"id":2080},"rules",[2082],{"type":42,"value":2083},"Rules",{"type":37,"tag":2085,"props":2086,"children":2087},"ol",{},[2088,2114,2131,2155,2172],{"type":37,"tag":95,"props":2089,"children":2090},{},[2091,2096,2098,2104,2106,2112],{"type":37,"tag":53,"props":2092,"children":2093},{},[2094],{"type":42,"value":2095},"Always specify blob lifetime.",{"type":42,"value":2097}," The ",{"type":37,"tag":77,"props":2099,"children":2101},{"className":2100},[],[2102],{"type":42,"value":2103},"--epochs",{"type":42,"value":2105}," argument is mandatory for ",{"type":37,"tag":77,"props":2107,"children":2109},{"className":2108},[],[2110],{"type":42,"value":2111},"walrus store",{"type":42,"value":2113},". There is no default.",{"type":37,"tag":95,"props":2115,"children":2116},{},[2117,2122,2124,2129],{"type":37,"tag":53,"props":2118,"children":2119},{},[2120],{"type":42,"value":2121},"All blobs are public.",{"type":42,"value":2123}," Encrypt sensitive data before storing. See the ",{"type":37,"tag":77,"props":2125,"children":2127},{"className":2126},[],[2128],{"type":42,"value":283},{"type":42,"value":2130}," skill.",{"type":37,"tag":95,"props":2132,"children":2133},{},[2134,2139,2140,2146,2148,2153],{"type":37,"tag":53,"props":2135,"children":2136},{},[2137],{"type":42,"value":2138},"Use JSON mode for automation.",{"type":42,"value":2097},{"type":37,"tag":77,"props":2141,"children":2143},{"className":2142},[],[2144],{"type":42,"value":2145},"walrus json",{"type":42,"value":2147}," command and ",{"type":37,"tag":77,"props":2149,"children":2151},{"className":2150},[],[2152],{"type":42,"value":1534},{"type":42,"value":2154}," flag produce machine-parseable output for CI\u002FCD pipelines and scripts.",{"type":37,"tag":95,"props":2156,"children":2157},{},[2158,2163,2165,2170],{"type":37,"tag":53,"props":2159,"children":2160},{},[2161],{"type":42,"value":2162},"Blob ID is not object ID.",{"type":42,"value":2164}," Blob ID identifies content. Sui object ID identifies the on-chain object. Some commands take one, some take the other. Check ",{"type":37,"tag":77,"props":2166,"children":2168},{"className":2167},[],[2169],{"type":42,"value":496},{"type":42,"value":2171}," for each command.",{"type":37,"tag":95,"props":2173,"children":2174},{},[2175,2180,2182,2188],{"type":37,"tag":53,"props":2176,"children":2177},{},[2178],{"type":42,"value":2179},"Generate shell completions.",{"type":42,"value":2181}," Run ",{"type":37,"tag":77,"props":2183,"children":2185},{"className":2184},[],[2186],{"type":42,"value":2187},"walrus completion bash|zsh|fish",{"type":42,"value":2189}," and place the output in the appropriate completions directory.",{"type":37,"tag":299,"props":2191,"children":2193},{"id":2192},"common-mistakes",[2194],{"type":42,"value":2195},"Common mistakes",{"type":37,"tag":91,"props":2197,"children":2198},{},[2199,2216,2226,2256,2288,2306,2322,2355,2403],{"type":37,"tag":95,"props":2200,"children":2201},{},[2202,2214],{"type":37,"tag":53,"props":2203,"children":2204},{},[2205,2207,2212],{"type":42,"value":2206},"Storing with ",{"type":37,"tag":77,"props":2208,"children":2210},{"className":2209},[],[2211],{"type":42,"value":995},{"type":42,"value":2213}," near an epoch boundary.",{"type":42,"value":2215}," The blob expires at the beginning of its end epoch, which could be almost immediately. Use a generous epoch count.",{"type":37,"tag":95,"props":2217,"children":2218},{},[2219,2224],{"type":37,"tag":53,"props":2220,"children":2221},{},[2222],{"type":42,"value":2223},"Expecting delete to make data unavailable.",{"type":42,"value":2225}," Delete only removes slivers from current and future storage nodes. If another copy of the same blob exists (uploaded by someone else), the data remains accessible. All blobs are public.",{"type":37,"tag":95,"props":2227,"children":2228},{},[2229,2241,2243,2248,2249,2254],{"type":37,"tag":53,"props":2230,"children":2231},{},[2232,2234,2239],{"type":42,"value":2233},"Forgetting ",{"type":37,"tag":77,"props":2235,"children":2237},{"className":2236},[],[2238],{"type":42,"value":1534},{"type":42,"value":2240}," in scripts.",{"type":42,"value":2242}," Human-readable output is the default. Use ",{"type":37,"tag":77,"props":2244,"children":2246},{"className":2245},[],[2247],{"type":42,"value":1534},{"type":42,"value":506},{"type":37,"tag":77,"props":2250,"children":2252},{"className":2251},[],[2253],{"type":42,"value":2145},{"type":42,"value":2255}," for parseable output in automation.",{"type":37,"tag":95,"props":2257,"children":2258},{},[2259,2271,2273,2278,2280,2286],{"type":37,"tag":53,"props":2260,"children":2261},{},[2262,2264,2269],{"type":42,"value":2263},"Running ",{"type":37,"tag":77,"props":2265,"children":2267},{"className":2266},[],[2268],{"type":42,"value":82},{"type":42,"value":2270}," without configuration.",{"type":42,"value":2272}," The CLI needs ",{"type":37,"tag":77,"props":2274,"children":2276},{"className":2275},[],[2277],{"type":42,"value":546},{"type":42,"value":2279},". Download it or specify with ",{"type":37,"tag":77,"props":2281,"children":2283},{"className":2282},[],[2284],{"type":42,"value":2285},"--config",{"type":42,"value":2287},". Without it, you get an error about missing configuration.",{"type":37,"tag":95,"props":2289,"children":2290},{},[2291,2296,2298,2304],{"type":37,"tag":53,"props":2292,"children":2293},{},[2294],{"type":42,"value":2295},"Not having SUI\u002FWAL tokens.",{"type":42,"value":2297}," Write operations require SUI for gas and WAL for storage. On testnet, request tokens from the Sui faucet (",{"type":37,"tag":77,"props":2299,"children":2301},{"className":2300},[],[2302],{"type":42,"value":2303},"sui client faucet",{"type":42,"value":2305},") and the WAL faucet. On mainnet, acquire SUI and WAL through exchanges.",{"type":37,"tag":95,"props":2307,"children":2308},{},[2309,2320],{"type":37,"tag":53,"props":2310,"children":2311},{},[2312,2318],{"type":37,"tag":77,"props":2313,"children":2315},{"className":2314},[],[2316],{"type":42,"value":2317},"Cannot find gas coin for signer address",{"type":42,"value":2319}," error.",{"type":42,"value":2321}," The wallet has no SUI. Fund the address with SUI for gas fees.",{"type":37,"tag":95,"props":2323,"children":2324},{},[2325,2338,2340,2346,2347,2353],{"type":37,"tag":53,"props":2326,"children":2327},{},[2328,2330,2336],{"type":42,"value":2329},"Using ",{"type":37,"tag":77,"props":2331,"children":2333},{"className":2332},[],[2334],{"type":42,"value":2335},"suiup switch walrus 1.48.1",{"type":42,"value":2337}," (wrong syntax).",{"type":42,"value":2339}," The correct syntax is ",{"type":37,"tag":77,"props":2341,"children":2343},{"className":2342},[],[2344],{"type":42,"value":2345},"suiup install walrus@mainnet",{"type":42,"value":506},{"type":37,"tag":77,"props":2348,"children":2350},{"className":2349},[],[2351],{"type":42,"value":2352},"suiup install walrus@testnet",{"type":42,"value":2354},". Version numbers are not used directly.",{"type":37,"tag":95,"props":2356,"children":2357},{},[2358,2363,2365,2371,2373,2379,2380,2386,2388,2394,2396,2401],{"type":37,"tag":53,"props":2359,"children":2360},{},[2361],{"type":42,"value":2362},"Confusing blob ID with Sui object ID.",{"type":42,"value":2364}," Some commands take ",{"type":37,"tag":77,"props":2366,"children":2368},{"className":2367},[],[2369],{"type":42,"value":2370},"--blob-id",{"type":42,"value":2372}," (content hash, URL-safe base64), others take ",{"type":37,"tag":77,"props":2374,"children":2376},{"className":2375},[],[2377],{"type":42,"value":2378},"--blob-obj-id",{"type":42,"value":506},{"type":37,"tag":77,"props":2381,"children":2383},{"className":2382},[],[2384],{"type":42,"value":2385},"--object-id",{"type":42,"value":2387}," (Sui object, ",{"type":37,"tag":77,"props":2389,"children":2391},{"className":2390},[],[2392],{"type":42,"value":2393},"0x...",{"type":42,"value":2395}," hex). Check ",{"type":37,"tag":77,"props":2397,"children":2399},{"className":2398},[],[2400],{"type":42,"value":496},{"type":42,"value":2402}," for the specific command.",{"type":37,"tag":95,"props":2404,"children":2405},{},[2406,2411,2413,2418],{"type":37,"tag":53,"props":2407,"children":2408},{},[2409],{"type":42,"value":2410},"Testnet blobs disappearing quickly.",{"type":42,"value":2412}," Testnet epoch duration is shorter than mainnet (14 days). If you store with low epochs, blobs expire faster than expected. Use ",{"type":37,"tag":77,"props":2414,"children":2416},{"className":2415},[],[2417],{"type":42,"value":1644},{"type":42,"value":2419}," to check current epoch duration.",{"type":37,"tag":2421,"props":2422,"children":2423},"style",{},[2424],{"type":42,"value":2425},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2427,"total":2599},[2428,2444,2455,2465,2482,2500,2515,2528,2549,2559,2570,2586],{"slug":2429,"name":2429,"fn":2430,"description":2431,"org":2432,"tags":2433,"stars":2441,"repoUrl":2442,"updatedAt":2443},"move-bytecode-comprehension","analyze and disassemble Move bytecode","Use when reading or reasoning about compiled Move bytecode or `sui move disassemble` output. Mental model for the binary format, what survives compilation (and what's lost), and how to read disassembly soundly. Trigger on \"what does this package do?\", \"read this .mv module\", \"interpret this disassembly\", or whenever an analysis needs to interpret bytecode faithfully.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2434,2437,2440],{"name":2435,"slug":2436,"type":15},"Code Analysis","code-analysis",{"name":2438,"slug":2439,"type":15},"Engineering","engineering",{"name":14,"slug":8,"type":15},7724,"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002Fsui","2026-07-16T05:59:32.904886",{"slug":2445,"name":2445,"fn":2446,"description":2447,"org":2448,"tags":2449,"stars":2441,"repoUrl":2442,"updatedAt":2454},"official-sui-skills","access official Sui development resources","Pointer to the official Mysten Labs skills for building on Sui — language fundamentals, object model, PTBs, SDKs, publishing, upgrades, frontend integration, accessing on-chain data. Maintained upstream at github.com\u002FMystenLabs\u002Fskills; pinned to the same ref the audit catalog derives from (see maintenance\u002FUPSTREAMS.md). Trigger on \"build a contract\", \"publish a package\", \"upgrade a module or package\", \"use the TypeScript SDK\", \"write a PTB\", \"set up a Sui client\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2450,2453],{"name":2451,"slug":2452,"type":15},"Documentation","documentation",{"name":14,"slug":8,"type":15},"2026-07-16T06:00:59.641382",{"slug":2456,"name":2456,"fn":2457,"description":2458,"org":2459,"tags":2460,"stars":2441,"repoUrl":2442,"updatedAt":2464},"sui-and-move-tools","disassemble Sui Move bytecode","Use to get bytecode for a deployed Sui package and produce a disassembled working view. One GraphQL call fetches every module's raw bytecode bytes; `sui move disassemble` (already on the system, running `sui prompt`) produces `.asm` files for analysis. Trigger on \"fetch this package's bytecode\", \"get me the .mv for package X\", \"disassemble this package\", or \"I need to read a deployed Sui package\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2461,2462,2463],{"name":2435,"slug":2436,"type":15},{"name":2438,"slug":2439,"type":15},{"name":14,"slug":8,"type":15},"2026-07-16T06:02:25.3633",{"slug":2466,"name":2466,"fn":2467,"description":2468,"org":2469,"tags":2470,"stars":2441,"repoUrl":2442,"updatedAt":2481},"sui-move-security-review","audit Sui Move smart contracts","Use when auditing, reviewing, or hunting for vulnerabilities in Move code on Sui. Applies equally to source code (.move files) and to disassembly of compiled bytecode (on-chain packages). A checklist of invariants whose VIOLATION causes exploitable bugs: access control & capabilities, struct abilities & type safety, object lifecycle & ownership, shared-object and PTB attack surface, dynamic fields & collections, arithmetic & coins, init\u002FOTW\u002Fpackage upgrades, hot-potato composability, time & on-chain randomness, and test-only code leakage. Trigger on \"audit this Move code\", \"find vulnerabilities in this Sui contract\", \"security review\", \"is this package safe?\", \"I suspect there's a bug in X\", \"something is wrong with this contract\", or when reasoning about whether a Move function can be abused.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2471,2474,2477,2480],{"name":2472,"slug":2473,"type":15},"Code Review","code-review",{"name":2475,"slug":2476,"type":15},"Security","security",{"name":2478,"slug":2479,"type":15},"Smart Contracts","smart-contracts",{"name":14,"slug":8,"type":15},"2026-07-16T06:02:55.691149",{"slug":2483,"name":2483,"fn":2484,"description":2485,"org":2486,"tags":2487,"stars":2497,"repoUrl":2498,"updatedAt":2499},"memwal","integrate Walrus Memory SDK","Walrus Memory SDK — portable agent memory that works across apps, sessions, and workflows.\n\nUse when users say:\n- \"add memory to my app\"\n- \"portable agent memory\"\n- \"integrate Walrus Memory\"\n- \"AI agent memory\"\n- \"memory across agents\"\n- \"Walrus memory storage\"\n- \"setup Walrus Memory\"\n- \"recall memories\"\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2488,2491,2494],{"name":2489,"slug":2490,"type":15},"Agents","agents",{"name":2492,"slug":2493,"type":15},"Memory","memory",{"name":2495,"slug":2496,"type":15},"SDK","sdk",57,"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002FMemWal","2026-07-16T06:02:39.838395",{"slug":2501,"name":2501,"fn":2502,"description":2503,"org":2504,"tags":2505,"stars":792,"repoUrl":2513,"updatedAt":2514},"accessing-data","read data from the Sui network","How to read data from the Sui network. Use when choosing or implementing a data access strategy — queries for on-chain state, indexing pipelines, historical lookups, event subscriptions, cross-chain reads, or off-chain blob storage. Covers the two live Sui APIs (gRPC and GraphQL RPC), the Archival Store, the General-Purpose Indexer, the `sui-indexer-alt` custom indexing framework, and Walrus for off-chain blobs.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2506,2509,2510],{"name":2507,"slug":2508,"type":15},"Data Analysis","data-analysis",{"name":14,"slug":8,"type":15},{"name":2511,"slug":2512,"type":15},"Web3","web3","https:\u002F\u002Fgithub.com\u002FMystenLabs\u002Fskills","2026-08-01T05:44:32.775598",{"slug":2516,"name":2516,"fn":2517,"description":2518,"org":2519,"tags":2520,"stars":792,"repoUrl":2513,"updatedAt":2527},"composable-move-functions","design composable Sui Move functions","Use when writing Move functions on Sui, especially public APIs. Applies to function visibility (public vs entry), parameter ordering, and return patterns. Use whenever designing function signatures or deciding whether functions should transfer objects or return them.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2521,2524,2525,2526],{"name":2522,"slug":2523,"type":15},"API Development","api-development",{"name":2478,"slug":2479,"type":15},{"name":14,"slug":8,"type":15},{"name":2511,"slug":2512,"type":15},"2026-07-16T06:02:49.198495",{"slug":2529,"name":2529,"fn":2530,"description":2531,"org":2532,"tags":2533,"stars":792,"repoUrl":2513,"updatedAt":2548},"frontend-apps","build Sui dApps with dapp-kit","Sui frontend \u002F dApp development with @mysten\u002Fdapp-kit-react (React) and @mysten\u002Fdapp-kit-core (Vue, vanilla JS, Svelte, Web Components, other frameworks). Use when building browser apps that connect Sui wallets, query on-chain state, or submit transactions. Covers wallet connection, network switching, transaction execution, query patterns with TanStack React Query, and the specific pitfalls of browser + wallet + async-indexer environments. Pair with the `sui-sdks` skill for @mysten\u002Fsui Transaction construction patterns and the `ptbs` skill for PTB semantics.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2534,2537,2540,2541,2544,2547],{"name":2535,"slug":2536,"type":15},"Frontend","frontend",{"name":2538,"slug":2539,"type":15},"React","react",{"name":14,"slug":8,"type":15},{"name":2542,"slug":2543,"type":15},"Svelte","svelte",{"name":2545,"slug":2546,"type":15},"Vue","vue",{"name":2511,"slug":2512,"type":15},"2026-08-01T05:44:28.958473",{"slug":2550,"name":2550,"fn":2551,"description":2552,"org":2553,"tags":2554,"stars":792,"repoUrl":2513,"updatedAt":2558},"generate-sui-agent-config","generate configuration files for Sui projects","Generate a CLAUDE.md or AGENT.md configuration file for Sui projects. Use when setting up a new Sui project, when user mentions \"CLAUDE.md\", \"AGENT.md\", \"agent config\", or when working on a Sui project that does not already have a CLAUDE.md or AGENT.md in the project root.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2555,2556,2557],{"name":535,"slug":532,"type":15},{"name":2451,"slug":2452,"type":15},{"name":14,"slug":8,"type":15},"2026-07-16T06:00:59.981056",{"slug":2560,"name":2560,"fn":2561,"description":2562,"org":2563,"tags":2564,"stars":792,"repoUrl":2513,"updatedAt":2569},"modern-move-syntax","write Move 2024 edition code for Sui","Use when writing Move code on Sui to ensure 2024 edition syntax is used. Applies to method calls, string literals, vector operations, option handling, loops, and struct unpacking. Use whenever writing Move code to avoid legacy function-call syntax patterns.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2565,2566,2567,2568],{"name":2438,"slug":2439,"type":15},{"name":2478,"slug":2479,"type":15},{"name":14,"slug":8,"type":15},{"name":2511,"slug":2512,"type":15},"2026-07-16T06:02:43.277596",{"slug":2571,"name":2571,"fn":2572,"description":2573,"org":2574,"tags":2575,"stars":792,"repoUrl":2513,"updatedAt":2585},"move-unit-testing","write unit tests for Sui Move contracts","Use when writing unit tests for Move smart contracts on Sui. Applies to test function naming, assertions, test attributes, context usage, and cleanup patterns. Use whenever user asks to write tests, add tests, or test a Move module.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2576,2579,2580,2581,2584],{"name":2577,"slug":2578,"type":15},"QA","qa",{"name":2478,"slug":2479,"type":15},{"name":14,"slug":8,"type":15},{"name":2582,"slug":2583,"type":15},"Testing","testing",{"name":2511,"slug":2512,"type":15},"2026-08-01T05:44:30.788585",{"slug":2587,"name":2587,"fn":2588,"description":2589,"org":2590,"tags":2591,"stars":792,"repoUrl":2513,"updatedAt":2598},"naming-conventions","apply Sui Move naming conventions","Use when writing or reviewing Move smart contracts on Sui. Applies to naming structs, error constants, regular constants, events, getter functions, capability types, hot potato types, and dynamic field keys. Use whenever creating new types, functions, or constants in Move code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2592,2595,2596,2597],{"name":2593,"slug":2594,"type":15},"Best Practices","best-practices",{"name":2478,"slug":2479,"type":15},{"name":14,"slug":8,"type":15},{"name":2511,"slug":2512,"type":15},"2026-07-16T06:02:48.830052",37,{"items":2601,"total":809},[2602,2611,2617,2631,2643,2654,2664],{"slug":195,"name":195,"fn":2603,"description":2604,"org":2605,"tags":2606,"stars":22,"repoUrl":23,"updatedAt":2610},"manage Walrus blob lifecycles","Managing Walrus blob lifecycles: epochs, lifetimes, extending blobs, deleting blobs, burning blob objects, sharing blobs, setting blob attributes, and handling large uploads. Use when the user needs to extend a blob's lifetime, delete or burn blobs, create shared blobs, set\u002Fget\u002Fremove blob attributes, plan large data uploads (>1 GiB), estimate storage costs, manage concurrent upload memory, or understand epoch-based expiration. For basic store\u002Fread, see `walrus-cli`. For quilts, see `walrus-quilts`.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2607,2608,2609],{"name":20,"slug":21,"type":15},{"name":14,"slug":8,"type":15},{"name":2511,"slug":2512,"type":15},"2026-07-16T06:01:49.056917",{"slug":4,"name":4,"fn":5,"description":6,"org":2612,"tags":2613,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2614,2615,2616],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":14,"slug":8,"type":15},{"slug":283,"name":283,"fn":2618,"description":2619,"org":2620,"tags":2621,"stars":22,"repoUrl":23,"updatedAt":2630},"encrypt and store data on Walrus","Encrypting data before storing on Walrus using Seal (threshold encryption with onchain access control). Use when the user needs to store private or sensitive data on Walrus, implement access control for blob content, encrypt blobs before uploading, use @mysten\u002Fseal for threshold encryption, or understand Walrus data security guarantees (availability, integrity, confidentiality). Also use when the user asks about Nautilus (TEE-based off-chain computation) in the context of Walrus data. All blobs on Walrus are public by default.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2622,2625,2627,2628,2629],{"name":2623,"slug":2624,"type":15},"Access Control","access-control",{"name":274,"slug":2626,"type":15},"encryption",{"name":2475,"slug":2476,"type":15},{"name":20,"slug":21,"type":15},{"name":14,"slug":8,"type":15},"2026-07-16T06:01:48.700594",{"slug":239,"name":239,"fn":2632,"description":2633,"org":2634,"tags":2635,"stars":22,"repoUrl":23,"updatedAt":2642},"store and read Walrus blobs via HTTP","Walrus publisher and aggregator REST API for storing and reading blobs over HTTP. Use when the user needs to store or read Walrus blobs using HTTP PUT\u002FGET requests, integrate Walrus from any programming language, configure storage options (epochs, deletable, permanent, send_object_to), or parse store\u002Fread API responses. Also use when troubleshooting HTTP API errors or CDN caching issues after upload. For quilt HTTP endpoints, see the `walrus-quilts` skill. For CLI usage, see `walrus-cli`.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2636,2639,2640,2641],{"name":2637,"slug":2638,"type":15},"REST API","rest-api",{"name":20,"slug":21,"type":15},{"name":14,"slug":8,"type":15},{"name":2511,"slug":2512,"type":15},"2026-07-16T06:01:48.340552",{"slug":2644,"name":2644,"fn":2645,"description":2646,"org":2647,"tags":2648,"stars":22,"repoUrl":23,"updatedAt":2653},"walrus-memory","integrate persistent memory with Walrus","Walrus Memory (MemWal) — persistent, portable, encrypted memory for AI agents. Use when the user needs to give an AI agent persistent memory across sessions and apps, integrate the @mysten-incubation\u002Fmemwal TypeScript SDK or Python memwal SDK, set up the Walrus Memory MCP server for Cursor\u002FClaude\u002FCodex, configure remember\u002Frecall\u002Fanalyze\u002Frestore operations, manage memory spaces and namespaces, set up delegate keys and accounts, self-host the relayer, or use withMemWal AI middleware (Vercel AI SDK, LangChain, OpenAI SDK). Also use when the user asks about MemWal, Walrus Memory, agent memory, memory spaces, or the memwal-mcp package.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2649,2650,2651,2652],{"name":2489,"slug":2490,"type":15},{"name":274,"slug":2626,"type":15},{"name":2492,"slug":2493,"type":15},{"name":14,"slug":8,"type":15},"2026-07-29T05:39:21.825246",{"slug":2655,"name":2655,"fn":2656,"description":2657,"org":2658,"tags":2659,"stars":22,"repoUrl":23,"updatedAt":2663},"walrus-move-integration","integrate Walrus blobs in Sui Move","Referencing and wrapping Walrus blobs in Sui Move smart contracts. Use when the user needs to wrap a Walrus Blob object in a custom Move struct, add Walrus as a Move dependency, build a contract that depends on the Walrus package, or integrate on-chain logic with Walrus blob storage. Also use when the user asks about wrapped_blob.move, the Walrus Move package, or how to reference blobs from Move code.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2660,2661,2662],{"name":2478,"slug":2479,"type":15},{"name":20,"slug":21,"type":15},{"name":14,"slug":8,"type":15},"2026-07-16T06:02:53.633159",{"slug":2665,"name":2665,"fn":2666,"description":2667,"org":2668,"tags":2669,"stars":22,"repoUrl":23,"updatedAt":2673},"walrus-overview","provide overview of Walrus storage","High-level overview of Walrus: what it is, how it works, and which tool to use. Use when the user is new to Walrus, asks \"what is Walrus\", \"how does Walrus work\", \"what is a blob\", or needs to choose between CLI, HTTP API, TypeScript SDK, and Move integration. Also use when explaining Walrus architecture, comparing Walrus to AWS S3 or IPFS, explaining the publisher\u002Faggregator\u002Fupload relay distinction, or clarifying blob ID vs Sui object ID. This is the entry-point skill for Walrus newcomers.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2670,2671,2672],{"name":2451,"slug":2452,"type":15},{"name":20,"slug":21,"type":15},{"name":14,"slug":8,"type":15},"2026-07-16T06:02:52.247749"]