mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 01:37:40 +00:00
CAKE-281 | added addr1 address format validation for cardano
This commit is contained in:
parent
35aabcd248
commit
270b5f4c78
1 changed files with 3 additions and 2 deletions
|
@ -15,7 +15,8 @@ class AddressValidator extends TextValidator {
|
|||
case CryptoCurrency.xmr:
|
||||
return '[0-9a-zA-Z]';
|
||||
case CryptoCurrency.ada:
|
||||
return '[0-9a-zA-Z]';
|
||||
return '^[0-9a-zA-Z]{59}\$|^[0-9a-zA-Z]{92}\$|^[0-9a-zA-Z]{104}\$'
|
||||
'|^[0-9a-zA-Z]{105}\$|^addr1[0-9a-zA-Z]{98}\$';
|
||||
case CryptoCurrency.bch:
|
||||
return '[0-9a-zA-Z]';
|
||||
case CryptoCurrency.bnb:
|
||||
|
@ -54,7 +55,7 @@ class AddressValidator extends TextValidator {
|
|||
case CryptoCurrency.xmr:
|
||||
return [95, 106];
|
||||
case CryptoCurrency.ada:
|
||||
return [59, 92, 104, 105];
|
||||
return null;
|
||||
case CryptoCurrency.bch:
|
||||
return [42];
|
||||
case CryptoCurrency.bnb:
|
||||
|
|
Loading…
Reference in a new issue