w3_can_store_add
Stores a CAR file with the IPFS service using absolute paths, enabling advanced data management. Essential for preparing files before upload operations with w3_can_upload_add
.
Instructions
Stores a CAR file with the service (advanced use). This is often a prerequisite for w3_can_upload_add
. Requires ABSOLUTE paths for file arguments.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | ABSOLUTE path to the CAR file to store. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"description": "Stores a CAR file with the service (advanced use). This is often a prerequisite for `w3_can_upload_add`.",
"properties": {
"path": {
"description": "ABSOLUTE path to the CAR file to store.",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}