ldk_test_scenario
Execute Lightning network test scenarios, including payments, channel management, and edge cases, to validate iOS wallet functionality using LDK MCP Server's development tools.
Instructions
Run complete Lightning development scenarios for testing
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| scenario | Yes | Test scenario to run |
Input Schema (JSON Schema)
{
"properties": {
"scenario": {
"description": "Test scenario to run",
"enum": [
"basic_payment",
"channel_lifecycle",
"multi_hop_payment",
"payment_failure",
"force_close",
"offline_receive",
"fee_spike",
"backup_restore"
],
"type": "string"
}
},
"required": [
"scenario"
],
"type": "object"
}