shine-solana/shine/programs/shine_users/src/settings.rs

13 lines
701 B
Rust
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

pub const USER_PDA_SEED_PREFIX: &str = "login=";
// Увеличили размер PDA, чтобы оставить запас под будущие расширения формата
// (в частности, сценарии ротации root key с дополнительной подписью старого ключа).
pub const USER_PDA_SPACE: usize = 768;
pub const REGISTRATION_FEE_RECEIVER: &str = "6bFc5Gz5qF172GQhK5HpDbWs8F6qcSxdHn5XqAstf1fY";
pub const REGISTRATION_FEE_LAMPORTS: u64 = 10_000_000; // 0.01 SOL
pub const LIMIT_STEP: u64 = 10_000;
pub const LAMPORTS_PER_LIMIT_STEP: u64 = 100_000; // 0.0001 SOL за 10_000 лимита
pub const START_BONUS_LIMIT: u64 = 100_000;