deso_js_guide
Learn to implement DeSo blockchain features using the deso-js SDK with step-by-step guidance on setup, authentication, transactions, and more across frameworks like React or Node.
Instructions
Complete guide to using the deso-js SDK with setup, authentication, and transactions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
framework | No | Framework context (optional) | |
topic | Yes | Topic to get guidance on |
Input Schema (JSON Schema)
{
"properties": {
"framework": {
"description": "Framework context (optional)",
"enum": [
"vanilla",
"react",
"nextjs",
"node"
],
"type": "string"
},
"topic": {
"description": "Topic to get guidance on",
"enum": [
"setup",
"identity",
"authentication",
"transactions",
"data",
"permissions",
"examples",
"troubleshooting"
],
"type": "string"
}
},
"required": [
"topic"
],
"type": "object"
}