We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ac3bac commit 46b7a3dCopy full SHA for 46b7a3d
1 file changed
program/src/lib.rs
@@ -15,7 +15,10 @@ use {solana_native_token::LAMPORTS_PER_SOL, solana_pubkey::Pubkey};
15
16
solana_pubkey::declare_id!("SVSPxpvHdN29nkVg9rPapPNDddN5DipNLRUFhyjFThE");
17
18
-/// Fee charged for the `DepositSol` instruction.
+/// Fee charged for the `DepositSol` instruction. This fee may be adjusted down in
19
+/// the future depending on how `DepositSol` is used in practice. Care should be
20
+/// taken if using this number for calculations in third-party libraries or dapps,
21
+/// as it is not guaranteed to remain at this value.
22
pub const DEPOSIT_SOL_FEE_BPS: u64 = 100;
23
const MAX_BPS: u64 = 10_000;
24
0 commit comments