You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
389 B
Python
15 lines
389 B
Python
from django.core.exceptions import ValidationError
|
|
from django.utils.translation import gettext_lazy as _
|
|
from monero.address import address
|
|
|
|
|
|
def address_is_valid_monero(value):
|
|
try:
|
|
address(value)
|
|
return True
|
|
except ValueError:
|
|
raise ValidationError(
|
|
_('%(value)s is an invalid Monero address'),
|
|
params={'value': value},
|
|
)
|