Hey, there is one thing wrong:
from blockstack_profiles import (
sign_token, wrap_token, sign_token_records,'
validate_token_record, get_profile_from_tokens,
make_zone_file_for_hosted_data,
resolve_zone_file_to_profile
)
it needs to be:
from blockstack_profiles import (
sign_token, wrap_token, sign_token_records,'
verify_token ,verify_token_record, get_profile_from_tokens,
make_zone_file_for_hosted_data,
resolve_zone_file_to_profile
)
Hope, this will help!
Hey, there is one thing wrong:
from blockstack_profiles import (sign_token, wrap_token, sign_token_records,'validate_token_record, get_profile_from_tokens,make_zone_file_for_hosted_data,resolve_zone_file_to_profile)it needs to be:
from blockstack_profiles import (sign_token, wrap_token, sign_token_records,'verify_token ,verify_token_record, get_profile_from_tokens,make_zone_file_for_hosted_data,resolve_zone_file_to_profile)Hope, this will help!