From 1380e49da7b4826fcc573ba985574e693e3a1441 Mon Sep 17 00:00:00 2001 From: Dimitris Sarlis Date: Wed, 6 Nov 2024 16:37:44 +0100 Subject: [PATCH] feat: Update canister creation fee (#2353) This changes the canister creation fee according to the proposal listed in the [forum](https://forum.dfinity.org/t/evaluating-compute-pricing-in.-response-to-increased-demand-on-the-internet-computer-protocol/36565). --- rs/config/src/subnet_config.rs | 2 +- rs/execution_environment/tests/subnet_size_test.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rs/config/src/subnet_config.rs b/rs/config/src/subnet_config.rs index 7864f625cd0..0e649eb87a9 100644 --- a/rs/config/src/subnet_config.rs +++ b/rs/config/src/subnet_config.rs @@ -434,7 +434,7 @@ impl CyclesAccountManagerConfig { let ten_update_instructions_execution_fee_in_cycles = 10; Self { reference_subnet_size: DEFAULT_REFERENCE_SUBNET_SIZE, - canister_creation_fee: Cycles::new(100_000_000_000), + canister_creation_fee: Cycles::new(500_000_000_000), compute_percent_allocated_per_second_fee: Cycles::new(10_000_000), // The following fields are set based on a thought experiment where diff --git a/rs/execution_environment/tests/subnet_size_test.rs b/rs/execution_environment/tests/subnet_size_test.rs index 5572ff70a5c..3869815ae3b 100644 --- a/rs/execution_environment/tests/subnet_size_test.rs +++ b/rs/execution_environment/tests/subnet_size_test.rs @@ -748,7 +748,7 @@ fn get_cycles_account_manager_config(subnet_type: SubnetType) -> CyclesAccountMa }, SubnetType::Application | SubnetType::VerifiedApplication => CyclesAccountManagerConfig { reference_subnet_size: DEFAULT_REFERENCE_SUBNET_SIZE, - canister_creation_fee: Cycles::new(100_000_000_000), + canister_creation_fee: Cycles::new(500_000_000_000), compute_percent_allocated_per_second_fee: Cycles::new(10_000_000), // The following fields are set based on a thought experiment where