diff --git a/src/components/tenebra/TenebraValue.tsx b/src/components/tenebra/TenebraValue.tsx
index cf4e59b..6fae851 100644
--- a/src/components/tenebra/TenebraValue.tsx
+++ b/src/components/tenebra/TenebraValue.tsx
@@ -41,9 +41,9 @@
return (
- {icon || ((currencySymbol || "TST") === "TST" && )}
+ {icon || ((currencySymbol || "CO") === "CO" && )}
{(value || 0).toLocaleString()}
- {long && {currencySymbol || "TST"}}
+ {long && {currencySymbol || "CO"}}
);
};
diff --git a/src/components/transactions/AmountInput.tsx b/src/components/transactions/AmountInput.tsx
index 597e62b..11ab914 100644
--- a/src/components/transactions/AmountInput.tsx
+++ b/src/components/transactions/AmountInput.tsx
@@ -71,7 +71,7 @@
{/* Prepend the Tenebra symbol if possible. Note that ant's InputNumber
* doesn't support addons, so this has to be done manually. */}
- {(currency_symbol || "TST") === "TST" && (
+ {(currency_symbol || "CO") === "CO" && (
@@ -127,7 +127,7 @@
{/* Currency suffix */}
- {currency_symbol || "TST"}
+ {currency_symbol || "CO"}
{/* Max value button */}
diff --git a/src/tenebra/api/types.ts b/src/tenebra/api/types.ts
index 8ee82be..833f19d 100644
--- a/src/tenebra/api/types.ts
+++ b/src/tenebra/api/types.ts
@@ -100,7 +100,7 @@
currency_symbol: string;
}
export const DEFAULT_CURRENCY: TenebraCurrency = {
- address_prefix: "k", name_suffix: "kst",
+ address_prefix: "c", name_suffix: "co",
currency_name: "CrypticOre", currency_symbol: "CO"
};