How to add a new network in the application

Step by step tutorial How to add a new network

Add new network Cryptnox Wallet Guide

Step 1

Go to setting tab -> Network

Step 2

Tap + button at the top right of the screen

Step 3

Fill network details and tap “Submit”

Step 4

We should see “zkSync” is added in the networks list.

Step 5

“zkSync” should also be appeared at the Portfolio screen.

Looking to further secure your online accounts? Check out our detailed guide on adding a security key to your Facebook account for enhanced protection.

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 } } }); });