solana_feature_set/
lib.rs

1//! Collection of all runtime features.
2//!
3//! Steps to add a new feature are outlined below. Note that these steps only cover
4//! the process of getting a feature into the core Solana code.
5//! - For features that are unambiguously good (ie bug fixes), these steps are sufficient.
6//! - For features that should go up for community vote (ie fee structure changes), more
7//!   information on the additional steps to follow can be found at:
8//!   <https://spl.solana.com/feature-proposal#feature-proposal-life-cycle>
9//!
10//! 1. Generate a new keypair with `solana-keygen new --outfile feature.json --no-passphrase`
11//!    - Keypairs should be held by core contributors only. If you're a non-core contributor going
12//!      through these steps, the PR process will facilitate a keypair holder being picked. That
13//!      person will generate the keypair, provide pubkey for PR, and ultimately enable the feature.
14//! 2. Add a public module for the feature, specifying keypair pubkey as the id with
15//!    `solana_pubkey::declare_id!()` within the module.
16//!    Additionally, add an entry to `FEATURE_NAMES` map.
17//! 3. Add desired logic to check for and switch on feature availability.
18//!
19//! For more information on how features are picked up, see comments for `Feature`.
20#![cfg_attr(feature = "frozen-abi", feature(min_specialization))]
21
22use {
23    ahash::{AHashMap, AHashSet},
24    lazy_static::lazy_static,
25    solana_epoch_schedule::EpochSchedule,
26    solana_hash::Hash,
27    solana_pubkey::Pubkey,
28    solana_sha256_hasher::Hasher,
29};
30
31pub mod deprecate_rewards_sysvar {
32    solana_pubkey::declare_id!("GaBtBJvmS4Arjj5W1NmFcyvPjsHN38UGYDq2MDwbs9Qu");
33}
34
35pub mod pico_inflation {
36    solana_pubkey::declare_id!("4RWNif6C2WCNiKVW7otP4G7dkmkHGyKQWRpuZ1pxKU5m");
37}
38
39pub mod full_inflation {
40    pub mod devnet_and_testnet {
41        solana_pubkey::declare_id!("DT4n6ABDqs6w4bnfwrXT9rsprcPf6cdDga1egctaPkLC");
42    }
43
44    pub mod mainnet {
45        pub mod certusone {
46            pub mod vote {
47                solana_pubkey::declare_id!("BzBBveUDymEYoYzcMWNQCx3cd4jQs7puaVFHLtsbB6fm");
48            }
49            pub mod enable {
50                solana_pubkey::declare_id!("7XRJcS5Ud5vxGB54JbK9N2vBZVwnwdBNeJW1ibRgD9gx");
51            }
52        }
53    }
54}
55
56pub mod secp256k1_program_enabled {
57    solana_pubkey::declare_id!("E3PHP7w8kB7np3CTQ1qQ2tW3KCtjRSXBQgW9vM2mWv2Y");
58}
59
60pub mod spl_token_v2_multisig_fix {
61    solana_pubkey::declare_id!("E5JiFDQCwyC6QfT9REFyMpfK2mHcmv1GUDySU1Ue7TYv");
62}
63
64pub mod no_overflow_rent_distribution {
65    solana_pubkey::declare_id!("4kpdyrcj5jS47CZb2oJGfVxjYbsMm2Kx97gFyZrxxwXz");
66}
67
68pub mod filter_stake_delegation_accounts {
69    solana_pubkey::declare_id!("GE7fRxmW46K6EmCD9AMZSbnaJ2e3LfqCZzdHi9hmYAgi");
70}
71
72pub mod require_custodian_for_locked_stake_authorize {
73    solana_pubkey::declare_id!("D4jsDcXaqdW8tDAWn8H4R25Cdns2YwLneujSL1zvjW6R");
74}
75
76pub mod spl_token_v2_self_transfer_fix {
77    solana_pubkey::declare_id!("BL99GYhdjjcv6ys22C9wPgn2aTVERDbPHHo4NbS3hgp7");
78}
79
80pub mod warp_timestamp_again {
81    solana_pubkey::declare_id!("GvDsGDkH5gyzwpDhxNixx8vtx1kwYHH13RiNAPw27zXb");
82}
83
84pub mod check_init_vote_data {
85    solana_pubkey::declare_id!("3ccR6QpxGYsAbWyfevEtBNGfWV4xBffxRj2tD6A9i39F");
86}
87
88pub mod secp256k1_recover_syscall_enabled {
89    solana_pubkey::declare_id!("6RvdSWHh8oh72Dp7wMTS2DBkf3fRPtChfNrAo3cZZoXJ");
90}
91
92pub mod system_transfer_zero_check {
93    solana_pubkey::declare_id!("BrTR9hzw4WBGFP65AJMbpAo64DcA3U6jdPSga9fMV5cS");
94}
95
96pub mod blake3_syscall_enabled {
97    solana_pubkey::declare_id!("HTW2pSyErTj4BV6KBM9NZ9VBUJVxt7sacNWcf76wtzb3");
98}
99
100pub mod dedupe_config_program_signers {
101    solana_pubkey::declare_id!("8kEuAshXLsgkUEdcFVLqrjCGGHVWFW99ZZpxvAzzMtBp");
102}
103
104pub mod verify_tx_signatures_len {
105    solana_pubkey::declare_id!("EVW9B5xD9FFK7vw1SBARwMA4s5eRo5eKJdKpsBikzKBz");
106}
107
108pub mod vote_stake_checked_instructions {
109    solana_pubkey::declare_id!("BcWknVcgvonN8sL4HE4XFuEVgfcee5MwxWPAgP6ZV89X");
110}
111
112pub mod rent_for_sysvars {
113    solana_pubkey::declare_id!("BKCPBQQBZqggVnFso5nQ8rQ4RwwogYwjuUt9biBjxwNF");
114}
115
116pub mod libsecp256k1_0_5_upgrade_enabled {
117    solana_pubkey::declare_id!("DhsYfRjxfnh2g7HKJYSzT79r74Afa1wbHkAgHndrA1oy");
118}
119
120pub mod tx_wide_compute_cap {
121    solana_pubkey::declare_id!("5ekBxc8itEnPv4NzGJtr8BVVQLNMQuLMNQQj7pHoLNZ9");
122}
123
124pub mod spl_token_v2_set_authority_fix {
125    solana_pubkey::declare_id!("FToKNBYyiF4ky9s8WsmLBXHCht17Ek7RXaLZGHzzQhJ1");
126}
127
128pub mod merge_nonce_error_into_system_error {
129    solana_pubkey::declare_id!("21AWDosvp3pBamFW91KB35pNoaoZVTM7ess8nr2nt53B");
130}
131
132pub mod disable_fees_sysvar {
133    solana_pubkey::declare_id!("JAN1trEUEtZjgXYzNBYHU9DYd7GnThhXfFP7SzPXkPsG");
134}
135
136pub mod stake_merge_with_unmatched_credits_observed {
137    solana_pubkey::declare_id!("meRgp4ArRPhD3KtCY9c5yAf2med7mBLsjKTPeVUHqBL");
138}
139
140pub mod zk_token_sdk_enabled {
141    solana_pubkey::declare_id!("zk1snxsc6Fh3wsGNbbHAJNHiJoYgF29mMnTSusGx5EJ");
142}
143
144pub mod curve25519_syscall_enabled {
145    solana_pubkey::declare_id!("7rcw5UtqgDTBBv2EcynNfYckgdAaH1MAsCjKgXMkN7Ri");
146}
147
148pub mod curve25519_restrict_msm_length {
149    solana_pubkey::declare_id!("eca6zf6JJRjQsYYPkBHF3N32MTzur4n2WL4QiiacPCL");
150}
151
152pub mod versioned_tx_message_enabled {
153    solana_pubkey::declare_id!("3KZZ6Ks1885aGBQ45fwRcPXVBCtzUvxhUTkwKMR41Tca");
154}
155
156pub mod libsecp256k1_fail_on_bad_count {
157    solana_pubkey::declare_id!("8aXvSuopd1PUj7UhehfXJRg6619RHp8ZvwTyyJHdUYsj");
158}
159
160pub mod libsecp256k1_fail_on_bad_count2 {
161    solana_pubkey::declare_id!("54KAoNiUERNoWWUhTWWwXgym94gzoXFVnHyQwPA18V9A");
162}
163
164pub mod instructions_sysvar_owned_by_sysvar {
165    solana_pubkey::declare_id!("H3kBSaKdeiUsyHmeHqjJYNc27jesXZ6zWj3zWkowQbkV");
166}
167
168pub mod stake_program_advance_activating_credits_observed {
169    solana_pubkey::declare_id!("SAdVFw3RZvzbo6DvySbSdBnHN4gkzSTH9dSxesyKKPj");
170}
171
172pub mod credits_auto_rewind {
173    solana_pubkey::declare_id!("BUS12ciZ5gCoFafUHWW8qaFMMtwFQGVxjsDheWLdqBE2");
174}
175
176pub mod demote_program_write_locks {
177    solana_pubkey::declare_id!("3E3jV7v9VcdJL8iYZUMax9DiDno8j7EWUVbhm9RtShj2");
178}
179
180pub mod ed25519_program_enabled {
181    solana_pubkey::declare_id!("6ppMXNYLhVd7GcsZ5uV11wQEW7spppiMVfqQv5SXhDpX");
182}
183
184pub mod return_data_syscall_enabled {
185    solana_pubkey::declare_id!("DwScAzPUjuv65TMbDnFY7AgwmotzWy3xpEJMXM3hZFaB");
186}
187
188pub mod reduce_required_deploy_balance {
189    solana_pubkey::declare_id!("EBeznQDjcPG8491sFsKZYBi5S5jTVXMpAKNDJMQPS2kq");
190}
191
192pub mod sol_log_data_syscall_enabled {
193    solana_pubkey::declare_id!("6uaHcKPGUy4J7emLBgUTeufhJdiwhngW6a1R9B7c2ob9");
194}
195
196pub mod stakes_remove_delegation_if_inactive {
197    solana_pubkey::declare_id!("HFpdDDNQjvcXnXKec697HDDsyk6tFoWS2o8fkxuhQZpL");
198}
199
200pub mod do_support_realloc {
201    solana_pubkey::declare_id!("75m6ysz33AfLA5DDEzWM1obBrnPQRSsdVQ2nRmc8Vuu1");
202}
203
204pub mod prevent_calling_precompiles_as_programs {
205    solana_pubkey::declare_id!("4ApgRX3ud6p7LNMJmsuaAcZY5HWctGPr5obAsjB3A54d");
206}
207
208pub mod optimize_epoch_boundary_updates {
209    solana_pubkey::declare_id!("265hPS8k8xJ37ot82KEgjRunsUp5w4n4Q4VwwiN9i9ps");
210}
211
212pub mod remove_native_loader {
213    solana_pubkey::declare_id!("HTTgmruMYRZEntyL3EdCDdnS6e4D5wRq1FA7kQsb66qq");
214}
215
216pub mod send_to_tpu_vote_port {
217    solana_pubkey::declare_id!("C5fh68nJ7uyKAuYZg2x9sEQ5YrVf3dkW6oojNBSc3Jvo");
218}
219
220pub mod requestable_heap_size {
221    solana_pubkey::declare_id!("CCu4boMmfLuqcmfTLPHQiUo22ZdUsXjgzPAURYaWt1Bw");
222}
223
224pub mod disable_fee_calculator {
225    solana_pubkey::declare_id!("2jXx2yDmGysmBKfKYNgLj2DQyAQv6mMk2BPh4eSbyB4H");
226}
227
228pub mod add_compute_budget_program {
229    solana_pubkey::declare_id!("4d5AKtxoh93Dwm1vHXUU3iRATuMndx1c431KgT2td52r");
230}
231
232pub mod nonce_must_be_writable {
233    solana_pubkey::declare_id!("BiCU7M5w8ZCMykVSyhZ7Q3m2SWoR2qrEQ86ERcDX77ME");
234}
235
236pub mod spl_token_v3_3_0_release {
237    solana_pubkey::declare_id!("Ftok2jhqAqxUWEiCVRrfRs9DPppWP8cgTB7NQNKL88mS");
238}
239
240pub mod leave_nonce_on_success {
241    solana_pubkey::declare_id!("E8MkiWZNNPGU6n55jkGzyj8ghUmjCHRmDFdYYFYHxWhQ");
242}
243
244pub mod reject_empty_instruction_without_program {
245    solana_pubkey::declare_id!("9kdtFSrXHQg3hKkbXkQ6trJ3Ja1xpJ22CTFSNAciEwmL");
246}
247
248pub mod fixed_memcpy_nonoverlapping_check {
249    solana_pubkey::declare_id!("36PRUK2Dz6HWYdG9SpjeAsF5F3KxnFCakA2BZMbtMhSb");
250}
251
252pub mod reject_non_rent_exempt_vote_withdraws {
253    solana_pubkey::declare_id!("7txXZZD6Um59YoLMF7XUNimbMjsqsWhc7g2EniiTrmp1");
254}
255
256pub mod evict_invalid_stakes_cache_entries {
257    solana_pubkey::declare_id!("EMX9Q7TVFAmQ9V1CggAkhMzhXSg8ECp7fHrWQX2G1chf");
258}
259
260pub mod allow_votes_to_directly_update_vote_state {
261    solana_pubkey::declare_id!("Ff8b1fBeB86q8cjq47ZhsQLgv5EkHu3G1C99zjUfAzrq");
262}
263
264pub mod max_tx_account_locks {
265    solana_pubkey::declare_id!("CBkDroRDqm8HwHe6ak9cguPjUomrASEkfmxEaZ5CNNxz");
266}
267
268pub mod require_rent_exempt_accounts {
269    solana_pubkey::declare_id!("BkFDxiJQWZXGTZaJQxH7wVEHkAmwCgSEVkrvswFfRJPD");
270}
271
272pub mod filter_votes_outside_slot_hashes {
273    solana_pubkey::declare_id!("3gtZPqvPpsbXZVCx6hceMfWxtsmrjMzmg8C7PLKSxS2d");
274}
275
276pub mod update_syscall_base_costs {
277    solana_pubkey::declare_id!("2h63t332mGCCsWK2nqqqHhN4U9ayyqhLVFvczznHDoTZ");
278}
279
280pub mod stake_deactivate_delinquent_instruction {
281    solana_pubkey::declare_id!("437r62HoAdUb63amq3D7ENnBLDhHT2xY8eFkLJYVKK4x");
282}
283
284pub mod vote_withdraw_authority_may_change_authorized_voter {
285    solana_pubkey::declare_id!("AVZS3ZsN4gi6Rkx2QUibYuSJG3S6QHib7xCYhG6vGJxU");
286}
287
288pub mod spl_associated_token_account_v1_0_4 {
289    solana_pubkey::declare_id!("FaTa4SpiaSNH44PGC4z8bnGVTkSRYaWvrBs3KTu8XQQq");
290}
291
292pub mod reject_vote_account_close_unless_zero_credit_epoch {
293    solana_pubkey::declare_id!("ALBk3EWdeAg2WAGf6GPDUf1nynyNqCdEVmgouG7rpuCj");
294}
295
296pub mod add_get_processed_sibling_instruction_syscall {
297    solana_pubkey::declare_id!("CFK1hRCNy8JJuAAY8Pb2GjLFNdCThS2qwZNe3izzBMgn");
298}
299
300pub mod bank_transaction_count_fix {
301    solana_pubkey::declare_id!("Vo5siZ442SaZBKPXNocthiXysNviW4UYPwRFggmbgAp");
302}
303
304pub mod disable_bpf_deprecated_load_instructions {
305    solana_pubkey::declare_id!("3XgNukcZWf9o3HdA3fpJbm94XFc4qpvTXc8h1wxYwiPi");
306}
307
308pub mod disable_bpf_unresolved_symbols_at_runtime {
309    solana_pubkey::declare_id!("4yuaYAj2jGMGTh1sSmi4G2eFscsDq8qjugJXZoBN6YEa");
310}
311
312pub mod record_instruction_in_transaction_context_push {
313    solana_pubkey::declare_id!("3aJdcZqxoLpSBxgeYGjPwaYS1zzcByxUDqJkbzWAH1Zb");
314}
315
316pub mod syscall_saturated_math {
317    solana_pubkey::declare_id!("HyrbKftCdJ5CrUfEti6x26Cj7rZLNe32weugk7tLcWb8");
318}
319
320pub mod check_physical_overlapping {
321    solana_pubkey::declare_id!("nWBqjr3gpETbiaVj3CBJ3HFC5TMdnJDGt21hnvSTvVZ");
322}
323
324pub mod limit_secp256k1_recovery_id {
325    solana_pubkey::declare_id!("7g9EUwj4j7CS21Yx1wvgWLjSZeh5aPq8x9kpoPwXM8n8");
326}
327
328pub mod disable_deprecated_loader {
329    solana_pubkey::declare_id!("GTUMCZ8LTNxVfxdrw7ZsDFTxXb7TutYkzJnFwinpE6dg");
330}
331
332pub mod check_slice_translation_size {
333    solana_pubkey::declare_id!("GmC19j9qLn2RFk5NduX6QXaDhVpGncVVBzyM8e9WMz2F");
334}
335
336pub mod stake_split_uses_rent_sysvar {
337    solana_pubkey::declare_id!("FQnc7U4koHqWgRvFaBJjZnV8VPg6L6wWK33yJeDp4yvV");
338}
339
340pub mod add_get_minimum_delegation_instruction_to_stake_program {
341    solana_pubkey::declare_id!("St8k9dVXP97xT6faW24YmRSYConLbhsMJA4TJTBLmMT");
342}
343
344pub mod error_on_syscall_bpf_function_hash_collisions {
345    solana_pubkey::declare_id!("8199Q2gMD2kwgfopK5qqVWuDbegLgpuFUFHCcUJQDN8b");
346}
347
348pub mod reject_callx_r10 {
349    solana_pubkey::declare_id!("3NKRSwpySNwD3TvP5pHnRmkAQRsdkXWRr1WaQh8p4PWX");
350}
351
352pub mod drop_redundant_turbine_path {
353    solana_pubkey::declare_id!("4Di3y24QFLt5QEUPZtbnjyfQKfm6ZMTfa6Dw1psfoMKU");
354}
355
356pub mod executables_incur_cpi_data_cost {
357    solana_pubkey::declare_id!("7GUcYgq4tVtaqNCKT3dho9r4665Qp5TxCZ27Qgjx3829");
358}
359
360pub mod fix_recent_blockhashes {
361    solana_pubkey::declare_id!("6iyggb5MTcsvdcugX7bEKbHV8c6jdLbpHwkncrgLMhfo");
362}
363
364pub mod update_rewards_from_cached_accounts {
365    solana_pubkey::declare_id!("28s7i3htzhahXQKqmS2ExzbEoUypg9krwvtK2M9UWXh9");
366}
367pub mod enable_partitioned_epoch_reward {
368    solana_pubkey::declare_id!("9bn2vTJUsUcnpiZWbu2woSKtTGW3ErZC9ERv88SDqQjK");
369}
370
371pub mod partitioned_epoch_rewards_superfeature {
372    solana_pubkey::declare_id!("PERzQrt5gBD1XEe2c9XdFWqwgHY3mr7cYWbm5V772V8");
373}
374
375pub mod spl_token_v3_4_0 {
376    solana_pubkey::declare_id!("Ftok4njE8b7tDffYkC5bAbCaQv5sL6jispYrprzatUwN");
377}
378
379pub mod spl_associated_token_account_v1_1_0 {
380    solana_pubkey::declare_id!("FaTa17gVKoqbh38HcfiQonPsAaQViyDCCSg71AubYZw8");
381}
382
383pub mod default_units_per_instruction {
384    solana_pubkey::declare_id!("J2QdYx8crLbTVK8nur1jeLsmc3krDbfjoxoea2V1Uy5Q");
385}
386
387pub mod stake_allow_zero_undelegated_amount {
388    solana_pubkey::declare_id!("sTKz343FM8mqtyGvYWvbLpTThw3ixRM4Xk8QvZ985mw");
389}
390
391pub mod require_static_program_ids_in_transaction {
392    solana_pubkey::declare_id!("8FdwgyHFEjhAdjWfV2vfqk7wA1g9X3fQpKH7SBpEv3kC");
393}
394
395pub mod stake_raise_minimum_delegation_to_1_sol {
396    // This is a feature-proposal *feature id*.  The feature keypair address is `GQXzC7YiSNkje6FFUk6sc2p53XRvKoaZ9VMktYzUMnpL`.
397    solana_pubkey::declare_id!("9onWzzvCzNC2jfhxxeqRgs5q7nFAAKpCUvkj6T6GJK9i");
398}
399
400pub mod stake_minimum_delegation_for_rewards {
401    solana_pubkey::declare_id!("G6ANXD6ptCSyNd9znZm7j4dEczAJCfx7Cy43oBx3rKHJ");
402}
403
404pub mod add_set_compute_unit_price_ix {
405    solana_pubkey::declare_id!("98std1NSHqXi9WYvFShfVepRdCoq1qvsp8fsR2XZtG8g");
406}
407
408pub mod disable_deploy_of_alloc_free_syscall {
409    solana_pubkey::declare_id!("79HWsX9rpnnJBPcdNURVqygpMAfxdrAirzAGAVmf92im");
410}
411
412pub mod include_account_index_in_rent_error {
413    solana_pubkey::declare_id!("2R72wpcQ7qV7aTJWUumdn8u5wmmTyXbK7qzEy7YSAgyY");
414}
415
416pub mod add_shred_type_to_shred_seed {
417    solana_pubkey::declare_id!("Ds87KVeqhbv7Jw8W6avsS1mqz3Mw5J3pRTpPoDQ2QdiJ");
418}
419
420pub mod warp_timestamp_with_a_vengeance {
421    solana_pubkey::declare_id!("3BX6SBeEBibHaVQXywdkcgyUk6evfYZkHdztXiDtEpFS");
422}
423
424pub mod separate_nonce_from_blockhash {
425    solana_pubkey::declare_id!("Gea3ZkK2N4pHuVZVxWcnAtS6UEDdyumdYt4pFcKjA3ar");
426}
427
428pub mod enable_durable_nonce {
429    solana_pubkey::declare_id!("4EJQtF2pkRyawwcTVfQutzq4Sa5hRhibF6QAK1QXhtEX");
430}
431
432pub mod vote_state_update_credit_per_dequeue {
433    solana_pubkey::declare_id!("CveezY6FDLVBToHDcvJRmtMouqzsmj4UXYh5ths5G5Uv");
434}
435
436pub mod quick_bail_on_panic {
437    solana_pubkey::declare_id!("DpJREPyuMZ5nDfU6H3WTqSqUFSXAfw8u7xqmWtEwJDcP");
438}
439
440pub mod nonce_must_be_authorized {
441    solana_pubkey::declare_id!("HxrEu1gXuH7iD3Puua1ohd5n4iUKJyFNtNxk9DVJkvgr");
442}
443
444pub mod nonce_must_be_advanceable {
445    solana_pubkey::declare_id!("3u3Er5Vc2jVcwz4xr2GJeSAXT3fAj6ADHZ4BJMZiScFd");
446}
447
448pub mod vote_authorize_with_seed {
449    solana_pubkey::declare_id!("6tRxEYKuy2L5nnv5bgn7iT28MxUbYxp5h7F3Ncf1exrT");
450}
451
452pub mod preserve_rent_epoch_for_rent_exempt_accounts {
453    solana_pubkey::declare_id!("HH3MUYReL2BvqqA3oEcAa7txju5GY6G4nxJ51zvsEjEZ");
454}
455
456pub mod enable_bpf_loader_extend_program_ix {
457    solana_pubkey::declare_id!("8Zs9W7D9MpSEtUWSQdGniZk2cNmV22y6FLJwCx53asme");
458}
459
460pub mod enable_early_verification_of_account_modifications {
461    solana_pubkey::declare_id!("7Vced912WrRnfjaiKRiNBcbuFw7RrnLv3E3z95Y4GTNc");
462}
463
464pub mod skip_rent_rewrites {
465    solana_pubkey::declare_id!("CGB2jM8pwZkeeiXQ66kBMyBR6Np61mggL7XUsmLjVcrw");
466}
467
468pub mod prevent_crediting_accounts_that_end_rent_paying {
469    solana_pubkey::declare_id!("812kqX67odAp5NFwM8D2N24cku7WTm9CHUTFUXaDkWPn");
470}
471
472pub mod cap_bpf_program_instruction_accounts {
473    solana_pubkey::declare_id!("9k5ijzTbYPtjzu8wj2ErH9v45xecHzQ1x4PMYMMxFgdM");
474}
475
476pub mod loosen_cpi_size_restriction {
477    solana_pubkey::declare_id!("GDH5TVdbTPUpRnXaRyQqiKUa7uZAbZ28Q2N9bhbKoMLm");
478}
479
480pub mod use_default_units_in_fee_calculation {
481    solana_pubkey::declare_id!("8sKQrMQoUHtQSUP83SPG4ta2JDjSAiWs7t5aJ9uEd6To");
482}
483
484pub mod compact_vote_state_updates {
485    solana_pubkey::declare_id!("86HpNqzutEZwLcPxS6EHDcMNYWk6ikhteg9un7Y2PBKE");
486}
487
488pub mod incremental_snapshot_only_incremental_hash_calculation {
489    solana_pubkey::declare_id!("25vqsfjk7Nv1prsQJmA4Xu1bN61s8LXCBGUPp8Rfy1UF");
490}
491
492pub mod disable_cpi_setting_executable_and_rent_epoch {
493    solana_pubkey::declare_id!("B9cdB55u4jQsDNsdTK525yE9dmSc5Ga7YBaBrDFvEhM9");
494}
495
496pub mod on_load_preserve_rent_epoch_for_rent_exempt_accounts {
497    solana_pubkey::declare_id!("CpkdQmspsaZZ8FVAouQTtTWZkc8eeQ7V3uj7dWz543rZ");
498}
499
500pub mod account_hash_ignore_slot {
501    solana_pubkey::declare_id!("SVn36yVApPLYsa8koK3qUcy14zXDnqkNYWyUh1f4oK1");
502}
503
504pub mod set_exempt_rent_epoch_max {
505    solana_pubkey::declare_id!("5wAGiy15X1Jb2hkHnPDCM8oB9V42VNA9ftNVFK84dEgv");
506}
507
508pub mod relax_authority_signer_check_for_lookup_table_creation {
509    solana_pubkey::declare_id!("FKAcEvNgSY79RpqsPNUV5gDyumopH4cEHqUxyfm8b8Ap");
510}
511
512pub mod stop_sibling_instruction_search_at_parent {
513    solana_pubkey::declare_id!("EYVpEP7uzH1CoXzbD6PubGhYmnxRXPeq3PPsm1ba3gpo");
514}
515
516pub mod vote_state_update_root_fix {
517    solana_pubkey::declare_id!("G74BkWBzmsByZ1kxHy44H3wjwp5hp7JbrGRuDpco22tY");
518}
519
520pub mod cap_accounts_data_allocations_per_transaction {
521    solana_pubkey::declare_id!("9gxu85LYRAcZL38We8MYJ4A9AwgBBPtVBAqebMcT1241");
522}
523
524pub mod epoch_accounts_hash {
525    solana_pubkey::declare_id!("5GpmAKxaGsWWbPp4bNXFLJxZVvG92ctxf7jQnzTQjF3n");
526}
527
528pub mod remove_deprecated_request_unit_ix {
529    solana_pubkey::declare_id!("EfhYd3SafzGT472tYQDUc4dPd2xdEfKs5fwkowUgVt4W");
530}
531
532pub mod disable_rehash_for_rent_epoch {
533    solana_pubkey::declare_id!("DTVTkmw3JSofd8CJVJte8PXEbxNQ2yZijvVr3pe2APPj");
534}
535
536pub mod increase_tx_account_lock_limit {
537    solana_pubkey::declare_id!("9LZdXeKGeBV6hRLdxS1rHbHoEUsKqesCC2ZAPTPKJAbK");
538}
539
540pub mod limit_max_instruction_trace_length {
541    solana_pubkey::declare_id!("GQALDaC48fEhZGWRj9iL5Q889emJKcj3aCvHF7VCbbF4");
542}
543
544pub mod check_syscall_outputs_do_not_overlap {
545    solana_pubkey::declare_id!("3uRVPBpyEJRo1emLCrq38eLRFGcu6uKSpUXqGvU8T7SZ");
546}
547
548pub mod enable_bpf_loader_set_authority_checked_ix {
549    solana_pubkey::declare_id!("5x3825XS7M2A3Ekbn5VGGkvFoAg5qrRWkTrY4bARP1GL");
550}
551
552pub mod enable_alt_bn128_syscall {
553    solana_pubkey::declare_id!("A16q37opZdQMCbe5qJ6xpBB9usykfv8jZaMkxvZQi4GJ");
554}
555
556pub mod simplify_alt_bn128_syscall_error_codes {
557    solana_pubkey::declare_id!("JDn5q3GBeqzvUa7z67BbmVHVdE3EbUAjvFep3weR3jxX");
558}
559
560pub mod enable_alt_bn128_compression_syscall {
561    solana_pubkey::declare_id!("EJJewYSddEEtSZHiqugnvhQHiWyZKjkFDQASd7oKSagn");
562}
563
564pub mod fix_alt_bn128_multiplication_input_length {
565    solana_pubkey::declare_id!("bn2puAyxUx6JUabAxYdKdJ5QHbNNmKw8dCGuGCyRrFN");
566}
567
568pub mod enable_program_redeployment_cooldown {
569    solana_pubkey::declare_id!("J4HFT8usBxpcF63y46t1upYobJgChmKyZPm5uTBRg25Z");
570}
571
572pub mod commission_updates_only_allowed_in_first_half_of_epoch {
573    solana_pubkey::declare_id!("noRuG2kzACwgaY7TVmLRnUNPLKNVQE1fb7X55YWBehp");
574}
575
576pub mod enable_turbine_fanout_experiments {
577    solana_pubkey::declare_id!("D31EFnLgdiysi84Woo3of4JMu7VmasUS3Z7j9HYXCeLY");
578}
579
580pub mod disable_turbine_fanout_experiments {
581    solana_pubkey::declare_id!("Gz1aLrbeQ4Q6PTSafCZcGWZXz91yVRi7ASFzFEr1U4sa");
582}
583
584pub mod move_serialized_len_ptr_in_cpi {
585    solana_pubkey::declare_id!("74CoWuBmt3rUVUrCb2JiSTvh6nXyBWUsK4SaMj3CtE3T");
586}
587
588pub mod update_hashes_per_tick {
589    solana_pubkey::declare_id!("3uFHb9oKdGfgZGJK9EHaAXN4USvnQtAFC13Fh5gGFS5B");
590}
591
592pub mod enable_big_mod_exp_syscall {
593    solana_pubkey::declare_id!("EBq48m8irRKuE7ZnMTLvLg2UuGSqhe8s8oMqnmja1fJw");
594}
595
596pub mod disable_builtin_loader_ownership_chains {
597    solana_pubkey::declare_id!("4UDcAfQ6EcA6bdcadkeHpkarkhZGJ7Bpq7wTAiRMjkoi");
598}
599
600pub mod cap_transaction_accounts_data_size {
601    solana_pubkey::declare_id!("DdLwVYuvDz26JohmgSbA7mjpJFgX5zP2dkp8qsF2C33V");
602}
603
604pub mod remove_congestion_multiplier_from_fee_calculation {
605    solana_pubkey::declare_id!("A8xyMHZovGXFkorFqEmVH2PKGLiBip5JD7jt4zsUWo4H");
606}
607
608pub mod enable_request_heap_frame_ix {
609    solana_pubkey::declare_id!("Hr1nUA9b7NJ6eChS26o7Vi8gYYDDwWD3YeBfzJkTbU86");
610}
611
612pub mod prevent_rent_paying_rent_recipients {
613    solana_pubkey::declare_id!("Fab5oP3DmsLYCiQZXdjyqT3ukFFPrsmqhXU4WU1AWVVF");
614}
615
616pub mod delay_visibility_of_program_deployment {
617    solana_pubkey::declare_id!("GmuBvtFb2aHfSfMXpuFeWZGHyDeCLPS79s48fmCWCfM5");
618}
619
620pub mod apply_cost_tracker_during_replay {
621    solana_pubkey::declare_id!("2ry7ygxiYURULZCrypHhveanvP5tzZ4toRwVp89oCNSj");
622}
623pub mod bpf_account_data_direct_mapping {
624    solana_pubkey::declare_id!("AjX3A4Nv2rzUuATEUWLP4rrBaBropyUnHxEvFDj1dKbx");
625}
626
627pub mod add_set_tx_loaded_accounts_data_size_instruction {
628    solana_pubkey::declare_id!("G6vbf1UBok8MWb8m25ex86aoQHeKTzDKzuZADHkShqm6");
629}
630
631pub mod switch_to_new_elf_parser {
632    solana_pubkey::declare_id!("Cdkc8PPTeTNUPoZEfCY5AyetUrEdkZtNPMgz58nqyaHD");
633}
634
635pub mod round_up_heap_size {
636    solana_pubkey::declare_id!("CE2et8pqgyQMP2mQRg3CgvX8nJBKUArMu3wfiQiQKY1y");
637}
638
639pub mod remove_bpf_loader_incorrect_program_id {
640    solana_pubkey::declare_id!("2HmTkCj9tXuPE4ueHzdD7jPeMf9JGCoZh5AsyoATiWEe");
641}
642
643pub mod include_loaded_accounts_data_size_in_fee_calculation {
644    solana_pubkey::declare_id!("EaQpmC6GtRssaZ3PCUM5YksGqUdMLeZ46BQXYtHYakDS");
645}
646
647pub mod native_programs_consume_cu {
648    solana_pubkey::declare_id!("8pgXCMNXC8qyEFypuwpXyRxLXZdpM4Qo72gJ6k87A6wL");
649}
650
651pub mod simplify_writable_program_account_check {
652    solana_pubkey::declare_id!("5ZCcFAzJ1zsFKe1KSZa9K92jhx7gkcKj97ci2DBo1vwj");
653}
654
655pub mod stop_truncating_strings_in_syscalls {
656    solana_pubkey::declare_id!("16FMCmgLzCNNz6eTwGanbyN2ZxvTBSLuQ6DZhgeMshg");
657}
658
659pub mod clean_up_delegation_errors {
660    solana_pubkey::declare_id!("Bj2jmUsM2iRhfdLLDSTkhM5UQRQvQHm57HSmPibPtEyu");
661}
662
663pub mod vote_state_add_vote_latency {
664    solana_pubkey::declare_id!("7axKe5BTYBDD87ftzWbk5DfzWMGyRvqmWTduuo22Yaqy");
665}
666
667pub mod checked_arithmetic_in_fee_validation {
668    solana_pubkey::declare_id!("5Pecy6ie6XGm22pc9d4P9W5c31BugcFBuy6hsP2zkETv");
669}
670
671pub mod last_restart_slot_sysvar {
672    solana_pubkey::declare_id!("HooKD5NC9QNxk25QuzCssB8ecrEzGt6eXEPBUxWp1LaR");
673}
674
675pub mod reduce_stake_warmup_cooldown {
676    solana_pubkey::declare_id!("GwtDQBghCTBgmX2cpEGNPxTEBUTQRaDMGTr5qychdGMj");
677}
678
679mod revise_turbine_epoch_stakes {
680    solana_pubkey::declare_id!("BTWmtJC8U5ZLMbBUUA1k6As62sYjPEjAiNAT55xYGdJU");
681}
682
683pub mod enable_poseidon_syscall {
684    solana_pubkey::declare_id!("FL9RsQA6TVUoh5xJQ9d936RHSebA1NLQqe3Zv9sXZRpr");
685}
686
687pub mod timely_vote_credits {
688    solana_pubkey::declare_id!("tvcF6b1TRz353zKuhBjinZkKzjmihXmBAHJdjNYw1sQ");
689}
690
691pub mod remaining_compute_units_syscall_enabled {
692    solana_pubkey::declare_id!("5TuppMutoyzhUSfuYdhgzD47F92GL1g89KpCZQKqedxP");
693}
694
695pub mod enable_loader_v4 {
696    solana_pubkey::declare_id!("8Cb77yHjPWe9wuWUfXeh6iszFGCDGNCoFk3tprViYHNm");
697}
698
699pub mod disable_new_loader_v3_deployments {
700    solana_pubkey::declare_id!("EmhbpdVtZ2hWRGFWBDjn2i3SJD8Z36z4mpMcZJEnebnP");
701}
702
703pub mod require_rent_exempt_split_destination {
704    solana_pubkey::declare_id!("D2aip4BBr8NPWtU9vLrwrBvbuaQ8w1zV38zFLxx4pfBV");
705}
706
707pub mod better_error_codes_for_tx_lamport_check {
708    solana_pubkey::declare_id!("Ffswd3egL3tccB6Rv3XY6oqfdzn913vUcjCSnpvCKpfx");
709}
710
711pub mod update_hashes_per_tick2 {
712    solana_pubkey::declare_id!("EWme9uFqfy1ikK1jhJs8fM5hxWnK336QJpbscNtizkTU");
713}
714
715pub mod update_hashes_per_tick3 {
716    solana_pubkey::declare_id!("8C8MCtsab5SsfammbzvYz65HHauuUYdbY2DZ4sznH6h5");
717}
718
719pub mod update_hashes_per_tick4 {
720    solana_pubkey::declare_id!("8We4E7DPwF2WfAN8tRTtWQNhi98B99Qpuj7JoZ3Aikgg");
721}
722
723pub mod update_hashes_per_tick5 {
724    solana_pubkey::declare_id!("BsKLKAn1WM4HVhPRDsjosmqSg2J8Tq5xP2s2daDS6Ni4");
725}
726
727pub mod update_hashes_per_tick6 {
728    solana_pubkey::declare_id!("FKu1qYwLQSiehz644H6Si65U5ZQ2cp9GxsyFUfYcuADv");
729}
730
731pub mod validate_fee_collector_account {
732    solana_pubkey::declare_id!("prpFrMtgNmzaNzkPJg9o753fVvbHKqNrNTm76foJ2wm");
733}
734
735pub mod disable_rent_fees_collection {
736    solana_pubkey::declare_id!("CJzY83ggJHqPGDq8VisV3U91jDJLuEaALZooBrXtnnLU");
737}
738
739pub mod enable_zk_transfer_with_fee {
740    solana_pubkey::declare_id!("zkNLP7EQALfC1TYeB3biDU7akDckj8iPkvh9y2Mt2K3");
741}
742
743pub mod drop_legacy_shreds {
744    solana_pubkey::declare_id!("GV49KKQdBNaiv2pgqhS2Dy3GWYJGXMTVYbYkdk91orRy");
745}
746
747pub mod allow_commission_decrease_at_any_time {
748    solana_pubkey::declare_id!("decoMktMcnmiq6t3u7g5BfgcQu91nKZr6RvMYf9z1Jb");
749}
750
751pub mod add_new_reserved_account_keys {
752    solana_pubkey::declare_id!("8U4skmMVnF6k2kMvrWbQuRUT3qQSiTYpSjqmhmgfthZu");
753}
754
755pub mod consume_blockstore_duplicate_proofs {
756    solana_pubkey::declare_id!("6YsBCejwK96GZCkJ6mkZ4b68oP63z2PLoQmWjC7ggTqZ");
757}
758
759pub mod index_erasure_conflict_duplicate_proofs {
760    solana_pubkey::declare_id!("dupPajaLy2SSn8ko42aZz4mHANDNrLe8Nw8VQgFecLa");
761}
762
763pub mod merkle_conflict_duplicate_proofs {
764    solana_pubkey::declare_id!("mrkPjRg79B2oK2ZLgd7S3AfEJaX9B6gAF3H9aEykRUS");
765}
766
767pub mod disable_bpf_loader_instructions {
768    solana_pubkey::declare_id!("7WeS1vfPRgeeoXArLh7879YcB9mgE9ktjPDtajXeWfXn");
769}
770
771pub mod enable_zk_proof_from_account {
772    solana_pubkey::declare_id!("zkiTNuzBKxrCLMKehzuQeKZyLtX2yvFcEKMML8nExU8");
773}
774
775pub mod cost_model_requested_write_lock_cost {
776    solana_pubkey::declare_id!("wLckV1a64ngtcKPRGU4S4grVTestXjmNjxBjaKZrAcn");
777}
778
779pub mod enable_gossip_duplicate_proof_ingestion {
780    solana_pubkey::declare_id!("FNKCMBzYUdjhHyPdsKG2LSmdzH8TCHXn3ytj8RNBS4nG");
781}
782
783pub mod chained_merkle_conflict_duplicate_proofs {
784    solana_pubkey::declare_id!("chaie9S2zVfuxJKNRGkyTDokLwWxx6kD2ZLsqQHaDD8");
785}
786
787pub mod enable_chained_merkle_shreds {
788    solana_pubkey::declare_id!("7uZBkJXJ1HkuP6R3MJfZs7mLwymBcDbKdqbF51ZWLier");
789}
790
791pub mod remove_rounding_in_fee_calculation {
792    solana_pubkey::declare_id!("BtVN7YjDzNE6Dk7kTT7YTDgMNUZTNgiSJgsdzAeTg2jF");
793}
794
795pub mod enable_tower_sync_ix {
796    solana_pubkey::declare_id!("tSynMCspg4xFiCj1v3TDb4c7crMR5tSBhLz4sF7rrNA");
797}
798
799pub mod deprecate_unused_legacy_vote_plumbing {
800    solana_pubkey::declare_id!("6Uf8S75PVh91MYgPQSHnjRAPQq6an5BDv9vomrCwDqLe");
801}
802
803pub mod reward_full_priority_fee {
804    solana_pubkey::declare_id!("3opE3EzAKnUftUDURkzMgwpNgimBAypW1mNDYH4x4Zg7");
805}
806
807pub mod get_sysvar_syscall_enabled {
808    solana_pubkey::declare_id!("CLCoTADvV64PSrnR6QXty6Fwrt9Xc6EdxSJE4wLRePjq");
809}
810
811pub mod abort_on_invalid_curve {
812    solana_pubkey::declare_id!("FuS3FPfJDKSNot99ECLXtp3rueq36hMNStJkPJwWodLh");
813}
814
815pub mod migrate_feature_gate_program_to_core_bpf {
816    solana_pubkey::declare_id!("4eohviozzEeivk1y9UbrnekbAFMDQyJz5JjA9Y6gyvky");
817}
818
819pub mod vote_only_full_fec_sets {
820    solana_pubkey::declare_id!("ffecLRhhakKSGhMuc6Fz2Lnfq4uT9q3iu9ZsNaPLxPc");
821}
822
823pub mod migrate_config_program_to_core_bpf {
824    solana_pubkey::declare_id!("2Fr57nzzkLYXW695UdDxDeR5fhnZWSttZeZYemrnpGFV");
825}
826
827pub mod enable_get_epoch_stake_syscall {
828    solana_pubkey::declare_id!("FKe75t4LXxGaQnVHdUKM6DSFifVVraGZ8LyNo7oPwy1Z");
829}
830
831pub mod migrate_address_lookup_table_program_to_core_bpf {
832    solana_pubkey::declare_id!("C97eKZygrkU4JxJsZdjgbUY7iQR7rKTr4NyDWo2E5pRm");
833}
834
835pub mod zk_elgamal_proof_program_enabled {
836    solana_pubkey::declare_id!("zkhiy5oLowR7HY4zogXjCjeMXyruLqBwSWH21qcFtnv");
837}
838
839pub mod verify_retransmitter_signature {
840    solana_pubkey::declare_id!("BZ5g4hRbu5hLQQBdPyo2z9icGyJ8Khiyj3QS6dhWijTb");
841}
842
843pub mod move_stake_and_move_lamports_ixs {
844    solana_pubkey::declare_id!("7bTK6Jis8Xpfrs8ZoUfiMDPazTcdPcTWheZFJTA5Z6X4");
845}
846
847pub mod ed25519_precompile_verify_strict {
848    solana_pubkey::declare_id!("ed9tNscbWLYBooxWA7FE2B5KHWs8A6sxfY8EzezEcoo");
849}
850
851pub mod vote_only_retransmitter_signed_fec_sets {
852    solana_pubkey::declare_id!("RfEcA95xnhuwooVAhUUksEJLZBF7xKCLuqrJoqk4Zph");
853}
854
855pub mod move_precompile_verification_to_svm {
856    solana_pubkey::declare_id!("9ypxGLzkMxi89eDerRKXWDXe44UY2z4hBig4mDhNq5Dp");
857}
858
859pub mod enable_transaction_loading_failure_fees {
860    solana_pubkey::declare_id!("PaymEPK2oqwT9TXAVfadjztH2H6KfLEB9Hhd5Q5frvP");
861}
862
863pub mod enable_turbine_extended_fanout_experiments {
864    solana_pubkey::declare_id!("BZn14Liea52wtBwrXUxTv6vojuTTmfc7XGEDTXrvMD7b");
865}
866
867pub mod deprecate_legacy_vote_ixs {
868    solana_pubkey::declare_id!("depVvnQ2UysGrhwdiwU42tCadZL8GcBb1i2GYhMopQv");
869}
870
871pub mod disable_sbpf_v0_execution {
872    solana_pubkey::declare_id!("TestFeature11111111111111111111111111111111");
873}
874
875pub mod reenable_sbpf_v0_execution {
876    solana_pubkey::declare_id!("TestFeature21111111111111111111111111111111");
877}
878
879pub mod enable_sbpf_v1_deployment_and_execution {
880    solana_pubkey::declare_id!("JE86WkYvTrzW8HgNmrHY7dFYpCmSptUpKupbo2AdQ9cG");
881}
882
883pub mod enable_sbpf_v2_deployment_and_execution {
884    solana_pubkey::declare_id!("F6UVKh1ujTEFK3en2SyAL3cdVnqko1FVEXWhmdLRu6WP");
885}
886
887pub mod enable_sbpf_v3_deployment_and_execution {
888    solana_pubkey::declare_id!("C8XZNs1bfzaiT3YDeXZJ7G5swQWQv7tVzDnCxtHvnSpw");
889}
890
891pub mod remove_accounts_executable_flag_checks {
892    solana_pubkey::declare_id!("FfgtauHUWKeXTzjXkua9Px4tNGBFHKZ9WaigM5VbbzFx");
893}
894
895pub mod lift_cpi_caller_restriction {
896    solana_pubkey::declare_id!("HcW8ZjBezYYgvcbxNJwqv1t484Y2556qJsfNDWvJGZRH");
897}
898
899pub mod disable_account_loader_special_case {
900    solana_pubkey::declare_id!("EQUMpNFr7Nacb1sva56xn1aLfBxppEoSBH8RRVdkcD1x");
901}
902
903pub mod enable_secp256r1_precompile {
904    solana_pubkey::declare_id!("sryYyFwxzJop1Bh9XpyiVWjZP4nfHExiqNp3Dh71W9i");
905}
906
907pub mod accounts_lt_hash {
908    solana_pubkey::declare_id!("LtHaSHHsUge7EWTPVrmpuexKz6uVHZXZL6cgJa7W7Zn");
909}
910
911pub mod snapshots_lt_hash {
912    solana_pubkey::declare_id!("LTsNAP8h1voEVVToMNBNqoiNQex4aqfUrbFhRH3mSQ2");
913}
914
915pub mod remove_accounts_delta_hash {
916    solana_pubkey::declare_id!("LTdLt9Ycbyoipz5fLysCi1NnDnASsZfmJLJXts5ZxZz");
917}
918
919pub mod migrate_stake_program_to_core_bpf {
920    solana_pubkey::declare_id!("6M4oQ6eXneVhtLoiAr4yRYQY43eVLjrKbiDZDJc892yk");
921}
922
923pub mod deplete_cu_meter_on_vm_failure {
924    solana_pubkey::declare_id!("B7H2caeia4ZFcpE3QcgMqbiWiBtWrdBRBSJ1DY6Ktxbq");
925}
926
927pub mod reserve_minimal_cus_for_builtin_instructions {
928    solana_pubkey::declare_id!("C9oAhLxDBm3ssWtJx1yBGzPY55r2rArHmN1pbQn6HogH");
929}
930
931pub mod raise_block_limits_to_50m {
932    solana_pubkey::declare_id!("5oMCU3JPaFLr8Zr4ct7yFA7jdk6Mw1RmB8K4u9ZbS42z");
933}
934
935pub mod drop_unchained_merkle_shreds {
936    solana_pubkey::declare_id!("3A9WtMU4aHuryD3VN7SFKdfXto8HStLb1Jj6HjkgfnGL");
937}
938
939pub mod relax_intrabatch_account_locks {
940    solana_pubkey::declare_id!("EbAhnReKK8Sf88CvAfAXbgKji8DV48rsp4q2sgHqgWef");
941}
942
943pub mod create_slashing_program {
944    solana_pubkey::declare_id!("sProgVaNWkYdP2eTRAy1CPrgb3b9p8yXCASrPEqo6VJ");
945}
946
947pub mod disable_partitioned_rent_collection {
948    solana_pubkey::declare_id!("2B2SBNbUcr438LtGXNcJNBP2GBSxjx81F945SdSkUSfC");
949}
950
951pub mod enable_vote_address_leader_schedule {
952    solana_pubkey::declare_id!("5JsG4NWH8Jbrqdd8uL6BNwnyZK3dQSoieRXG5vmofj9y");
953}
954
955lazy_static! {
956    /// Map of feature identifiers to user-visible description
957    pub static ref FEATURE_NAMES: AHashMap<Pubkey, &'static str> = [
958        (secp256k1_program_enabled::id(), "secp256k1 program"),
959        (deprecate_rewards_sysvar::id(), "deprecate unused rewards sysvar"),
960        (pico_inflation::id(), "pico inflation"),
961        (full_inflation::devnet_and_testnet::id(), "full inflation on devnet and testnet"),
962        (spl_token_v2_multisig_fix::id(), "spl-token multisig fix"),
963        (no_overflow_rent_distribution::id(), "no overflow rent distribution"),
964        (filter_stake_delegation_accounts::id(), "filter stake_delegation_accounts #14062"),
965        (require_custodian_for_locked_stake_authorize::id(), "require custodian to authorize withdrawer change for locked stake"),
966        (spl_token_v2_self_transfer_fix::id(), "spl-token self-transfer fix"),
967        (full_inflation::mainnet::certusone::enable::id(), "full inflation enabled by Certus One"),
968        (full_inflation::mainnet::certusone::vote::id(), "community vote allowing Certus One to enable full inflation"),
969        (warp_timestamp_again::id(), "warp timestamp again, adjust bounding to 25% fast 80% slow #15204"),
970        (check_init_vote_data::id(), "check initialized Vote data"),
971        (secp256k1_recover_syscall_enabled::id(), "secp256k1_recover syscall"),
972        (system_transfer_zero_check::id(), "perform all checks for transfers of 0 lamports"),
973        (blake3_syscall_enabled::id(), "blake3 syscall"),
974        (dedupe_config_program_signers::id(), "dedupe config program signers"),
975        (verify_tx_signatures_len::id(), "prohibit extra transaction signatures"),
976        (vote_stake_checked_instructions::id(), "vote/state program checked instructions #18345"),
977        (rent_for_sysvars::id(), "collect rent from accounts owned by sysvars"),
978        (libsecp256k1_0_5_upgrade_enabled::id(), "upgrade libsecp256k1 to v0.5.0"),
979        (tx_wide_compute_cap::id(), "transaction wide compute cap"),
980        (spl_token_v2_set_authority_fix::id(), "spl-token set_authority fix"),
981        (merge_nonce_error_into_system_error::id(), "merge NonceError into SystemError"),
982        (disable_fees_sysvar::id(), "disable fees sysvar"),
983        (stake_merge_with_unmatched_credits_observed::id(), "allow merging active stakes with unmatched credits_observed #18985"),
984        (zk_token_sdk_enabled::id(), "enable Zk Token proof program and syscalls"),
985        (curve25519_syscall_enabled::id(), "enable curve25519 syscalls"),
986        (versioned_tx_message_enabled::id(), "enable versioned transaction message processing"),
987        (libsecp256k1_fail_on_bad_count::id(), "fail libsecp256k1_verify if count appears wrong"),
988        (libsecp256k1_fail_on_bad_count2::id(), "fail libsecp256k1_verify if count appears wrong"),
989        (instructions_sysvar_owned_by_sysvar::id(), "fix owner for instructions sysvar"),
990        (stake_program_advance_activating_credits_observed::id(), "Enable advancing credits observed for activation epoch #19309"),
991        (credits_auto_rewind::id(), "Auto rewind stake's credits_observed if (accidental) vote recreation is detected #22546"),
992        (demote_program_write_locks::id(), "demote program write locks to readonly, except when upgradeable loader present #19593 #20265"),
993        (ed25519_program_enabled::id(), "enable builtin ed25519 signature verify program"),
994        (return_data_syscall_enabled::id(), "enable sol_{set,get}_return_data syscall"),
995        (reduce_required_deploy_balance::id(), "reduce required payer balance for program deploys"),
996        (sol_log_data_syscall_enabled::id(), "enable sol_log_data syscall"),
997        (stakes_remove_delegation_if_inactive::id(), "remove delegations from stakes cache when inactive"),
998        (do_support_realloc::id(), "support account data reallocation"),
999        (prevent_calling_precompiles_as_programs::id(), "prevent calling precompiles as programs"),
1000        (optimize_epoch_boundary_updates::id(), "optimize epoch boundary updates"),
1001        (remove_native_loader::id(), "remove support for the native loader"),
1002        (send_to_tpu_vote_port::id(), "send votes to the tpu vote port"),
1003        (requestable_heap_size::id(), "Requestable heap frame size"),
1004        (disable_fee_calculator::id(), "deprecate fee calculator"),
1005        (add_compute_budget_program::id(), "Add compute_budget_program"),
1006        (nonce_must_be_writable::id(), "nonce must be writable"),
1007        (spl_token_v3_3_0_release::id(), "spl-token v3.3.0 release"),
1008        (leave_nonce_on_success::id(), "leave nonce as is on success"),
1009        (reject_empty_instruction_without_program::id(), "fail instructions which have native_loader as program_id directly"),
1010        (fixed_memcpy_nonoverlapping_check::id(), "use correct check for nonoverlapping regions in memcpy syscall"),
1011        (reject_non_rent_exempt_vote_withdraws::id(), "fail vote withdraw instructions which leave the account non-rent-exempt"),
1012        (evict_invalid_stakes_cache_entries::id(), "evict invalid stakes cache entries on epoch boundaries"),
1013        (allow_votes_to_directly_update_vote_state::id(), "enable direct vote state update"),
1014        (max_tx_account_locks::id(), "enforce max number of locked accounts per transaction"),
1015        (require_rent_exempt_accounts::id(), "require all new transaction accounts with data to be rent-exempt"),
1016        (filter_votes_outside_slot_hashes::id(), "filter vote slots older than the slot hashes history"),
1017        (update_syscall_base_costs::id(), "update syscall base costs"),
1018        (stake_deactivate_delinquent_instruction::id(), "enable the deactivate delinquent stake instruction #23932"),
1019        (vote_withdraw_authority_may_change_authorized_voter::id(), "vote account withdraw authority may change the authorized voter #22521"),
1020        (spl_associated_token_account_v1_0_4::id(), "SPL Associated Token Account Program release version 1.0.4, tied to token 3.3.0 #22648"),
1021        (reject_vote_account_close_unless_zero_credit_epoch::id(), "fail vote account withdraw to 0 unless account earned 0 credits in last completed epoch"),
1022        (add_get_processed_sibling_instruction_syscall::id(), "add add_get_processed_sibling_instruction_syscall"),
1023        (bank_transaction_count_fix::id(), "fixes Bank::transaction_count to include all committed transactions, not just successful ones"),
1024        (disable_bpf_deprecated_load_instructions::id(), "disable ldabs* and ldind* SBF instructions"),
1025        (disable_bpf_unresolved_symbols_at_runtime::id(), "disable reporting of unresolved SBF symbols at runtime"),
1026        (record_instruction_in_transaction_context_push::id(), "move the CPI stack overflow check to the end of push"),
1027        (syscall_saturated_math::id(), "syscalls use saturated math"),
1028        (check_physical_overlapping::id(), "check physical overlapping regions"),
1029        (limit_secp256k1_recovery_id::id(), "limit secp256k1 recovery id"),
1030        (disable_deprecated_loader::id(), "disable the deprecated BPF loader"),
1031        (check_slice_translation_size::id(), "check size when translating slices"),
1032        (stake_split_uses_rent_sysvar::id(), "stake split instruction uses rent sysvar"),
1033        (add_get_minimum_delegation_instruction_to_stake_program::id(), "add GetMinimumDelegation instruction to stake program"),
1034        (error_on_syscall_bpf_function_hash_collisions::id(), "error on bpf function hash collisions"),
1035        (reject_callx_r10::id(), "Reject bpf callx r10 instructions"),
1036        (drop_redundant_turbine_path::id(), "drop redundant turbine path"),
1037        (executables_incur_cpi_data_cost::id(), "Executables incur CPI data costs"),
1038        (fix_recent_blockhashes::id(), "stop adding hashes for skipped slots to recent blockhashes"),
1039        (update_rewards_from_cached_accounts::id(), "update rewards from cached accounts"),
1040        (enable_partitioned_epoch_reward::id(), "enable partitioned rewards at epoch boundary #32166"),
1041        (spl_token_v3_4_0::id(), "SPL Token Program version 3.4.0 release #24740"),
1042        (spl_associated_token_account_v1_1_0::id(), "SPL Associated Token Account Program version 1.1.0 release #24741"),
1043        (default_units_per_instruction::id(), "Default max tx-wide compute units calculated per instruction"),
1044        (stake_allow_zero_undelegated_amount::id(), "Allow zero-lamport undelegated amount for initialized stakes #24670"),
1045        (require_static_program_ids_in_transaction::id(), "require static program ids in versioned transactions"),
1046        (stake_raise_minimum_delegation_to_1_sol::id(), "Raise minimum stake delegation to 1.0 SOL #24357"),
1047        (stake_minimum_delegation_for_rewards::id(), "stakes must be at least the minimum delegation to earn rewards"),
1048        (add_set_compute_unit_price_ix::id(), "add compute budget ix for setting a compute unit price"),
1049        (disable_deploy_of_alloc_free_syscall::id(), "disable new deployments of deprecated sol_alloc_free_ syscall"),
1050        (include_account_index_in_rent_error::id(), "include account index in rent tx error #25190"),
1051        (add_shred_type_to_shred_seed::id(), "add shred-type to shred seed #25556"),
1052        (warp_timestamp_with_a_vengeance::id(), "warp timestamp again, adjust bounding to 150% slow #25666"),
1053        (separate_nonce_from_blockhash::id(), "separate durable nonce and blockhash domains #25744"),
1054        (enable_durable_nonce::id(), "enable durable nonce #25744"),
1055        (vote_state_update_credit_per_dequeue::id(), "Calculate vote credits for VoteStateUpdate per vote dequeue to match credit awards for Vote instruction"),
1056        (quick_bail_on_panic::id(), "quick bail on panic"),
1057        (nonce_must_be_authorized::id(), "nonce must be authorized"),
1058        (nonce_must_be_advanceable::id(), "durable nonces must be advanceable"),
1059        (vote_authorize_with_seed::id(), "An instruction you can use to change a vote accounts authority when the current authority is a derived key #25860"),
1060        (preserve_rent_epoch_for_rent_exempt_accounts::id(), "preserve rent epoch for rent exempt accounts #26479"),
1061        (enable_bpf_loader_extend_program_ix::id(), "enable bpf upgradeable loader ExtendProgram instruction #25234"),
1062        (skip_rent_rewrites::id(), "skip rewriting rent exempt accounts during rent collection #26491"),
1063        (enable_early_verification_of_account_modifications::id(), "enable early verification of account modifications #25899"),
1064        (disable_rehash_for_rent_epoch::id(), "on accounts hash calculation, do not try to rehash accounts #28934"),
1065        (account_hash_ignore_slot::id(), "ignore slot when calculating an account hash #28420"),
1066        (set_exempt_rent_epoch_max::id(), "set rent epoch to Epoch::MAX for rent-exempt accounts #28683"),
1067        (on_load_preserve_rent_epoch_for_rent_exempt_accounts::id(), "on bank load account, do not try to fix up rent_epoch #28541"),
1068        (prevent_crediting_accounts_that_end_rent_paying::id(), "prevent crediting rent paying accounts #26606"),
1069        (cap_bpf_program_instruction_accounts::id(), "enforce max number of accounts per bpf program instruction #26628"),
1070        (loosen_cpi_size_restriction::id(), "loosen cpi size restrictions #26641"),
1071        (use_default_units_in_fee_calculation::id(), "use default units per instruction in fee calculation #26785"),
1072        (compact_vote_state_updates::id(), "Compact vote state updates to lower block size"),
1073        (incremental_snapshot_only_incremental_hash_calculation::id(), "only hash accounts in incremental snapshot during incremental snapshot creation #26799"),
1074        (disable_cpi_setting_executable_and_rent_epoch::id(), "disable setting is_executable and_rent_epoch in CPI #26987"),
1075        (relax_authority_signer_check_for_lookup_table_creation::id(), "relax authority signer check for lookup table creation #27205"),
1076        (stop_sibling_instruction_search_at_parent::id(), "stop the search in get_processed_sibling_instruction when the parent instruction is reached #27289"),
1077        (vote_state_update_root_fix::id(), "fix root in vote state updates #27361"),
1078        (cap_accounts_data_allocations_per_transaction::id(), "cap accounts data allocations per transaction #27375"),
1079        (epoch_accounts_hash::id(), "enable epoch accounts hash calculation #27539"),
1080        (remove_deprecated_request_unit_ix::id(), "remove support for RequestUnitsDeprecated instruction #27500"),
1081        (increase_tx_account_lock_limit::id(), "increase tx account lock limit to 128 #27241"),
1082        (limit_max_instruction_trace_length::id(), "limit max instruction trace length #27939"),
1083        (check_syscall_outputs_do_not_overlap::id(), "check syscall outputs do_not overlap #28600"),
1084        (enable_bpf_loader_set_authority_checked_ix::id(), "enable bpf upgradeable loader SetAuthorityChecked instruction #28424"),
1085        (enable_alt_bn128_syscall::id(), "add alt_bn128 syscalls #27961"),
1086        (simplify_alt_bn128_syscall_error_codes::id(), "simplify alt_bn128 syscall error codes SIMD-0129"),
1087        (enable_program_redeployment_cooldown::id(), "enable program redeployment cooldown #29135"),
1088        (commission_updates_only_allowed_in_first_half_of_epoch::id(), "validator commission updates are only allowed in the first half of an epoch #29362"),
1089        (enable_turbine_fanout_experiments::id(), "enable turbine fanout experiments #29393"),
1090        (disable_turbine_fanout_experiments::id(), "disable turbine fanout experiments #29393"),
1091        (move_serialized_len_ptr_in_cpi::id(), "cpi ignore serialized_len_ptr #29592"),
1092        (update_hashes_per_tick::id(), "Update desired hashes per tick on epoch boundary"),
1093        (enable_big_mod_exp_syscall::id(), "add big_mod_exp syscall #28503"),
1094        (disable_builtin_loader_ownership_chains::id(), "disable builtin loader ownership chains #29956"),
1095        (cap_transaction_accounts_data_size::id(), "cap transaction accounts data size up to a limit #27839"),
1096        (remove_congestion_multiplier_from_fee_calculation::id(), "Remove congestion multiplier from transaction fee calculation #29881"),
1097        (enable_request_heap_frame_ix::id(), "Enable transaction to request heap frame using compute budget instruction #30076"),
1098        (prevent_rent_paying_rent_recipients::id(), "prevent recipients of rent rewards from ending in rent-paying state #30151"),
1099        (delay_visibility_of_program_deployment::id(), "delay visibility of program upgrades #30085"),
1100        (apply_cost_tracker_during_replay::id(), "apply cost tracker to blocks during replay #29595"),
1101        (add_set_tx_loaded_accounts_data_size_instruction::id(), "add compute budget instruction for setting account data size per transaction #30366"),
1102        (switch_to_new_elf_parser::id(), "switch to new ELF parser #30497"),
1103        (round_up_heap_size::id(), "round up heap size when calculating heap cost #30679"),
1104        (remove_bpf_loader_incorrect_program_id::id(), "stop incorrectly throwing IncorrectProgramId in bpf_loader #30747"),
1105        (include_loaded_accounts_data_size_in_fee_calculation::id(), "include transaction loaded accounts data size in base fee calculation #30657"),
1106        (native_programs_consume_cu::id(), "Native program should consume compute units #30620"),
1107        (simplify_writable_program_account_check::id(), "Simplify checks performed for writable upgradeable program accounts #30559"),
1108        (stop_truncating_strings_in_syscalls::id(), "Stop truncating strings in syscalls #31029"),
1109        (clean_up_delegation_errors::id(), "Return InsufficientDelegation instead of InsufficientFunds or InsufficientStake where applicable #31206"),
1110        (vote_state_add_vote_latency::id(), "replace Lockout with LandedVote (including vote latency) in vote state #31264"),
1111        (checked_arithmetic_in_fee_validation::id(), "checked arithmetic in fee validation #31273"),
1112        (bpf_account_data_direct_mapping::id(), "use memory regions to map account data into the rbpf vm instead of copying the data"),
1113        (last_restart_slot_sysvar::id(), "enable new sysvar last_restart_slot"),
1114        (reduce_stake_warmup_cooldown::id(), "reduce stake warmup cooldown from 25% to 9%"),
1115        (revise_turbine_epoch_stakes::id(), "revise turbine epoch stakes"),
1116        (enable_poseidon_syscall::id(), "Enable Poseidon syscall"),
1117        (timely_vote_credits::id(), "use timeliness of votes in determining credits to award"),
1118        (remaining_compute_units_syscall_enabled::id(), "enable the remaining_compute_units syscall"),
1119        (enable_loader_v4::id(), "Enable Loader-v4 SIMD-0167"),
1120        (disable_new_loader_v3_deployments::id(), "Disable new loader-v3 deployments SIMD-0167"),
1121        (require_rent_exempt_split_destination::id(), "Require stake split destination account to be rent exempt"),
1122        (better_error_codes_for_tx_lamport_check::id(), "better error codes for tx lamport check #33353"),
1123        (enable_alt_bn128_compression_syscall::id(), "add alt_bn128 compression syscalls"),
1124        (update_hashes_per_tick2::id(), "Update desired hashes per tick to 2.8M"),
1125        (update_hashes_per_tick3::id(), "Update desired hashes per tick to 4.4M"),
1126        (update_hashes_per_tick4::id(), "Update desired hashes per tick to 7.6M"),
1127        (update_hashes_per_tick5::id(), "Update desired hashes per tick to 9.2M"),
1128        (update_hashes_per_tick6::id(), "Update desired hashes per tick to 10M"),
1129        (validate_fee_collector_account::id(), "validate fee collector account #33888"),
1130        (disable_rent_fees_collection::id(), "Disable rent fees collection #33945"),
1131        (enable_zk_transfer_with_fee::id(), "enable Zk Token proof program transfer with fee"),
1132        (drop_legacy_shreds::id(), "drops legacy shreds #34328"),
1133        (allow_commission_decrease_at_any_time::id(), "Allow commission decrease at any time in epoch #33843"),
1134        (consume_blockstore_duplicate_proofs::id(), "consume duplicate proofs from blockstore in consensus #34372"),
1135        (add_new_reserved_account_keys::id(), "add new unwritable reserved accounts #34899"),
1136        (index_erasure_conflict_duplicate_proofs::id(), "generate duplicate proofs for index and erasure conflicts #34360"),
1137        (merkle_conflict_duplicate_proofs::id(), "generate duplicate proofs for merkle root conflicts #34270"),
1138        (disable_bpf_loader_instructions::id(), "disable bpf loader management instructions #34194"),
1139        (enable_zk_proof_from_account::id(), "Enable zk token proof program to read proof from accounts instead of instruction data #34750"),
1140        (curve25519_restrict_msm_length::id(), "restrict curve25519 multiscalar multiplication vector lengths #34763"),
1141        (cost_model_requested_write_lock_cost::id(), "cost model uses number of requested write locks #34819"),
1142        (enable_gossip_duplicate_proof_ingestion::id(), "enable gossip duplicate proof ingestion #32963"),
1143        (enable_chained_merkle_shreds::id(), "Enable chained Merkle shreds #34916"),
1144        (remove_rounding_in_fee_calculation::id(), "Removing unwanted rounding in fee calculation #34982"),
1145        (deprecate_unused_legacy_vote_plumbing::id(), "Deprecate unused legacy vote tx plumbing"),
1146        (enable_tower_sync_ix::id(), "Enable tower sync vote instruction"),
1147        (chained_merkle_conflict_duplicate_proofs::id(), "generate duplicate proofs for chained merkle root conflicts"),
1148        (reward_full_priority_fee::id(), "Reward full priority fee to validators #34731"),
1149        (abort_on_invalid_curve::id(), "Abort when elliptic curve syscalls invoked on invalid curve id SIMD-0137"),
1150        (get_sysvar_syscall_enabled::id(), "Enable syscall for fetching Sysvar bytes #615"),
1151        (migrate_feature_gate_program_to_core_bpf::id(), "Migrate Feature Gate program to Core BPF (programify) #1003"),
1152        (vote_only_full_fec_sets::id(), "vote only full fec sets"),
1153        (migrate_config_program_to_core_bpf::id(), "Migrate Config program to Core BPF #1378"),
1154        (enable_get_epoch_stake_syscall::id(), "Enable syscall: sol_get_epoch_stake #884"),
1155        (migrate_address_lookup_table_program_to_core_bpf::id(), "Migrate Address Lookup Table program to Core BPF #1651"),
1156        (zk_elgamal_proof_program_enabled::id(), "Enable ZkElGamalProof program SIMD-0153"),
1157        (verify_retransmitter_signature::id(), "Verify retransmitter signature #1840"),
1158        (move_stake_and_move_lamports_ixs::id(), "Enable MoveStake and MoveLamports stake program instructions #1610"),
1159        (ed25519_precompile_verify_strict::id(), "Use strict verification in ed25519 precompile SIMD-0152"),
1160        (vote_only_retransmitter_signed_fec_sets::id(), "vote only on retransmitter signed fec sets"),
1161        (move_precompile_verification_to_svm::id(), "SIMD-0159: Move precompile verification into SVM"),
1162        (enable_transaction_loading_failure_fees::id(), "Enable fees for some additional transaction failures SIMD-0082"),
1163        (enable_turbine_extended_fanout_experiments::id(), "enable turbine extended fanout experiments #"),
1164        (deprecate_legacy_vote_ixs::id(), "Deprecate legacy vote instructions"),
1165        (partitioned_epoch_rewards_superfeature::id(), "replaces enable_partitioned_epoch_reward to enable partitioned rewards at epoch boundary SIMD-0118"),
1166        (disable_sbpf_v0_execution::id(), "Disables execution of SBPFv1 programs SIMD-0161"),
1167        (reenable_sbpf_v0_execution::id(), "Re-enables execution of SBPFv1 programs"),
1168        (enable_sbpf_v1_deployment_and_execution::id(), "Enables deployment and execution of SBPFv1 programs SIMD-0161"),
1169        (enable_sbpf_v2_deployment_and_execution::id(), "Enables deployment and execution of SBPFv2 programs SIMD-0161"),
1170        (enable_sbpf_v3_deployment_and_execution::id(), "Enables deployment and execution of SBPFv3 programs SIMD-0161"),
1171        (remove_accounts_executable_flag_checks::id(), "Remove checks of accounts is_executable flag SIMD-0162"),
1172        (lift_cpi_caller_restriction::id(), "Lift the restriction in CPI that the caller must have the callee as an instruction account #2202"),
1173        (disable_account_loader_special_case::id(), "Disable account loader special case #3513"),
1174        (accounts_lt_hash::id(), "enables lattice-based accounts hash SIMD-0215"),
1175        (snapshots_lt_hash::id(), "snapshots use lattice-based accounts hash SIMD-0220"),
1176        (remove_accounts_delta_hash::id(), "removes accounts delta hash SIMD-0223"),
1177        (enable_secp256r1_precompile::id(), "Enable secp256r1 precompile SIMD-0075"),
1178        (migrate_stake_program_to_core_bpf::id(), "Migrate Stake program to Core BPF SIMD-0196 #3655"),
1179        (deplete_cu_meter_on_vm_failure::id(), "Deplete compute meter for vm errors SIMD-0182 #3993"),
1180        (reserve_minimal_cus_for_builtin_instructions::id(), "Reserve minimal CUs for builtin instructions SIMD-170 #2562"),
1181        (raise_block_limits_to_50m::id(), "Raise block limit to 50M SIMD-0207"),
1182        (fix_alt_bn128_multiplication_input_length::id(), "fix alt_bn128 multiplication input length SIMD-0222 #3686"),
1183        (drop_unchained_merkle_shreds::id(), "drops unchained Merkle shreds #2149"),
1184        (relax_intrabatch_account_locks::id(), "Allow batched transactions to read/write and write/write the same accounts SIMD-0083"),
1185        (create_slashing_program::id(), "creates an enshrined slashing program SIMD-0204"),
1186        (disable_partitioned_rent_collection::id(), "Disable partitioned rent collection SIMD-0175 #4562"),
1187        (enable_vote_address_leader_schedule::id(), "Enable vote address leader schedule SIMD-0180 #4573"),
1188        /*************** ADD NEW FEATURES HERE ***************/
1189    ]
1190    .iter()
1191    .cloned()
1192    .collect();
1193
1194    /// Unique identifier of the current software's feature set
1195    pub static ref ID: Hash = {
1196        let mut hasher = Hasher::default();
1197        let mut feature_ids = FEATURE_NAMES.keys().collect::<Vec<_>>();
1198        feature_ids.sort();
1199        for feature in feature_ids {
1200            hasher.hash(feature.as_ref());
1201        }
1202        hasher.result()
1203    };
1204}
1205
1206#[derive(Clone, PartialEq, Eq, Hash)]
1207pub struct FullInflationFeaturePair {
1208    pub vote_id: Pubkey, // Feature that grants the candidate the ability to enable full inflation
1209    pub enable_id: Pubkey, // Feature to enable full inflation by the candidate
1210}
1211
1212lazy_static! {
1213    /// Set of feature pairs that once enabled will trigger full inflation
1214    pub static ref FULL_INFLATION_FEATURE_PAIRS: AHashSet<FullInflationFeaturePair> = [
1215        FullInflationFeaturePair {
1216            vote_id: full_inflation::mainnet::certusone::vote::id(),
1217            enable_id: full_inflation::mainnet::certusone::enable::id(),
1218        },
1219    ]
1220    .iter()
1221    .cloned()
1222    .collect();
1223}
1224
1225/// `FeatureSet` holds the set of currently active/inactive runtime features
1226#[cfg_attr(feature = "frozen-abi", derive(solana_frozen_abi_macro::AbiExample))]
1227#[derive(Debug, Clone, Eq, PartialEq)]
1228pub struct FeatureSet {
1229    pub active: AHashMap<Pubkey, u64>,
1230    pub inactive: AHashSet<Pubkey>,
1231}
1232impl Default for FeatureSet {
1233    fn default() -> Self {
1234        // All features disabled
1235        Self {
1236            active: AHashMap::new(),
1237            inactive: FEATURE_NAMES.keys().cloned().collect(),
1238        }
1239    }
1240}
1241impl FeatureSet {
1242    pub fn is_active(&self, feature_id: &Pubkey) -> bool {
1243        self.active.contains_key(feature_id)
1244    }
1245
1246    pub fn activated_slot(&self, feature_id: &Pubkey) -> Option<u64> {
1247        self.active.get(feature_id).copied()
1248    }
1249
1250    /// List of enabled features that trigger full inflation
1251    pub fn full_inflation_features_enabled(&self) -> AHashSet<Pubkey> {
1252        let mut hash_set = FULL_INFLATION_FEATURE_PAIRS
1253            .iter()
1254            .filter_map(|pair| {
1255                if self.is_active(&pair.vote_id) && self.is_active(&pair.enable_id) {
1256                    Some(pair.enable_id)
1257                } else {
1258                    None
1259                }
1260            })
1261            .collect::<AHashSet<_>>();
1262
1263        if self.is_active(&full_inflation::devnet_and_testnet::id()) {
1264            hash_set.insert(full_inflation::devnet_and_testnet::id());
1265        }
1266        hash_set
1267    }
1268
1269    /// All features enabled, useful for testing
1270    pub fn all_enabled() -> Self {
1271        Self {
1272            active: FEATURE_NAMES.keys().cloned().map(|key| (key, 0)).collect(),
1273            inactive: AHashSet::new(),
1274        }
1275    }
1276
1277    /// Activate a feature
1278    pub fn activate(&mut self, feature_id: &Pubkey, slot: u64) {
1279        self.inactive.remove(feature_id);
1280        self.active.insert(*feature_id, slot);
1281    }
1282
1283    /// Deactivate a feature
1284    pub fn deactivate(&mut self, feature_id: &Pubkey) {
1285        self.active.remove(feature_id);
1286        self.inactive.insert(*feature_id);
1287    }
1288
1289    pub fn new_warmup_cooldown_rate_epoch(&self, epoch_schedule: &EpochSchedule) -> Option<u64> {
1290        self.activated_slot(&reduce_stake_warmup_cooldown::id())
1291            .map(|slot| epoch_schedule.get_epoch(slot))
1292    }
1293}
1294
1295#[cfg(test)]
1296mod test {
1297    use super::*;
1298
1299    #[test]
1300    fn test_full_inflation_features_enabled_devnet_and_testnet() {
1301        let mut feature_set = FeatureSet::default();
1302        assert!(feature_set.full_inflation_features_enabled().is_empty());
1303        feature_set
1304            .active
1305            .insert(full_inflation::devnet_and_testnet::id(), 42);
1306        assert_eq!(
1307            feature_set.full_inflation_features_enabled(),
1308            [full_inflation::devnet_and_testnet::id()]
1309                .iter()
1310                .cloned()
1311                .collect()
1312        );
1313    }
1314
1315    #[test]
1316    fn test_full_inflation_features_enabled() {
1317        // Normal sequence: vote_id then enable_id
1318        let mut feature_set = FeatureSet::default();
1319        assert!(feature_set.full_inflation_features_enabled().is_empty());
1320        feature_set
1321            .active
1322            .insert(full_inflation::mainnet::certusone::vote::id(), 42);
1323        assert!(feature_set.full_inflation_features_enabled().is_empty());
1324        feature_set
1325            .active
1326            .insert(full_inflation::mainnet::certusone::enable::id(), 42);
1327        assert_eq!(
1328            feature_set.full_inflation_features_enabled(),
1329            [full_inflation::mainnet::certusone::enable::id()]
1330                .iter()
1331                .cloned()
1332                .collect()
1333        );
1334
1335        // Backwards sequence: enable_id and then vote_id
1336        let mut feature_set = FeatureSet::default();
1337        assert!(feature_set.full_inflation_features_enabled().is_empty());
1338        feature_set
1339            .active
1340            .insert(full_inflation::mainnet::certusone::enable::id(), 42);
1341        assert!(feature_set.full_inflation_features_enabled().is_empty());
1342        feature_set
1343            .active
1344            .insert(full_inflation::mainnet::certusone::vote::id(), 42);
1345        assert_eq!(
1346            feature_set.full_inflation_features_enabled(),
1347            [full_inflation::mainnet::certusone::enable::id()]
1348                .iter()
1349                .cloned()
1350                .collect()
1351        );
1352    }
1353
1354    #[test]
1355    fn test_feature_set_activate_deactivate() {
1356        let mut feature_set = FeatureSet::default();
1357
1358        let feature = Pubkey::new_unique();
1359        assert!(!feature_set.is_active(&feature));
1360        feature_set.activate(&feature, 0);
1361        assert!(feature_set.is_active(&feature));
1362        feature_set.deactivate(&feature);
1363        assert!(!feature_set.is_active(&feature));
1364    }
1365}