Skip to content

Commit

Permalink
feat: Update canister creation fee (#2353)
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
dsarlis authored Nov 6, 2024
1 parent 44095f2 commit 1380e49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rs/config/src/subnet_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion rs/execution_environment/tests/subnet_size_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1380e49

Please sign in to comment.