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