diff --git a/components/factory/forms/ConfirmationForm.tsx b/components/factory/forms/ConfirmationForm.tsx
index 1d584bd..1ad9ece 100644
--- a/components/factory/forms/ConfirmationForm.tsx
+++ b/components/factory/forms/ConfirmationForm.tsx
@@ -176,7 +176,7 @@ export default function ConfirmationForm({
You will be required to sign two messages: the first to create the token on the
blockchain, and the second to configure the token's metadata, including its name,
- symbol, description, and other details.
+ ticker, description, and other details.
)}
{/* Token Information */}
@@ -184,7 +184,7 @@ export default function ConfirmationForm({
Token Information
-
+
{formData.symbol || formData.display}
diff --git a/components/factory/forms/Success.tsx b/components/factory/forms/Success.tsx
index 2507c15..acbef4e 100644
--- a/components/factory/forms/Success.tsx
+++ b/components/factory/forms/Success.tsx
@@ -52,8 +52,8 @@ export default function Success({
{formData.name}
-
SYMBOL
-
{formData.symbol}
+
TICKER
+
{formData.display}
DESCRIPTION
diff --git a/components/factory/forms/TokenDetailsForm.tsx b/components/factory/forms/TokenDetailsForm.tsx
index 78cb5d0..54822a2 100644
--- a/components/factory/forms/TokenDetailsForm.tsx
+++ b/components/factory/forms/TokenDetailsForm.tsx
@@ -31,6 +31,7 @@ export default function TokenDetails({
.noProfanity(),
name: Yup.string().required('Name is required').noProfanity(),
uri: Yup.string()
+ .optional()
.url('Must be a valid URL')
.matches(/^https:\/\//i, 'URL must use HTTPS protocol')
.matches(/\.(jpg|jpeg|png|gif)$/i, 'URL must point to an image file'),
@@ -44,7 +45,6 @@ export default function TokenDetails({
formData.isGroup && formData.groupPolicyAddress ? formData.groupPolicyAddress : address;
const fullDenom = `factory/${effectiveAddress}/u${formData.subdenom}`;
- console.log(formData);
// Automatically set denom units
React.useEffect(() => {
const denomUnits = [
@@ -70,17 +70,11 @@ export default function TokenDetails({