trident_template/
lib.rs

1mod get_ix_discriminator;
2mod get_program_id;
3mod template_custom_types;
4// mod instruction_variants;
5
6use get_ix_discriminator::*;
7use get_program_id::*;
8// use instruction_variants::*;
9
10pub mod template;
11
12pub use template::Template;
13mod idl_type_to_syn_type;
14mod template_fuzz_transactions;
15pub mod template_getters;
16mod template_instruction;
17mod template_transaction;
18mod test_fuzz;
19use idl_type_to_syn_type::idl_type_to_syn_type;