[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-sui-walrus-overview":3,"mdc-xxzrpp-key":31,"related-repo-sui-walrus-overview":1765,"related-org-sui-walrus-overview":1850},{"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-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},"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},"Documentation","documentation",{"name":20,"slug":21,"type":15},"Storage","storage",1,"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002Fwalrus-skills","2026-07-16T06:02:52.247749",null,[],{"repoUrl":23,"stars":22,"forks":22,"topics":28,"description":25},[],"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002Fwalrus-skills\u002Ftree\u002FHEAD\u002Fwalrus-overview","---\nname: walrus-overview\ndescription: >\n  High-level overview of Walrus: what it is, how it works, and which tool to use.\n  Use when the user is new to Walrus, asks \"what is Walrus\", \"how does Walrus work\",\n  \"what is a blob\", or needs to choose between CLI, HTTP API, TypeScript SDK, and\n  Move integration. Also use when explaining Walrus architecture, comparing Walrus to\n  AWS S3 or IPFS, explaining the publisher\u002Faggregator\u002Fupload relay distinction, or\n  clarifying blob ID vs Sui object ID. This is the entry-point skill for Walrus\n  newcomers.\n---\n\n# Walrus Overview\n\n> **Source constraint:** All information in this skill is sourced from the\n> [Walrus documentation](https:\u002F\u002Fdocs.wal.app) and the\n> [Walrus whitepaper](https:\u002F\u002Fdocs.wal.app\u002Fwalrus.pdf).\n> When extending this skill, only pull from these sources.\n\nWalrus is a decentralized storage protocol built on the Sui blockchain. It stores arbitrary binary data (\"blobs\") across a network of independent storage nodes using erasure coding. Sui smart contracts manage blob registration, certification, payments, and metadata.\n\nThis skill provides the entry point for understanding Walrus. It covers architecture, core terminology, and how to choose the right tool for your use case. For specific tool usage, load the corresponding skill.\n\n---\n\n## Related skills\n\n| Topic | Skill | Load when |\n|-------|-------|-----------|\n| CLI | `walrus-cli` | Using the `walrus` binary |\n| HTTP API | `walrus-http-api` | Storing\u002Freading via REST |\n| TypeScript SDK | `walrus-ts-sdk` | Programmatic access from TypeScript |\n| Move integration | `walrus-move-integration` | Wrapping blobs in Move contracts |\n| Storage costs | `walrus-storage-costs` | Pricing, estimation, cost optimization |\n| Blob lifecycle | `walrus-blob-lifecycle` | Extending, deleting, sharing blobs |\n| Sites | `walrus-sites` | Deploying static websites |\n| Quilts | `walrus-quilts` | Batching many small blobs |\n| Data security | `walrus-data-security` | Encryption with Seal |\n| Troubleshooting | `walrus-troubleshooting` | Common errors and fixes |\n\n---\n\n## Routing guide\n\n| Task | Load |\n|------|------|\n| \"What is Walrus?\" \u002F \"How does it work?\" | Skill Content below |\n| \"Which tool should I use?\" | Decision tree below |\n| \"What is a blob \u002F blob ID \u002F object ID?\" | Terminology below |\n| Store a file | `walrus-cli` or `walrus-http-api` or `walrus-ts-sdk` |\n| Estimate costs | `walrus-storage-costs` |\n| Deploy a website | `walrus-sites` |\n| Encrypt data | `walrus-data-security` |\n| Fix an error | `walrus-troubleshooting` |\n\n---\n\n## Skill Content\n\n### What is Walrus?\n\nWalrus is a **decentralized blob storage protocol**. You upload a file, Walrus encodes it into fragments distributed across independent storage nodes, and the Sui blockchain tracks ownership and availability. The result is storage that survives node failures, has no single point of control, and provides cryptographic proof that data has not been tampered with.\n\nKey properties:\n- **Public by default.** All blobs are readable by anyone with the blob ID. Encrypt before uploading if you need privacy (see `walrus-data-security`).\n- **Content-addressed.** The same file content always produces the same blob ID.\n- **Time-limited.** Storage lasts a fixed number of epochs (max ~2 years). Blobs must be extended or re-uploaded to persist longer.\n- **Fault-tolerant.** Data remains available even if up to 2\u002F3 of storage nodes fail.\n\n### Three-layer architecture\n\n1. **Client layer.** Your code (CLI, SDK, or HTTP requests) encodes blobs, distributes fragments to storage nodes, and interacts with Sui for registration and certification.\n\n2. **Storage node layer.** Independent operators run storage nodes that hold erasure-coded fragments (\"slivers\") of blobs. Each node holds one or more shards. Nodes verify slivers, sign receipts, and participate in epoch transitions. Over 60 operators run nodes on mainnet.\n\n3. **Sui blockchain layer.** Smart contracts on Sui manage payments (WAL token), storage resource allocation, shard-to-node assignments, blob registration\u002Fcertification, and metadata. The blockchain is the coordination layer, not the data layer.\n\n### How storing works\n\n1. The client encodes the blob using **RedStuff erasure coding**, producing slivers distributed across all shards (~4.5x storage overhead).\n2. The client registers the blob on Sui, paying WAL for storage and SUI for gas.\n3. Slivers are sent in parallel to storage nodes. Each node verifies and signs a receipt.\n4. Once 2\u002F3 of nodes confirm, signatures are aggregated into an **availability certificate** submitted to Sui.\n5. The **Point of Availability (PoA)** marks when Walrus guarantees the blob is available for its full storage duration.\n\n### How reading works\n\n1. The client requests slivers from storage nodes.\n2. Once it collects slivers from more than 1\u002F3 of nodes, it reconstructs the original blob.\n3. Alternatively, an **aggregator** does this on your behalf and serves the blob over HTTP.\n\n### Core terminology\n\n| Term | Definition |\n|------|-----------|\n| **Blob** | Any binary data stored on Walrus (file, image, JSON, video, etc.). Max ~13.6 GiB. |\n| **Blob ID** | URL-safe base64 string identifying blob content. Content-addressed: same content = same ID. Used for reading. |\n| **Sui object ID** | `0x...` hex string identifying the on-chain `Blob` Sui object. Different for each upload, even with same content. Used for lifecycle ops (extend, delete, share). |\n| **Epoch** | A time period. 14 days on mainnet. Storage duration is measured in epochs. |\n| **Sliver** | A fragment of an erasure-coded blob, stored on a single shard. |\n| **Shard** | A partition of the storage space, assigned to a storage node for each epoch. |\n| **Publisher** | An HTTP service that accepts blob data (PUT) and handles encoding, distribution, and on-chain registration. No public mainnet publisher exists. |\n| **Aggregator** | An HTTP service that reads blobs (GET) by fetching slivers from storage nodes. Many public aggregators exist on both networks, free to use. |\n| **Upload relay** | A third-party service that handles encoding and sliver distribution on behalf of bandwidth-limited clients (for example, browsers). May charge a tip. |\n| **WAL** | The Walrus token, used to pay for storage. |\n| **SUI** | The Sui token, used to pay for on-chain gas fees. |\n| **Point of Availability (PoA)** | The moment an availability certificate is posted on-chain, after which Walrus guarantees the blob is available. |\n| **Deletable blob** | A blob whose owner can remove before expiry (default). |\n| **Permanent blob** | A blob that cannot be deleted before expiry, even by the uploader. |\n| **Quilt** | A single storage unit containing multiple blobs, reducing per-blob overhead. |\n| **Shared blob** | A `Blob` wrapped in a Sui shared object so anyone can fund and extend it. The Walrus contract provides `SharedBlob` as a reference implementation; developers can also create custom shared wrappers. |\n| **Storage pool** | A funding pool that blobs draw storage from, simplifying lifecycle management. The recommended way to manage blob storage. |\n\n### Blob ID vs Sui object ID\n\nThis is the most common point of confusion for new users:\n\n| | Blob ID | Sui Object ID |\n|---|---------|--------------|\n| **Format** | URL-safe base64 (for example, `M4hsZGQ1oCk...`) | Hex with `0x` prefix (for example, `0xe91eee8c...`) |\n| **Derived from** | Blob content (content-addressed) | Sui transaction (unique per upload) |\n| **Same content uploaded twice?** | Same blob ID | Different object IDs |\n| **Used for** | Reading blob content | Lifecycle operations (extend, delete, share, burn) |\n| **Where you get it** | Store response (`blobId` field) | Store response (`blobObject.id` field) |\n\n### Decision tree: which tool to use\n\n| You want to... | Use | Skill |\n|----------------|-----|-------|\n| Upload a file from the terminal | `walrus store` CLI | `walrus-cli` |\n| Script uploads in a CI\u002FCD pipeline | `walrus json` CLI (JSON mode) | `walrus-cli` |\n| Store\u002Fread from any language over HTTP | Publisher\u002Faggregator REST API | `walrus-http-api` |\n| Build a TypeScript\u002FJavaScript app | `@mysten\u002Fwalrus` SDK | `walrus-ts-sdk` |\n| Upload from a browser | TypeScript SDK + upload relay | `walrus-ts-sdk` |\n| Reference blobs in a Move contract | Walrus Move dependency | `walrus-move-integration` |\n| Deploy a static website | `site-builder` CLI | `walrus-sites` |\n| Store many small files cheaply | Quilts (CLI or HTTP) | `walrus-quilts` |\n| Store sensitive\u002Fprivate data | Encrypt with Seal, then store | `walrus-data-security` |\n\n### Walrus vs traditional storage\n\n| | Walrus | AWS S3 \u002F Cloud Storage |\n|---|--------|----------------------|\n| **Control** | No single operator controls data | Provider controls everything |\n| **Trust model** | Cryptographic verification | Platform trust |\n| **Fault tolerance** | Survives 2\u002F3 node failures | Provider SLA |\n| **Privacy** | All data public by default | Private by default |\n| **Cost model** | WAL + SUI tokens, per-epoch | USD, per-month |\n| **Duration** | Max ~2 years per purchase, renewable | Indefinite |\n| **Structure** | Flat blob storage (no directories) | Directories\u002Fbuckets |\n| **Verifiability** | Cryptographic blob IDs, on-chain certificates | None |\n\nWalrus is strongest for use cases that need **censorship resistance, verifiability, decentralized availability, or programmable access control**. It is not a drop-in replacement for all cloud storage — only the object\u002Fblob storage part.\n\n### Rules\n\n1. **All blobs are public.** Encrypt before uploading if you need privacy.\n2. **Storage is time-limited.** Plan for renewals. Maximum is 53 epochs (~2 years on mainnet).\n3. **You need both WAL and SUI.** WAL pays for storage, SUI pays for gas.\n4. **No public mainnet publisher.** Use the upload relay, TypeScript SDK, CLI, or run your own publisher.\n5. **Small blobs are expensive individually.** Use quilts for batches of small files.\n6. **Blob ID is not object ID.** Content hash (for reading) vs on-chain object (for management). Do not confuse them.\n",{"data":32,"body":33},{"name":4,"description":6},{"type":34,"children":35},"root",[36,44,80,85,90,94,101,363,366,372,526,529,535,542,554,559,611,617,651,657,706,712,737,743,1064,1070,1075,1241,1247,1485,1491,1684,1696,1702],{"type":37,"tag":38,"props":39,"children":40},"element","h1",{"id":4},[41],{"type":42,"value":43},"text","Walrus Overview",{"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}," All information in this skill is sourced from the\n",{"type":37,"tag":61,"props":62,"children":66},"a",{"href":63,"rel":64},"https:\u002F\u002Fdocs.wal.app",[65],"nofollow",[67],{"type":42,"value":68},"Walrus documentation",{"type":42,"value":70}," and the\n",{"type":37,"tag":61,"props":72,"children":75},{"href":73,"rel":74},"https:\u002F\u002Fdocs.wal.app\u002Fwalrus.pdf",[65],[76],{"type":42,"value":77},"Walrus whitepaper",{"type":42,"value":79},".\nWhen extending this skill, only pull from these sources.",{"type":37,"tag":49,"props":81,"children":82},{},[83],{"type":42,"value":84},"Walrus is a decentralized storage protocol built on the Sui blockchain. It stores arbitrary binary data (\"blobs\") across a network of independent storage nodes using erasure coding. Sui smart contracts manage blob registration, certification, payments, and metadata.",{"type":37,"tag":49,"props":86,"children":87},{},[88],{"type":42,"value":89},"This skill provides the entry point for understanding Walrus. It covers architecture, core terminology, and how to choose the right tool for your use case. For specific tool usage, load the corresponding skill.",{"type":37,"tag":91,"props":92,"children":93},"hr",{},[],{"type":37,"tag":95,"props":96,"children":98},"h2",{"id":97},"related-skills",[99],{"type":42,"value":100},"Related skills",{"type":37,"tag":102,"props":103,"children":104},"table",{},[105,129],{"type":37,"tag":106,"props":107,"children":108},"thead",{},[109],{"type":37,"tag":110,"props":111,"children":112},"tr",{},[113,119,124],{"type":37,"tag":114,"props":115,"children":116},"th",{},[117],{"type":42,"value":118},"Topic",{"type":37,"tag":114,"props":120,"children":121},{},[122],{"type":42,"value":123},"Skill",{"type":37,"tag":114,"props":125,"children":126},{},[127],{"type":42,"value":128},"Load when",{"type":37,"tag":130,"props":131,"children":132},"tbody",{},[133,165,187,209,231,253,275,297,319,341],{"type":37,"tag":110,"props":134,"children":135},{},[136,142,152],{"type":37,"tag":137,"props":138,"children":139},"td",{},[140],{"type":42,"value":141},"CLI",{"type":37,"tag":137,"props":143,"children":144},{},[145],{"type":37,"tag":146,"props":147,"children":149},"code",{"className":148},[],[150],{"type":42,"value":151},"walrus-cli",{"type":37,"tag":137,"props":153,"children":154},{},[155,157,163],{"type":42,"value":156},"Using the ",{"type":37,"tag":146,"props":158,"children":160},{"className":159},[],[161],{"type":42,"value":162},"walrus",{"type":42,"value":164}," binary",{"type":37,"tag":110,"props":166,"children":167},{},[168,173,182],{"type":37,"tag":137,"props":169,"children":170},{},[171],{"type":42,"value":172},"HTTP API",{"type":37,"tag":137,"props":174,"children":175},{},[176],{"type":37,"tag":146,"props":177,"children":179},{"className":178},[],[180],{"type":42,"value":181},"walrus-http-api",{"type":37,"tag":137,"props":183,"children":184},{},[185],{"type":42,"value":186},"Storing\u002Freading via REST",{"type":37,"tag":110,"props":188,"children":189},{},[190,195,204],{"type":37,"tag":137,"props":191,"children":192},{},[193],{"type":42,"value":194},"TypeScript SDK",{"type":37,"tag":137,"props":196,"children":197},{},[198],{"type":37,"tag":146,"props":199,"children":201},{"className":200},[],[202],{"type":42,"value":203},"walrus-ts-sdk",{"type":37,"tag":137,"props":205,"children":206},{},[207],{"type":42,"value":208},"Programmatic access from TypeScript",{"type":37,"tag":110,"props":210,"children":211},{},[212,217,226],{"type":37,"tag":137,"props":213,"children":214},{},[215],{"type":42,"value":216},"Move integration",{"type":37,"tag":137,"props":218,"children":219},{},[220],{"type":37,"tag":146,"props":221,"children":223},{"className":222},[],[224],{"type":42,"value":225},"walrus-move-integration",{"type":37,"tag":137,"props":227,"children":228},{},[229],{"type":42,"value":230},"Wrapping blobs in Move contracts",{"type":37,"tag":110,"props":232,"children":233},{},[234,239,248],{"type":37,"tag":137,"props":235,"children":236},{},[237],{"type":42,"value":238},"Storage costs",{"type":37,"tag":137,"props":240,"children":241},{},[242],{"type":37,"tag":146,"props":243,"children":245},{"className":244},[],[246],{"type":42,"value":247},"walrus-storage-costs",{"type":37,"tag":137,"props":249,"children":250},{},[251],{"type":42,"value":252},"Pricing, estimation, cost optimization",{"type":37,"tag":110,"props":254,"children":255},{},[256,261,270],{"type":37,"tag":137,"props":257,"children":258},{},[259],{"type":42,"value":260},"Blob lifecycle",{"type":37,"tag":137,"props":262,"children":263},{},[264],{"type":37,"tag":146,"props":265,"children":267},{"className":266},[],[268],{"type":42,"value":269},"walrus-blob-lifecycle",{"type":37,"tag":137,"props":271,"children":272},{},[273],{"type":42,"value":274},"Extending, deleting, sharing blobs",{"type":37,"tag":110,"props":276,"children":277},{},[278,283,292],{"type":37,"tag":137,"props":279,"children":280},{},[281],{"type":42,"value":282},"Sites",{"type":37,"tag":137,"props":284,"children":285},{},[286],{"type":37,"tag":146,"props":287,"children":289},{"className":288},[],[290],{"type":42,"value":291},"walrus-sites",{"type":37,"tag":137,"props":293,"children":294},{},[295],{"type":42,"value":296},"Deploying static websites",{"type":37,"tag":110,"props":298,"children":299},{},[300,305,314],{"type":37,"tag":137,"props":301,"children":302},{},[303],{"type":42,"value":304},"Quilts",{"type":37,"tag":137,"props":306,"children":307},{},[308],{"type":37,"tag":146,"props":309,"children":311},{"className":310},[],[312],{"type":42,"value":313},"walrus-quilts",{"type":37,"tag":137,"props":315,"children":316},{},[317],{"type":42,"value":318},"Batching many small blobs",{"type":37,"tag":110,"props":320,"children":321},{},[322,327,336],{"type":37,"tag":137,"props":323,"children":324},{},[325],{"type":42,"value":326},"Data security",{"type":37,"tag":137,"props":328,"children":329},{},[330],{"type":37,"tag":146,"props":331,"children":333},{"className":332},[],[334],{"type":42,"value":335},"walrus-data-security",{"type":37,"tag":137,"props":337,"children":338},{},[339],{"type":42,"value":340},"Encryption with Seal",{"type":37,"tag":110,"props":342,"children":343},{},[344,349,358],{"type":37,"tag":137,"props":345,"children":346},{},[347],{"type":42,"value":348},"Troubleshooting",{"type":37,"tag":137,"props":350,"children":351},{},[352],{"type":37,"tag":146,"props":353,"children":355},{"className":354},[],[356],{"type":42,"value":357},"walrus-troubleshooting",{"type":37,"tag":137,"props":359,"children":360},{},[361],{"type":42,"value":362},"Common errors and fixes",{"type":37,"tag":91,"props":364,"children":365},{},[],{"type":37,"tag":95,"props":367,"children":369},{"id":368},"routing-guide",[370],{"type":42,"value":371},"Routing guide",{"type":37,"tag":102,"props":373,"children":374},{},[375,391],{"type":37,"tag":106,"props":376,"children":377},{},[378],{"type":37,"tag":110,"props":379,"children":380},{},[381,386],{"type":37,"tag":114,"props":382,"children":383},{},[384],{"type":42,"value":385},"Task",{"type":37,"tag":114,"props":387,"children":388},{},[389],{"type":42,"value":390},"Load",{"type":37,"tag":130,"props":392,"children":393},{},[394,407,420,433,462,478,494,510],{"type":37,"tag":110,"props":395,"children":396},{},[397,402],{"type":37,"tag":137,"props":398,"children":399},{},[400],{"type":42,"value":401},"\"What is Walrus?\" \u002F \"How does it work?\"",{"type":37,"tag":137,"props":403,"children":404},{},[405],{"type":42,"value":406},"Skill Content below",{"type":37,"tag":110,"props":408,"children":409},{},[410,415],{"type":37,"tag":137,"props":411,"children":412},{},[413],{"type":42,"value":414},"\"Which tool should I use?\"",{"type":37,"tag":137,"props":416,"children":417},{},[418],{"type":42,"value":419},"Decision tree below",{"type":37,"tag":110,"props":421,"children":422},{},[423,428],{"type":37,"tag":137,"props":424,"children":425},{},[426],{"type":42,"value":427},"\"What is a blob \u002F blob ID \u002F object ID?\"",{"type":37,"tag":137,"props":429,"children":430},{},[431],{"type":42,"value":432},"Terminology below",{"type":37,"tag":110,"props":434,"children":435},{},[436,441],{"type":37,"tag":137,"props":437,"children":438},{},[439],{"type":42,"value":440},"Store a file",{"type":37,"tag":137,"props":442,"children":443},{},[444,449,451,456,457],{"type":37,"tag":146,"props":445,"children":447},{"className":446},[],[448],{"type":42,"value":151},{"type":42,"value":450}," or ",{"type":37,"tag":146,"props":452,"children":454},{"className":453},[],[455],{"type":42,"value":181},{"type":42,"value":450},{"type":37,"tag":146,"props":458,"children":460},{"className":459},[],[461],{"type":42,"value":203},{"type":37,"tag":110,"props":463,"children":464},{},[465,470],{"type":37,"tag":137,"props":466,"children":467},{},[468],{"type":42,"value":469},"Estimate costs",{"type":37,"tag":137,"props":471,"children":472},{},[473],{"type":37,"tag":146,"props":474,"children":476},{"className":475},[],[477],{"type":42,"value":247},{"type":37,"tag":110,"props":479,"children":480},{},[481,486],{"type":37,"tag":137,"props":482,"children":483},{},[484],{"type":42,"value":485},"Deploy a website",{"type":37,"tag":137,"props":487,"children":488},{},[489],{"type":37,"tag":146,"props":490,"children":492},{"className":491},[],[493],{"type":42,"value":291},{"type":37,"tag":110,"props":495,"children":496},{},[497,502],{"type":37,"tag":137,"props":498,"children":499},{},[500],{"type":42,"value":501},"Encrypt data",{"type":37,"tag":137,"props":503,"children":504},{},[505],{"type":37,"tag":146,"props":506,"children":508},{"className":507},[],[509],{"type":42,"value":335},{"type":37,"tag":110,"props":511,"children":512},{},[513,518],{"type":37,"tag":137,"props":514,"children":515},{},[516],{"type":42,"value":517},"Fix an error",{"type":37,"tag":137,"props":519,"children":520},{},[521],{"type":37,"tag":146,"props":522,"children":524},{"className":523},[],[525],{"type":42,"value":357},{"type":37,"tag":91,"props":527,"children":528},{},[],{"type":37,"tag":95,"props":530,"children":532},{"id":531},"skill-content",[533],{"type":42,"value":534},"Skill Content",{"type":37,"tag":536,"props":537,"children":539},"h3",{"id":538},"what-is-walrus",[540],{"type":42,"value":541},"What is Walrus?",{"type":37,"tag":49,"props":543,"children":544},{},[545,547,552],{"type":42,"value":546},"Walrus is a ",{"type":37,"tag":53,"props":548,"children":549},{},[550],{"type":42,"value":551},"decentralized blob storage protocol",{"type":42,"value":553},". You upload a file, Walrus encodes it into fragments distributed across independent storage nodes, and the Sui blockchain tracks ownership and availability. The result is storage that survives node failures, has no single point of control, and provides cryptographic proof that data has not been tampered with.",{"type":37,"tag":49,"props":555,"children":556},{},[557],{"type":42,"value":558},"Key properties:",{"type":37,"tag":560,"props":561,"children":562},"ul",{},[563,581,591,601],{"type":37,"tag":564,"props":565,"children":566},"li",{},[567,572,574,579],{"type":37,"tag":53,"props":568,"children":569},{},[570],{"type":42,"value":571},"Public by default.",{"type":42,"value":573}," All blobs are readable by anyone with the blob ID. Encrypt before uploading if you need privacy (see ",{"type":37,"tag":146,"props":575,"children":577},{"className":576},[],[578],{"type":42,"value":335},{"type":42,"value":580},").",{"type":37,"tag":564,"props":582,"children":583},{},[584,589],{"type":37,"tag":53,"props":585,"children":586},{},[587],{"type":42,"value":588},"Content-addressed.",{"type":42,"value":590}," The same file content always produces the same blob ID.",{"type":37,"tag":564,"props":592,"children":593},{},[594,599],{"type":37,"tag":53,"props":595,"children":596},{},[597],{"type":42,"value":598},"Time-limited.",{"type":42,"value":600}," Storage lasts a fixed number of epochs (max ~2 years). Blobs must be extended or re-uploaded to persist longer.",{"type":37,"tag":564,"props":602,"children":603},{},[604,609],{"type":37,"tag":53,"props":605,"children":606},{},[607],{"type":42,"value":608},"Fault-tolerant.",{"type":42,"value":610}," Data remains available even if up to 2\u002F3 of storage nodes fail.",{"type":37,"tag":536,"props":612,"children":614},{"id":613},"three-layer-architecture",[615],{"type":42,"value":616},"Three-layer architecture",{"type":37,"tag":618,"props":619,"children":620},"ol",{},[621,631,641],{"type":37,"tag":564,"props":622,"children":623},{},[624,629],{"type":37,"tag":53,"props":625,"children":626},{},[627],{"type":42,"value":628},"Client layer.",{"type":42,"value":630}," Your code (CLI, SDK, or HTTP requests) encodes blobs, distributes fragments to storage nodes, and interacts with Sui for registration and certification.",{"type":37,"tag":564,"props":632,"children":633},{},[634,639],{"type":37,"tag":53,"props":635,"children":636},{},[637],{"type":42,"value":638},"Storage node layer.",{"type":42,"value":640}," Independent operators run storage nodes that hold erasure-coded fragments (\"slivers\") of blobs. Each node holds one or more shards. Nodes verify slivers, sign receipts, and participate in epoch transitions. Over 60 operators run nodes on mainnet.",{"type":37,"tag":564,"props":642,"children":643},{},[644,649],{"type":37,"tag":53,"props":645,"children":646},{},[647],{"type":42,"value":648},"Sui blockchain layer.",{"type":42,"value":650}," Smart contracts on Sui manage payments (WAL token), storage resource allocation, shard-to-node assignments, blob registration\u002Fcertification, and metadata. The blockchain is the coordination layer, not the data layer.",{"type":37,"tag":536,"props":652,"children":654},{"id":653},"how-storing-works",[655],{"type":42,"value":656},"How storing works",{"type":37,"tag":618,"props":658,"children":659},{},[660,672,677,682,694],{"type":37,"tag":564,"props":661,"children":662},{},[663,665,670],{"type":42,"value":664},"The client encodes the blob using ",{"type":37,"tag":53,"props":666,"children":667},{},[668],{"type":42,"value":669},"RedStuff erasure coding",{"type":42,"value":671},", producing slivers distributed across all shards (~4.5x storage overhead).",{"type":37,"tag":564,"props":673,"children":674},{},[675],{"type":42,"value":676},"The client registers the blob on Sui, paying WAL for storage and SUI for gas.",{"type":37,"tag":564,"props":678,"children":679},{},[680],{"type":42,"value":681},"Slivers are sent in parallel to storage nodes. Each node verifies and signs a receipt.",{"type":37,"tag":564,"props":683,"children":684},{},[685,687,692],{"type":42,"value":686},"Once 2\u002F3 of nodes confirm, signatures are aggregated into an ",{"type":37,"tag":53,"props":688,"children":689},{},[690],{"type":42,"value":691},"availability certificate",{"type":42,"value":693}," submitted to Sui.",{"type":37,"tag":564,"props":695,"children":696},{},[697,699,704],{"type":42,"value":698},"The ",{"type":37,"tag":53,"props":700,"children":701},{},[702],{"type":42,"value":703},"Point of Availability (PoA)",{"type":42,"value":705}," marks when Walrus guarantees the blob is available for its full storage duration.",{"type":37,"tag":536,"props":707,"children":709},{"id":708},"how-reading-works",[710],{"type":42,"value":711},"How reading works",{"type":37,"tag":618,"props":713,"children":714},{},[715,720,725],{"type":37,"tag":564,"props":716,"children":717},{},[718],{"type":42,"value":719},"The client requests slivers from storage nodes.",{"type":37,"tag":564,"props":721,"children":722},{},[723],{"type":42,"value":724},"Once it collects slivers from more than 1\u002F3 of nodes, it reconstructs the original blob.",{"type":37,"tag":564,"props":726,"children":727},{},[728,730,735],{"type":42,"value":729},"Alternatively, an ",{"type":37,"tag":53,"props":731,"children":732},{},[733],{"type":42,"value":734},"aggregator",{"type":42,"value":736}," does this on your behalf and serves the blob over HTTP.",{"type":37,"tag":536,"props":738,"children":740},{"id":739},"core-terminology",[741],{"type":42,"value":742},"Core terminology",{"type":37,"tag":102,"props":744,"children":745},{},[746,762],{"type":37,"tag":106,"props":747,"children":748},{},[749],{"type":37,"tag":110,"props":750,"children":751},{},[752,757],{"type":37,"tag":114,"props":753,"children":754},{},[755],{"type":42,"value":756},"Term",{"type":37,"tag":114,"props":758,"children":759},{},[760],{"type":42,"value":761},"Definition",{"type":37,"tag":130,"props":763,"children":764},{},[765,781,797,826,842,858,874,890,906,922,938,954,969,985,1001,1017,1048],{"type":37,"tag":110,"props":766,"children":767},{},[768,776],{"type":37,"tag":137,"props":769,"children":770},{},[771],{"type":37,"tag":53,"props":772,"children":773},{},[774],{"type":42,"value":775},"Blob",{"type":37,"tag":137,"props":777,"children":778},{},[779],{"type":42,"value":780},"Any binary data stored on Walrus (file, image, JSON, video, etc.). Max ~13.6 GiB.",{"type":37,"tag":110,"props":782,"children":783},{},[784,792],{"type":37,"tag":137,"props":785,"children":786},{},[787],{"type":37,"tag":53,"props":788,"children":789},{},[790],{"type":42,"value":791},"Blob ID",{"type":37,"tag":137,"props":793,"children":794},{},[795],{"type":42,"value":796},"URL-safe base64 string identifying blob content. Content-addressed: same content = same ID. Used for reading.",{"type":37,"tag":110,"props":798,"children":799},{},[800,808],{"type":37,"tag":137,"props":801,"children":802},{},[803],{"type":37,"tag":53,"props":804,"children":805},{},[806],{"type":42,"value":807},"Sui object ID",{"type":37,"tag":137,"props":809,"children":810},{},[811,817,819,824],{"type":37,"tag":146,"props":812,"children":814},{"className":813},[],[815],{"type":42,"value":816},"0x...",{"type":42,"value":818}," hex string identifying the on-chain ",{"type":37,"tag":146,"props":820,"children":822},{"className":821},[],[823],{"type":42,"value":775},{"type":42,"value":825}," Sui object. Different for each upload, even with same content. Used for lifecycle ops (extend, delete, share).",{"type":37,"tag":110,"props":827,"children":828},{},[829,837],{"type":37,"tag":137,"props":830,"children":831},{},[832],{"type":37,"tag":53,"props":833,"children":834},{},[835],{"type":42,"value":836},"Epoch",{"type":37,"tag":137,"props":838,"children":839},{},[840],{"type":42,"value":841},"A time period. 14 days on mainnet. Storage duration is measured in epochs.",{"type":37,"tag":110,"props":843,"children":844},{},[845,853],{"type":37,"tag":137,"props":846,"children":847},{},[848],{"type":37,"tag":53,"props":849,"children":850},{},[851],{"type":42,"value":852},"Sliver",{"type":37,"tag":137,"props":854,"children":855},{},[856],{"type":42,"value":857},"A fragment of an erasure-coded blob, stored on a single shard.",{"type":37,"tag":110,"props":859,"children":860},{},[861,869],{"type":37,"tag":137,"props":862,"children":863},{},[864],{"type":37,"tag":53,"props":865,"children":866},{},[867],{"type":42,"value":868},"Shard",{"type":37,"tag":137,"props":870,"children":871},{},[872],{"type":42,"value":873},"A partition of the storage space, assigned to a storage node for each epoch.",{"type":37,"tag":110,"props":875,"children":876},{},[877,885],{"type":37,"tag":137,"props":878,"children":879},{},[880],{"type":37,"tag":53,"props":881,"children":882},{},[883],{"type":42,"value":884},"Publisher",{"type":37,"tag":137,"props":886,"children":887},{},[888],{"type":42,"value":889},"An HTTP service that accepts blob data (PUT) and handles encoding, distribution, and on-chain registration. No public mainnet publisher exists.",{"type":37,"tag":110,"props":891,"children":892},{},[893,901],{"type":37,"tag":137,"props":894,"children":895},{},[896],{"type":37,"tag":53,"props":897,"children":898},{},[899],{"type":42,"value":900},"Aggregator",{"type":37,"tag":137,"props":902,"children":903},{},[904],{"type":42,"value":905},"An HTTP service that reads blobs (GET) by fetching slivers from storage nodes. Many public aggregators exist on both networks, free to use.",{"type":37,"tag":110,"props":907,"children":908},{},[909,917],{"type":37,"tag":137,"props":910,"children":911},{},[912],{"type":37,"tag":53,"props":913,"children":914},{},[915],{"type":42,"value":916},"Upload relay",{"type":37,"tag":137,"props":918,"children":919},{},[920],{"type":42,"value":921},"A third-party service that handles encoding and sliver distribution on behalf of bandwidth-limited clients (for example, browsers). May charge a tip.",{"type":37,"tag":110,"props":923,"children":924},{},[925,933],{"type":37,"tag":137,"props":926,"children":927},{},[928],{"type":37,"tag":53,"props":929,"children":930},{},[931],{"type":42,"value":932},"WAL",{"type":37,"tag":137,"props":934,"children":935},{},[936],{"type":42,"value":937},"The Walrus token, used to pay for storage.",{"type":37,"tag":110,"props":939,"children":940},{},[941,949],{"type":37,"tag":137,"props":942,"children":943},{},[944],{"type":37,"tag":53,"props":945,"children":946},{},[947],{"type":42,"value":948},"SUI",{"type":37,"tag":137,"props":950,"children":951},{},[952],{"type":42,"value":953},"The Sui token, used to pay for on-chain gas fees.",{"type":37,"tag":110,"props":955,"children":956},{},[957,964],{"type":37,"tag":137,"props":958,"children":959},{},[960],{"type":37,"tag":53,"props":961,"children":962},{},[963],{"type":42,"value":703},{"type":37,"tag":137,"props":965,"children":966},{},[967],{"type":42,"value":968},"The moment an availability certificate is posted on-chain, after which Walrus guarantees the blob is available.",{"type":37,"tag":110,"props":970,"children":971},{},[972,980],{"type":37,"tag":137,"props":973,"children":974},{},[975],{"type":37,"tag":53,"props":976,"children":977},{},[978],{"type":42,"value":979},"Deletable blob",{"type":37,"tag":137,"props":981,"children":982},{},[983],{"type":42,"value":984},"A blob whose owner can remove before expiry (default).",{"type":37,"tag":110,"props":986,"children":987},{},[988,996],{"type":37,"tag":137,"props":989,"children":990},{},[991],{"type":37,"tag":53,"props":992,"children":993},{},[994],{"type":42,"value":995},"Permanent blob",{"type":37,"tag":137,"props":997,"children":998},{},[999],{"type":42,"value":1000},"A blob that cannot be deleted before expiry, even by the uploader.",{"type":37,"tag":110,"props":1002,"children":1003},{},[1004,1012],{"type":37,"tag":137,"props":1005,"children":1006},{},[1007],{"type":37,"tag":53,"props":1008,"children":1009},{},[1010],{"type":42,"value":1011},"Quilt",{"type":37,"tag":137,"props":1013,"children":1014},{},[1015],{"type":42,"value":1016},"A single storage unit containing multiple blobs, reducing per-blob overhead.",{"type":37,"tag":110,"props":1018,"children":1019},{},[1020,1028],{"type":37,"tag":137,"props":1021,"children":1022},{},[1023],{"type":37,"tag":53,"props":1024,"children":1025},{},[1026],{"type":42,"value":1027},"Shared blob",{"type":37,"tag":137,"props":1029,"children":1030},{},[1031,1033,1038,1040,1046],{"type":42,"value":1032},"A ",{"type":37,"tag":146,"props":1034,"children":1036},{"className":1035},[],[1037],{"type":42,"value":775},{"type":42,"value":1039}," wrapped in a Sui shared object so anyone can fund and extend it. The Walrus contract provides ",{"type":37,"tag":146,"props":1041,"children":1043},{"className":1042},[],[1044],{"type":42,"value":1045},"SharedBlob",{"type":42,"value":1047}," as a reference implementation; developers can also create custom shared wrappers.",{"type":37,"tag":110,"props":1049,"children":1050},{},[1051,1059],{"type":37,"tag":137,"props":1052,"children":1053},{},[1054],{"type":37,"tag":53,"props":1055,"children":1056},{},[1057],{"type":42,"value":1058},"Storage pool",{"type":37,"tag":137,"props":1060,"children":1061},{},[1062],{"type":42,"value":1063},"A funding pool that blobs draw storage from, simplifying lifecycle management. The recommended way to manage blob storage.",{"type":37,"tag":536,"props":1065,"children":1067},{"id":1066},"blob-id-vs-sui-object-id",[1068],{"type":42,"value":1069},"Blob ID vs Sui object ID",{"type":37,"tag":49,"props":1071,"children":1072},{},[1073],{"type":42,"value":1074},"This is the most common point of confusion for new users:",{"type":37,"tag":102,"props":1076,"children":1077},{},[1078,1096],{"type":37,"tag":106,"props":1079,"children":1080},{},[1081],{"type":37,"tag":110,"props":1082,"children":1083},{},[1084,1087,1091],{"type":37,"tag":114,"props":1085,"children":1086},{},[],{"type":37,"tag":114,"props":1088,"children":1089},{},[1090],{"type":42,"value":791},{"type":37,"tag":114,"props":1092,"children":1093},{},[1094],{"type":42,"value":1095},"Sui Object ID",{"type":37,"tag":130,"props":1097,"children":1098},{},[1099,1143,1164,1185,1206],{"type":37,"tag":110,"props":1100,"children":1101},{},[1102,1110,1123],{"type":37,"tag":137,"props":1103,"children":1104},{},[1105],{"type":37,"tag":53,"props":1106,"children":1107},{},[1108],{"type":42,"value":1109},"Format",{"type":37,"tag":137,"props":1111,"children":1112},{},[1113,1115,1121],{"type":42,"value":1114},"URL-safe base64 (for example, ",{"type":37,"tag":146,"props":1116,"children":1118},{"className":1117},[],[1119],{"type":42,"value":1120},"M4hsZGQ1oCk...",{"type":42,"value":1122},")",{"type":37,"tag":137,"props":1124,"children":1125},{},[1126,1128,1134,1136,1142],{"type":42,"value":1127},"Hex with ",{"type":37,"tag":146,"props":1129,"children":1131},{"className":1130},[],[1132],{"type":42,"value":1133},"0x",{"type":42,"value":1135}," prefix (for example, ",{"type":37,"tag":146,"props":1137,"children":1139},{"className":1138},[],[1140],{"type":42,"value":1141},"0xe91eee8c...",{"type":42,"value":1122},{"type":37,"tag":110,"props":1144,"children":1145},{},[1146,1154,1159],{"type":37,"tag":137,"props":1147,"children":1148},{},[1149],{"type":37,"tag":53,"props":1150,"children":1151},{},[1152],{"type":42,"value":1153},"Derived from",{"type":37,"tag":137,"props":1155,"children":1156},{},[1157],{"type":42,"value":1158},"Blob content (content-addressed)",{"type":37,"tag":137,"props":1160,"children":1161},{},[1162],{"type":42,"value":1163},"Sui transaction (unique per upload)",{"type":37,"tag":110,"props":1165,"children":1166},{},[1167,1175,1180],{"type":37,"tag":137,"props":1168,"children":1169},{},[1170],{"type":37,"tag":53,"props":1171,"children":1172},{},[1173],{"type":42,"value":1174},"Same content uploaded twice?",{"type":37,"tag":137,"props":1176,"children":1177},{},[1178],{"type":42,"value":1179},"Same blob ID",{"type":37,"tag":137,"props":1181,"children":1182},{},[1183],{"type":42,"value":1184},"Different object IDs",{"type":37,"tag":110,"props":1186,"children":1187},{},[1188,1196,1201],{"type":37,"tag":137,"props":1189,"children":1190},{},[1191],{"type":37,"tag":53,"props":1192,"children":1193},{},[1194],{"type":42,"value":1195},"Used for",{"type":37,"tag":137,"props":1197,"children":1198},{},[1199],{"type":42,"value":1200},"Reading blob content",{"type":37,"tag":137,"props":1202,"children":1203},{},[1204],{"type":42,"value":1205},"Lifecycle operations (extend, delete, share, burn)",{"type":37,"tag":110,"props":1207,"children":1208},{},[1209,1217,1230],{"type":37,"tag":137,"props":1210,"children":1211},{},[1212],{"type":37,"tag":53,"props":1213,"children":1214},{},[1215],{"type":42,"value":1216},"Where you get it",{"type":37,"tag":137,"props":1218,"children":1219},{},[1220,1222,1228],{"type":42,"value":1221},"Store response (",{"type":37,"tag":146,"props":1223,"children":1225},{"className":1224},[],[1226],{"type":42,"value":1227},"blobId",{"type":42,"value":1229}," field)",{"type":37,"tag":137,"props":1231,"children":1232},{},[1233,1234,1240],{"type":42,"value":1221},{"type":37,"tag":146,"props":1235,"children":1237},{"className":1236},[],[1238],{"type":42,"value":1239},"blobObject.id",{"type":42,"value":1229},{"type":37,"tag":536,"props":1242,"children":1244},{"id":1243},"decision-tree-which-tool-to-use",[1245],{"type":42,"value":1246},"Decision tree: which tool to use",{"type":37,"tag":102,"props":1248,"children":1249},{},[1250,1270],{"type":37,"tag":106,"props":1251,"children":1252},{},[1253],{"type":37,"tag":110,"props":1254,"children":1255},{},[1256,1261,1266],{"type":37,"tag":114,"props":1257,"children":1258},{},[1259],{"type":42,"value":1260},"You want to...",{"type":37,"tag":114,"props":1262,"children":1263},{},[1264],{"type":42,"value":1265},"Use",{"type":37,"tag":114,"props":1267,"children":1268},{},[1269],{"type":42,"value":123},{"type":37,"tag":130,"props":1271,"children":1272},{},[1273,1300,1327,1348,1375,1396,1417,1443,1464],{"type":37,"tag":110,"props":1274,"children":1275},{},[1276,1281,1292],{"type":37,"tag":137,"props":1277,"children":1278},{},[1279],{"type":42,"value":1280},"Upload a file from the terminal",{"type":37,"tag":137,"props":1282,"children":1283},{},[1284,1290],{"type":37,"tag":146,"props":1285,"children":1287},{"className":1286},[],[1288],{"type":42,"value":1289},"walrus store",{"type":42,"value":1291}," CLI",{"type":37,"tag":137,"props":1293,"children":1294},{},[1295],{"type":37,"tag":146,"props":1296,"children":1298},{"className":1297},[],[1299],{"type":42,"value":151},{"type":37,"tag":110,"props":1301,"children":1302},{},[1303,1308,1319],{"type":37,"tag":137,"props":1304,"children":1305},{},[1306],{"type":42,"value":1307},"Script uploads in a CI\u002FCD pipeline",{"type":37,"tag":137,"props":1309,"children":1310},{},[1311,1317],{"type":37,"tag":146,"props":1312,"children":1314},{"className":1313},[],[1315],{"type":42,"value":1316},"walrus json",{"type":42,"value":1318}," CLI (JSON mode)",{"type":37,"tag":137,"props":1320,"children":1321},{},[1322],{"type":37,"tag":146,"props":1323,"children":1325},{"className":1324},[],[1326],{"type":42,"value":151},{"type":37,"tag":110,"props":1328,"children":1329},{},[1330,1335,1340],{"type":37,"tag":137,"props":1331,"children":1332},{},[1333],{"type":42,"value":1334},"Store\u002Fread from any language over HTTP",{"type":37,"tag":137,"props":1336,"children":1337},{},[1338],{"type":42,"value":1339},"Publisher\u002Faggregator REST API",{"type":37,"tag":137,"props":1341,"children":1342},{},[1343],{"type":37,"tag":146,"props":1344,"children":1346},{"className":1345},[],[1347],{"type":42,"value":181},{"type":37,"tag":110,"props":1349,"children":1350},{},[1351,1356,1367],{"type":37,"tag":137,"props":1352,"children":1353},{},[1354],{"type":42,"value":1355},"Build a TypeScript\u002FJavaScript app",{"type":37,"tag":137,"props":1357,"children":1358},{},[1359,1365],{"type":37,"tag":146,"props":1360,"children":1362},{"className":1361},[],[1363],{"type":42,"value":1364},"@mysten\u002Fwalrus",{"type":42,"value":1366}," SDK",{"type":37,"tag":137,"props":1368,"children":1369},{},[1370],{"type":37,"tag":146,"props":1371,"children":1373},{"className":1372},[],[1374],{"type":42,"value":203},{"type":37,"tag":110,"props":1376,"children":1377},{},[1378,1383,1388],{"type":37,"tag":137,"props":1379,"children":1380},{},[1381],{"type":42,"value":1382},"Upload from a browser",{"type":37,"tag":137,"props":1384,"children":1385},{},[1386],{"type":42,"value":1387},"TypeScript SDK + upload relay",{"type":37,"tag":137,"props":1389,"children":1390},{},[1391],{"type":37,"tag":146,"props":1392,"children":1394},{"className":1393},[],[1395],{"type":42,"value":203},{"type":37,"tag":110,"props":1397,"children":1398},{},[1399,1404,1409],{"type":37,"tag":137,"props":1400,"children":1401},{},[1402],{"type":42,"value":1403},"Reference blobs in a Move contract",{"type":37,"tag":137,"props":1405,"children":1406},{},[1407],{"type":42,"value":1408},"Walrus Move dependency",{"type":37,"tag":137,"props":1410,"children":1411},{},[1412],{"type":37,"tag":146,"props":1413,"children":1415},{"className":1414},[],[1416],{"type":42,"value":225},{"type":37,"tag":110,"props":1418,"children":1419},{},[1420,1425,1435],{"type":37,"tag":137,"props":1421,"children":1422},{},[1423],{"type":42,"value":1424},"Deploy a static website",{"type":37,"tag":137,"props":1426,"children":1427},{},[1428,1434],{"type":37,"tag":146,"props":1429,"children":1431},{"className":1430},[],[1432],{"type":42,"value":1433},"site-builder",{"type":42,"value":1291},{"type":37,"tag":137,"props":1436,"children":1437},{},[1438],{"type":37,"tag":146,"props":1439,"children":1441},{"className":1440},[],[1442],{"type":42,"value":291},{"type":37,"tag":110,"props":1444,"children":1445},{},[1446,1451,1456],{"type":37,"tag":137,"props":1447,"children":1448},{},[1449],{"type":42,"value":1450},"Store many small files cheaply",{"type":37,"tag":137,"props":1452,"children":1453},{},[1454],{"type":42,"value":1455},"Quilts (CLI or HTTP)",{"type":37,"tag":137,"props":1457,"children":1458},{},[1459],{"type":37,"tag":146,"props":1460,"children":1462},{"className":1461},[],[1463],{"type":42,"value":313},{"type":37,"tag":110,"props":1465,"children":1466},{},[1467,1472,1477],{"type":37,"tag":137,"props":1468,"children":1469},{},[1470],{"type":42,"value":1471},"Store sensitive\u002Fprivate data",{"type":37,"tag":137,"props":1473,"children":1474},{},[1475],{"type":42,"value":1476},"Encrypt with Seal, then store",{"type":37,"tag":137,"props":1478,"children":1479},{},[1480],{"type":37,"tag":146,"props":1481,"children":1483},{"className":1482},[],[1484],{"type":42,"value":335},{"type":37,"tag":536,"props":1486,"children":1488},{"id":1487},"walrus-vs-traditional-storage",[1489],{"type":42,"value":1490},"Walrus vs traditional storage",{"type":37,"tag":102,"props":1492,"children":1493},{},[1494,1513],{"type":37,"tag":106,"props":1495,"children":1496},{},[1497],{"type":37,"tag":110,"props":1498,"children":1499},{},[1500,1503,1508],{"type":37,"tag":114,"props":1501,"children":1502},{},[],{"type":37,"tag":114,"props":1504,"children":1505},{},[1506],{"type":42,"value":1507},"Walrus",{"type":37,"tag":114,"props":1509,"children":1510},{},[1511],{"type":42,"value":1512},"AWS S3 \u002F Cloud Storage",{"type":37,"tag":130,"props":1514,"children":1515},{},[1516,1537,1558,1579,1600,1621,1642,1663],{"type":37,"tag":110,"props":1517,"children":1518},{},[1519,1527,1532],{"type":37,"tag":137,"props":1520,"children":1521},{},[1522],{"type":37,"tag":53,"props":1523,"children":1524},{},[1525],{"type":42,"value":1526},"Control",{"type":37,"tag":137,"props":1528,"children":1529},{},[1530],{"type":42,"value":1531},"No single operator controls data",{"type":37,"tag":137,"props":1533,"children":1534},{},[1535],{"type":42,"value":1536},"Provider controls everything",{"type":37,"tag":110,"props":1538,"children":1539},{},[1540,1548,1553],{"type":37,"tag":137,"props":1541,"children":1542},{},[1543],{"type":37,"tag":53,"props":1544,"children":1545},{},[1546],{"type":42,"value":1547},"Trust model",{"type":37,"tag":137,"props":1549,"children":1550},{},[1551],{"type":42,"value":1552},"Cryptographic verification",{"type":37,"tag":137,"props":1554,"children":1555},{},[1556],{"type":42,"value":1557},"Platform trust",{"type":37,"tag":110,"props":1559,"children":1560},{},[1561,1569,1574],{"type":37,"tag":137,"props":1562,"children":1563},{},[1564],{"type":37,"tag":53,"props":1565,"children":1566},{},[1567],{"type":42,"value":1568},"Fault tolerance",{"type":37,"tag":137,"props":1570,"children":1571},{},[1572],{"type":42,"value":1573},"Survives 2\u002F3 node failures",{"type":37,"tag":137,"props":1575,"children":1576},{},[1577],{"type":42,"value":1578},"Provider SLA",{"type":37,"tag":110,"props":1580,"children":1581},{},[1582,1590,1595],{"type":37,"tag":137,"props":1583,"children":1584},{},[1585],{"type":37,"tag":53,"props":1586,"children":1587},{},[1588],{"type":42,"value":1589},"Privacy",{"type":37,"tag":137,"props":1591,"children":1592},{},[1593],{"type":42,"value":1594},"All data public by default",{"type":37,"tag":137,"props":1596,"children":1597},{},[1598],{"type":42,"value":1599},"Private by default",{"type":37,"tag":110,"props":1601,"children":1602},{},[1603,1611,1616],{"type":37,"tag":137,"props":1604,"children":1605},{},[1606],{"type":37,"tag":53,"props":1607,"children":1608},{},[1609],{"type":42,"value":1610},"Cost model",{"type":37,"tag":137,"props":1612,"children":1613},{},[1614],{"type":42,"value":1615},"WAL + SUI tokens, per-epoch",{"type":37,"tag":137,"props":1617,"children":1618},{},[1619],{"type":42,"value":1620},"USD, per-month",{"type":37,"tag":110,"props":1622,"children":1623},{},[1624,1632,1637],{"type":37,"tag":137,"props":1625,"children":1626},{},[1627],{"type":37,"tag":53,"props":1628,"children":1629},{},[1630],{"type":42,"value":1631},"Duration",{"type":37,"tag":137,"props":1633,"children":1634},{},[1635],{"type":42,"value":1636},"Max ~2 years per purchase, renewable",{"type":37,"tag":137,"props":1638,"children":1639},{},[1640],{"type":42,"value":1641},"Indefinite",{"type":37,"tag":110,"props":1643,"children":1644},{},[1645,1653,1658],{"type":37,"tag":137,"props":1646,"children":1647},{},[1648],{"type":37,"tag":53,"props":1649,"children":1650},{},[1651],{"type":42,"value":1652},"Structure",{"type":37,"tag":137,"props":1654,"children":1655},{},[1656],{"type":42,"value":1657},"Flat blob storage (no directories)",{"type":37,"tag":137,"props":1659,"children":1660},{},[1661],{"type":42,"value":1662},"Directories\u002Fbuckets",{"type":37,"tag":110,"props":1664,"children":1665},{},[1666,1674,1679],{"type":37,"tag":137,"props":1667,"children":1668},{},[1669],{"type":37,"tag":53,"props":1670,"children":1671},{},[1672],{"type":42,"value":1673},"Verifiability",{"type":37,"tag":137,"props":1675,"children":1676},{},[1677],{"type":42,"value":1678},"Cryptographic blob IDs, on-chain certificates",{"type":37,"tag":137,"props":1680,"children":1681},{},[1682],{"type":42,"value":1683},"None",{"type":37,"tag":49,"props":1685,"children":1686},{},[1687,1689,1694],{"type":42,"value":1688},"Walrus is strongest for use cases that need ",{"type":37,"tag":53,"props":1690,"children":1691},{},[1692],{"type":42,"value":1693},"censorship resistance, verifiability, decentralized availability, or programmable access control",{"type":42,"value":1695},". It is not a drop-in replacement for all cloud storage — only the object\u002Fblob storage part.",{"type":37,"tag":536,"props":1697,"children":1699},{"id":1698},"rules",[1700],{"type":42,"value":1701},"Rules",{"type":37,"tag":618,"props":1703,"children":1704},{},[1705,1715,1725,1735,1745,1755],{"type":37,"tag":564,"props":1706,"children":1707},{},[1708,1713],{"type":37,"tag":53,"props":1709,"children":1710},{},[1711],{"type":42,"value":1712},"All blobs are public.",{"type":42,"value":1714}," Encrypt before uploading if you need privacy.",{"type":37,"tag":564,"props":1716,"children":1717},{},[1718,1723],{"type":37,"tag":53,"props":1719,"children":1720},{},[1721],{"type":42,"value":1722},"Storage is time-limited.",{"type":42,"value":1724}," Plan for renewals. Maximum is 53 epochs (~2 years on mainnet).",{"type":37,"tag":564,"props":1726,"children":1727},{},[1728,1733],{"type":37,"tag":53,"props":1729,"children":1730},{},[1731],{"type":42,"value":1732},"You need both WAL and SUI.",{"type":42,"value":1734}," WAL pays for storage, SUI pays for gas.",{"type":37,"tag":564,"props":1736,"children":1737},{},[1738,1743],{"type":37,"tag":53,"props":1739,"children":1740},{},[1741],{"type":42,"value":1742},"No public mainnet publisher.",{"type":42,"value":1744}," Use the upload relay, TypeScript SDK, CLI, or run your own publisher.",{"type":37,"tag":564,"props":1746,"children":1747},{},[1748,1753],{"type":37,"tag":53,"props":1749,"children":1750},{},[1751],{"type":42,"value":1752},"Small blobs are expensive individually.",{"type":42,"value":1754}," Use quilts for batches of small files.",{"type":37,"tag":564,"props":1756,"children":1757},{},[1758,1763],{"type":37,"tag":53,"props":1759,"children":1760},{},[1761],{"type":42,"value":1762},"Blob ID is not object ID.",{"type":42,"value":1764}," Content hash (for reading) vs on-chain object (for management). Do not confuse them.",{"items":1766,"total":1849},[1767,1778,1788,1805,1817,1832,1843],{"slug":269,"name":269,"fn":1768,"description":1769,"org":1770,"tags":1771,"stars":22,"repoUrl":23,"updatedAt":1777},"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},[1772,1773,1774],{"name":20,"slug":21,"type":15},{"name":14,"slug":8,"type":15},{"name":1775,"slug":1776,"type":15},"Web3","web3","2026-07-16T06:01:49.056917",{"slug":151,"name":151,"fn":1779,"description":1780,"org":1781,"tags":1782,"stars":22,"repoUrl":23,"updatedAt":1787},"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},[1783,1785,1786],{"name":141,"slug":1784,"type":15},"cli",{"name":20,"slug":21,"type":15},{"name":14,"slug":8,"type":15},"2026-07-16T06:02:52.586222",{"slug":335,"name":335,"fn":1789,"description":1790,"org":1791,"tags":1792,"stars":22,"repoUrl":23,"updatedAt":1804},"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},[1793,1796,1799,1802,1803],{"name":1794,"slug":1795,"type":15},"Access Control","access-control",{"name":1797,"slug":1798,"type":15},"Encryption","encryption",{"name":1800,"slug":1801,"type":15},"Security","security",{"name":20,"slug":21,"type":15},{"name":14,"slug":8,"type":15},"2026-07-16T06:01:48.700594",{"slug":181,"name":181,"fn":1806,"description":1807,"org":1808,"tags":1809,"stars":22,"repoUrl":23,"updatedAt":1816},"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},[1810,1813,1814,1815],{"name":1811,"slug":1812,"type":15},"REST API","rest-api",{"name":20,"slug":21,"type":15},{"name":14,"slug":8,"type":15},{"name":1775,"slug":1776,"type":15},"2026-07-16T06:01:48.340552",{"slug":1818,"name":1818,"fn":1819,"description":1820,"org":1821,"tags":1822,"stars":22,"repoUrl":23,"updatedAt":1831},"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},[1823,1826,1827,1830],{"name":1824,"slug":1825,"type":15},"Agents","agents",{"name":1797,"slug":1798,"type":15},{"name":1828,"slug":1829,"type":15},"Memory","memory",{"name":14,"slug":8,"type":15},"2026-07-29T05:39:21.825246",{"slug":225,"name":225,"fn":1833,"description":1834,"org":1835,"tags":1836,"stars":22,"repoUrl":23,"updatedAt":1842},"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},[1837,1840,1841],{"name":1838,"slug":1839,"type":15},"Smart Contracts","smart-contracts",{"name":20,"slug":21,"type":15},{"name":14,"slug":8,"type":15},"2026-07-16T06:02:53.633159",{"slug":4,"name":4,"fn":5,"description":6,"org":1844,"tags":1845,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1846,1847,1848],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":14,"slug":8,"type":15},11,{"items":1851,"total":2014},[1852,1868,1877,1887,1900,1914,1928,1941,1962,1974,1985,2001],{"slug":1853,"name":1853,"fn":1854,"description":1855,"org":1856,"tags":1857,"stars":1865,"repoUrl":1866,"updatedAt":1867},"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},[1858,1861,1864],{"name":1859,"slug":1860,"type":15},"Code Analysis","code-analysis",{"name":1862,"slug":1863,"type":15},"Engineering","engineering",{"name":14,"slug":8,"type":15},7724,"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002Fsui","2026-07-16T05:59:32.904886",{"slug":1869,"name":1869,"fn":1870,"description":1871,"org":1872,"tags":1873,"stars":1865,"repoUrl":1866,"updatedAt":1876},"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},[1874,1875],{"name":17,"slug":18,"type":15},{"name":14,"slug":8,"type":15},"2026-07-16T06:00:59.641382",{"slug":1878,"name":1878,"fn":1879,"description":1880,"org":1881,"tags":1882,"stars":1865,"repoUrl":1866,"updatedAt":1886},"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},[1883,1884,1885],{"name":1859,"slug":1860,"type":15},{"name":1862,"slug":1863,"type":15},{"name":14,"slug":8,"type":15},"2026-07-16T06:02:25.3633",{"slug":1888,"name":1888,"fn":1889,"description":1890,"org":1891,"tags":1892,"stars":1865,"repoUrl":1866,"updatedAt":1899},"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},[1893,1896,1897,1898],{"name":1894,"slug":1895,"type":15},"Code Review","code-review",{"name":1800,"slug":1801,"type":15},{"name":1838,"slug":1839,"type":15},{"name":14,"slug":8,"type":15},"2026-07-16T06:02:55.691149",{"slug":1901,"name":1901,"fn":1902,"description":1903,"org":1904,"tags":1905,"stars":1911,"repoUrl":1912,"updatedAt":1913},"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},[1906,1907,1908],{"name":1824,"slug":1825,"type":15},{"name":1828,"slug":1829,"type":15},{"name":1909,"slug":1910,"type":15},"SDK","sdk",57,"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002FMemWal","2026-07-16T06:02:39.838395",{"slug":1915,"name":1915,"fn":1916,"description":1917,"org":1918,"tags":1919,"stars":1925,"repoUrl":1926,"updatedAt":1927},"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},[1920,1923,1924],{"name":1921,"slug":1922,"type":15},"Data Analysis","data-analysis",{"name":14,"slug":8,"type":15},{"name":1775,"slug":1776,"type":15},9,"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002Fskills","2026-08-01T05:44:32.775598",{"slug":1929,"name":1929,"fn":1930,"description":1931,"org":1932,"tags":1933,"stars":1925,"repoUrl":1926,"updatedAt":1940},"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},[1934,1937,1938,1939],{"name":1935,"slug":1936,"type":15},"API Development","api-development",{"name":1838,"slug":1839,"type":15},{"name":14,"slug":8,"type":15},{"name":1775,"slug":1776,"type":15},"2026-07-16T06:02:49.198495",{"slug":1942,"name":1942,"fn":1943,"description":1944,"org":1945,"tags":1946,"stars":1925,"repoUrl":1926,"updatedAt":1961},"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},[1947,1950,1953,1954,1957,1960],{"name":1948,"slug":1949,"type":15},"Frontend","frontend",{"name":1951,"slug":1952,"type":15},"React","react",{"name":14,"slug":8,"type":15},{"name":1955,"slug":1956,"type":15},"Svelte","svelte",{"name":1958,"slug":1959,"type":15},"Vue","vue",{"name":1775,"slug":1776,"type":15},"2026-08-01T05:44:28.958473",{"slug":1963,"name":1963,"fn":1964,"description":1965,"org":1966,"tags":1967,"stars":1925,"repoUrl":1926,"updatedAt":1973},"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},[1968,1971,1972],{"name":1969,"slug":1970,"type":15},"Configuration","configuration",{"name":17,"slug":18,"type":15},{"name":14,"slug":8,"type":15},"2026-07-16T06:00:59.981056",{"slug":1975,"name":1975,"fn":1976,"description":1977,"org":1978,"tags":1979,"stars":1925,"repoUrl":1926,"updatedAt":1984},"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},[1980,1981,1982,1983],{"name":1862,"slug":1863,"type":15},{"name":1838,"slug":1839,"type":15},{"name":14,"slug":8,"type":15},{"name":1775,"slug":1776,"type":15},"2026-07-16T06:02:43.277596",{"slug":1986,"name":1986,"fn":1987,"description":1988,"org":1989,"tags":1990,"stars":1925,"repoUrl":1926,"updatedAt":2000},"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},[1991,1994,1995,1996,1999],{"name":1992,"slug":1993,"type":15},"QA","qa",{"name":1838,"slug":1839,"type":15},{"name":14,"slug":8,"type":15},{"name":1997,"slug":1998,"type":15},"Testing","testing",{"name":1775,"slug":1776,"type":15},"2026-08-01T05:44:30.788585",{"slug":2002,"name":2002,"fn":2003,"description":2004,"org":2005,"tags":2006,"stars":1925,"repoUrl":1926,"updatedAt":2013},"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},[2007,2010,2011,2012],{"name":2008,"slug":2009,"type":15},"Best Practices","best-practices",{"name":1838,"slug":1839,"type":15},{"name":14,"slug":8,"type":15},{"name":1775,"slug":1776,"type":15},"2026-07-16T06:02:48.830052",37]