diff --git a/index.html b/index.html index aa9f96e..0c43891 100644 --- a/index.html +++ b/index.html @@ -665,7 +665,7 @@ - @@ -784,19 +784,19 @@ // Check if input is empty if (!keyToConvert) { - notify('Please enter a Cronos address, private key, or transaction hash', 'error'); + notify('Please enter a CRO address, private key, or transaction hash', 'error'); return; } // Reject FLO addresses (start with F and len 34) if (/^[F][a-km-zA-HJ-NP-Z1-9]{26,34}$/.test(keyToConvert)) { - notify('FLO addresses are not supported. Please use a Cronos address or private key.', 'error'); + notify('FLO addresses are not supported. Please use a CRO address or private key.', 'error'); return; } // Reject BTC addresses (legacy 1/3, segwit bc1) if (/^(1|3)[a-km-zA-HJ-NP-Z1-9]{25,34}$/.test(keyToConvert) || /^bc1[a-z0-9]{39,59}$/i.test(keyToConvert)) { - notify('BTC addresses are not supported. Please use a Cronos address or private key.', 'error'); + notify('BTC addresses are not supported. Please use a CRO address or private key.', 'error'); return; } @@ -820,7 +820,7 @@ floAddress = floCrypto.getFloID(keyToConvert) btcAddress = btcOperator.bech32Address(keyToConvert) } catch (error) { - notify('Invalid input. Please enter a valid Cronos address, private key, or tx hash.', 'error'); + notify('Invalid input. Please enter a valid CRO address, private key, or tx hash.', 'error'); return; } }