[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-sui-walrus-troubleshooting":3,"mdc--q6v8xj-key":31,"related-repo-sui-walrus-troubleshooting":2348,"related-org-sui-walrus-troubleshooting":2441},{"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-troubleshooting","troubleshoot Walrus CLI and SDK errors","Common Walrus error messages, their causes, and fixes. Use when the user encounters an error while using Walrus CLI, TypeScript SDK, HTTP API, or Move integration. Covers VMVerificationOrDeserializationError, ChainNotSupportedError, tip exceeded, RetryableWalrusClientError, file.bytes is not a function, 413 Payload Too Large, BlobNotCertifiedError, spawn walrus ENOENT, Cannot find gas coin, EWrongVersion, and other recurring errors from support threads.\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},"Debugging","debugging",1,"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002Fwalrus-skills","2026-07-16T05:59:31.877508",null,[],{"repoUrl":23,"stars":22,"forks":22,"topics":28,"description":25},[],"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002Fwalrus-skills\u002Ftree\u002FHEAD\u002Fwalrus-troubleshooting","---\nname: walrus-troubleshooting\ndescription: >\n  Common Walrus error messages, their causes, and fixes. Use when the user encounters\n  an error while using Walrus CLI, TypeScript SDK, HTTP API, or Move integration.\n  Covers VMVerificationOrDeserializationError, ChainNotSupportedError, tip exceeded,\n  RetryableWalrusClientError, file.bytes is not a function, 413 Payload Too Large,\n  BlobNotCertifiedError, spawn walrus ENOENT, Cannot find gas coin, EWrongVersion,\n  and other recurring errors from support threads.\n---\n\n# Walrus Troubleshooting\n\n> **Source constraint:** Errors and fixes in this skill are sourced from the\n> [Walrus documentation](https:\u002F\u002Fdocs.wal.app), the\n> [Walrus GitHub repository](https:\u002F\u002Fgithub.com\u002FMystenLabs\u002Fwalrus), and\n> confirmed community support patterns. When extending, verify errors are\n> reproducible before adding.\n\nThis skill collects the most common errors users encounter when working with Walrus, organized by tool. Each entry includes the error message, cause, and fix.\n\n---\n\n## Related skills\n\n| Topic | Skill | Load when |\n|-------|-------|-----------|\n| CLI | `walrus-cli` | CLI usage and configuration |\n| TypeScript SDK | `walrus-ts-sdk` | SDK initialization and usage |\n| HTTP API | `walrus-http-api` | REST endpoint usage |\n| Move integration | `walrus-move-integration` | Move dependency and contract issues |\n| Storage costs | `walrus-storage-costs` | Cost-related questions |\n| Overview | `walrus-overview` | Terminology confusion (blob ID vs object ID, etc.) |\n\n---\n\n## Skill Content\n\n### CLI errors\n\n#### `spawn walrus ENOENT` or `command not found: walrus`\n\n**Cause:** The `walrus` binary is not installed or not in your PATH.\n\n**Fix:**\n```sh\ncurl -sSfL https:\u002F\u002Fraw.githubusercontent.com\u002FMystenlabs\u002Fsuiup\u002Fmain\u002Finstall.sh | sh\nsuiup install walrus\n```\nIf already installed, add `~\u002F.suiup\u002Fbin` to your PATH. Restart your shell after installation.\n\n---\n\n#### `Cannot find gas coin for signer address`\n\n**Cause:** The wallet has no SUI tokens. Walrus operations require SUI for gas fees.\n\n**Fix:**\n- **Testnet:** Run `sui client faucet` to get test SUI.\n- **Mainnet:** Acquire SUI through an exchange and transfer to the wallet address.\n\nCheck your balance with `sui client gas`.\n\n---\n\n#### `Error: missing configuration` or `No configuration file found`\n\n**Cause:** The CLI cannot find `client_config.yaml`.\n\n**Fix:**\n```sh\ncurl --create-dirs https:\u002F\u002Fdocs.wal.app\u002Fsetup\u002Fclient_config.yaml \\\n  -o ~\u002F.config\u002Fwalrus\u002Fclient_config.yaml\n```\nOr specify the path explicitly: `walrus --config \u002Fpath\u002Fto\u002Fclient_config.yaml store ...`\n\n---\n\n#### Testnet blobs disappearing quickly\n\n**Cause:** Testnet epochs are shorter than mainnet epochs. Storing with low epoch counts means blobs expire sooner than expected.\n\n**Fix:** Use `walrus info` to check the current epoch duration. Use generous epoch values on testnet (30+). On mainnet, 1 epoch = 14 days.\n\n---\n\n#### `suiup switch walrus 1.48.1` fails\n\n**Cause:** Wrong syntax. `suiup` uses network-based versioning, not version numbers.\n\n**Fix:**\n```sh\nsuiup install walrus@mainnet\n# or\nsuiup install walrus@testnet\n```\n\n---\n\n### TypeScript SDK errors\n\n#### `ChainNotSupportedError: The account does not support the chain \"sui:undefined\"`\n\n**Cause:** The dApp Kit wallet adapter does not have the correct network configured. The SDK cannot determine which Sui chain to use.\n\n**Fix:** Ensure the dApp Kit provider specifies the chain:\n```typescript\n\u003CSuiClientProvider networks={{ testnet: { url: getFullnodeUrl('testnet') } }} defaultNetwork=\"testnet\">\n```\nAnd that the wallet is connected to the same network.\n\n---\n\n#### `file.bytes is not a function`\n\n**Cause:** Passing a raw string or JavaScript object to `storeBlob` instead of binary data.\n\n**Fix:** Convert to `Uint8Array` first:\n```typescript\n\u002F\u002F WRONG\nawait client.walrus.storeBlob({ blob: myJsonString, epochs: 5 });\n\n\u002F\u002F CORRECT\nawait client.walrus.storeBlob({\n  blob: new TextEncoder().encode(myJsonString),\n  epochs: 5,\n});\n```\n\nThe `blob` parameter expects `Uint8Array`, `File`, `Blob`, or `ReadableStream`.\n\n---\n\n#### `Tip amount (N) exceeds the maximum allowed tip (M)`\n\n**Cause:** The upload relay requires a tip higher than your configured maximum. The default `sendTip.max` is too low for the relay you are using.\n\n**Fix:** Increase the `sendTip.max` value in your upload relay configuration:\n```typescript\nuploadRelay: {\n  host: 'https:\u002F\u002Fupload-relay.mainnet.walrus.space',\n  sendTip: { max: 5_000_000 },  \u002F\u002F increase as needed\n},\n```\n\nCheck the relay's required tip: `curl \u003Crelay-url>\u002Fv1\u002Ftip-config`\n\n---\n\n#### `RetryableWalrusClientError: Too many failures while writing blob`\n\n**Cause:** The SDK failed to distribute slivers to enough storage nodes. Common causes:\n- No upload relay configured for a browser environment\n- Network connectivity issues to storage nodes\n- Storage nodes temporarily unavailable\n\n**Fix:**\n1. In a browser, configure an upload relay (see `walrus-ts-sdk` skill).\n2. Check network connectivity.\n3. Retry with exponential backoff.\n4. If persistent, try a different upload relay or wait for storage node recovery.\n\n---\n\n#### `BlobNotCertifiedError`\n\n**Cause:** The blob was registered on-chain but has not yet received enough confirmations from storage nodes. The availability certificate has not been submitted.\n\n**Fix:** The blob is not yet at its Point of Availability (PoA). Wait for certification to complete. If it never completes, the upload may have failed partway through. Retry the store operation.\n\n---\n\n#### Vite build errors with `@mysten\u002Fwalrus`\n\n**Cause:** Vite's dependency pre-bundling breaks the SDK's gRPC and WASM imports.\n\n**Fix:** Exclude the package from optimization:\n```typescript\n\u002F\u002F vite.config.ts\nexport default defineConfig({\n  optimizeDeps: {\n    exclude: ['@mysten\u002Fwalrus'],\n  },\n});\n```\n\n---\n\n### HTTP API errors\n\n#### `413 Payload Too Large`\n\n**Cause:** The publisher has a maximum request body size. Public testnet publishers limit uploads to approximately 10 MiB.\n\n**Fix:**\n- For files larger than the publisher limit, use the CLI, TypeScript SDK, or run your own publisher.\n- On mainnet, there are no public publishers. Use the upload relay or SDK directly.\n\n---\n\n#### `404 Not Found` immediately after uploading\n\n**Cause:** CDN caching on the aggregator. The aggregator's CDN cached a 404 from before the blob propagated.\n\n**Fix:** Retry with exponential backoff. The blob should become available within seconds to minutes after certification. If using a CDN-fronted aggregator, the cache TTL determines the delay.\n\n---\n\n### Move integration errors\n\n#### `VMVerificationOrDeserializationError in command 0`\n\n**Cause:** The published Move package does not match the on-chain Walrus contracts. This is almost always a `Move.toml` dependency issue.\n\n**Fix:** Check these in order:\n\n1. **Wrong `subdir` for the network.** Testnet uses `testnet-contracts\u002Fwalrus`, mainnet uses `contracts\u002Fwalrus`.\n   ```toml\n   # Testnet\n   Walrus = { git = \"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002Fwalrus.git\", rev = \"testnet\", subdir = \"testnet-contracts\u002Fwalrus\" }\n\n   # Mainnet\n   Walrus = { git = \"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002Fwalrus.git\", rev = \"main\", subdir = \"contracts\u002Fwalrus\" }\n   ```\n\n2. **Wrong `rev`.** The commit must match what is deployed on-chain. Use the `testnet` branch for testnet, `main` for mainnet, or pin to a specific commit.\n\n3. **Stale `Move.lock`.** Delete `Move.lock` and rebuild: `rm Move.lock && sui move build`.\n\n4. **Wrong `edition`.** Use `edition = \"2024\"`, not `\"2024.beta\"`.\n\n---\n\n#### `EWrongVersion` (abort code 1) from `system::inner_mut`\n\n**Cause:** Calling a Walrus system function using an old package ID after a Walrus upgrade. Walrus uses versioned shared objects.\n\n**Fix:**\n- **If using the CLI or SDK:** Update to the latest version. The client automatically refreshes package IDs.\n- **If calling contracts directly:** Query the `system_object` to find the current package ID. Do not hardcode package IDs.\n- The Walrus client code has built-in retry logic: on `EWrongVersion`, it calls `refresh_package_id()` and retries.\n\n---\n\n### Seal errors\n\n#### `Transaction was not signed by the correct sender`\n\n**Cause:** The PTB passed to Seal does not have `tx.setSender(address)` set, or the sender does not match the decrypting address.\n\n**Fix:**\n```typescript\ntx.setSender(address);  \u002F\u002F Must match the decrypting wallet address\n```\n\n---\n\n#### `Connected wallet does not support Seal session signing`\n\n**Cause:** The connected wallet does not implement the session signing protocol required by Seal for multi-signature decryption flows.\n\n**Fix:** Use a wallet that supports Seal sessions, or implement manual per-signature approval in your decryption flow.\n\n---\n\n### Network \u002F general errors\n\n#### `ERR_CERT_COMMON_NAME_INVALID` on storage node connections\n\n**Cause:** TLS certificate mismatch on a storage node. The node's certificate does not match the expected hostname.\n\n**Fix:** This is typically a storage node operator issue. Try a different aggregator or wait for the operator to fix their TLS configuration. If using the CLI, it should automatically fall back to other nodes.\n\n---\n\n#### `client\u002Fserver api version mismatch`\n\n**Cause:** The installed `walrus` binary version does not match the network's expected version.\n\n**Fix:**\n```sh\nsuiup update walrus\n# or install the version matching your network\nsuiup install walrus@mainnet\n```\n\n---\n\n### Rules\n\n1. **Check `Move.toml` first for Move errors.** `VMVerificationOrDeserializationError` is almost always a dependency issue.\n2. **Check token balances for \"gas coin\" errors.** Both SUI and WAL are required for write operations.\n3. **Configure upload relay for browser apps.** SDK write operations in a browser require an upload relay.\n4. **Delete `Move.lock` when switching dependency revisions.** Stale lock files cause build failures.\n5. **Use `walrus info` to verify network connectivity and configuration.** If `walrus info` works, your config is correct.\n6. **Update the CLI when you see version mismatch errors.** Run `suiup update walrus`.\n",{"data":32,"body":33},{"name":4,"description":6},{"type":34,"children":35},"root",[36,44,80,85,89,96,261,264,270,277,296,314,322,385,398,401,411,420,427,460,473,476,493,509,516,559,570,573,579,588,605,608,620,636,643,692,695,701,711,720,729,849,854,857,867,884,901,1143,1185,1188,1198,1215,1231,1333,1344,1347,1357,1366,1384,1391,1422,1425,1435,1444,1453,1456,1468,1477,1486,1604,1607,1613,1623,1632,1639,1652,1655,1667,1676,1685,1688,1694,1704,1721,1730,1906,1909,1927,1936,1943,1994,1997,2003,2013,2030,2037,2076,2079,2089,2098,2107,2110,2116,2128,2137,2146,2149,2159,2175,2182,2228,2231,2237,2342],{"type":37,"tag":38,"props":39,"children":40},"element","h1",{"id":4},[41],{"type":42,"value":43},"text","Walrus Troubleshooting",{"type":37,"tag":45,"props":46,"children":47},"blockquote",{},[48],{"type":37,"tag":49,"props":50,"children":51},"p",{},[52,58,60,69,71,78],{"type":37,"tag":53,"props":54,"children":55},"strong",{},[56],{"type":42,"value":57},"Source constraint:",{"type":42,"value":59}," Errors and fixes in this skill are sourced from the\n",{"type":37,"tag":61,"props":62,"children":66},"a",{"href":63,"rel":64},"https:\u002F\u002Fdocs.wal.app",[65],"nofollow",[67],{"type":42,"value":68},"Walrus documentation",{"type":42,"value":70},", the\n",{"type":37,"tag":61,"props":72,"children":75},{"href":73,"rel":74},"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002Fwalrus",[65],[76],{"type":42,"value":77},"Walrus GitHub repository",{"type":42,"value":79},", and\nconfirmed community support patterns. When extending, verify errors are\nreproducible before adding.",{"type":37,"tag":49,"props":81,"children":82},{},[83],{"type":42,"value":84},"This skill collects the most common errors users encounter when working with Walrus, organized by tool. Each entry includes the error message, cause, and fix.",{"type":37,"tag":86,"props":87,"children":88},"hr",{},[],{"type":37,"tag":90,"props":91,"children":93},"h2",{"id":92},"related-skills",[94],{"type":42,"value":95},"Related skills",{"type":37,"tag":97,"props":98,"children":99},"table",{},[100,124],{"type":37,"tag":101,"props":102,"children":103},"thead",{},[104],{"type":37,"tag":105,"props":106,"children":107},"tr",{},[108,114,119],{"type":37,"tag":109,"props":110,"children":111},"th",{},[112],{"type":42,"value":113},"Topic",{"type":37,"tag":109,"props":115,"children":116},{},[117],{"type":42,"value":118},"Skill",{"type":37,"tag":109,"props":120,"children":121},{},[122],{"type":42,"value":123},"Load when",{"type":37,"tag":125,"props":126,"children":127},"tbody",{},[128,151,173,195,217,239],{"type":37,"tag":105,"props":129,"children":130},{},[131,136,146],{"type":37,"tag":132,"props":133,"children":134},"td",{},[135],{"type":42,"value":17},{"type":37,"tag":132,"props":137,"children":138},{},[139],{"type":37,"tag":140,"props":141,"children":143},"code",{"className":142},[],[144],{"type":42,"value":145},"walrus-cli",{"type":37,"tag":132,"props":147,"children":148},{},[149],{"type":42,"value":150},"CLI usage and configuration",{"type":37,"tag":105,"props":152,"children":153},{},[154,159,168],{"type":37,"tag":132,"props":155,"children":156},{},[157],{"type":42,"value":158},"TypeScript SDK",{"type":37,"tag":132,"props":160,"children":161},{},[162],{"type":37,"tag":140,"props":163,"children":165},{"className":164},[],[166],{"type":42,"value":167},"walrus-ts-sdk",{"type":37,"tag":132,"props":169,"children":170},{},[171],{"type":42,"value":172},"SDK initialization and usage",{"type":37,"tag":105,"props":174,"children":175},{},[176,181,190],{"type":37,"tag":132,"props":177,"children":178},{},[179],{"type":42,"value":180},"HTTP API",{"type":37,"tag":132,"props":182,"children":183},{},[184],{"type":37,"tag":140,"props":185,"children":187},{"className":186},[],[188],{"type":42,"value":189},"walrus-http-api",{"type":37,"tag":132,"props":191,"children":192},{},[193],{"type":42,"value":194},"REST endpoint usage",{"type":37,"tag":105,"props":196,"children":197},{},[198,203,212],{"type":37,"tag":132,"props":199,"children":200},{},[201],{"type":42,"value":202},"Move integration",{"type":37,"tag":132,"props":204,"children":205},{},[206],{"type":37,"tag":140,"props":207,"children":209},{"className":208},[],[210],{"type":42,"value":211},"walrus-move-integration",{"type":37,"tag":132,"props":213,"children":214},{},[215],{"type":42,"value":216},"Move dependency and contract issues",{"type":37,"tag":105,"props":218,"children":219},{},[220,225,234],{"type":37,"tag":132,"props":221,"children":222},{},[223],{"type":42,"value":224},"Storage costs",{"type":37,"tag":132,"props":226,"children":227},{},[228],{"type":37,"tag":140,"props":229,"children":231},{"className":230},[],[232],{"type":42,"value":233},"walrus-storage-costs",{"type":37,"tag":132,"props":235,"children":236},{},[237],{"type":42,"value":238},"Cost-related questions",{"type":37,"tag":105,"props":240,"children":241},{},[242,247,256],{"type":37,"tag":132,"props":243,"children":244},{},[245],{"type":42,"value":246},"Overview",{"type":37,"tag":132,"props":248,"children":249},{},[250],{"type":37,"tag":140,"props":251,"children":253},{"className":252},[],[254],{"type":42,"value":255},"walrus-overview",{"type":37,"tag":132,"props":257,"children":258},{},[259],{"type":42,"value":260},"Terminology confusion (blob ID vs object ID, etc.)",{"type":37,"tag":86,"props":262,"children":263},{},[],{"type":37,"tag":90,"props":265,"children":267},{"id":266},"skill-content",[268],{"type":42,"value":269},"Skill Content",{"type":37,"tag":271,"props":272,"children":274},"h3",{"id":273},"cli-errors",[275],{"type":42,"value":276},"CLI errors",{"type":37,"tag":278,"props":279,"children":281},"h4",{"id":280},"spawn-walrus-enoent-or-command-not-found-walrus",[282,288,290],{"type":37,"tag":140,"props":283,"children":285},{"className":284},[],[286],{"type":42,"value":287},"spawn walrus ENOENT",{"type":42,"value":289}," or ",{"type":37,"tag":140,"props":291,"children":293},{"className":292},[],[294],{"type":42,"value":295},"command not found: walrus",{"type":37,"tag":49,"props":297,"children":298},{},[299,304,306,312],{"type":37,"tag":53,"props":300,"children":301},{},[302],{"type":42,"value":303},"Cause:",{"type":42,"value":305}," The ",{"type":37,"tag":140,"props":307,"children":309},{"className":308},[],[310],{"type":42,"value":311},"walrus",{"type":42,"value":313}," binary is not installed or not in your PATH.",{"type":37,"tag":49,"props":315,"children":316},{},[317],{"type":37,"tag":53,"props":318,"children":319},{},[320],{"type":42,"value":321},"Fix:",{"type":37,"tag":323,"props":324,"children":329},"pre",{"className":325,"code":326,"language":327,"meta":328,"style":328},"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 walrus\n","sh","",[330],{"type":37,"tag":140,"props":331,"children":332},{"__ignoreMap":328},[333,366],{"type":37,"tag":334,"props":335,"children":337},"span",{"class":336,"line":22},"line",[338,344,350,355,361],{"type":37,"tag":334,"props":339,"children":341},{"style":340},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[342],{"type":42,"value":343},"curl",{"type":37,"tag":334,"props":345,"children":347},{"style":346},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[348],{"type":42,"value":349}," -sSfL",{"type":37,"tag":334,"props":351,"children":352},{"style":346},[353],{"type":42,"value":354}," https:\u002F\u002Fraw.githubusercontent.com\u002FMystenlabs\u002Fsuiup\u002Fmain\u002Finstall.sh",{"type":37,"tag":334,"props":356,"children":358},{"style":357},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[359],{"type":42,"value":360}," |",{"type":37,"tag":334,"props":362,"children":363},{"style":340},[364],{"type":42,"value":365}," sh\n",{"type":37,"tag":334,"props":367,"children":369},{"class":336,"line":368},2,[370,375,380],{"type":37,"tag":334,"props":371,"children":372},{"style":340},[373],{"type":42,"value":374},"suiup",{"type":37,"tag":334,"props":376,"children":377},{"style":346},[378],{"type":42,"value":379}," install",{"type":37,"tag":334,"props":381,"children":382},{"style":346},[383],{"type":42,"value":384}," walrus\n",{"type":37,"tag":49,"props":386,"children":387},{},[388,390,396],{"type":42,"value":389},"If already installed, add ",{"type":37,"tag":140,"props":391,"children":393},{"className":392},[],[394],{"type":42,"value":395},"~\u002F.suiup\u002Fbin",{"type":42,"value":397}," to your PATH. Restart your shell after installation.",{"type":37,"tag":86,"props":399,"children":400},{},[],{"type":37,"tag":278,"props":402,"children":404},{"id":403},"cannot-find-gas-coin-for-signer-address",[405],{"type":37,"tag":140,"props":406,"children":408},{"className":407},[],[409],{"type":42,"value":410},"Cannot find gas coin for signer address",{"type":37,"tag":49,"props":412,"children":413},{},[414,418],{"type":37,"tag":53,"props":415,"children":416},{},[417],{"type":42,"value":303},{"type":42,"value":419}," The wallet has no SUI tokens. Walrus operations require SUI for gas fees.",{"type":37,"tag":49,"props":421,"children":422},{},[423],{"type":37,"tag":53,"props":424,"children":425},{},[426],{"type":42,"value":321},{"type":37,"tag":428,"props":429,"children":430},"ul",{},[431,450],{"type":37,"tag":432,"props":433,"children":434},"li",{},[435,440,442,448],{"type":37,"tag":53,"props":436,"children":437},{},[438],{"type":42,"value":439},"Testnet:",{"type":42,"value":441}," Run ",{"type":37,"tag":140,"props":443,"children":445},{"className":444},[],[446],{"type":42,"value":447},"sui client faucet",{"type":42,"value":449}," to get test SUI.",{"type":37,"tag":432,"props":451,"children":452},{},[453,458],{"type":37,"tag":53,"props":454,"children":455},{},[456],{"type":42,"value":457},"Mainnet:",{"type":42,"value":459}," Acquire SUI through an exchange and transfer to the wallet address.",{"type":37,"tag":49,"props":461,"children":462},{},[463,465,471],{"type":42,"value":464},"Check your balance with ",{"type":37,"tag":140,"props":466,"children":468},{"className":467},[],[469],{"type":42,"value":470},"sui client gas",{"type":42,"value":472},".",{"type":37,"tag":86,"props":474,"children":475},{},[],{"type":37,"tag":278,"props":477,"children":479},{"id":478},"error-missing-configuration-or-no-configuration-file-found",[480,486,487],{"type":37,"tag":140,"props":481,"children":483},{"className":482},[],[484],{"type":42,"value":485},"Error: missing configuration",{"type":42,"value":289},{"type":37,"tag":140,"props":488,"children":490},{"className":489},[],[491],{"type":42,"value":492},"No configuration file found",{"type":37,"tag":49,"props":494,"children":495},{},[496,500,502,508],{"type":37,"tag":53,"props":497,"children":498},{},[499],{"type":42,"value":303},{"type":42,"value":501}," The CLI cannot find ",{"type":37,"tag":140,"props":503,"children":505},{"className":504},[],[506],{"type":42,"value":507},"client_config.yaml",{"type":42,"value":472},{"type":37,"tag":49,"props":510,"children":511},{},[512],{"type":37,"tag":53,"props":513,"children":514},{},[515],{"type":42,"value":321},{"type":37,"tag":323,"props":517,"children":519},{"className":325,"code":518,"language":327,"meta":328,"style":328},"curl --create-dirs https:\u002F\u002Fdocs.wal.app\u002Fsetup\u002Fclient_config.yaml \\\n  -o ~\u002F.config\u002Fwalrus\u002Fclient_config.yaml\n",[520],{"type":37,"tag":140,"props":521,"children":522},{"__ignoreMap":328},[523,546],{"type":37,"tag":334,"props":524,"children":525},{"class":336,"line":22},[526,530,535,540],{"type":37,"tag":334,"props":527,"children":528},{"style":340},[529],{"type":42,"value":343},{"type":37,"tag":334,"props":531,"children":532},{"style":346},[533],{"type":42,"value":534}," --create-dirs",{"type":37,"tag":334,"props":536,"children":537},{"style":346},[538],{"type":42,"value":539}," https:\u002F\u002Fdocs.wal.app\u002Fsetup\u002Fclient_config.yaml",{"type":37,"tag":334,"props":541,"children":543},{"style":542},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[544],{"type":42,"value":545}," \\\n",{"type":37,"tag":334,"props":547,"children":548},{"class":336,"line":368},[549,554],{"type":37,"tag":334,"props":550,"children":551},{"style":346},[552],{"type":42,"value":553},"  -o",{"type":37,"tag":334,"props":555,"children":556},{"style":346},[557],{"type":42,"value":558}," ~\u002F.config\u002Fwalrus\u002Fclient_config.yaml\n",{"type":37,"tag":49,"props":560,"children":561},{},[562,564],{"type":42,"value":563},"Or specify the path explicitly: ",{"type":37,"tag":140,"props":565,"children":567},{"className":566},[],[568],{"type":42,"value":569},"walrus --config \u002Fpath\u002Fto\u002Fclient_config.yaml store ...",{"type":37,"tag":86,"props":571,"children":572},{},[],{"type":37,"tag":278,"props":574,"children":576},{"id":575},"testnet-blobs-disappearing-quickly",[577],{"type":42,"value":578},"Testnet blobs disappearing quickly",{"type":37,"tag":49,"props":580,"children":581},{},[582,586],{"type":37,"tag":53,"props":583,"children":584},{},[585],{"type":42,"value":303},{"type":42,"value":587}," Testnet epochs are shorter than mainnet epochs. Storing with low epoch counts means blobs expire sooner than expected.",{"type":37,"tag":49,"props":589,"children":590},{},[591,595,597,603],{"type":37,"tag":53,"props":592,"children":593},{},[594],{"type":42,"value":321},{"type":42,"value":596}," Use ",{"type":37,"tag":140,"props":598,"children":600},{"className":599},[],[601],{"type":42,"value":602},"walrus info",{"type":42,"value":604}," to check the current epoch duration. Use generous epoch values on testnet (30+). On mainnet, 1 epoch = 14 days.",{"type":37,"tag":86,"props":606,"children":607},{},[],{"type":37,"tag":278,"props":609,"children":611},{"id":610},"suiup-switch-walrus-1481-fails",[612,618],{"type":37,"tag":140,"props":613,"children":615},{"className":614},[],[616],{"type":42,"value":617},"suiup switch walrus 1.48.1",{"type":42,"value":619}," fails",{"type":37,"tag":49,"props":621,"children":622},{},[623,627,629,634],{"type":37,"tag":53,"props":624,"children":625},{},[626],{"type":42,"value":303},{"type":42,"value":628}," Wrong syntax. ",{"type":37,"tag":140,"props":630,"children":632},{"className":631},[],[633],{"type":42,"value":374},{"type":42,"value":635}," uses network-based versioning, not version numbers.",{"type":37,"tag":49,"props":637,"children":638},{},[639],{"type":37,"tag":53,"props":640,"children":641},{},[642],{"type":42,"value":321},{"type":37,"tag":323,"props":644,"children":646},{"className":325,"code":645,"language":327,"meta":328,"style":328},"suiup install walrus@mainnet\n# or\nsuiup install walrus@testnet\n",[647],{"type":37,"tag":140,"props":648,"children":649},{"__ignoreMap":328},[650,666,675],{"type":37,"tag":334,"props":651,"children":652},{"class":336,"line":22},[653,657,661],{"type":37,"tag":334,"props":654,"children":655},{"style":340},[656],{"type":42,"value":374},{"type":37,"tag":334,"props":658,"children":659},{"style":346},[660],{"type":42,"value":379},{"type":37,"tag":334,"props":662,"children":663},{"style":346},[664],{"type":42,"value":665}," walrus@mainnet\n",{"type":37,"tag":334,"props":667,"children":668},{"class":336,"line":368},[669],{"type":37,"tag":334,"props":670,"children":672},{"style":671},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[673],{"type":42,"value":674},"# or\n",{"type":37,"tag":334,"props":676,"children":678},{"class":336,"line":677},3,[679,683,687],{"type":37,"tag":334,"props":680,"children":681},{"style":340},[682],{"type":42,"value":374},{"type":37,"tag":334,"props":684,"children":685},{"style":346},[686],{"type":42,"value":379},{"type":37,"tag":334,"props":688,"children":689},{"style":346},[690],{"type":42,"value":691}," walrus@testnet\n",{"type":37,"tag":86,"props":693,"children":694},{},[],{"type":37,"tag":271,"props":696,"children":698},{"id":697},"typescript-sdk-errors",[699],{"type":42,"value":700},"TypeScript SDK errors",{"type":37,"tag":278,"props":702,"children":704},{"id":703},"chainnotsupportederror-the-account-does-not-support-the-chain-suiundefined",[705],{"type":37,"tag":140,"props":706,"children":708},{"className":707},[],[709],{"type":42,"value":710},"ChainNotSupportedError: The account does not support the chain \"sui:undefined\"",{"type":37,"tag":49,"props":712,"children":713},{},[714,718],{"type":37,"tag":53,"props":715,"children":716},{},[717],{"type":42,"value":303},{"type":42,"value":719}," The dApp Kit wallet adapter does not have the correct network configured. The SDK cannot determine which Sui chain to use.",{"type":37,"tag":49,"props":721,"children":722},{},[723,727],{"type":37,"tag":53,"props":724,"children":725},{},[726],{"type":42,"value":321},{"type":42,"value":728}," Ensure the dApp Kit provider specifies the chain:",{"type":37,"tag":323,"props":730,"children":734},{"className":731,"code":732,"language":733,"meta":328,"style":328},"language-typescript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003CSuiClientProvider networks={{ testnet: { url: getFullnodeUrl('testnet') } }} defaultNetwork=\"testnet\">\n","typescript",[735],{"type":37,"tag":140,"props":736,"children":737},{"__ignoreMap":328},[738],{"type":37,"tag":334,"props":739,"children":740},{"class":336,"line":22},[741,746,751,756,761,766,771,776,780,786,792,797,802,806,811,816,821,826,831,836,840,844],{"type":37,"tag":334,"props":742,"children":743},{"style":357},[744],{"type":42,"value":745},"\u003C",{"type":37,"tag":334,"props":747,"children":748},{"style":542},[749],{"type":42,"value":750},"SuiClientProvider networks",{"type":37,"tag":334,"props":752,"children":753},{"style":357},[754],{"type":42,"value":755},"={{",{"type":37,"tag":334,"props":757,"children":758},{"style":340},[759],{"type":42,"value":760}," testnet",{"type":37,"tag":334,"props":762,"children":763},{"style":357},[764],{"type":42,"value":765},":",{"type":37,"tag":334,"props":767,"children":768},{"style":357},[769],{"type":42,"value":770}," {",{"type":37,"tag":334,"props":772,"children":773},{"style":340},[774],{"type":42,"value":775}," url",{"type":37,"tag":334,"props":777,"children":778},{"style":357},[779],{"type":42,"value":765},{"type":37,"tag":334,"props":781,"children":783},{"style":782},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[784],{"type":42,"value":785}," getFullnodeUrl",{"type":37,"tag":334,"props":787,"children":789},{"style":788},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[790],{"type":42,"value":791},"(",{"type":37,"tag":334,"props":793,"children":794},{"style":357},[795],{"type":42,"value":796},"'",{"type":37,"tag":334,"props":798,"children":799},{"style":346},[800],{"type":42,"value":801},"testnet",{"type":37,"tag":334,"props":803,"children":804},{"style":357},[805],{"type":42,"value":796},{"type":37,"tag":334,"props":807,"children":808},{"style":788},[809],{"type":42,"value":810},") ",{"type":37,"tag":334,"props":812,"children":813},{"style":357},[814],{"type":42,"value":815},"}",{"type":37,"tag":334,"props":817,"children":818},{"style":357},[819],{"type":42,"value":820}," }}",{"type":37,"tag":334,"props":822,"children":823},{"style":542},[824],{"type":42,"value":825}," defaultNetwork",{"type":37,"tag":334,"props":827,"children":828},{"style":357},[829],{"type":42,"value":830},"=",{"type":37,"tag":334,"props":832,"children":833},{"style":357},[834],{"type":42,"value":835},"\"",{"type":37,"tag":334,"props":837,"children":838},{"style":346},[839],{"type":42,"value":801},{"type":37,"tag":334,"props":841,"children":842},{"style":357},[843],{"type":42,"value":835},{"type":37,"tag":334,"props":845,"children":846},{"style":357},[847],{"type":42,"value":848},">\n",{"type":37,"tag":49,"props":850,"children":851},{},[852],{"type":42,"value":853},"And that the wallet is connected to the same network.",{"type":37,"tag":86,"props":855,"children":856},{},[],{"type":37,"tag":278,"props":858,"children":860},{"id":859},"filebytes-is-not-a-function",[861],{"type":37,"tag":140,"props":862,"children":864},{"className":863},[],[865],{"type":42,"value":866},"file.bytes is not a function",{"type":37,"tag":49,"props":868,"children":869},{},[870,874,876,882],{"type":37,"tag":53,"props":871,"children":872},{},[873],{"type":42,"value":303},{"type":42,"value":875}," Passing a raw string or JavaScript object to ",{"type":37,"tag":140,"props":877,"children":879},{"className":878},[],[880],{"type":42,"value":881},"storeBlob",{"type":42,"value":883}," instead of binary data.",{"type":37,"tag":49,"props":885,"children":886},{},[887,891,893,899],{"type":37,"tag":53,"props":888,"children":889},{},[890],{"type":42,"value":321},{"type":42,"value":892}," Convert to ",{"type":37,"tag":140,"props":894,"children":896},{"className":895},[],[897],{"type":42,"value":898},"Uint8Array",{"type":42,"value":900}," first:",{"type":37,"tag":323,"props":902,"children":904},{"className":731,"code":903,"language":733,"meta":328,"style":328},"\u002F\u002F WRONG\nawait client.walrus.storeBlob({ blob: myJsonString, epochs: 5 });\n\n\u002F\u002F CORRECT\nawait client.walrus.storeBlob({\n  blob: new TextEncoder().encode(myJsonString),\n  epochs: 5,\n});\n",[905],{"type":37,"tag":140,"props":906,"children":907},{"__ignoreMap":328},[908,916,1004,1013,1022,1059,1106,1127],{"type":37,"tag":334,"props":909,"children":910},{"class":336,"line":22},[911],{"type":37,"tag":334,"props":912,"children":913},{"style":671},[914],{"type":42,"value":915},"\u002F\u002F WRONG\n",{"type":37,"tag":334,"props":917,"children":918},{"class":336,"line":368},[919,925,930,934,938,942,946,950,955,960,964,969,974,979,983,989,994,999],{"type":37,"tag":334,"props":920,"children":922},{"style":921},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[923],{"type":42,"value":924},"await",{"type":37,"tag":334,"props":926,"children":927},{"style":542},[928],{"type":42,"value":929}," client",{"type":37,"tag":334,"props":931,"children":932},{"style":357},[933],{"type":42,"value":472},{"type":37,"tag":334,"props":935,"children":936},{"style":542},[937],{"type":42,"value":311},{"type":37,"tag":334,"props":939,"children":940},{"style":357},[941],{"type":42,"value":472},{"type":37,"tag":334,"props":943,"children":944},{"style":782},[945],{"type":42,"value":881},{"type":37,"tag":334,"props":947,"children":948},{"style":542},[949],{"type":42,"value":791},{"type":37,"tag":334,"props":951,"children":952},{"style":357},[953],{"type":42,"value":954},"{",{"type":37,"tag":334,"props":956,"children":957},{"style":788},[958],{"type":42,"value":959}," blob",{"type":37,"tag":334,"props":961,"children":962},{"style":357},[963],{"type":42,"value":765},{"type":37,"tag":334,"props":965,"children":966},{"style":542},[967],{"type":42,"value":968}," myJsonString",{"type":37,"tag":334,"props":970,"children":971},{"style":357},[972],{"type":42,"value":973},",",{"type":37,"tag":334,"props":975,"children":976},{"style":788},[977],{"type":42,"value":978}," epochs",{"type":37,"tag":334,"props":980,"children":981},{"style":357},[982],{"type":42,"value":765},{"type":37,"tag":334,"props":984,"children":986},{"style":985},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[987],{"type":42,"value":988}," 5",{"type":37,"tag":334,"props":990,"children":991},{"style":357},[992],{"type":42,"value":993}," }",{"type":37,"tag":334,"props":995,"children":996},{"style":542},[997],{"type":42,"value":998},")",{"type":37,"tag":334,"props":1000,"children":1001},{"style":357},[1002],{"type":42,"value":1003},";\n",{"type":37,"tag":334,"props":1005,"children":1006},{"class":336,"line":677},[1007],{"type":37,"tag":334,"props":1008,"children":1010},{"emptyLinePlaceholder":1009},true,[1011],{"type":42,"value":1012},"\n",{"type":37,"tag":334,"props":1014,"children":1016},{"class":336,"line":1015},4,[1017],{"type":37,"tag":334,"props":1018,"children":1019},{"style":671},[1020],{"type":42,"value":1021},"\u002F\u002F CORRECT\n",{"type":37,"tag":334,"props":1023,"children":1025},{"class":336,"line":1024},5,[1026,1030,1034,1038,1042,1046,1050,1054],{"type":37,"tag":334,"props":1027,"children":1028},{"style":921},[1029],{"type":42,"value":924},{"type":37,"tag":334,"props":1031,"children":1032},{"style":542},[1033],{"type":42,"value":929},{"type":37,"tag":334,"props":1035,"children":1036},{"style":357},[1037],{"type":42,"value":472},{"type":37,"tag":334,"props":1039,"children":1040},{"style":542},[1041],{"type":42,"value":311},{"type":37,"tag":334,"props":1043,"children":1044},{"style":357},[1045],{"type":42,"value":472},{"type":37,"tag":334,"props":1047,"children":1048},{"style":782},[1049],{"type":42,"value":881},{"type":37,"tag":334,"props":1051,"children":1052},{"style":542},[1053],{"type":42,"value":791},{"type":37,"tag":334,"props":1055,"children":1056},{"style":357},[1057],{"type":42,"value":1058},"{\n",{"type":37,"tag":334,"props":1060,"children":1062},{"class":336,"line":1061},6,[1063,1068,1072,1077,1082,1087,1091,1096,1101],{"type":37,"tag":334,"props":1064,"children":1065},{"style":788},[1066],{"type":42,"value":1067},"  blob",{"type":37,"tag":334,"props":1069,"children":1070},{"style":357},[1071],{"type":42,"value":765},{"type":37,"tag":334,"props":1073,"children":1074},{"style":357},[1075],{"type":42,"value":1076}," new",{"type":37,"tag":334,"props":1078,"children":1079},{"style":782},[1080],{"type":42,"value":1081}," TextEncoder",{"type":37,"tag":334,"props":1083,"children":1084},{"style":542},[1085],{"type":42,"value":1086},"()",{"type":37,"tag":334,"props":1088,"children":1089},{"style":357},[1090],{"type":42,"value":472},{"type":37,"tag":334,"props":1092,"children":1093},{"style":782},[1094],{"type":42,"value":1095},"encode",{"type":37,"tag":334,"props":1097,"children":1098},{"style":542},[1099],{"type":42,"value":1100},"(myJsonString)",{"type":37,"tag":334,"props":1102,"children":1103},{"style":357},[1104],{"type":42,"value":1105},",\n",{"type":37,"tag":334,"props":1107,"children":1109},{"class":336,"line":1108},7,[1110,1115,1119,1123],{"type":37,"tag":334,"props":1111,"children":1112},{"style":788},[1113],{"type":42,"value":1114},"  epochs",{"type":37,"tag":334,"props":1116,"children":1117},{"style":357},[1118],{"type":42,"value":765},{"type":37,"tag":334,"props":1120,"children":1121},{"style":985},[1122],{"type":42,"value":988},{"type":37,"tag":334,"props":1124,"children":1125},{"style":357},[1126],{"type":42,"value":1105},{"type":37,"tag":334,"props":1128,"children":1130},{"class":336,"line":1129},8,[1131,1135,1139],{"type":37,"tag":334,"props":1132,"children":1133},{"style":357},[1134],{"type":42,"value":815},{"type":37,"tag":334,"props":1136,"children":1137},{"style":542},[1138],{"type":42,"value":998},{"type":37,"tag":334,"props":1140,"children":1141},{"style":357},[1142],{"type":42,"value":1003},{"type":37,"tag":49,"props":1144,"children":1145},{},[1146,1148,1154,1156,1161,1163,1169,1170,1176,1178,1184],{"type":42,"value":1147},"The ",{"type":37,"tag":140,"props":1149,"children":1151},{"className":1150},[],[1152],{"type":42,"value":1153},"blob",{"type":42,"value":1155}," parameter expects ",{"type":37,"tag":140,"props":1157,"children":1159},{"className":1158},[],[1160],{"type":42,"value":898},{"type":42,"value":1162},", ",{"type":37,"tag":140,"props":1164,"children":1166},{"className":1165},[],[1167],{"type":42,"value":1168},"File",{"type":42,"value":1162},{"type":37,"tag":140,"props":1171,"children":1173},{"className":1172},[],[1174],{"type":42,"value":1175},"Blob",{"type":42,"value":1177},", or ",{"type":37,"tag":140,"props":1179,"children":1181},{"className":1180},[],[1182],{"type":42,"value":1183},"ReadableStream",{"type":42,"value":472},{"type":37,"tag":86,"props":1186,"children":1187},{},[],{"type":37,"tag":278,"props":1189,"children":1191},{"id":1190},"tip-amount-n-exceeds-the-maximum-allowed-tip-m",[1192],{"type":37,"tag":140,"props":1193,"children":1195},{"className":1194},[],[1196],{"type":42,"value":1197},"Tip amount (N) exceeds the maximum allowed tip (M)",{"type":37,"tag":49,"props":1199,"children":1200},{},[1201,1205,1207,1213],{"type":37,"tag":53,"props":1202,"children":1203},{},[1204],{"type":42,"value":303},{"type":42,"value":1206}," The upload relay requires a tip higher than your configured maximum. The default ",{"type":37,"tag":140,"props":1208,"children":1210},{"className":1209},[],[1211],{"type":42,"value":1212},"sendTip.max",{"type":42,"value":1214}," is too low for the relay you are using.",{"type":37,"tag":49,"props":1216,"children":1217},{},[1218,1222,1224,1229],{"type":37,"tag":53,"props":1219,"children":1220},{},[1221],{"type":42,"value":321},{"type":42,"value":1223}," Increase the ",{"type":37,"tag":140,"props":1225,"children":1227},{"className":1226},[],[1228],{"type":42,"value":1212},{"type":42,"value":1230}," value in your upload relay configuration:",{"type":37,"tag":323,"props":1232,"children":1234},{"className":731,"code":1233,"language":733,"meta":328,"style":328},"uploadRelay: {\n  host: 'https:\u002F\u002Fupload-relay.mainnet.walrus.space',\n  sendTip: { max: 5_000_000 },  \u002F\u002F increase as needed\n},\n",[1235],{"type":37,"tag":140,"props":1236,"children":1237},{"__ignoreMap":328},[1238,1255,1285,1325],{"type":37,"tag":334,"props":1239,"children":1240},{"class":336,"line":22},[1241,1246,1250],{"type":37,"tag":334,"props":1242,"children":1243},{"style":340},[1244],{"type":42,"value":1245},"uploadRelay",{"type":37,"tag":334,"props":1247,"children":1248},{"style":357},[1249],{"type":42,"value":765},{"type":37,"tag":334,"props":1251,"children":1252},{"style":357},[1253],{"type":42,"value":1254}," {\n",{"type":37,"tag":334,"props":1256,"children":1257},{"class":336,"line":368},[1258,1263,1267,1272,1277,1281],{"type":37,"tag":334,"props":1259,"children":1260},{"style":340},[1261],{"type":42,"value":1262},"  host",{"type":37,"tag":334,"props":1264,"children":1265},{"style":357},[1266],{"type":42,"value":765},{"type":37,"tag":334,"props":1268,"children":1269},{"style":357},[1270],{"type":42,"value":1271}," '",{"type":37,"tag":334,"props":1273,"children":1274},{"style":346},[1275],{"type":42,"value":1276},"https:\u002F\u002Fupload-relay.mainnet.walrus.space",{"type":37,"tag":334,"props":1278,"children":1279},{"style":357},[1280],{"type":42,"value":796},{"type":37,"tag":334,"props":1282,"children":1283},{"style":357},[1284],{"type":42,"value":1105},{"type":37,"tag":334,"props":1286,"children":1287},{"class":336,"line":677},[1288,1293,1297,1301,1306,1310,1315,1320],{"type":37,"tag":334,"props":1289,"children":1290},{"style":340},[1291],{"type":42,"value":1292},"  sendTip",{"type":37,"tag":334,"props":1294,"children":1295},{"style":357},[1296],{"type":42,"value":765},{"type":37,"tag":334,"props":1298,"children":1299},{"style":357},[1300],{"type":42,"value":770},{"type":37,"tag":334,"props":1302,"children":1303},{"style":340},[1304],{"type":42,"value":1305}," max",{"type":37,"tag":334,"props":1307,"children":1308},{"style":357},[1309],{"type":42,"value":765},{"type":37,"tag":334,"props":1311,"children":1312},{"style":985},[1313],{"type":42,"value":1314}," 5_000_000",{"type":37,"tag":334,"props":1316,"children":1317},{"style":357},[1318],{"type":42,"value":1319}," },",{"type":37,"tag":334,"props":1321,"children":1322},{"style":671},[1323],{"type":42,"value":1324},"  \u002F\u002F increase as needed\n",{"type":37,"tag":334,"props":1326,"children":1327},{"class":336,"line":1015},[1328],{"type":37,"tag":334,"props":1329,"children":1330},{"style":357},[1331],{"type":42,"value":1332},"},\n",{"type":37,"tag":49,"props":1334,"children":1335},{},[1336,1338],{"type":42,"value":1337},"Check the relay's required tip: ",{"type":37,"tag":140,"props":1339,"children":1341},{"className":1340},[],[1342],{"type":42,"value":1343},"curl \u003Crelay-url>\u002Fv1\u002Ftip-config",{"type":37,"tag":86,"props":1345,"children":1346},{},[],{"type":37,"tag":278,"props":1348,"children":1350},{"id":1349},"retryablewalrusclienterror-too-many-failures-while-writing-blob",[1351],{"type":37,"tag":140,"props":1352,"children":1354},{"className":1353},[],[1355],{"type":42,"value":1356},"RetryableWalrusClientError: Too many failures while writing blob",{"type":37,"tag":49,"props":1358,"children":1359},{},[1360,1364],{"type":37,"tag":53,"props":1361,"children":1362},{},[1363],{"type":42,"value":303},{"type":42,"value":1365}," The SDK failed to distribute slivers to enough storage nodes. Common causes:",{"type":37,"tag":428,"props":1367,"children":1368},{},[1369,1374,1379],{"type":37,"tag":432,"props":1370,"children":1371},{},[1372],{"type":42,"value":1373},"No upload relay configured for a browser environment",{"type":37,"tag":432,"props":1375,"children":1376},{},[1377],{"type":42,"value":1378},"Network connectivity issues to storage nodes",{"type":37,"tag":432,"props":1380,"children":1381},{},[1382],{"type":42,"value":1383},"Storage nodes temporarily unavailable",{"type":37,"tag":49,"props":1385,"children":1386},{},[1387],{"type":37,"tag":53,"props":1388,"children":1389},{},[1390],{"type":42,"value":321},{"type":37,"tag":1392,"props":1393,"children":1394},"ol",{},[1395,1407,1412,1417],{"type":37,"tag":432,"props":1396,"children":1397},{},[1398,1400,1405],{"type":42,"value":1399},"In a browser, configure an upload relay (see ",{"type":37,"tag":140,"props":1401,"children":1403},{"className":1402},[],[1404],{"type":42,"value":167},{"type":42,"value":1406}," skill).",{"type":37,"tag":432,"props":1408,"children":1409},{},[1410],{"type":42,"value":1411},"Check network connectivity.",{"type":37,"tag":432,"props":1413,"children":1414},{},[1415],{"type":42,"value":1416},"Retry with exponential backoff.",{"type":37,"tag":432,"props":1418,"children":1419},{},[1420],{"type":42,"value":1421},"If persistent, try a different upload relay or wait for storage node recovery.",{"type":37,"tag":86,"props":1423,"children":1424},{},[],{"type":37,"tag":278,"props":1426,"children":1428},{"id":1427},"blobnotcertifiederror",[1429],{"type":37,"tag":140,"props":1430,"children":1432},{"className":1431},[],[1433],{"type":42,"value":1434},"BlobNotCertifiedError",{"type":37,"tag":49,"props":1436,"children":1437},{},[1438,1442],{"type":37,"tag":53,"props":1439,"children":1440},{},[1441],{"type":42,"value":303},{"type":42,"value":1443}," The blob was registered on-chain but has not yet received enough confirmations from storage nodes. The availability certificate has not been submitted.",{"type":37,"tag":49,"props":1445,"children":1446},{},[1447,1451],{"type":37,"tag":53,"props":1448,"children":1449},{},[1450],{"type":42,"value":321},{"type":42,"value":1452}," The blob is not yet at its Point of Availability (PoA). Wait for certification to complete. If it never completes, the upload may have failed partway through. Retry the store operation.",{"type":37,"tag":86,"props":1454,"children":1455},{},[],{"type":37,"tag":278,"props":1457,"children":1459},{"id":1458},"vite-build-errors-with-mystenwalrus",[1460,1462],{"type":42,"value":1461},"Vite build errors with ",{"type":37,"tag":140,"props":1463,"children":1465},{"className":1464},[],[1466],{"type":42,"value":1467},"@mysten\u002Fwalrus",{"type":37,"tag":49,"props":1469,"children":1470},{},[1471,1475],{"type":37,"tag":53,"props":1472,"children":1473},{},[1474],{"type":42,"value":303},{"type":42,"value":1476}," Vite's dependency pre-bundling breaks the SDK's gRPC and WASM imports.",{"type":37,"tag":49,"props":1478,"children":1479},{},[1480,1484],{"type":37,"tag":53,"props":1481,"children":1482},{},[1483],{"type":42,"value":321},{"type":42,"value":1485}," Exclude the package from optimization:",{"type":37,"tag":323,"props":1487,"children":1489},{"className":731,"code":1488,"language":733,"meta":328,"style":328},"\u002F\u002F vite.config.ts\nexport default defineConfig({\n  optimizeDeps: {\n    exclude: ['@mysten\u002Fwalrus'],\n  },\n});\n",[1490],{"type":37,"tag":140,"props":1491,"children":1492},{"__ignoreMap":328},[1493,1501,1527,1543,1581,1589],{"type":37,"tag":334,"props":1494,"children":1495},{"class":336,"line":22},[1496],{"type":37,"tag":334,"props":1497,"children":1498},{"style":671},[1499],{"type":42,"value":1500},"\u002F\u002F vite.config.ts\n",{"type":37,"tag":334,"props":1502,"children":1503},{"class":336,"line":368},[1504,1509,1514,1519,1523],{"type":37,"tag":334,"props":1505,"children":1506},{"style":921},[1507],{"type":42,"value":1508},"export",{"type":37,"tag":334,"props":1510,"children":1511},{"style":921},[1512],{"type":42,"value":1513}," default",{"type":37,"tag":334,"props":1515,"children":1516},{"style":782},[1517],{"type":42,"value":1518}," defineConfig",{"type":37,"tag":334,"props":1520,"children":1521},{"style":542},[1522],{"type":42,"value":791},{"type":37,"tag":334,"props":1524,"children":1525},{"style":357},[1526],{"type":42,"value":1058},{"type":37,"tag":334,"props":1528,"children":1529},{"class":336,"line":677},[1530,1535,1539],{"type":37,"tag":334,"props":1531,"children":1532},{"style":788},[1533],{"type":42,"value":1534},"  optimizeDeps",{"type":37,"tag":334,"props":1536,"children":1537},{"style":357},[1538],{"type":42,"value":765},{"type":37,"tag":334,"props":1540,"children":1541},{"style":357},[1542],{"type":42,"value":1254},{"type":37,"tag":334,"props":1544,"children":1545},{"class":336,"line":1015},[1546,1551,1555,1560,1564,1568,1572,1577],{"type":37,"tag":334,"props":1547,"children":1548},{"style":788},[1549],{"type":42,"value":1550},"    exclude",{"type":37,"tag":334,"props":1552,"children":1553},{"style":357},[1554],{"type":42,"value":765},{"type":37,"tag":334,"props":1556,"children":1557},{"style":542},[1558],{"type":42,"value":1559}," [",{"type":37,"tag":334,"props":1561,"children":1562},{"style":357},[1563],{"type":42,"value":796},{"type":37,"tag":334,"props":1565,"children":1566},{"style":346},[1567],{"type":42,"value":1467},{"type":37,"tag":334,"props":1569,"children":1570},{"style":357},[1571],{"type":42,"value":796},{"type":37,"tag":334,"props":1573,"children":1574},{"style":542},[1575],{"type":42,"value":1576},"]",{"type":37,"tag":334,"props":1578,"children":1579},{"style":357},[1580],{"type":42,"value":1105},{"type":37,"tag":334,"props":1582,"children":1583},{"class":336,"line":1024},[1584],{"type":37,"tag":334,"props":1585,"children":1586},{"style":357},[1587],{"type":42,"value":1588},"  },\n",{"type":37,"tag":334,"props":1590,"children":1591},{"class":336,"line":1061},[1592,1596,1600],{"type":37,"tag":334,"props":1593,"children":1594},{"style":357},[1595],{"type":42,"value":815},{"type":37,"tag":334,"props":1597,"children":1598},{"style":542},[1599],{"type":42,"value":998},{"type":37,"tag":334,"props":1601,"children":1602},{"style":357},[1603],{"type":42,"value":1003},{"type":37,"tag":86,"props":1605,"children":1606},{},[],{"type":37,"tag":271,"props":1608,"children":1610},{"id":1609},"http-api-errors",[1611],{"type":42,"value":1612},"HTTP API errors",{"type":37,"tag":278,"props":1614,"children":1616},{"id":1615},"_413-payload-too-large",[1617],{"type":37,"tag":140,"props":1618,"children":1620},{"className":1619},[],[1621],{"type":42,"value":1622},"413 Payload Too Large",{"type":37,"tag":49,"props":1624,"children":1625},{},[1626,1630],{"type":37,"tag":53,"props":1627,"children":1628},{},[1629],{"type":42,"value":303},{"type":42,"value":1631}," The publisher has a maximum request body size. Public testnet publishers limit uploads to approximately 10 MiB.",{"type":37,"tag":49,"props":1633,"children":1634},{},[1635],{"type":37,"tag":53,"props":1636,"children":1637},{},[1638],{"type":42,"value":321},{"type":37,"tag":428,"props":1640,"children":1641},{},[1642,1647],{"type":37,"tag":432,"props":1643,"children":1644},{},[1645],{"type":42,"value":1646},"For files larger than the publisher limit, use the CLI, TypeScript SDK, or run your own publisher.",{"type":37,"tag":432,"props":1648,"children":1649},{},[1650],{"type":42,"value":1651},"On mainnet, there are no public publishers. Use the upload relay or SDK directly.",{"type":37,"tag":86,"props":1653,"children":1654},{},[],{"type":37,"tag":278,"props":1656,"children":1658},{"id":1657},"_404-not-found-immediately-after-uploading",[1659,1665],{"type":37,"tag":140,"props":1660,"children":1662},{"className":1661},[],[1663],{"type":42,"value":1664},"404 Not Found",{"type":42,"value":1666}," immediately after uploading",{"type":37,"tag":49,"props":1668,"children":1669},{},[1670,1674],{"type":37,"tag":53,"props":1671,"children":1672},{},[1673],{"type":42,"value":303},{"type":42,"value":1675}," CDN caching on the aggregator. The aggregator's CDN cached a 404 from before the blob propagated.",{"type":37,"tag":49,"props":1677,"children":1678},{},[1679,1683],{"type":37,"tag":53,"props":1680,"children":1681},{},[1682],{"type":42,"value":321},{"type":42,"value":1684}," Retry with exponential backoff. The blob should become available within seconds to minutes after certification. If using a CDN-fronted aggregator, the cache TTL determines the delay.",{"type":37,"tag":86,"props":1686,"children":1687},{},[],{"type":37,"tag":271,"props":1689,"children":1691},{"id":1690},"move-integration-errors",[1692],{"type":42,"value":1693},"Move integration errors",{"type":37,"tag":278,"props":1695,"children":1697},{"id":1696},"vmverificationordeserializationerror-in-command-0",[1698],{"type":37,"tag":140,"props":1699,"children":1701},{"className":1700},[],[1702],{"type":42,"value":1703},"VMVerificationOrDeserializationError in command 0",{"type":37,"tag":49,"props":1705,"children":1706},{},[1707,1711,1713,1719],{"type":37,"tag":53,"props":1708,"children":1709},{},[1710],{"type":42,"value":303},{"type":42,"value":1712}," The published Move package does not match the on-chain Walrus contracts. This is almost always a ",{"type":37,"tag":140,"props":1714,"children":1716},{"className":1715},[],[1717],{"type":42,"value":1718},"Move.toml",{"type":42,"value":1720}," dependency issue.",{"type":37,"tag":49,"props":1722,"children":1723},{},[1724,1728],{"type":37,"tag":53,"props":1725,"children":1726},{},[1727],{"type":42,"value":321},{"type":42,"value":1729}," Check these in order:",{"type":37,"tag":1392,"props":1731,"children":1732},{},[1733,1814,1845,1876],{"type":37,"tag":432,"props":1734,"children":1735},{},[1736,1749,1751,1757,1759,1765,1766],{"type":37,"tag":53,"props":1737,"children":1738},{},[1739,1741,1747],{"type":42,"value":1740},"Wrong ",{"type":37,"tag":140,"props":1742,"children":1744},{"className":1743},[],[1745],{"type":42,"value":1746},"subdir",{"type":42,"value":1748}," for the network.",{"type":42,"value":1750}," Testnet uses ",{"type":37,"tag":140,"props":1752,"children":1754},{"className":1753},[],[1755],{"type":42,"value":1756},"testnet-contracts\u002Fwalrus",{"type":42,"value":1758},", mainnet uses ",{"type":37,"tag":140,"props":1760,"children":1762},{"className":1761},[],[1763],{"type":42,"value":1764},"contracts\u002Fwalrus",{"type":42,"value":472},{"type":37,"tag":323,"props":1767,"children":1771},{"className":1768,"code":1769,"language":1770,"meta":328,"style":328},"language-toml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Testnet\nWalrus = { git = \"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002Fwalrus.git\", rev = \"testnet\", subdir = \"testnet-contracts\u002Fwalrus\" }\n\n# Mainnet\nWalrus = { git = \"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002Fwalrus.git\", rev = \"main\", subdir = \"contracts\u002Fwalrus\" }\n","toml",[1772],{"type":37,"tag":140,"props":1773,"children":1774},{"__ignoreMap":328},[1775,1783,1791,1798,1806],{"type":37,"tag":334,"props":1776,"children":1777},{"class":336,"line":22},[1778],{"type":37,"tag":334,"props":1779,"children":1780},{},[1781],{"type":42,"value":1782},"# Testnet\n",{"type":37,"tag":334,"props":1784,"children":1785},{"class":336,"line":368},[1786],{"type":37,"tag":334,"props":1787,"children":1788},{},[1789],{"type":42,"value":1790},"Walrus = { git = \"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002Fwalrus.git\", rev = \"testnet\", subdir = \"testnet-contracts\u002Fwalrus\" }\n",{"type":37,"tag":334,"props":1792,"children":1793},{"class":336,"line":677},[1794],{"type":37,"tag":334,"props":1795,"children":1796},{"emptyLinePlaceholder":1009},[1797],{"type":42,"value":1012},{"type":37,"tag":334,"props":1799,"children":1800},{"class":336,"line":1015},[1801],{"type":37,"tag":334,"props":1802,"children":1803},{},[1804],{"type":42,"value":1805},"# Mainnet\n",{"type":37,"tag":334,"props":1807,"children":1808},{"class":336,"line":1024},[1809],{"type":37,"tag":334,"props":1810,"children":1811},{},[1812],{"type":42,"value":1813},"Walrus = { git = \"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002Fwalrus.git\", rev = \"main\", subdir = \"contracts\u002Fwalrus\" }\n",{"type":37,"tag":432,"props":1815,"children":1816},{},[1817,1828,1830,1835,1837,1843],{"type":37,"tag":53,"props":1818,"children":1819},{},[1820,1821,1827],{"type":42,"value":1740},{"type":37,"tag":140,"props":1822,"children":1824},{"className":1823},[],[1825],{"type":42,"value":1826},"rev",{"type":42,"value":472},{"type":42,"value":1829}," The commit must match what is deployed on-chain. Use the ",{"type":37,"tag":140,"props":1831,"children":1833},{"className":1832},[],[1834],{"type":42,"value":801},{"type":42,"value":1836}," branch for testnet, ",{"type":37,"tag":140,"props":1838,"children":1840},{"className":1839},[],[1841],{"type":42,"value":1842},"main",{"type":42,"value":1844}," for mainnet, or pin to a specific commit.",{"type":37,"tag":432,"props":1846,"children":1847},{},[1848,1860,1862,1867,1869,1875],{"type":37,"tag":53,"props":1849,"children":1850},{},[1851,1853,1859],{"type":42,"value":1852},"Stale ",{"type":37,"tag":140,"props":1854,"children":1856},{"className":1855},[],[1857],{"type":42,"value":1858},"Move.lock",{"type":42,"value":472},{"type":42,"value":1861}," Delete ",{"type":37,"tag":140,"props":1863,"children":1865},{"className":1864},[],[1866],{"type":42,"value":1858},{"type":42,"value":1868}," and rebuild: ",{"type":37,"tag":140,"props":1870,"children":1872},{"className":1871},[],[1873],{"type":42,"value":1874},"rm Move.lock && sui move build",{"type":42,"value":472},{"type":37,"tag":432,"props":1877,"children":1878},{},[1879,1890,1891,1897,1899,1905],{"type":37,"tag":53,"props":1880,"children":1881},{},[1882,1883,1889],{"type":42,"value":1740},{"type":37,"tag":140,"props":1884,"children":1886},{"className":1885},[],[1887],{"type":42,"value":1888},"edition",{"type":42,"value":472},{"type":42,"value":596},{"type":37,"tag":140,"props":1892,"children":1894},{"className":1893},[],[1895],{"type":42,"value":1896},"edition = \"2024\"",{"type":42,"value":1898},", not ",{"type":37,"tag":140,"props":1900,"children":1902},{"className":1901},[],[1903],{"type":42,"value":1904},"\"2024.beta\"",{"type":42,"value":472},{"type":37,"tag":86,"props":1907,"children":1908},{},[],{"type":37,"tag":278,"props":1910,"children":1912},{"id":1911},"ewrongversion-abort-code-1-from-systeminner_mut",[1913,1919,1921],{"type":37,"tag":140,"props":1914,"children":1916},{"className":1915},[],[1917],{"type":42,"value":1918},"EWrongVersion",{"type":42,"value":1920}," (abort code 1) from ",{"type":37,"tag":140,"props":1922,"children":1924},{"className":1923},[],[1925],{"type":42,"value":1926},"system::inner_mut",{"type":37,"tag":49,"props":1928,"children":1929},{},[1930,1934],{"type":37,"tag":53,"props":1931,"children":1932},{},[1933],{"type":42,"value":303},{"type":42,"value":1935}," Calling a Walrus system function using an old package ID after a Walrus upgrade. Walrus uses versioned shared objects.",{"type":37,"tag":49,"props":1937,"children":1938},{},[1939],{"type":37,"tag":53,"props":1940,"children":1941},{},[1942],{"type":42,"value":321},{"type":37,"tag":428,"props":1944,"children":1945},{},[1946,1956,1974],{"type":37,"tag":432,"props":1947,"children":1948},{},[1949,1954],{"type":37,"tag":53,"props":1950,"children":1951},{},[1952],{"type":42,"value":1953},"If using the CLI or SDK:",{"type":42,"value":1955}," Update to the latest version. The client automatically refreshes package IDs.",{"type":37,"tag":432,"props":1957,"children":1958},{},[1959,1964,1966,1972],{"type":37,"tag":53,"props":1960,"children":1961},{},[1962],{"type":42,"value":1963},"If calling contracts directly:",{"type":42,"value":1965}," Query the ",{"type":37,"tag":140,"props":1967,"children":1969},{"className":1968},[],[1970],{"type":42,"value":1971},"system_object",{"type":42,"value":1973}," to find the current package ID. Do not hardcode package IDs.",{"type":37,"tag":432,"props":1975,"children":1976},{},[1977,1979,1984,1986,1992],{"type":42,"value":1978},"The Walrus client code has built-in retry logic: on ",{"type":37,"tag":140,"props":1980,"children":1982},{"className":1981},[],[1983],{"type":42,"value":1918},{"type":42,"value":1985},", it calls ",{"type":37,"tag":140,"props":1987,"children":1989},{"className":1988},[],[1990],{"type":42,"value":1991},"refresh_package_id()",{"type":42,"value":1993}," and retries.",{"type":37,"tag":86,"props":1995,"children":1996},{},[],{"type":37,"tag":271,"props":1998,"children":2000},{"id":1999},"seal-errors",[2001],{"type":42,"value":2002},"Seal errors",{"type":37,"tag":278,"props":2004,"children":2006},{"id":2005},"transaction-was-not-signed-by-the-correct-sender",[2007],{"type":37,"tag":140,"props":2008,"children":2010},{"className":2009},[],[2011],{"type":42,"value":2012},"Transaction was not signed by the correct sender",{"type":37,"tag":49,"props":2014,"children":2015},{},[2016,2020,2022,2028],{"type":37,"tag":53,"props":2017,"children":2018},{},[2019],{"type":42,"value":303},{"type":42,"value":2021}," The PTB passed to Seal does not have ",{"type":37,"tag":140,"props":2023,"children":2025},{"className":2024},[],[2026],{"type":42,"value":2027},"tx.setSender(address)",{"type":42,"value":2029}," set, or the sender does not match the decrypting address.",{"type":37,"tag":49,"props":2031,"children":2032},{},[2033],{"type":37,"tag":53,"props":2034,"children":2035},{},[2036],{"type":42,"value":321},{"type":37,"tag":323,"props":2038,"children":2040},{"className":731,"code":2039,"language":733,"meta":328,"style":328},"tx.setSender(address);  \u002F\u002F Must match the decrypting wallet address\n",[2041],{"type":37,"tag":140,"props":2042,"children":2043},{"__ignoreMap":328},[2044],{"type":37,"tag":334,"props":2045,"children":2046},{"class":336,"line":22},[2047,2052,2056,2061,2066,2071],{"type":37,"tag":334,"props":2048,"children":2049},{"style":542},[2050],{"type":42,"value":2051},"tx",{"type":37,"tag":334,"props":2053,"children":2054},{"style":357},[2055],{"type":42,"value":472},{"type":37,"tag":334,"props":2057,"children":2058},{"style":782},[2059],{"type":42,"value":2060},"setSender",{"type":37,"tag":334,"props":2062,"children":2063},{"style":542},[2064],{"type":42,"value":2065},"(address)",{"type":37,"tag":334,"props":2067,"children":2068},{"style":357},[2069],{"type":42,"value":2070},";",{"type":37,"tag":334,"props":2072,"children":2073},{"style":671},[2074],{"type":42,"value":2075},"  \u002F\u002F Must match the decrypting wallet address\n",{"type":37,"tag":86,"props":2077,"children":2078},{},[],{"type":37,"tag":278,"props":2080,"children":2082},{"id":2081},"connected-wallet-does-not-support-seal-session-signing",[2083],{"type":37,"tag":140,"props":2084,"children":2086},{"className":2085},[],[2087],{"type":42,"value":2088},"Connected wallet does not support Seal session signing",{"type":37,"tag":49,"props":2090,"children":2091},{},[2092,2096],{"type":37,"tag":53,"props":2093,"children":2094},{},[2095],{"type":42,"value":303},{"type":42,"value":2097}," The connected wallet does not implement the session signing protocol required by Seal for multi-signature decryption flows.",{"type":37,"tag":49,"props":2099,"children":2100},{},[2101,2105],{"type":37,"tag":53,"props":2102,"children":2103},{},[2104],{"type":42,"value":321},{"type":42,"value":2106}," Use a wallet that supports Seal sessions, or implement manual per-signature approval in your decryption flow.",{"type":37,"tag":86,"props":2108,"children":2109},{},[],{"type":37,"tag":271,"props":2111,"children":2113},{"id":2112},"network-general-errors",[2114],{"type":42,"value":2115},"Network \u002F general errors",{"type":37,"tag":278,"props":2117,"children":2119},{"id":2118},"err_cert_common_name_invalid-on-storage-node-connections",[2120,2126],{"type":37,"tag":140,"props":2121,"children":2123},{"className":2122},[],[2124],{"type":42,"value":2125},"ERR_CERT_COMMON_NAME_INVALID",{"type":42,"value":2127}," on storage node connections",{"type":37,"tag":49,"props":2129,"children":2130},{},[2131,2135],{"type":37,"tag":53,"props":2132,"children":2133},{},[2134],{"type":42,"value":303},{"type":42,"value":2136}," TLS certificate mismatch on a storage node. The node's certificate does not match the expected hostname.",{"type":37,"tag":49,"props":2138,"children":2139},{},[2140,2144],{"type":37,"tag":53,"props":2141,"children":2142},{},[2143],{"type":42,"value":321},{"type":42,"value":2145}," This is typically a storage node operator issue. Try a different aggregator or wait for the operator to fix their TLS configuration. If using the CLI, it should automatically fall back to other nodes.",{"type":37,"tag":86,"props":2147,"children":2148},{},[],{"type":37,"tag":278,"props":2150,"children":2152},{"id":2151},"clientserver-api-version-mismatch",[2153],{"type":37,"tag":140,"props":2154,"children":2156},{"className":2155},[],[2157],{"type":42,"value":2158},"client\u002Fserver api version mismatch",{"type":37,"tag":49,"props":2160,"children":2161},{},[2162,2166,2168,2173],{"type":37,"tag":53,"props":2163,"children":2164},{},[2165],{"type":42,"value":303},{"type":42,"value":2167}," The installed ",{"type":37,"tag":140,"props":2169,"children":2171},{"className":2170},[],[2172],{"type":42,"value":311},{"type":42,"value":2174}," binary version does not match the network's expected version.",{"type":37,"tag":49,"props":2176,"children":2177},{},[2178],{"type":37,"tag":53,"props":2179,"children":2180},{},[2181],{"type":42,"value":321},{"type":37,"tag":323,"props":2183,"children":2185},{"className":325,"code":2184,"language":327,"meta":328,"style":328},"suiup update walrus\n# or install the version matching your network\nsuiup install walrus@mainnet\n",[2186],{"type":37,"tag":140,"props":2187,"children":2188},{"__ignoreMap":328},[2189,2205,2213],{"type":37,"tag":334,"props":2190,"children":2191},{"class":336,"line":22},[2192,2196,2201],{"type":37,"tag":334,"props":2193,"children":2194},{"style":340},[2195],{"type":42,"value":374},{"type":37,"tag":334,"props":2197,"children":2198},{"style":346},[2199],{"type":42,"value":2200}," update",{"type":37,"tag":334,"props":2202,"children":2203},{"style":346},[2204],{"type":42,"value":384},{"type":37,"tag":334,"props":2206,"children":2207},{"class":336,"line":368},[2208],{"type":37,"tag":334,"props":2209,"children":2210},{"style":671},[2211],{"type":42,"value":2212},"# or install the version matching your network\n",{"type":37,"tag":334,"props":2214,"children":2215},{"class":336,"line":677},[2216,2220,2224],{"type":37,"tag":334,"props":2217,"children":2218},{"style":340},[2219],{"type":42,"value":374},{"type":37,"tag":334,"props":2221,"children":2222},{"style":346},[2223],{"type":42,"value":379},{"type":37,"tag":334,"props":2225,"children":2226},{"style":346},[2227],{"type":42,"value":665},{"type":37,"tag":86,"props":2229,"children":2230},{},[],{"type":37,"tag":271,"props":2232,"children":2234},{"id":2233},"rules",[2235],{"type":42,"value":2236},"Rules",{"type":37,"tag":1392,"props":2238,"children":2239},{},[2240,2265,2275,2285,2302,2326],{"type":37,"tag":432,"props":2241,"children":2242},{},[2243,2255,2257,2263],{"type":37,"tag":53,"props":2244,"children":2245},{},[2246,2248,2253],{"type":42,"value":2247},"Check ",{"type":37,"tag":140,"props":2249,"children":2251},{"className":2250},[],[2252],{"type":42,"value":1718},{"type":42,"value":2254}," first for Move errors.",{"type":42,"value":2256}," ",{"type":37,"tag":140,"props":2258,"children":2260},{"className":2259},[],[2261],{"type":42,"value":2262},"VMVerificationOrDeserializationError",{"type":42,"value":2264}," is almost always a dependency issue.",{"type":37,"tag":432,"props":2266,"children":2267},{},[2268,2273],{"type":37,"tag":53,"props":2269,"children":2270},{},[2271],{"type":42,"value":2272},"Check token balances for \"gas coin\" errors.",{"type":42,"value":2274}," Both SUI and WAL are required for write operations.",{"type":37,"tag":432,"props":2276,"children":2277},{},[2278,2283],{"type":37,"tag":53,"props":2279,"children":2280},{},[2281],{"type":42,"value":2282},"Configure upload relay for browser apps.",{"type":42,"value":2284}," SDK write operations in a browser require an upload relay.",{"type":37,"tag":432,"props":2286,"children":2287},{},[2288,2300],{"type":37,"tag":53,"props":2289,"children":2290},{},[2291,2293,2298],{"type":42,"value":2292},"Delete ",{"type":37,"tag":140,"props":2294,"children":2296},{"className":2295},[],[2297],{"type":42,"value":1858},{"type":42,"value":2299}," when switching dependency revisions.",{"type":42,"value":2301}," Stale lock files cause build failures.",{"type":37,"tag":432,"props":2303,"children":2304},{},[2305,2317,2319,2324],{"type":37,"tag":53,"props":2306,"children":2307},{},[2308,2310,2315],{"type":42,"value":2309},"Use ",{"type":37,"tag":140,"props":2311,"children":2313},{"className":2312},[],[2314],{"type":42,"value":602},{"type":42,"value":2316}," to verify network connectivity and configuration.",{"type":42,"value":2318}," If ",{"type":37,"tag":140,"props":2320,"children":2322},{"className":2321},[],[2323],{"type":42,"value":602},{"type":42,"value":2325}," works, your config is correct.",{"type":37,"tag":432,"props":2327,"children":2328},{},[2329,2334,2335,2341],{"type":37,"tag":53,"props":2330,"children":2331},{},[2332],{"type":42,"value":2333},"Update the CLI when you see version mismatch errors.",{"type":42,"value":441},{"type":37,"tag":140,"props":2336,"children":2338},{"className":2337},[],[2339],{"type":42,"value":2340},"suiup update walrus",{"type":42,"value":472},{"type":37,"tag":2343,"props":2344,"children":2345},"style",{},[2346],{"type":42,"value":2347},"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":2349,"total":2440},[2350,2364,2373,2391,2403,2418,2429],{"slug":2351,"name":2351,"fn":2352,"description":2353,"org":2354,"tags":2355,"stars":22,"repoUrl":23,"updatedAt":2363},"walrus-blob-lifecycle","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},[2356,2359,2360],{"name":2357,"slug":2358,"type":15},"Storage","storage",{"name":14,"slug":8,"type":15},{"name":2361,"slug":2362,"type":15},"Web3","web3","2026-07-16T06:01:49.056917",{"slug":145,"name":145,"fn":2365,"description":2366,"org":2367,"tags":2368,"stars":22,"repoUrl":23,"updatedAt":2372},"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},[2369,2370,2371],{"name":17,"slug":18,"type":15},{"name":2357,"slug":2358,"type":15},{"name":14,"slug":8,"type":15},"2026-07-16T06:02:52.586222",{"slug":2374,"name":2374,"fn":2375,"description":2376,"org":2377,"tags":2378,"stars":22,"repoUrl":23,"updatedAt":2390},"walrus-data-security","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},[2379,2382,2385,2388,2389],{"name":2380,"slug":2381,"type":15},"Access Control","access-control",{"name":2383,"slug":2384,"type":15},"Encryption","encryption",{"name":2386,"slug":2387,"type":15},"Security","security",{"name":2357,"slug":2358,"type":15},{"name":14,"slug":8,"type":15},"2026-07-16T06:01:48.700594",{"slug":189,"name":189,"fn":2392,"description":2393,"org":2394,"tags":2395,"stars":22,"repoUrl":23,"updatedAt":2402},"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},[2396,2399,2400,2401],{"name":2397,"slug":2398,"type":15},"REST API","rest-api",{"name":2357,"slug":2358,"type":15},{"name":14,"slug":8,"type":15},{"name":2361,"slug":2362,"type":15},"2026-07-16T06:01:48.340552",{"slug":2404,"name":2404,"fn":2405,"description":2406,"org":2407,"tags":2408,"stars":22,"repoUrl":23,"updatedAt":2417},"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},[2409,2412,2413,2416],{"name":2410,"slug":2411,"type":15},"Agents","agents",{"name":2383,"slug":2384,"type":15},{"name":2414,"slug":2415,"type":15},"Memory","memory",{"name":14,"slug":8,"type":15},"2026-07-29T05:39:21.825246",{"slug":211,"name":211,"fn":2419,"description":2420,"org":2421,"tags":2422,"stars":22,"repoUrl":23,"updatedAt":2428},"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},[2423,2426,2427],{"name":2424,"slug":2425,"type":15},"Smart Contracts","smart-contracts",{"name":2357,"slug":2358,"type":15},{"name":14,"slug":8,"type":15},"2026-07-16T06:02:53.633159",{"slug":255,"name":255,"fn":2430,"description":2431,"org":2432,"tags":2433,"stars":22,"repoUrl":23,"updatedAt":2439},"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},[2434,2437,2438],{"name":2435,"slug":2436,"type":15},"Documentation","documentation",{"name":2357,"slug":2358,"type":15},{"name":14,"slug":8,"type":15},"2026-07-16T06:02:52.247749",11,{"items":2442,"total":2605},[2443,2459,2468,2478,2491,2505,2519,2532,2553,2565,2576,2592],{"slug":2444,"name":2444,"fn":2445,"description":2446,"org":2447,"tags":2448,"stars":2456,"repoUrl":2457,"updatedAt":2458},"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},[2449,2452,2455],{"name":2450,"slug":2451,"type":15},"Code Analysis","code-analysis",{"name":2453,"slug":2454,"type":15},"Engineering","engineering",{"name":14,"slug":8,"type":15},7724,"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002Fsui","2026-07-16T05:59:32.904886",{"slug":2460,"name":2460,"fn":2461,"description":2462,"org":2463,"tags":2464,"stars":2456,"repoUrl":2457,"updatedAt":2467},"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},[2465,2466],{"name":2435,"slug":2436,"type":15},{"name":14,"slug":8,"type":15},"2026-07-16T06:00:59.641382",{"slug":2469,"name":2469,"fn":2470,"description":2471,"org":2472,"tags":2473,"stars":2456,"repoUrl":2457,"updatedAt":2477},"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},[2474,2475,2476],{"name":2450,"slug":2451,"type":15},{"name":2453,"slug":2454,"type":15},{"name":14,"slug":8,"type":15},"2026-07-16T06:02:25.3633",{"slug":2479,"name":2479,"fn":2480,"description":2481,"org":2482,"tags":2483,"stars":2456,"repoUrl":2457,"updatedAt":2490},"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},[2484,2487,2488,2489],{"name":2485,"slug":2486,"type":15},"Code Review","code-review",{"name":2386,"slug":2387,"type":15},{"name":2424,"slug":2425,"type":15},{"name":14,"slug":8,"type":15},"2026-07-16T06:02:55.691149",{"slug":2492,"name":2492,"fn":2493,"description":2494,"org":2495,"tags":2496,"stars":2502,"repoUrl":2503,"updatedAt":2504},"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},[2497,2498,2499],{"name":2410,"slug":2411,"type":15},{"name":2414,"slug":2415,"type":15},{"name":2500,"slug":2501,"type":15},"SDK","sdk",57,"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002FMemWal","2026-07-16T06:02:39.838395",{"slug":2506,"name":2506,"fn":2507,"description":2508,"org":2509,"tags":2510,"stars":2516,"repoUrl":2517,"updatedAt":2518},"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},[2511,2514,2515],{"name":2512,"slug":2513,"type":15},"Data Analysis","data-analysis",{"name":14,"slug":8,"type":15},{"name":2361,"slug":2362,"type":15},9,"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002Fskills","2026-08-01T05:44:32.775598",{"slug":2520,"name":2520,"fn":2521,"description":2522,"org":2523,"tags":2524,"stars":2516,"repoUrl":2517,"updatedAt":2531},"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},[2525,2528,2529,2530],{"name":2526,"slug":2527,"type":15},"API Development","api-development",{"name":2424,"slug":2425,"type":15},{"name":14,"slug":8,"type":15},{"name":2361,"slug":2362,"type":15},"2026-07-16T06:02:49.198495",{"slug":2533,"name":2533,"fn":2534,"description":2535,"org":2536,"tags":2537,"stars":2516,"repoUrl":2517,"updatedAt":2552},"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},[2538,2541,2544,2545,2548,2551],{"name":2539,"slug":2540,"type":15},"Frontend","frontend",{"name":2542,"slug":2543,"type":15},"React","react",{"name":14,"slug":8,"type":15},{"name":2546,"slug":2547,"type":15},"Svelte","svelte",{"name":2549,"slug":2550,"type":15},"Vue","vue",{"name":2361,"slug":2362,"type":15},"2026-08-01T05:44:28.958473",{"slug":2554,"name":2554,"fn":2555,"description":2556,"org":2557,"tags":2558,"stars":2516,"repoUrl":2517,"updatedAt":2564},"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},[2559,2562,2563],{"name":2560,"slug":2561,"type":15},"Configuration","configuration",{"name":2435,"slug":2436,"type":15},{"name":14,"slug":8,"type":15},"2026-07-16T06:00:59.981056",{"slug":2566,"name":2566,"fn":2567,"description":2568,"org":2569,"tags":2570,"stars":2516,"repoUrl":2517,"updatedAt":2575},"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},[2571,2572,2573,2574],{"name":2453,"slug":2454,"type":15},{"name":2424,"slug":2425,"type":15},{"name":14,"slug":8,"type":15},{"name":2361,"slug":2362,"type":15},"2026-07-16T06:02:43.277596",{"slug":2577,"name":2577,"fn":2578,"description":2579,"org":2580,"tags":2581,"stars":2516,"repoUrl":2517,"updatedAt":2591},"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},[2582,2585,2586,2587,2590],{"name":2583,"slug":2584,"type":15},"QA","qa",{"name":2424,"slug":2425,"type":15},{"name":14,"slug":8,"type":15},{"name":2588,"slug":2589,"type":15},"Testing","testing",{"name":2361,"slug":2362,"type":15},"2026-08-01T05:44:30.788585",{"slug":2593,"name":2593,"fn":2594,"description":2595,"org":2596,"tags":2597,"stars":2516,"repoUrl":2517,"updatedAt":2604},"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},[2598,2601,2602,2603],{"name":2599,"slug":2600,"type":15},"Best Practices","best-practices",{"name":2424,"slug":2425,"type":15},{"name":14,"slug":8,"type":15},{"name":2361,"slug":2362,"type":15},"2026-07-16T06:02:48.830052",37]