How to use WalletConnect on your Mobile Phone Browser
Step by step tutorial to use WalletConnect
Download the Cryptnox application
The Crpytnox Mobile phone application is compatible with mobile linking, which means that when you are connected on a web3 dapp on a mobile phone browser, you can use the Cryptnox Wallet mobile application on the same mobile to log in with your wallet.
Step 1
Go on the Web3 dapp website you want to connect (such as https://app.uniswap.org)
Step 2
Choose “Connect a Wallet” and choose “WalletConnect”
Step 3
Tap “View All” and search for “Cryptnox”.
Step 4
Tap on “Cryptnox Wallet” and then when prompted “Open this page in Cryptnox Wallet”, tap “Open”.
Step 5
You will be redirected to the Cryptnox Wallet app to accept the connection, press “connect”.
Step 6
After the first connection, the Cryptnox Wallet icon will show up immediately when choosing “WalletConnect” on any app.
Enhance Your Crypto Security! Discover how the Cryptnox Hardware Wallet ensures top-tier protection for your assets. With biometric security and cutting-edge SegWit address support, it’s one of the best crypto hardware wallets for seamless transactions.
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
}
}
});
});