Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/console/src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ use ic_ledger_types::Tokens;
use junobuild_shared::ledger::types::cycles::CyclesTokens;

// 1.5 ICP roughly 3 T Cycles on Dec. 31, 2025
pub const SATELLITE_CREATION_FEE_ICP: Tokens = Tokens::from_e8s(1_500_000_000);
pub const ORBITER_CREATION_FEE_ICP: Tokens = Tokens::from_e8s(1_500_000_000);
pub const SATELLITE_CREATION_FEE_ICP: Tokens = Tokens::from_e8s(150_000_000);
pub const ORBITER_CREATION_FEE_ICP: Tokens = Tokens::from_e8s(150_000_000);

// We create canister with CREATE_CANISTER_CYCLES + e.g. CREATE_SATELLITE_CYCLES
// 0.5 + 1 = 1.5 T Cycles (minus what's get consumed along the way)
Expand Down
2 changes: 1 addition & 1 deletion src/tests/specs/console/console.fees.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ describe('Console > Fees', () => {
const { get_fee } = randomIdentityActor;

const defaultFees = {
fee_icp: toNullable({ e8s: 1_500_000_000n }),
fee_icp: toNullable({ e8s: 150_000_000n }),
fee_cycles: { e12s: 3_000_000_000_000n },
updated_at: expect.any(BigInt)
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,13 @@ describe('Console > Upgrade > Fees > v0.2.0 -> v0.3.0', () => {

await expect(get_fee({ Satellite: null })).resolves.toEqual(
expect.objectContaining({
fee_icp: toNullable({ e8s: 1_500_000_000n }),
fee_icp: toNullable({ e8s: 150_000_000n }),
fee_cycles: { e12s: 3_000_000_000_000n }
})
);
await expect(get_fee({ Orbiter: null })).resolves.toEqual(
expect.objectContaining({
fee_icp: toNullable({ e8s: 1_500_000_000n }),
fee_icp: toNullable({ e8s: 150_000_000n }),
fee_cycles: { e12s: 3_000_000_000_000n }
})
);
Expand Down