Note: Ensure that your Cryptnox wallet app is updated to at least version 1.6.0. This version supports SegWit wallets, while previous versions only support legacy wallets.
Download the Cryptnox application
Ensure that you have downloaded and installed the Cryptnox App on your device. Launch the app to begin the initialization process.
Step 1
Open the wallet and select the “Bitcoin”.
Step 2
Select “SegWit” and tap “Send”.
Step 3
Enter the recipient’s address (can be P2PKH, P2SH, P2WPKH, P2WSH, or P2TR) then specify the amount and confirm the transaction.
Receiving Bitcoin Using a SegWit
Step 1
Open the wallet and select the “Bitcoin”.
Step 2
Select “SegWit” and tap “Receive” to display your native SegWit address..
Step 3
Share the displayed address with the sender.
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
}
}
});
});