-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
''' | ||
Author: Zella Zhong | ||
Date: 2024-10-24 17:34:05 | ||
LastEditors: Zella Zhong | ||
LastEditTime: 2024-10-24 17:34:08 | ||
FilePath: /data_service/src/resolver/unstoppabledomains.py | ||
Description: | ||
''' | ||
import logging | ||
from datetime import datetime | ||
from sqlalchemy.inspection import inspect | ||
from sqlalchemy import select, update, and_, or_ | ||
from sqlalchemy.orm import load_only | ||
from urllib.parse import unquote | ||
|
||
from session import get_session | ||
from model import EnsnameModel | ||
|
||
from utils import check_evm_address, convert_camel_case, compute_namehash_nowrapped | ||
|
||
from scalar.platform import Platform | ||
from scalar.network import Network, Address, CoinTypeMap | ||
from scalar.identity_graph import IdentityRecordSimplified | ||
from scalar.identity_record import IdentityRecord | ||
from scalar.profile import Profile | ||
from scalar.error import DomainNotFound, EmptyInput, EvmAddressInvalid, ExceedRangeInput |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters