We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36558b9 commit 31e867fCopy full SHA for 31e867f
1 file changed
programs/autocrat_v0/src/lib.rs
@@ -121,8 +121,8 @@ pub mod autocrat_v0 {
121
dao.burn_decay_per_slot_lamports = DEFAULT_BURN_DECAY_PER_SLOT_LAMPORTS;
122
dao.slots_per_proposal = THREE_DAYS_IN_SLOTS;
123
dao.market_taker_fee = 0;
124
- // 1_000 price lots * quote lot size of 100 = 100_000 or $0.1 per quote lot size of meta, which is 0.1 meta
125
- dao.twap_expected_value = 1_000; // 1 USDC per 1 META
+ // 100_000 price lots * quote lot size of 100 = 10_000_000 or $10 per quote lot size of meta, which is 0.1 meta
+ dao.twap_expected_value = 100_000; // $100 USDC per 1 META
126
dao.max_observation_change_per_update_lots = DEFAULT_MAX_OBSERVATION_CHANGE_PER_UPDATE_LOTS;
127
128
let (treasury_pubkey, treasury_bump) =
0 commit comments