store_blob
Store base64-encoded data or files in Walrus decentralized storage for a specified number of epochs, enabling blockchain-verified data availability using the Sui network.
Instructions
Store a blob in Walrus decentralized storage
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | Base64 encoded data or file path to store | |
epochs | No | Number of epochs to store the blob (default: 5) |
Input Schema (JSON Schema)
{
"properties": {
"data": {
"description": "Base64 encoded data or file path to store",
"type": "string"
},
"epochs": {
"default": 5,
"description": "Number of epochs to store the blob (default: 5)",
"type": "number"
}
},
"required": [
"data"
],
"type": "object"
}