generate_deso_code
Generate ready-to-use code examples for DeSo blockchain operations using deso-js SDK. Specify operations like 'follow', 'post', or 'buy-creator-coin' and select languages like JavaScript, TypeScript, React, or cURL.
Instructions
Generate comprehensive code examples for DeSo operations using deso-js SDK
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fullExample | No | Generate complete working example | |
includeAuth | No | Include authentication setup | |
language | Yes | Programming language/framework | |
operation | Yes | DeSo operation (e.g., 'follow', 'post', 'buy-creator-coin', 'send-diamonds') |
Input Schema (JSON Schema)
{
"properties": {
"fullExample": {
"description": "Generate complete working example",
"type": "boolean"
},
"includeAuth": {
"description": "Include authentication setup",
"type": "boolean"
},
"language": {
"description": "Programming language/framework",
"enum": [
"javascript",
"typescript",
"react",
"curl"
],
"type": "string"
},
"operation": {
"description": "DeSo operation (e.g., 'follow', 'post', 'buy-creator-coin', 'send-diamonds')",
"type": "string"
}
},
"required": [
"operation",
"language"
],
"type": "object"
}