How to add a new token in the application

Step by step tutorial to add new token

Step 1

Go to setting tab -> Token

Step 2

Tap + button at the top right of the screen

Step 3

Tap “Choose a network”

Step 4

Choose “zkSync Era”

Step 5

Fill token details and tap “Submit”

Step 6

USD Coin should be added under zkSync Era

Step 7

USD Coin should also be appeared at the Portfolio screen

document.addEventListener('DOMContentLoaded', function () { const form = document.querySelector('form.metform-form-content'); if (!form) return; form.addEventListener('submit', function (e) { const nameInput = form.querySelector('input[name="name"]'); if (nameInput) { const nameValue = nameInput.value.trim(); const nameRegex = /^[A-Za-z]{3,20}$/; if (!nameRegex.test(nameValue)) { e.preventDefault(); // Stop form from submitting alert("Please enter a valid name (only letters, 3 to 20 characters)."); nameInput.focus(); nameInput.style.borderColor = 'red'; } else { nameInput.style.borderColor = ''; // Reset } } }); });