This commit is contained in:
Hardhat Chad
2025-06-25 16:21:09 -05:00
parent 2cef573e36
commit 27c956c7b4
4 changed files with 31 additions and 5 deletions

View File

@@ -10,14 +10,14 @@ pub struct Config {
// The address that can set the admin.
pub admin: Pubkey,
/// Number of blocks that can be open for trading at one time.
pub block_limit: u64,
// The address that receives fees.
pub fee_collector: Pubkey,
// The fee rate taken for each swap.
pub fee_rate: u64,
/// Number of blocks that can be open for trading at one time.
pub block_limit: u64,
}
impl Config {