Skip to content

Commit

Permalink
chore: change name, symbol and decimals to match TCYCLES (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioDfinity authored Mar 20, 2024
1 parent 05bec07 commit 409c638
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cycles-ledger/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ use serde::Serialize;
use std::{borrow::Cow, time::Duration};

pub const FEE: u128 = 100_000_000;
pub const DECIMALS: u8 = 0;
pub const TOKEN_NAME: &str = "Cycles";
pub const TOKEN_SYMBOL: &str = "CYCLES";
pub const DECIMALS: u8 = 12;
pub const TOKEN_NAME: &str = "Trillion Cycles";
pub const TOKEN_SYMBOL: &str = "TCYCLES";
pub const MAX_MEMO_LENGTH: u64 = 32;
pub const PERMITTED_DRIFT: Duration = Duration::from_secs(60);
pub const TRANSACTION_WINDOW: Duration = Duration::from_secs(24 * 60 * 60);
Expand Down

0 comments on commit 409c638

Please sign in to comment.