FAQ#
Is Trident supported only with Anchor ?#
- Currently yes, Trident under the hood obtains data from the IDL generated by Anchor.
I created the Fuzz Test what should I do next ?#
- Start here Writing Fuzz Tests. For additional features check Features. If you are not sure about anything check Get Help
My program Instruction contains custom type such as Struct or Enum on its input, but it does not derive Arbitrary.#
- In this case you need to specify same type in the Fuzz Test (with the same fields). And implement From Trait to convert to your type. Check Custom Data Types or Examples of Arbitrary.
Is Trident open-source ?#
- Yes, here Trident
I would like to report Issue with Trident, what should I do ?#
- Write Issue Issues
Is Trident deployed on Mainnet / Devnet / Testenet ?#
- No, Trident is Fuzz Testing Framework, not Solana Program.
What type of Fuzzer Trident is ?#
- Currently, we refer to it as "coverage guided gray box fuzzer".