Test Types
Chaos Test Types
Available Test Types
1. Fuzz Testing (FUZZ)
const request = await sdk.createChaosRequest({
targetProgram: "Your program ID",
testType: "FUZZ",
duration: 300,
intensity: 5,
params: {
instructionTypes: ["all"], // or specific instructions
seedRange: [0, 1000000]
}
});2. Load Testing (LOAD)
3. Exploit Testing (EXPLOIT)
4. Concurrency Testing (CONCURRENCY)
Test Parameters
Common Parameters
Test-Specific Parameters
Best Practices
Result Analysis
Next Steps
Last updated