diff --git a/core/.changelog.d/15.added b/core/.changelog.d/15.added new file mode 100644 index 000000000..70ce443ce --- /dev/null +++ b/core/.changelog.d/15.added @@ -0,0 +1 @@ +Signed Ethereum network and token definitions from host diff --git a/core/src/all_modules.py b/core/src/all_modules.py index ba3b20964..722bc3063 100644 --- a/core/src/all_modules.py +++ b/core/src/all_modules.py @@ -375,6 +375,8 @@ if not utils.BITCOIN_ONLY: import trezor.enums.CardanoTxWitnessType trezor.enums.EthereumDataType import trezor.enums.EthereumDataType + trezor.enums.EthereumDefinitionType + import trezor.enums.EthereumDefinitionType trezor.enums.MoneroNetworkType import trezor.enums.MoneroNetworkType trezor.enums.NEMImportanceTransferMode @@ -481,6 +483,10 @@ if not utils.BITCOIN_ONLY: import apps.eos.writers apps.ethereum import apps.ethereum + apps.ethereum.definitions + import apps.ethereum.definitions + apps.ethereum.definitions_constants + import apps.ethereum.definitions_constants apps.ethereum.get_address import apps.ethereum.get_address apps.ethereum.get_public_key diff --git a/core/src/apps/common/readers.py b/core/src/apps/common/readers.py index e0cecb60e..0a9114ee4 100644 --- a/core/src/apps/common/readers.py +++ b/core/src/apps/common/readers.py @@ -33,19 +33,25 @@ def read_compact_size(r: BufferReader) -> int: def read_uint16_be(r: BufferReader) -> int: - n = r.get() - return (n << 8) + r.get() + data = r.read_memoryview(2) + return int.from_bytes(data, "big") def read_uint32_be(r: BufferReader) -> int: - n = r.get() - for _ in range(3): - n = (n << 8) + r.get() - return n + data = r.read_memoryview(4) + return int.from_bytes(data, "big") def read_uint64_be(r: BufferReader) -> int: - n = r.get() - for _ in range(7): - n = (n << 8) + r.get() - return n + data = r.read_memoryview(8) + return int.from_bytes(data, "big") + + +def read_uint16_le(r: BufferReader) -> int: + data = r.read_memoryview(2) + return int.from_bytes(data, "little") + + +def read_uint32_le(r: BufferReader) -> int: + data = r.read_memoryview(4) + return int.from_bytes(data, "little") diff --git a/core/src/apps/ethereum/definitions.py b/core/src/apps/ethereum/definitions.py new file mode 100644 index 000000000..8ae583f08 --- /dev/null +++ b/core/src/apps/ethereum/definitions.py @@ -0,0 +1,154 @@ +from typing import TYPE_CHECKING + +from trezor import protobuf, utils +from trezor.crypto.curve import ed25519 +from trezor.crypto.hashlib import sha256 +from trezor.enums import EthereumDefinitionType +from trezor.messages import EthereumNetworkInfo, EthereumTokenInfo +from trezor.wire import DataError + +from apps.common import readers + +from . import definitions_constants as consts, networks, tokens +from .networks import UNKNOWN_NETWORK + +if TYPE_CHECKING: + from typing import TypeVar + from typing_extensions import Self + + DefType = TypeVar("DefType", EthereumNetworkInfo, EthereumTokenInfo) + + +def decode_definition(definition: bytes, expected_type: type[DefType]) -> DefType: + # check network definition + r = utils.BufferReader(definition) + expected_type_number = EthereumDefinitionType.NETWORK + # TODO: can't check equality of MsgDefObjs now, so we check the name + if expected_type.MESSAGE_NAME == EthereumTokenInfo.MESSAGE_NAME: + expected_type_number = EthereumDefinitionType.TOKEN + + try: + # first check format version + if r.read_memoryview(len(consts.FORMAT_VERSION)) != consts.FORMAT_VERSION: + raise DataError("Invalid Ethereum definition") + + # second check the type of the data + if r.get() != expected_type_number: + raise DataError("Definition type mismatch") + + # third check data version + if readers.read_uint32_le(r) < consts.MIN_DATA_VERSION: + raise DataError("Definition is outdated") + + # get payload + payload_length = readers.read_uint16_le(r) + payload = r.read_memoryview(payload_length) + + # at the end compute Merkle tree root hash using + # provided leaf data (payload with prefix) and proof + hasher = sha256(b"\x00") + hasher.update(memoryview(definition)[: r.offset]) + hash = hasher.digest() + proof_length = r.get() + for _ in range(proof_length): + proof_entry = r.read_memoryview(32) + hash_a = min(hash, proof_entry) + hash_b = max(hash, proof_entry) + hasher = sha256(b"\x01") + hasher.update(hash_a) + hasher.update(hash_b) + hash = hasher.digest() + + signed_tree_root = r.read_memoryview(64) + + if r.remaining_count(): + raise DataError("Invalid Ethereum definition") + + except EOFError: + raise DataError("Invalid Ethereum definition") + + # verify signature + if not ed25519.verify(consts.DEFINITIONS_PUBLIC_KEY, signed_tree_root, hash): + error_msg = DataError("Invalid definition signature") + if __debug__: + # check against dev key + if not ed25519.verify( + consts.DEFINITIONS_DEV_PUBLIC_KEY, + signed_tree_root, + hash, + ): + raise error_msg + else: + raise error_msg + + # decode it if it's OK + try: + return protobuf.decode(payload, expected_type, True) + except ValueError: + raise DataError("Invalid Ethereum definition") + + +class Definitions: + """Class that holds Ethereum definitions - network and tokens. + Prefers built-in definitions over encoded ones. + """ + + def __init__( + self, network: EthereumNetworkInfo, tokens: dict[bytes, EthereumTokenInfo] + ) -> None: + self.network = network + self._tokens = tokens + + @classmethod + def from_encoded( + cls, + encoded_network: bytes | None, + encoded_token: bytes | None, + chain_id: int | None = None, + slip44: int | None = None, + ) -> Self: + network = UNKNOWN_NETWORK + tokens: dict[bytes, EthereumTokenInfo] = {} + + # if we have a built-in definition, use it + if chain_id is not None: + network = networks.by_chain_id(chain_id) + elif slip44 is not None: + network = networks.by_slip44(slip44) + else: + # ignore encoded definitions if we can't match them to request details + return cls(UNKNOWN_NETWORK, {}) + + if network is UNKNOWN_NETWORK and encoded_network is not None: + network = decode_definition(encoded_network, EthereumNetworkInfo) + + if network is UNKNOWN_NETWORK: + # ignore tokens if we don't have a network + return cls(UNKNOWN_NETWORK, {}) + + if chain_id is not None and network.chain_id != chain_id: + raise DataError("Network definition mismatch") + if slip44 is not None and network.slip44 != slip44: + raise DataError("Network definition mismatch") + + # get token definition + if encoded_token is not None: + token = decode_definition(encoded_token, EthereumTokenInfo) + # Ignore token if it doesn't match the network instead of raising an error. + # This might help us in the future if we allow multiple networks/tokens + # in the same message. + if token.chain_id == network.chain_id: + tokens[token.address] = token + + return cls(network, tokens) + + def get_token(self, address: bytes) -> EthereumTokenInfo: + # if we have a built-in definition, use it + token = tokens.token_by_chain_address(self.network.chain_id, address) + if token is not None: + return token + + if address in self._tokens: + return self._tokens[address] + + return tokens.UNKNOWN_TOKEN diff --git a/core/src/apps/ethereum/definitions_constants.py b/core/src/apps/ethereum/definitions_constants.py new file mode 100644 index 000000000..edc550099 --- /dev/null +++ b/core/src/apps/ethereum/definitions_constants.py @@ -0,0 +1,14 @@ +# generated from definitions_constants.py.mako +# (by running `make templates` in `core`) +# do not edit manually! + +from ubinascii import unhexlify + +DEFINITIONS_PUBLIC_KEY = b"" +MIN_DATA_VERSION = 1669892465 +FORMAT_VERSION = b"trzd1" + +if __debug__: + DEFINITIONS_DEV_PUBLIC_KEY = unhexlify( + "db995fe25169d141cab9bbba92baa01f9f2e1ece7df4cb2ac05190f37fcc1f9d" + ) diff --git a/core/src/apps/ethereum/definitions_constants.py.mako b/core/src/apps/ethereum/definitions_constants.py.mako new file mode 100644 index 000000000..6d2288930 --- /dev/null +++ b/core/src/apps/ethereum/definitions_constants.py.mako @@ -0,0 +1,14 @@ +# generated from definitions_constants.py.mako +# (by running `make templates` in `core`) +# do not edit manually! + +from ubinascii import unhexlify + +DEFINITIONS_PUBLIC_KEY = b"" +MIN_DATA_VERSION = ${ethereum_defs_timestamp} +FORMAT_VERSION = b"trzd1" + +if __debug__: + DEFINITIONS_DEV_PUBLIC_KEY = unhexlify( + "db995fe25169d141cab9bbba92baa01f9f2e1ece7df4cb2ac05190f37fcc1f9d" + ) diff --git a/core/src/apps/ethereum/get_address.py b/core/src/apps/ethereum/get_address.py index 53f61cd41..5af6596e2 100644 --- a/core/src/apps/ethereum/get_address.py +++ b/core/src/apps/ethereum/get_address.py @@ -7,16 +7,19 @@ if TYPE_CHECKING: from trezor.wire import Context from apps.common.keychain import Keychain + from .definitions import Definitions @with_keychain_from_path(*PATTERNS_ADDRESS) async def get_address( - ctx: Context, msg: EthereumGetAddress, keychain: Keychain + ctx: Context, + msg: EthereumGetAddress, + keychain: Keychain, + defs: Definitions, ) -> EthereumAddress: from trezor.messages import EthereumAddress from trezor.ui.layouts import show_address from apps.common import paths - from . import networks from .helpers import address_from_bytes address_n = msg.address_n # local_cache_attribute @@ -25,11 +28,7 @@ async def get_address( node = keychain.derive(address_n) - if len(address_n) > 1: # path has slip44 network identifier - network = networks.by_slip44(address_n[1] & 0x7FFF_FFFF) - else: - network = None - address = address_from_bytes(node.ethereum_pubkeyhash(), network) + address = address_from_bytes(node.ethereum_pubkeyhash(), defs.network) if msg.show_display: await show_address(ctx, address, path=paths.address_n_to_str(address_n)) diff --git a/core/src/apps/ethereum/helpers.py b/core/src/apps/ethereum/helpers.py index 756052282..a0bc1725b 100644 --- a/core/src/apps/ethereum/helpers.py +++ b/core/src/apps/ethereum/helpers.py @@ -1,19 +1,27 @@ from typing import TYPE_CHECKING from ubinascii import hexlify +from . import networks + if TYPE_CHECKING: from trezor.messages import EthereumFieldType - from .networks import NetworkInfo + from .networks import EthereumNetworkInfo + + +RSKIP60_NETWORKS = (30, 31) -def address_from_bytes(address_bytes: bytes, network: NetworkInfo | None = None) -> str: +def address_from_bytes( + address_bytes: bytes, network: EthereumNetworkInfo = networks.UNKNOWN_NETWORK +) -> str: """ Converts address in bytes to a checksummed string as defined in https://github.com/ethereum/EIPs/blob/master/EIPS/eip-55.md """ from trezor.crypto.hashlib import sha3_256 - if network is not None and network.rskip60: + if network.chain_id in RSKIP60_NETWORKS: + # rskip60 is a different way to calculate checksum prefix = str(network.chain_id) + "0x" else: prefix = "" diff --git a/core/src/apps/ethereum/keychain.py b/core/src/apps/ethereum/keychain.py index ae0892c2d..bc4af7033 100644 --- a/core/src/apps/ethereum/keychain.py +++ b/core/src/apps/ethereum/keychain.py @@ -1,37 +1,56 @@ from typing import TYPE_CHECKING +from trezor.messages import EthereumNetworkInfo + from apps.common import paths from apps.common.keychain import get_keychain -from . import CURVE, networks +from . import CURVE, definitions, networks if TYPE_CHECKING: - from typing import Callable, Iterable, TypeVar + from typing import Any, Awaitable, Callable, Iterable, TypeVar + + from apps.common.keychain import Keychain from trezor.wire import Context from trezor.messages import ( EthereumGetAddress, - EthereumGetPublicKey, EthereumSignMessage, EthereumSignTx, EthereumSignTxEIP1559, EthereumSignTypedData, ) - from apps.common.keychain import MsgOut, Handler, HandlerWithKeychain + from apps.common.keychain import ( + MsgOut, + Handler, + ) - EthereumMessages = ( - EthereumGetAddress - | EthereumGetPublicKey - | EthereumSignTx - | EthereumSignMessage - | EthereumSignTypedData + # messages for "with_keychain_and_network_from_path" decorator + MsgInAddressN = TypeVar( + "MsgInAddressN", + EthereumGetAddress, + EthereumSignMessage, + EthereumSignTypedData, ) - MsgIn = TypeVar("MsgIn", bound=EthereumMessages) - EthereumSignTxAny = EthereumSignTx | EthereumSignTxEIP1559 - MsgInChainId = TypeVar("MsgInChainId", bound=EthereumSignTxAny) + HandlerAddressN = Callable[ + [Context, MsgInAddressN, Keychain, definitions.Definitions], + Awaitable[MsgOut], + ] + + # messages for "with_keychain_and_defs_from_chain_id" decorator + MsgInSignTx = TypeVar( + "MsgInSignTx", + EthereumSignTx, + EthereumSignTxEIP1559, + ) + + HandlerChainId = Callable[ + [Context, MsgInSignTx, Keychain, definitions.Definitions], + Awaitable[MsgOut], + ] # We believe Ethereum should use 44'/60'/a' for everything, because it is @@ -48,67 +67,83 @@ PATTERNS_ADDRESS = ( ) -def _schemas_from_address_n( - patterns: Iterable[str], address_n: paths.Bip32Path -) -> Iterable[paths.PathSchema]: - # Casa paths (purpose of 45) do not have hardened coin types - if address_n[0] == 45 | paths.HARDENED and not address_n[1] & paths.HARDENED: - slip44_hardened = address_n[1] | paths.HARDENED - else: - slip44_hardened = address_n[1] +def _slip44_from_address_n(address_n: paths.Bip32Path) -> int | None: + HARDENED = paths.HARDENED # local_cache_attribute + if len(address_n) < 2: + return None - if slip44_hardened not in networks.all_slip44_ids_hardened(): - return () + if address_n[0] == 45 | HARDENED and not address_n[1] & HARDENED: + return address_n[1] - if not slip44_hardened & paths.HARDENED: - return () + return address_n[1] & ~HARDENED - slip44_id = slip44_hardened - paths.HARDENED - schemas = [paths.PathSchema.parse(pattern, slip44_id) for pattern in patterns] - return [s.copy() for s in schemas] +def _defs_from_message( + msg: Any, chain_id: int | None = None, slip44: int | None = None +) -> definitions.Definitions: + encoded_network = None + encoded_token = None -def with_keychain_from_path( - *patterns: str, -) -> Callable[[HandlerWithKeychain[MsgIn, MsgOut]], Handler[MsgIn, MsgOut]]: - def decorator(func: HandlerWithKeychain[MsgIn, MsgOut]) -> Handler[MsgIn, MsgOut]: - async def wrapper(ctx: Context, msg: MsgIn) -> MsgOut: - schemas = _schemas_from_address_n(patterns, msg.address_n) - keychain = await get_keychain(ctx, CURVE, schemas) - with keychain: - return await func(ctx, msg, keychain) + # try to get both from msg.definitions + if hasattr(msg, "definitions"): + if msg.definitions is not None: + encoded_network = msg.definitions.encoded_network + encoded_token = msg.definitions.encoded_token - return wrapper + elif hasattr(msg, "encoded_network"): + encoded_network = msg.encoded_network - return decorator + return definitions.Definitions.from_encoded( + encoded_network, encoded_token, chain_id, slip44 + ) -def _schemas_from_chain_id(msg: EthereumSignTxAny) -> Iterable[paths.PathSchema]: - info = networks.by_chain_id(msg.chain_id) +def _schemas_from_network( + patterns: Iterable[str], + network_info: EthereumNetworkInfo, +) -> Iterable[paths.PathSchema]: slip44_id: tuple[int, ...] - if info is None: + if network_info is networks.UNKNOWN_NETWORK: # allow Ethereum or testnet paths for unknown networks slip44_id = (60, 1) - elif info.slip44 not in (60, 1): + elif network_info.slip44 not in (60, 1): # allow cross-signing with Ethereum unless it's testnet - slip44_id = (info.slip44, 60) + slip44_id = (network_info.slip44, 60) else: - slip44_id = (info.slip44,) + slip44_id = (network_info.slip44,) - schemas = [ - paths.PathSchema.parse(pattern, slip44_id) for pattern in PATTERNS_ADDRESS - ] + schemas = [paths.PathSchema.parse(pattern, slip44_id) for pattern in patterns] return [s.copy() for s in schemas] +def with_keychain_from_path( + *patterns: str, +) -> Callable[[HandlerAddressN[MsgInAddressN, MsgOut]], Handler[MsgInAddressN, MsgOut]]: + def decorator( + func: HandlerAddressN[MsgInAddressN, MsgOut] + ) -> Handler[MsgInAddressN, MsgOut]: + async def wrapper(ctx: Context, msg: MsgInAddressN) -> MsgOut: + slip44 = _slip44_from_address_n(msg.address_n) + defs = _defs_from_message(msg, slip44=slip44) + schemas = _schemas_from_network(patterns, defs.network) + keychain = await get_keychain(ctx, CURVE, schemas) + with keychain: + return await func(ctx, msg, keychain, defs) + + return wrapper + + return decorator + + def with_keychain_from_chain_id( - func: HandlerWithKeychain[MsgInChainId, MsgOut] -) -> Handler[MsgInChainId, MsgOut]: + func: HandlerChainId[MsgInSignTx, MsgOut] +) -> Handler[MsgInSignTx, MsgOut]: # this is only for SignTx, and only PATTERN_ADDRESS is allowed - async def wrapper(ctx: Context, msg: MsgInChainId) -> MsgOut: - schemas = _schemas_from_chain_id(msg) + async def wrapper(ctx: Context, msg: MsgInSignTx) -> MsgOut: + defs = _defs_from_message(msg, chain_id=msg.chain_id) + schemas = _schemas_from_network(PATTERNS_ADDRESS, defs.network) keychain = await get_keychain(ctx, CURVE, schemas) with keychain: - return await func(ctx, msg, keychain) + return await func(ctx, msg, keychain, defs) return wrapper diff --git a/core/src/apps/ethereum/layout.py b/core/src/apps/ethereum/layout.py index aea383d85..a3d4cb092 100644 --- a/core/src/apps/ethereum/layout.py +++ b/core/src/apps/ethereum/layout.py @@ -11,35 +11,38 @@ from trezor.ui.layouts import ( should_show_more, ) -from . import networks from .helpers import decode_typed_data if TYPE_CHECKING: from typing import Awaitable, Iterable - from trezor.messages import EthereumFieldType, EthereumStructMember + from trezor.messages import ( + EthereumFieldType, + EthereumNetworkInfo, + EthereumStructMember, + EthereumTokenInfo, + ) from trezor.wire import Context - from . import tokens def require_confirm_tx( ctx: Context, to_bytes: bytes, value: int, - chain_id: int, - token: tokens.TokenInfo | None = None, + network: EthereumNetworkInfo, + token: EthereumTokenInfo | None, ) -> Awaitable[None]: from .helpers import address_from_bytes from trezor.ui.layouts import confirm_output if to_bytes: - to_str = address_from_bytes(to_bytes, networks.by_chain_id(chain_id)) + to_str = address_from_bytes(to_bytes, network) else: to_str = "new contract?" return confirm_output( ctx, to_str, - format_ethereum_amount(value, token, chain_id), + format_ethereum_amount(value, token, network), br_code=ButtonRequestType.SignTx, ) @@ -49,19 +52,19 @@ async def require_confirm_fee( spending: int, gas_price: int, gas_limit: int, - chain_id: int, - token: tokens.TokenInfo | None = None, + network: EthereumNetworkInfo, + token: EthereumTokenInfo | None, ) -> None: await confirm_amount( ctx, title="Confirm fee", description="Gas price:", - amount=format_ethereum_amount(gas_price, None, chain_id), + amount=format_ethereum_amount(gas_price, None, network), ) await confirm_total( ctx, - total_amount=format_ethereum_amount(spending, token, chain_id), - fee_amount=format_ethereum_amount(gas_price * gas_limit, None, chain_id), + total_amount=format_ethereum_amount(spending, token, network), + fee_amount=format_ethereum_amount(gas_price * gas_limit, None, network), total_label="Amount sent:", fee_label="Maximum fee:", ) @@ -73,25 +76,25 @@ async def require_confirm_eip1559_fee( max_priority_fee: int, max_gas_fee: int, gas_limit: int, - chain_id: int, - token: tokens.TokenInfo | None = None, + network: EthereumNetworkInfo, + token: EthereumTokenInfo | None, ) -> None: await confirm_amount( ctx, "Confirm fee", - format_ethereum_amount(max_gas_fee, None, chain_id), + format_ethereum_amount(max_gas_fee, None, network), "Maximum fee per gas", ) await confirm_amount( ctx, "Confirm fee", - format_ethereum_amount(max_priority_fee, None, chain_id), + format_ethereum_amount(max_priority_fee, None, network), "Priority fee per gas", ) await confirm_total( ctx, - format_ethereum_amount(spending, token, chain_id), - format_ethereum_amount(max_gas_fee * gas_limit, None, chain_id), + format_ethereum_amount(spending, token, network), + format_ethereum_amount(max_gas_fee * gas_limit, None, network), total_label="Amount sent:", fee_label="Maximum fee:", ) @@ -262,7 +265,9 @@ async def confirm_typed_value( def format_ethereum_amount( - value: int, token: tokens.TokenInfo | None, chain_id: int + value: int, + token: EthereumTokenInfo | None, + network: EthereumNetworkInfo, ) -> str: from trezor.strings import format_amount @@ -270,7 +275,7 @@ def format_ethereum_amount( suffix = token.symbol decimals = token.decimals else: - suffix = networks.shortcut_by_chain_id(chain_id) + suffix = network.symbol decimals = 18 # Don't want to display wei values for tokens with small decimal numbers diff --git a/core/src/apps/ethereum/networks.py b/core/src/apps/ethereum/networks.py index 81c3e76f6..b68f0f848 100644 --- a/core/src/apps/ethereum/networks.py +++ b/core/src/apps/ethereum/networks.py @@ -7,7 +7,7 @@ from typing import TYPE_CHECKING -from apps.common.paths import HARDENED +from trezor.messages import EthereumNetworkInfo if TYPE_CHECKING: from typing import Iterator @@ -17,61 +17,43 @@ if TYPE_CHECKING: NetworkInfoTuple = tuple[ int, # chain_id int, # slip44 - str, # shortcut + str, # symbol str, # name - bool # rskip60 ] # fmt: on +UNKNOWN_NETWORK = EthereumNetworkInfo( + chain_id=0, + slip44=0, + symbol="UNKN", + name="Unknown network", +) -def shortcut_by_chain_id(chain_id: int) -> str: - n = by_chain_id(chain_id) - return n.shortcut if n is not None else "UNKN" - -def by_chain_id(chain_id: int) -> "NetworkInfo" | None: +def by_chain_id(chain_id: int) -> EthereumNetworkInfo: for n in _networks_iterator(): n_chain_id = n[0] if n_chain_id == chain_id: - return NetworkInfo( + return EthereumNetworkInfo( chain_id=n[0], slip44=n[1], - shortcut=n[2], + symbol=n[2], name=n[3], - rskip60=n[4], ) - return None + return UNKNOWN_NETWORK -def by_slip44(slip44: int) -> "NetworkInfo" | None: +def by_slip44(slip44: int) -> EthereumNetworkInfo: for n in _networks_iterator(): n_slip44 = n[1] if n_slip44 == slip44: - return NetworkInfo( + return EthereumNetworkInfo( chain_id=n[0], slip44=n[1], - shortcut=n[2], + symbol=n[2], name=n[3], - rskip60=n[4], ) - return None - - -def all_slip44_ids_hardened() -> Iterator[int]: - for n in _networks_iterator(): - # n_slip_44 is the second element - yield n[1] | HARDENED - - -class NetworkInfo: - def __init__( - self, chain_id: int, slip44: int, shortcut: str, name: str, rskip60: bool - ) -> None: - self.chain_id = chain_id - self.slip44 = slip44 - self.shortcut = shortcut - self.name = name - self.rskip60 = rskip60 + return UNKNOWN_NETWORK # fmt: off @@ -79,2856 +61,42 @@ def _networks_iterator() -> Iterator[NetworkInfoTuple]: yield ( 1, # chain_id 60, # slip44 - "ETH", # shortcut + "ETH", # symbol "Ethereum", # name - False, # rskip60 - ) - yield ( - 2, # chain_id - 40, # slip44 - "EXP", # shortcut - "Expanse Network", # name - False, # rskip60 ) yield ( 3, # chain_id 1, # slip44 - "tETH", # shortcut + "tETH", # symbol "Ropsten", # name - False, # rskip60 ) yield ( 4, # chain_id 1, # slip44 - "tETH", # shortcut + "tETH", # symbol "Rinkeby", # name - False, # rskip60 ) yield ( 5, # chain_id 1, # slip44 - "tETH", # shortcut - "Goerli", # name - False, # rskip60 - ) - yield ( - 6, # chain_id - 1, # slip44 - "tKOT", # shortcut - "Ethereum Classic Testnet Kotti", # name - False, # rskip60 - ) - yield ( - 7, # chain_id - 60, # slip44 - "TCH", # shortcut - "ThaiChain", # name - False, # rskip60 - ) - yield ( - 8, # chain_id - 108, # slip44 - "UBQ", # shortcut - "Ubiq", # name - False, # rskip60 - ) - yield ( - 9, # chain_id - 1, # slip44 - "TUBQ", # shortcut - "Ubiq Network Testnet", # name - False, # rskip60 - ) - yield ( - 11, # chain_id - 916, # slip44 - "META", # shortcut - "Metadium", # name - False, # rskip60 - ) - yield ( - 12, # chain_id - 1, # slip44 - "tKAL", # shortcut - "Metadium Testnet", # name - False, # rskip60 - ) - yield ( - 13, # chain_id - 1, # slip44 - "tsDIODE", # shortcut - "Diode Testnet Staging", # name - False, # rskip60 - ) - yield ( - 14, # chain_id - 60, # slip44 - "FLR", # shortcut - "Flare", # name - False, # rskip60 - ) - yield ( - 15, # chain_id - 60, # slip44 - "DIODE", # shortcut - "Diode Prenet", # name - False, # rskip60 - ) - yield ( - 16, # chain_id - 1, # slip44 - "tCFLR", # shortcut - "Flare Testnet Coston", # name - False, # rskip60 - ) - yield ( - 17, # chain_id - 60, # slip44 - "TFI", # shortcut - "ThaiChain 2.0 ThaiFi", # name - False, # rskip60 - ) - yield ( - 18, # chain_id - 1, # slip44 - "TST", # shortcut - "ThunderCore Testnet", # name - False, # rskip60 - ) - yield ( - 19, # chain_id - 60, # slip44 - "SGB", # shortcut - "Songbird Canary-Network", # name - False, # rskip60 - ) - yield ( - 20, # chain_id - 60, # slip44 - "ELA", # shortcut - "Elastos Smart Chain", # name - False, # rskip60 - ) - yield ( - 24, # chain_id - 60, # slip44 - "KAI", # shortcut - "KardiaChain", # name - False, # rskip60 - ) - yield ( - 25, # chain_id - 60, # slip44 - "CRO", # shortcut - "Cronos", # name - False, # rskip60 - ) - yield ( - 27, # chain_id - 60, # slip44 - "SHIB", # shortcut - "ShibaChain", # name - False, # rskip60 - ) - yield ( - 29, # chain_id - 60, # slip44 - "L1", # shortcut - "Genesis L1", # name - False, # rskip60 - ) - yield ( - 30, # chain_id - 137, # slip44 - "RBTC", # shortcut - "RSK", # name - True, # rskip60 - ) - yield ( - 31, # chain_id - 1, # slip44 - "tRBTC", # shortcut - "RSK Testnet", # name - False, # rskip60 - ) - yield ( - 33, # chain_id - 60, # slip44 - "GooD", # shortcut - "GoodData", # name - False, # rskip60 - ) - yield ( - 35, # chain_id - 60, # slip44 - "TBG", # shortcut - "TBWG Chain", # name - False, # rskip60 - ) - yield ( - 36, # chain_id - 60, # slip44 - "DX", # shortcut - "Dxchain", # name - False, # rskip60 - ) - yield ( - 37, # chain_id - 60, # slip44 - "SEED", # shortcut - "SeedCoin-Network", # name - False, # rskip60 - ) - yield ( - 38, # chain_id - 538, # slip44 - "VAL", # shortcut - "Valorbit", # name - False, # rskip60 - ) - yield ( - 40, # chain_id - 60, # slip44 - "TLOS", # shortcut - "Telos EVM", # name - False, # rskip60 - ) - yield ( - 42, # chain_id - 1, # slip44 - "tETH", # shortcut - "Kovan", # name - False, # rskip60 - ) - yield ( - 44, # chain_id - 60, # slip44 - "CRAB", # shortcut - "Darwinia Crab Network", # name - False, # rskip60 - ) - yield ( - 46, # chain_id - 60, # slip44 - "RING", # shortcut - "Darwinia Network", # name - False, # rskip60 - ) - yield ( - 48, # chain_id - 60, # slip44 - "ETMP", # shortcut - "Ennothem", # name - False, # rskip60 - ) - yield ( - 50, # chain_id - 60, # slip44 - "XDC", # shortcut - "XinFin XDC Network", # name - False, # rskip60 - ) - yield ( - 51, # chain_id - 60, # slip44 - "TXDC", # shortcut - "XDC Apothem Network", # name - False, # rskip60 - ) - yield ( - 52, # chain_id - 60, # slip44 - "cet", # shortcut - "CoinEx Smart Chain", # name - False, # rskip60 - ) - yield ( - 54, # chain_id - 60, # slip44 - "BELLY", # shortcut - "Openpiece", # name - False, # rskip60 - ) - yield ( - 55, # chain_id - 60, # slip44 - "ZYX", # shortcut - "Zyx", # name - False, # rskip60 + "tETH", # symbol + "Görli", # name ) yield ( 56, # chain_id 714, # slip44 - "BNB", # shortcut + "BNB", # symbol "Binance Smart Chain", # name - False, # rskip60 - ) - yield ( - 58, # chain_id - 60, # slip44 - "ONG", # shortcut - "Ontology", # name - False, # rskip60 - ) - yield ( - 60, # chain_id - 6060, # slip44 - "GO", # shortcut - "GoChain", # name - False, # rskip60 ) yield ( 61, # chain_id 61, # slip44 - "ETC", # shortcut + "ETC", # symbol "Ethereum Classic", # name - False, # rskip60 - ) - yield ( - 62, # chain_id - 1, # slip44 - "TETC", # shortcut - "Ethereum Classic Testnet Morden", # name - False, # rskip60 - ) - yield ( - 63, # chain_id - 1, # slip44 - "tMETC", # shortcut - "Ethereum Classic Testnet Mordor", # name - False, # rskip60 - ) - yield ( - 66, # chain_id - 60, # slip44 - "OKT", # shortcut - "OKXChain", # name - False, # rskip60 - ) - yield ( - 67, # chain_id - 1, # slip44 - "tDBM", # shortcut - "DBChain Testnet", # name - False, # rskip60 - ) - yield ( - 68, # chain_id - 60, # slip44 - "SOTER", # shortcut - "SoterOne", # name - False, # rskip60 - ) - yield ( - 70, # chain_id - 1170, # slip44 - "HOO", # shortcut - "Hoo Smart Chain", # name - False, # rskip60 - ) - yield ( - 73, # chain_id - 60, # slip44 - "FNCY", # shortcut - "FNCY", # name - False, # rskip60 - ) - yield ( - 74, # chain_id - 60, # slip44 - "EIDI", # shortcut - "IDChain", # name - False, # rskip60 - ) - yield ( - 75, # chain_id - 60, # slip44 - "DEL", # shortcut - "Decimal Smart Chain", # name - False, # rskip60 - ) - yield ( - 76, # chain_id - 76, # slip44 - "MIX", # shortcut - "Mix", # name - False, # rskip60 - ) - yield ( - 77, # chain_id - 60, # slip44 - "SPOA", # shortcut - "POA Network Sokol", # name - False, # rskip60 - ) - yield ( - 78, # chain_id - 60, # slip44 - "PETH", # shortcut - "PrimusChain", # name - False, # rskip60 - ) - yield ( - 79, # chain_id - 60, # slip44 - "ZENITH", # shortcut - "Zenith", # name - False, # rskip60 - ) - yield ( - 80, # chain_id - 60, # slip44 - "RNA", # shortcut - "GeneChain", # name - False, # rskip60 - ) - yield ( - 82, # chain_id - 60, # slip44 - "MTR", # shortcut - "Meter", # name - False, # rskip60 - ) - yield ( - 87, # chain_id - 60, # slip44 - "SNT", # shortcut - "Nova Network", # name - False, # rskip60 - ) - yield ( - 88, # chain_id - 889, # slip44 - "TOMO", # shortcut - "TomoChain", # name - False, # rskip60 - ) - yield ( - 90, # chain_id - 60, # slip44 - "GAR", # shortcut - "Garizon Stage0", # name - False, # rskip60 - ) - yield ( - 96, # chain_id - 60, # slip44 - "KUB", # shortcut - "Bitkub Chain", # name - False, # rskip60 - ) - yield ( - 97, # chain_id - 1, # slip44 - "tBNB", # shortcut - "Binance Smart Chain Testnet", # name - False, # rskip60 - ) - yield ( - 99, # chain_id - 178, # slip44 - "POA", # shortcut - "POA Network Core", # name - False, # rskip60 - ) - yield ( - 100, # chain_id - 700, # slip44 - "xDAI", # shortcut - "Gnosis", # name - False, # rskip60 - ) - yield ( - 101, # chain_id - 464, # slip44 - "ETI", # shortcut - "EtherInc", # name - False, # rskip60 - ) - yield ( - 105, # chain_id - 60, # slip44 - "W3G", # shortcut - "Web3Games Devnet", # name - False, # rskip60 - ) - yield ( - 106, # chain_id - 60, # slip44 - "VLX", # shortcut - "Velas EVM", # name - False, # rskip60 - ) - yield ( - 108, # chain_id - 1001, # slip44 - "TT", # shortcut - "ThunderCore", # name - False, # rskip60 - ) - yield ( - 111, # chain_id - 60, # slip44 - "ETL", # shortcut - "EtherLite Chain", # name - False, # rskip60 - ) - yield ( - 113, # chain_id - 714, # slip44 - "Deh", # shortcut - "Dehvo", # name - False, # rskip60 - ) - yield ( - 119, # chain_id - 60, # slip44 - "NULS", # shortcut - "ENULS", # name - False, # rskip60 - ) - yield ( - 121, # chain_id - 714, # slip44 - "REAL", # shortcut - "Realchain", # name - False, # rskip60 - ) - yield ( - 122, # chain_id - 60, # slip44 - "FUSE", # shortcut - "Fuse", # name - False, # rskip60 - ) - yield ( - 123, # chain_id - 60, # slip44 - "SPARK", # shortcut - "Fuse Sparknet", # name - False, # rskip60 - ) - yield ( - 124, # chain_id - 60, # slip44 - "DWU", # shortcut - "Decentralized Web", # name - False, # rskip60 - ) - yield ( - 126, # chain_id - 126, # slip44 - "OY", # shortcut - "OYchain", # name - False, # rskip60 - ) - yield ( - 127, # chain_id - 127, # slip44 - "FETH", # shortcut - "Factory 127", # name - False, # rskip60 - ) - yield ( - 128, # chain_id - 1010, # slip44 - "HT", # shortcut - "Huobi ECO Chain", # name - False, # rskip60 ) yield ( 137, # chain_id 966, # slip44 - "MATIC", # shortcut + "MATIC", # symbol "Polygon", # name - False, # rskip60 - ) - yield ( - 142, # chain_id - 60, # slip44 - "DAX", # shortcut - "DAX CHAIN", # name - False, # rskip60 - ) - yield ( - 160, # chain_id - 60, # slip44 - "AMAX", # shortcut - "Armonia Eva Chain", # name - False, # rskip60 - ) - yield ( - 162, # chain_id - 1, # slip44 - "tPHT", # shortcut - "Lightstreams Testnet", # name - False, # rskip60 - ) - yield ( - 163, # chain_id - 60, # slip44 - "PHT", # shortcut - "Lightstreams", # name - False, # rskip60 - ) - yield ( - 168, # chain_id - 60, # slip44 - "AIOZ", # shortcut - "AIOZ Network", # name - False, # rskip60 - ) - yield ( - 180, # chain_id - 60, # slip44 - "AME", # shortcut - "AME Chain", # name - False, # rskip60 - ) - yield ( - 186, # chain_id - 60, # slip44 - "Seele", # shortcut - "Seele", # name - False, # rskip60 - ) - yield ( - 188, # chain_id - 60, # slip44 - "BTM", # shortcut - "BMC", # name - False, # rskip60 - ) - yield ( - 193, # chain_id - 60, # slip44 - "CEM", # shortcut - "Crypto Emergency", # name - False, # rskip60 - ) - yield ( - 199, # chain_id - 60, # slip44 - "BTT", # shortcut - "BitTorrent Chain", # name - False, # rskip60 - ) - yield ( - 211, # chain_id - 60, # slip44 - "0xF", # shortcut - "Freight Trust Network", # name - False, # rskip60 - ) - yield ( - 212, # chain_id - 1, # slip44 - "tMAP", # shortcut - "MAP Makalu", # name - False, # rskip60 - ) - yield ( - 222, # chain_id - 2221, # slip44 - "ASK", # shortcut - "Permission", # name - False, # rskip60 - ) - yield ( - 225, # chain_id - 60, # slip44 - "LA", # shortcut - "LACHAIN", # name - False, # rskip60 - ) - yield ( - 246, # chain_id - 246, # slip44 - "EWT", # shortcut - "Energy Web Chain", # name - False, # rskip60 - ) - yield ( - 250, # chain_id - 60, # slip44 - "FTM", # shortcut - "Fantom Opera", # name - False, # rskip60 - ) - yield ( - 256, # chain_id - 1, # slip44 - "thtt", # shortcut - "Huobi ECO Chain Testnet", # name - False, # rskip60 - ) - yield ( - 258, # chain_id - 60, # slip44 - "SETM", # shortcut - "Setheum", # name - False, # rskip60 - ) - yield ( - 262, # chain_id - 60, # slip44 - "SRN", # shortcut - "SUR Blockchain Network", # name - False, # rskip60 - ) - yield ( - 269, # chain_id - 269, # slip44 - "HPB", # shortcut - "High Performance Blockchain", # name - False, # rskip60 - ) - yield ( - 295, # chain_id - 3030, # slip44 - "HBAR", # shortcut - "Hedera", # name - False, # rskip60 - ) - yield ( - 300, # chain_id - 60, # slip44 - "xDAI", # shortcut - "Optimism on Gnosis", # name - False, # rskip60 - ) - yield ( - 311, # chain_id - 60, # slip44 - "OMAX", # shortcut - "Omax", # name - False, # rskip60 - ) - yield ( - 314, # chain_id - 461, # slip44 - "FIL", # shortcut - "Filecoin -", # name - False, # rskip60 - ) - yield ( - 321, # chain_id - 641, # slip44 - "KCS", # shortcut - "KCC", # name - False, # rskip60 - ) - yield ( - 333, # chain_id - 60, # slip44 - "W3Q", # shortcut - "Web3Q", # name - False, # rskip60 - ) - yield ( - 336, # chain_id - 60, # slip44 - "SDN", # shortcut - "Shiden", # name - False, # rskip60 - ) - yield ( - 369, # chain_id - 60, # slip44 - "PLS", # shortcut - "PulseChain", # name - False, # rskip60 - ) - yield ( - 385, # chain_id - 60, # slip44 - "LISINS", # shortcut - "Lisinski", # name - False, # rskip60 - ) - yield ( - 416, # chain_id - 60, # slip44 - "SX", # shortcut - "SX Network", # name - False, # rskip60 - ) - yield ( - 427, # chain_id - 60, # slip44 - "ZTH", # shortcut - "Zeeth Chain", # name - False, # rskip60 - ) - yield ( - 499, # chain_id - 499, # slip44 - "RUPX", # shortcut - "Rupaya", # name - False, # rskip60 - ) - yield ( - 500, # chain_id - 60, # slip44 - "CAM", # shortcut - "Camino C-Chain", # name - False, # rskip60 - ) - yield ( - 512, # chain_id - 1512, # slip44 - "AAC", # shortcut - "Double-A Chain", # name - False, # rskip60 - ) - yield ( - 516, # chain_id - 516, # slip44 - "GZN", # shortcut - "Gear Zero Network", # name - False, # rskip60 - ) - yield ( - 520, # chain_id - 60, # slip44 - "XT", # shortcut - "XT Smart Chain", # name - False, # rskip60 - ) - yield ( - 529, # chain_id - 60, # slip44 - "FIRE", # shortcut - "Firechain", # name - False, # rskip60 - ) - yield ( - 530, # chain_id - 60, # slip44 - "FX", # shortcut - "F(x)Core", # name - False, # rskip60 - ) - yield ( - 534, # chain_id - 674, # slip44 - "CNDL", # shortcut - "Candle", # name - False, # rskip60 - ) - yield ( - 555, # chain_id - 60, # slip44 - "CLASS", # shortcut - "Vela1 Chain", # name - False, # rskip60 - ) - yield ( - 558, # chain_id - 60, # slip44 - "TAO", # shortcut - "Tao Network", # name - False, # rskip60 - ) - yield ( - 592, # chain_id - 60, # slip44 - "ASTR", # shortcut - "Astar", # name - False, # rskip60 - ) - yield ( - 595, # chain_id - 1, # slip44 - "tmACA", # shortcut - "Acala Mandala Testnet", # name - False, # rskip60 - ) - yield ( - 614, # chain_id - 60, # slip44 - "GLQ", # shortcut - "Graphlinq Blockchain", # name - False, # rskip60 - ) - yield ( - 648, # chain_id - 60, # slip44 - "ACE", # shortcut - "Endurance Smart Chain", # name - False, # rskip60 - ) - yield ( - 686, # chain_id - 686, # slip44 - "KAR", # shortcut - "Karura Network", # name - False, # rskip60 - ) - yield ( - 707, # chain_id - 60, # slip44 - "BCS", # shortcut - "BlockChain Station", # name - False, # rskip60 - ) - yield ( - 721, # chain_id - 60, # slip44 - "LYC", # shortcut - "Lycan Chain", # name - False, # rskip60 - ) - yield ( - 766, # chain_id - 60, # slip44 - "QOM", # shortcut - "QL1", # name - False, # rskip60 - ) - yield ( - 777, # chain_id - 60, # slip44 - "cTH", # shortcut - "cheapETH", # name - False, # rskip60 - ) - yield ( - 787, # chain_id - 787, # slip44 - "ACA", # shortcut - "Acala Network", # name - False, # rskip60 - ) - yield ( - 800, # chain_id - 60, # slip44 - "LUCID", # shortcut - "Lucid Blockchain", # name - False, # rskip60 - ) - yield ( - 803, # chain_id - 60, # slip44 - "HAIC", # shortcut - "Haic", # name - False, # rskip60 - ) - yield ( - 813, # chain_id - 813, # slip44 - "MEER", # shortcut - "Qitmeer", # name - False, # rskip60 - ) - yield ( - 820, # chain_id - 820, # slip44 - "CLO", # shortcut - "Callisto", # name - False, # rskip60 - ) - yield ( - 821, # chain_id - 1, # slip44 - "TCLO", # shortcut - "Callisto Testnet Deprecated", # name - False, # rskip60 - ) - yield ( - 868, # chain_id - 60, # slip44 - "FST", # shortcut - "Fantasia Chain", # name - False, # rskip60 - ) - yield ( - 877, # chain_id - 60, # slip44 - "DXT", # shortcut - "Dexit Network", # name - False, # rskip60 - ) - yield ( - 880, # chain_id - 60, # slip44 - "AMBROS", # shortcut - "Ambros Chain", # name - False, # rskip60 - ) - yield ( - 888, # chain_id - 5718350, # slip44 - "WAN", # shortcut - "Wanchain", # name - False, # rskip60 - ) - yield ( - 909, # chain_id - 60, # slip44 - "PFT", # shortcut - "Portal Fantasy Chain", # name - False, # rskip60 - ) - yield ( - 972, # chain_id - 60, # slip44 - "CCNA", # shortcut - "Oort Ascraeus", # name - False, # rskip60 - ) - yield ( - 977, # chain_id - 60, # slip44 - "YETI", # shortcut - "Nepal Blockchain Network", # name - False, # rskip60 - ) - yield ( - 985, # chain_id - 60, # slip44 - "CMEMO", # shortcut - "Memo Smart Chain", # name - False, # rskip60 - ) - yield ( - 998, # chain_id - 60, # slip44 - "L99", # shortcut - "Lucky Network", # name - False, # rskip60 - ) - yield ( - 1000, # chain_id - 60, # slip44 - "GCD", # shortcut - "GTON", # name - False, # rskip60 - ) - yield ( - 1001, # chain_id - 1, # slip44 - "tKLAY", # shortcut - "Klaytn Testnet Baobab", # name - False, # rskip60 - ) - yield ( - 1004, # chain_id - 1, # slip44 - "T-EKTA", # shortcut - "T-EKTA", # name - False, # rskip60 - ) - yield ( - 1007, # chain_id - 1, # slip44 - "tNEW", # shortcut - "Newton Testnet", # name - False, # rskip60 - ) - yield ( - 1008, # chain_id - 60, # slip44 - "EUN", # shortcut - "Eurus", # name - False, # rskip60 - ) - yield ( - 1010, # chain_id - 1020, # slip44 - "EVC", # shortcut - "Evrice Network", # name - False, # rskip60 - ) - yield ( - 1012, # chain_id - 60, # slip44 - "NEW", # shortcut - "Newton", # name - False, # rskip60 - ) - yield ( - 1022, # chain_id - 60, # slip44 - "SKU", # shortcut - "Sakura", # name - False, # rskip60 - ) - yield ( - 1024, # chain_id - 60, # slip44 - "CLV", # shortcut - "CLV Parachain", # name - False, # rskip60 - ) - yield ( - 1030, # chain_id - 60, # slip44 - "CFX", # shortcut - "Conflux eSpace", # name - False, # rskip60 - ) - yield ( - 1088, # chain_id - 60, # slip44 - "METIS", # shortcut - "Metis Andromeda", # name - False, # rskip60 - ) - yield ( - 1099, # chain_id - 314, # slip44 - "mc", # shortcut - "MOAC", # name - False, # rskip60 - ) - yield ( - 1111, # chain_id - 60, # slip44 - "WEMIX", # shortcut - "WEMIX3.0", # name - False, # rskip60 - ) - yield ( - 1116, # chain_id - 60, # slip44 - "CORE", # shortcut - "Core Blockchain", # name - False, # rskip60 - ) - yield ( - 1117, # chain_id - 60, # slip44 - "DOGS", # shortcut - "Dogcoin", # name - False, # rskip60 - ) - yield ( - 1130, # chain_id - 1130, # slip44 - "DFI", # shortcut - "DeFiChain EVM Network", # name - False, # rskip60 - ) - yield ( - 1139, # chain_id - 60, # slip44 - "MATH", # shortcut - "MathChain", # name - False, # rskip60 - ) - yield ( - 1140, # chain_id - 1, # slip44 - "tMATH", # shortcut - "MathChain Testnet", # name - False, # rskip60 - ) - yield ( - 1197, # chain_id - 60, # slip44 - "IORA", # shortcut - "Iora Chain", # name - False, # rskip60 - ) - yield ( - 1202, # chain_id - 60, # slip44 - "WTT", # shortcut - "World Trade Technical Chain", # name - False, # rskip60 - ) - yield ( - 1213, # chain_id - 60, # slip44 - "POP", # shortcut - "Popcateum", # name - False, # rskip60 - ) - yield ( - 1214, # chain_id - 60, # slip44 - "ENTER", # shortcut - "EnterChain", # name - False, # rskip60 - ) - yield ( - 1229, # chain_id - 60, # slip44 - "XZO", # shortcut - "Exzo Network", # name - False, # rskip60 - ) - yield ( - 1231, # chain_id - 60, # slip44 - "ULX", # shortcut - "Ultron", # name - False, # rskip60 - ) - yield ( - 1234, # chain_id - 60, # slip44 - "FITFI", # shortcut - "Step Network", # name - False, # rskip60 - ) - yield ( - 1246, # chain_id - 60, # slip44 - "OM", # shortcut - "OM Platform", # name - False, # rskip60 - ) - yield ( - 1280, # chain_id - 60, # slip44 - "HO", # shortcut - "HALO", # name - False, # rskip60 - ) - yield ( - 1284, # chain_id - 60, # slip44 - "GLMR", # shortcut - "Moonbeam", # name - False, # rskip60 - ) - yield ( - 1285, # chain_id - 60, # slip44 - "MOVR", # shortcut - "Moonriver", # name - False, # rskip60 - ) - yield ( - 1287, # chain_id - 60, # slip44 - "DEV", # shortcut - "Moonbase Alpha", # name - False, # rskip60 - ) - yield ( - 1288, # chain_id - 60, # slip44 - "ROC", # shortcut - "Moonrock", # name - False, # rskip60 - ) - yield ( - 1311, # chain_id - 60, # slip44 - "DOS", # shortcut - "Dos Fuji Subnet", # name - False, # rskip60 - ) - yield ( - 1314, # chain_id - 60, # slip44 - "ALYX", # shortcut - "Alyx", # name - False, # rskip60 - ) - yield ( - 1319, # chain_id - 60, # slip44 - "AITD", # shortcut - "Aitd", # name - False, # rskip60 - ) - yield ( - 1339, # chain_id - 60, # slip44 - "LAVA", # shortcut - "Elysium", # name - False, # rskip60 - ) - yield ( - 1353, # chain_id - 60, # slip44 - "CIC", # shortcut - "CIC Chain", # name - False, # rskip60 - ) - yield ( - 1388, # chain_id - 60, # slip44 - "SINSO", # shortcut - "AmStar", # name - False, # rskip60 - ) - yield ( - 1455, # chain_id - 60, # slip44 - "CTEX", # shortcut - "Ctex Scan Blockchain", # name - False, # rskip60 - ) - yield ( - 1506, # chain_id - 60, # slip44 - "KSX", # shortcut - "Sherpax", # name - False, # rskip60 - ) - yield ( - 1515, # chain_id - 60, # slip44 - "BG", # shortcut - "Beagle Messaging Chain", # name - False, # rskip60 - ) - yield ( - 1618, # chain_id - 60, # slip44 - "CATE", # shortcut - "Catecoin Chain", # name - False, # rskip60 - ) - yield ( - 1657, # chain_id - 60, # slip44 - "BTA", # shortcut - "Btachain", # name - False, # rskip60 - ) - yield ( - 1688, # chain_id - 60, # slip44 - "LUDAN", # shortcut - "LUDAN", # name - False, # rskip60 - ) - yield ( - 1701, # chain_id - 60, # slip44 - "ANY", # shortcut - "Anytype EVM Chain", # name - False, # rskip60 - ) - yield ( - 1707, # chain_id - 60, # slip44 - "JINDA", # shortcut - "TBSI", # name - False, # rskip60 - ) - yield ( - 1804, # chain_id - 1, # slip44 - "tCRC", # shortcut - "Kerleano", # name - False, # rskip60 - ) - yield ( - 1818, # chain_id - 1818, # slip44 - "CUBE", # shortcut - "Cube Chain", # name - False, # rskip60 - ) - yield ( - 1856, # chain_id - 60, # slip44 - "TSF", # shortcut - "Teslafunds", # name - False, # rskip60 - ) - yield ( - 1898, # chain_id - 60, # slip44 - "BOY", # shortcut - "BON Network", # name - False, # rskip60 - ) - yield ( - 1907, # chain_id - 60, # slip44 - "BITCI", # shortcut - "Bitcichain", # name - False, # rskip60 - ) - yield ( - 1951, # chain_id - 60, # slip44 - "DOINX", # shortcut - "D-Chain", # name - False, # rskip60 - ) - yield ( - 1971, # chain_id - 60, # slip44 - "ATLR", # shortcut - "Atelier", # name - False, # rskip60 - ) - yield ( - 1975, # chain_id - 60, # slip44 - "ONUS", # shortcut - "ONUS Chain", # name - False, # rskip60 - ) - yield ( - 1987, # chain_id - 1987, # slip44 - "EGEM", # shortcut - "EtherGem", # name - False, # rskip60 - ) - yield ( - 1994, # chain_id - 60, # slip44 - "EKTA", # shortcut - "Ekta", # name - False, # rskip60 - ) - yield ( - 2001, # chain_id - 60, # slip44 - "mADA", # shortcut - "Milkomeda C1", # name - False, # rskip60 - ) - yield ( - 2002, # chain_id - 60, # slip44 - "mALGO", # shortcut - "Milkomeda A1", # name - False, # rskip60 - ) - yield ( - 2009, # chain_id - 60, # slip44 - "CWN", # shortcut - "CloudWalk", # name - False, # rskip60 - ) - yield ( - 2016, # chain_id - 60, # slip44 - "NetZ", # shortcut - "MainnetZ", # name - False, # rskip60 - ) - yield ( - 2021, # chain_id - 60, # slip44 - "EDG", # shortcut - "Edgeware", # name - False, # rskip60 - ) - yield ( - 2025, # chain_id - 1008, # slip44 - "RPG", # shortcut - "Rangers Protocol", # name - False, # rskip60 - ) - yield ( - 2043, # chain_id - 60, # slip44 - "OTP", # shortcut - "OriginTrail Parachain", # name - False, # rskip60 - ) - yield ( - 2048, # chain_id - 60, # slip44 - "STOS", # shortcut - "Stratos", # name - False, # rskip60 - ) - yield ( - 2077, # chain_id - 60, # slip44 - "QKA", # shortcut - "Quokkacoin", # name - False, # rskip60 - ) - yield ( - 2100, # chain_id - 60, # slip44 - "ECO", # shortcut - "Ecoball", # name - False, # rskip60 - ) - yield ( - 2109, # chain_id - 2109, # slip44 - "SAMA", # shortcut - "Exosama Network", # name - False, # rskip60 - ) - yield ( - 2122, # chain_id - 60, # slip44 - "METAD", # shortcut - "Metaplayerone", # name - False, # rskip60 - ) - yield ( - 2151, # chain_id - 60, # slip44 - "BOA", # shortcut - "BOSagora", # name - False, # rskip60 - ) - yield ( - 2203, # chain_id - 60, # slip44 - "eBTC", # shortcut - "Bitcoin EVM", # name - False, # rskip60 - ) - yield ( - 2213, # chain_id - 60, # slip44 - "EVA", # shortcut - "Evanesco", # name - False, # rskip60 - ) - yield ( - 2222, # chain_id - 60, # slip44 - "KAVA", # shortcut - "Kava EVM", # name - False, # rskip60 - ) - yield ( - 2223, # chain_id - 60, # slip44 - "VNDT", # shortcut - "VChain", # name - False, # rskip60 - ) - yield ( - 2300, # chain_id - 60, # slip44 - "BOMB", # shortcut - "BOMB Chain", # name - False, # rskip60 - ) - yield ( - 2309, # chain_id - 60, # slip44 - "ARÉV", # shortcut - "Arevia", # name - False, # rskip60 - ) - yield ( - 2330, # chain_id - 60, # slip44 - "ALT", # shortcut - "Altcoinchain", # name - False, # rskip60 - ) - yield ( - 2415, # chain_id - 60, # slip44 - "XODEX", # shortcut - "XODEX", # name - False, # rskip60 - ) - yield ( - 2559, # chain_id - 60, # slip44 - "KTO", # shortcut - "Kortho", # name - False, # rskip60 - ) - yield ( - 2569, # chain_id - 60, # slip44 - "TPC", # shortcut - "TechPay", # name - False, # rskip60 - ) - yield ( - 2606, # chain_id - 60, # slip44 - "CRC", # shortcut - "PoCRNet", # name - False, # rskip60 - ) - yield ( - 2611, # chain_id - 60, # slip44 - "REDLC", # shortcut - "Redlight Chain", # name - False, # rskip60 - ) - yield ( - 2612, # chain_id - 60, # slip44 - "EZC", # shortcut - "EZChain C-Chain", # name - False, # rskip60 - ) - yield ( - 2999, # chain_id - 60, # slip44 - "BTY", # shortcut - "BitYuan", # name - False, # rskip60 - ) - yield ( - 3000, # chain_id - 60, # slip44 - "CPAY", # shortcut - "CENNZnet Rata", # name - False, # rskip60 - ) - yield ( - 3001, # chain_id - 60, # slip44 - "CPAY", # shortcut - "CENNZnet Nikau", # name - False, # rskip60 - ) - yield ( - 3031, # chain_id - 60, # slip44 - "ORL", # shortcut - "Orlando Chain", # name - False, # rskip60 - ) - yield ( - 3068, # chain_id - 60, # slip44 - "BFC", # shortcut - "Bifrost", # name - False, # rskip60 - ) - yield ( - 3400, # chain_id - 60, # slip44 - "PRB", # shortcut - "Paribu Net", # name - False, # rskip60 - ) - yield ( - 3501, # chain_id - 60, # slip44 - "jfin", # shortcut - "JFIN Chain", # name - False, # rskip60 - ) - yield ( - 3601, # chain_id - 60, # slip44 - "PTX", # shortcut - "PandoProject", # name - False, # rskip60 - ) - yield ( - 3666, # chain_id - 60, # slip44 - "J", # shortcut - "Metacodechain", # name - False, # rskip60 - ) - yield ( - 3693, # chain_id - 60, # slip44 - "EMPIRE", # shortcut - "Empire Network", # name - False, # rskip60 - ) - yield ( - 3737, # chain_id - 60, # slip44 - "CSB", # shortcut - "Crossbell", # name - False, # rskip60 - ) - yield ( - 3912, # chain_id - 60, # slip44 - "DRAC", # shortcut - "DRAC Network", # name - False, # rskip60 - ) - yield ( - 3966, # chain_id - 60, # slip44 - "DYNO", # shortcut - "DYNO", # name - False, # rskip60 - ) - yield ( - 3999, # chain_id - 60, # slip44 - "YCC", # shortcut - "YuanChain", # name - False, # rskip60 - ) - yield ( - 4099, # chain_id - 60, # slip44 - "$BNI", # shortcut - "Bitindi", # name - False, # rskip60 - ) - yield ( - 4444, # chain_id - 60, # slip44 - "HTML", # shortcut - "Htmlcoin", # name - False, # rskip60 - ) - yield ( - 4689, # chain_id - 60, # slip44 - "IOTX", # shortcut - "IoTeX Network", # name - False, # rskip60 - ) - yield ( - 4919, # chain_id - 60, # slip44 - "XVM", # shortcut - "Venidium", # name - False, # rskip60 - ) - yield ( - 4999, # chain_id - 60, # slip44 - "BXN", # shortcut - "BlackFort Exchange Network", # name - False, # rskip60 - ) - yield ( - 5000, # chain_id - 60, # slip44 - "BIT", # shortcut - "Mantle", # name - False, # rskip60 - ) - yield ( - 5177, # chain_id - 60, # slip44 - "TLC", # shortcut - "TLChain Network", # name - False, # rskip60 - ) - yield ( - 5197, # chain_id - 60, # slip44 - "ES", # shortcut - "EraSwap", # name - False, # rskip60 - ) - yield ( - 5234, # chain_id - 60, # slip44 - "HMND", # shortcut - "Humanode", # name - False, # rskip60 - ) - yield ( - 5315, # chain_id - 60, # slip44 - "UZMI", # shortcut - "Uzmi Network", # name - False, # rskip60 - ) - yield ( - 5869, # chain_id - 60, # slip44 - "RBD", # shortcut - "Wegochain Rubidium", # name - False, # rskip60 - ) - yield ( - 6626, # chain_id - 60, # slip44 - "PIX", # shortcut - "Pixie Chain", # name - False, # rskip60 - ) - yield ( - 6789, # chain_id - 60, # slip44 - "STAND", # shortcut - "Gold Smart Chain", # name - False, # rskip60 - ) - yield ( - 6969, # chain_id - 60, # slip44 - "TOMB", # shortcut - "Tomb Chain", # name - False, # rskip60 - ) - yield ( - 6999, # chain_id - 60, # slip44 - "PSC", # shortcut - "PolySmartChain", # name - False, # rskip60 - ) - yield ( - 7000, # chain_id - 60, # slip44 - "ZETA", # shortcut - "ZetaChain", # name - False, # rskip60 - ) - yield ( - 7070, # chain_id - 60, # slip44 - "PLQ", # shortcut - "Planq", # name - False, # rskip60 - ) - yield ( - 7700, # chain_id - 60, # slip44 - "CANTO", # shortcut - "Canto", # name - False, # rskip60 - ) - yield ( - 8000, # chain_id - 60, # slip44 - "TELE", # shortcut - "Teleport", # name - False, # rskip60 - ) - yield ( - 8098, # chain_id - 60, # slip44 - "SmuX", # shortcut - "StreamuX Blockchain", # name - False, # rskip60 - ) - yield ( - 8217, # chain_id - 8217, # slip44 - "KLAY", # shortcut - "Klaytn", # name - False, # rskip60 - ) - yield ( - 8272, # chain_id - 60, # slip44 - "BTON", # shortcut - "Blockton Blockchain", # name - False, # rskip60 - ) - yield ( - 8723, # chain_id - 479, # slip44 - "OLO", # shortcut - "TOOL Global", # name - False, # rskip60 - ) - yield ( - 8738, # chain_id - 60, # slip44 - "ALPH", # shortcut - "Alph Network", # name - False, # rskip60 - ) - yield ( - 8768, # chain_id - 60, # slip44 - "TMY", # shortcut - "TMY Chain", # name - False, # rskip60 - ) - yield ( - 8848, # chain_id - 60, # slip44 - "MARO", # shortcut - "MARO Blockchain", # name - False, # rskip60 - ) - yield ( - 8880, # chain_id - 60, # slip44 - "UNQ", # shortcut - "Unique", # name - False, # rskip60 - ) - yield ( - 8888, # chain_id - 60, # slip44 - "XETA", # shortcut - "XANAChain", # name - False, # rskip60 - ) - yield ( - 8889, # chain_id - 60, # slip44 - "VSC", # shortcut - "Vyvo Smart Chain", # name - False, # rskip60 - ) - yield ( - 8898, # chain_id - 60, # slip44 - "MMT", # shortcut - "Mammoth", # name - False, # rskip60 - ) - yield ( - 8899, # chain_id - 60, # slip44 - "JBC", # shortcut - "JIBCHAIN L1", # name - False, # rskip60 - ) - yield ( - 8989, # chain_id - 60, # slip44 - "GMMT", # shortcut - "Giant Mammoth", # name - False, # rskip60 - ) - yield ( - 8995, # chain_id - 60, # slip44 - "U+25B3", # shortcut - "bloxberg", # name - False, # rskip60 - ) - yield ( - 9001, # chain_id - 60, # slip44 - "EVMOS", # shortcut - "Evmos", # name - False, # rskip60 - ) - yield ( - 9012, # chain_id - 60, # slip44 - "BRB", # shortcut - "BerylBit", # name - False, # rskip60 - ) - yield ( - 9100, # chain_id - 60, # slip44 - "GNC", # shortcut - "Genesis Coin", # name - False, # rskip60 - ) - yield ( - 10101, # chain_id - 60, # slip44 - "GEN", # shortcut - "Blockchain Genesis", # name - False, # rskip60 - ) - yield ( - 10248, # chain_id - 60, # slip44 - "0XT", # shortcut - "0XTade", # name - False, # rskip60 - ) - yield ( - 10507, # chain_id - 60, # slip44 - "NUM", # shortcut - "Numbers", # name - False, # rskip60 - ) - yield ( - 10823, # chain_id - 60, # slip44 - "CCP", # shortcut - "CryptoCoinPay", # name - False, # rskip60 - ) - yield ( - 10946, # chain_id - 60, # slip44 - "QDC", # shortcut - "Quadrans Blockchain", # name - False, # rskip60 - ) - yield ( - 11110, # chain_id - 60, # slip44 - "ASA", # shortcut - "Astra", # name - False, # rskip60 - ) - yield ( - 11111, # chain_id - 60, # slip44 - "WGM", # shortcut - "WAGMI", # name - False, # rskip60 - ) - yield ( - 11235, # chain_id - 60, # slip44 - "ISLM", # shortcut - "Haqq Network", # name - False, # rskip60 - ) - yield ( - 11888, # chain_id - 60, # slip44 - "nSAN", # shortcut - "SanR Chain", # name - False, # rskip60 - ) - yield ( - 12052, # chain_id - 621, # slip44 - "ZERO", # shortcut - "Singularity ZERO", # name - False, # rskip60 - ) - yield ( - 13000, # chain_id - 60, # slip44 - "ECG", # shortcut - "SPS", # name - False, # rskip60 - ) - yield ( - 13308, # chain_id - 60, # slip44 - "CREDIT", # shortcut - "Credit Smartchain", # name - False, # rskip60 - ) - yield ( - 13381, # chain_id - 60, # slip44 - "PHX", # shortcut - "Phoenix", # name - False, # rskip60 - ) - yield ( - 13812, # chain_id - 60, # slip44 - "OPN", # shortcut - "Susono", # name - False, # rskip60 - ) - yield ( - 16000, # chain_id - 60, # slip44 - "MTT", # shortcut - "MetaDot", # name - False, # rskip60 - ) - yield ( - 16718, # chain_id - 60, # slip44 - "AMB", # shortcut - "AirDAO", # name - False, # rskip60 - ) - yield ( - 18159, # chain_id - 60, # slip44 - "POM", # shortcut - "Proof Of Memes", # name - False, # rskip60 - ) - yield ( - 19845, # chain_id - 60, # slip44 - "BTCIX", # shortcut - "BTCIX Network", # name - False, # rskip60 - ) - yield ( - 20736, # chain_id - 60, # slip44 - "hP2", # shortcut - "P12 Chain", # name - False, # rskip60 - ) - yield ( - 21337, # chain_id - 60, # slip44 - "CPAY", # shortcut - "CENNZnet Azalea", # name - False, # rskip60 - ) - yield ( - 21816, # chain_id - 60, # slip44 - "OMC", # shortcut - "omChain", # name - False, # rskip60 - ) - yield ( - 22023, # chain_id - 60, # slip44 - "SFL", # shortcut - "Taycan", # name - False, # rskip60 - ) - yield ( - 22776, # chain_id - 60, # slip44 - "MAP", # shortcut - "MAP", # name - False, # rskip60 - ) - yield ( - 24484, # chain_id - 227, # slip44 - "WEB", # shortcut - "Webchain", # name - False, # rskip60 - ) - yield ( - 24734, # chain_id - 60, # slip44 - "MINTME", # shortcut - "MintMe.com Coin", # name - False, # rskip60 - ) - yield ( - 25888, # chain_id - 60, # slip44 - "GOLDT", # shortcut - "Hammer Chain", # name - False, # rskip60 - ) - yield ( - 26600, # chain_id - 60, # slip44 - "HTZ", # shortcut - "Hertz Network", # name - False, # rskip60 - ) - yield ( - 26863, # chain_id - 60, # slip44 - "OAC", # shortcut - "OasisChain", # name - False, # rskip60 - ) - yield ( - 31102, # chain_id - 31102, # slip44 - "ESN", # shortcut - "Ethersocial Network", # name - False, # rskip60 - ) - yield ( - 31223, # chain_id - 60, # slip44 - "CLD", # shortcut - "CloudTx", # name - False, # rskip60 - ) - yield ( - 32520, # chain_id - 60, # slip44 - "Brise", # shortcut - "Bitgert", # name - False, # rskip60 - ) - yield ( - 32659, # chain_id - 288, # slip44 - "FSN", # shortcut - "Fusion", # name - False, # rskip60 - ) - yield ( - 33333, # chain_id - 60, # slip44 - "AVS", # shortcut - "Aves", # name - False, # rskip60 - ) - yield ( - 35011, # chain_id - 60, # slip44 - "taro", # shortcut - "J2O Taro", # name - False, # rskip60 - ) - yield ( - 39797, # chain_id - 39797, # slip44 - "NRG", # shortcut - "Energi", # name - False, # rskip60 - ) - yield ( - 39815, # chain_id - 60, # slip44 - "OHO", # shortcut - "OHO", # name - False, # rskip60 - ) - yield ( - 41500, # chain_id - 60, # slip44 - "OXYN", # shortcut - "Opulent-X BETA", # name - False, # rskip60 - ) - yield ( - 42069, # chain_id - 60, # slip44 - "peggle", # shortcut - "pegglecoin", # name - False, # rskip60 - ) - yield ( - 42220, # chain_id - 60, # slip44 - "CELO", # shortcut - "Celo", # name - False, # rskip60 - ) - yield ( - 43113, # chain_id - 1, # slip44 - "tAVAX", # shortcut - "Avalanche Fuji Testnet", # name - False, # rskip60 - ) - yield ( - 43114, # chain_id - 9005, # slip44 - "AVAX", # shortcut - "Avalanche C-Chain", # name - False, # rskip60 - ) - yield ( - 44444, # chain_id - 60, # slip44 - "FREN", # shortcut - "Frenchain", # name - False, # rskip60 - ) - yield ( - 44787, # chain_id - 1, # slip44 - "tCELO", # shortcut - "Celo Alfajores Testnet", # name - False, # rskip60 - ) - yield ( - 45000, # chain_id - 60, # slip44 - "TXL", # shortcut - "Autobahn Network", # name - False, # rskip60 - ) - yield ( - 47805, # chain_id - 60, # slip44 - "REI", # shortcut - "REI Network", # name - False, # rskip60 - ) - yield ( - 49049, # chain_id - 1, # slip44 - "tWIRE", # shortcut - "Floripa", # name - False, # rskip60 - ) - yield ( - 49797, # chain_id - 1, # slip44 - "tNRG", # shortcut - "Energi Testnet", # name - False, # rskip60 - ) - yield ( - 51712, # chain_id - 60, # slip44 - "SRDX", # shortcut - "Sardis", # name - False, # rskip60 - ) - yield ( - 53935, # chain_id - 60, # slip44 - "JEWEL", # shortcut - "DFK Chain", # name - False, # rskip60 - ) - yield ( - 61803, # chain_id - 60, # slip44 - "EGAZ", # shortcut - "Etica", # name - False, # rskip60 - ) - yield ( - 61916, # chain_id - 60, # slip44 - "DKN", # shortcut - "DoKEN Super Chain", # name - False, # rskip60 - ) - yield ( - 62320, # chain_id - 1, # slip44 - "tCELO", # shortcut - "Celo Baklava Testnet", # name - False, # rskip60 - ) - yield ( - 62621, # chain_id - 60, # slip44 - "MTV", # shortcut - "MultiVAC", # name - False, # rskip60 - ) - yield ( - 63000, # chain_id - 60, # slip44 - "ECS", # shortcut - "eCredits", # name - False, # rskip60 - ) - yield ( - 71402, # chain_id - 60, # slip44 - "pCKB", # shortcut - "Godwoken", # name - False, # rskip60 - ) - yield ( - 73799, # chain_id - 1, # slip44 - "tVT", # shortcut - "Energy Web Volta Testnet", # name - False, # rskip60 - ) - yield ( - 75000, # chain_id - 60, # slip44 - "RESIN", # shortcut - "ResinCoin", # name - False, # rskip60 - ) - yield ( - 77612, # chain_id - 60, # slip44 - "VNT", # shortcut - "Vention Smart Chain", # name - False, # rskip60 - ) - yield ( - 78110, # chain_id - 60, # slip44 - "FIN", # shortcut - "Firenze test network", # name - False, # rskip60 - ) - yield ( - 80001, # chain_id - 1, # slip44 - "tMATIC", # shortcut - "Mumbai", # name - False, # rskip60 - ) - yield ( - 88888, # chain_id - 60, # slip44 - "IVAR", # shortcut - "IVAR Chain", # name - False, # rskip60 - ) - yield ( - 90210, # chain_id - 1, # slip44 - "tBVE", # shortcut - "Beverly Hills", # name - False, # rskip60 - ) - yield ( - 99999, # chain_id - 60, # slip44 - "UBC", # shortcut - "UB Smart Chain", # name - False, # rskip60 - ) - yield ( - 100000, # chain_id - 60, # slip44 - "QKC", # shortcut - "QuarkChain", # name - False, # rskip60 - ) - yield ( - 100001, # chain_id - 60, # slip44 - "QKC", # shortcut - "QuarkChain", # name - False, # rskip60 - ) - yield ( - 100002, # chain_id - 60, # slip44 - "QKC", # shortcut - "QuarkChain", # name - False, # rskip60 - ) - yield ( - 100003, # chain_id - 60, # slip44 - "QKC", # shortcut - "QuarkChain", # name - False, # rskip60 - ) - yield ( - 100004, # chain_id - 60, # slip44 - "QKC", # shortcut - "QuarkChain", # name - False, # rskip60 - ) - yield ( - 100005, # chain_id - 60, # slip44 - "QKC", # shortcut - "QuarkChain", # name - False, # rskip60 - ) - yield ( - 100006, # chain_id - 60, # slip44 - "QKC", # shortcut - "QuarkChain", # name - False, # rskip60 - ) - yield ( - 100007, # chain_id - 60, # slip44 - "QKC", # shortcut - "QuarkChain", # name - False, # rskip60 - ) - yield ( - 100008, # chain_id - 60, # slip44 - "QKC", # shortcut - "QuarkChain", # name - False, # rskip60 - ) - yield ( - 100009, # chain_id - 60, # slip44 - "VET", # shortcut - "VeChain", # name - False, # rskip60 - ) - yield ( - 103090, # chain_id - 60, # slip44 - "◈", # shortcut - "Crystaleum", # name - False, # rskip60 - ) - yield ( - 131419, # chain_id - 60, # slip44 - "ETND", # shortcut - "ETND Chain", # name - False, # rskip60 - ) - yield ( - 188881, # chain_id - 60, # slip44 - "CONDOR", # shortcut - "Condor Test Network", # name - False, # rskip60 - ) - yield ( - 200625, # chain_id - 200625, # slip44 - "AKA", # shortcut - "Akroma", # name - False, # rskip60 - ) - yield ( - 201018, # chain_id - 60, # slip44 - "atp", # shortcut - "Alaya", # name - False, # rskip60 - ) - yield ( - 201804, # chain_id - 60, # slip44 - "MYTH", # shortcut - "Mythical Chain", # name - False, # rskip60 - ) - yield ( - 202624, # chain_id - 1, # slip44 - "TWL", # shortcut - "Jellie", # name - False, # rskip60 - ) - yield ( - 210425, # chain_id - 60, # slip44 - "lat", # shortcut - "PlatON", # name - False, # rskip60 - ) - yield ( - 220315, # chain_id - 60, # slip44 - "MAS", # shortcut - "Mas", # name - False, # rskip60 - ) - yield ( - 246529, # chain_id - 246529, # slip44 - "ATS", # shortcut - "ARTIS sigma1", # name - False, # rskip60 - ) - yield ( - 246785, # chain_id - 1, # slip44 - "tATS", # shortcut - "ARTIS Testnet tau1", # name - False, # rskip60 - ) - yield ( - 256256, # chain_id - 60, # slip44 - "CMP", # shortcut - "CMP-Mainnet", # name - False, # rskip60 - ) - yield ( - 281121, # chain_id - 60, # slip44 - "$OC", # shortcut - "Social Smart Chain", # name - False, # rskip60 - ) - yield ( - 333999, # chain_id - 60, # slip44 - "POLIS", # shortcut - "Polis", # name - False, # rskip60 - ) - yield ( - 420420, # chain_id - 60, # slip44 - "KEK", # shortcut - "Kekchain", # name - False, # rskip60 - ) - yield ( - 420666, # chain_id - 60, # slip44 - "tKEK", # shortcut - "Kekchain (kektest)", # name - False, # rskip60 - ) - yield ( - 432204, # chain_id - 60, # slip44 - "ALOT", # shortcut - "Dexalot Subnet", # name - False, # rskip60 - ) - yield ( - 474142, # chain_id - 60, # slip44 - "OPC", # shortcut - "OpenChain", # name - False, # rskip60 - ) - yield ( - 513100, # chain_id - 60, # slip44 - "ETHF", # shortcut - "ethereum Fair", # name - False, # rskip60 - ) - yield ( - 641230, # chain_id - 60, # slip44 - "BRNKC", # shortcut - "Bear Network Chain", # name - False, # rskip60 - ) - yield ( - 800001, # chain_id - 60, # slip44 - "OCTA", # shortcut - "OctaSpace", # name - False, # rskip60 - ) - yield ( - 846000, # chain_id - 60, # slip44 - "APTA", # shortcut - "4GoodNetwork", # name - False, # rskip60 - ) - yield ( - 888888, # chain_id - 60, # slip44 - "VS", # shortcut - "Vision -", # name - False, # rskip60 - ) - yield ( - 955305, # chain_id - 1011, # slip44 - "ELV", # shortcut - "Eluvio Content Fabric", # name - False, # rskip60 - ) - yield ( - 1313114, # chain_id - 1313114, # slip44 - "ETHO", # shortcut - "Etho Protocol", # name - False, # rskip60 - ) - yield ( - 1313500, # chain_id - 60, # slip44 - "XERO", # shortcut - "Xerom", # name - False, # rskip60 - ) - yield ( - 5555555, # chain_id - 60, # slip44 - "IMV", # shortcut - "Imversed", # name - False, # rskip60 - ) - yield ( - 7355310, # chain_id - 60, # slip44 - "VETH", # shortcut - "OpenVessel", # name - False, # rskip60 - ) - yield ( - 7762959, # chain_id - 184, # slip44 - "MUSIC", # shortcut - "Musicoin", # name - False, # rskip60 - ) - yield ( - 10101010, # chain_id - 60, # slip44 - "SVRN", # shortcut - "Soverun", # name - False, # rskip60 - ) - yield ( - 11155111, # chain_id - 1, # slip44 - "tETH", # shortcut - "Sepolia", # name - False, # rskip60 - ) - yield ( - 13371337, # chain_id - 60, # slip44 - "TPEP", # shortcut - "PepChain Churchill", # name - False, # rskip60 - ) - yield ( - 14288640, # chain_id - 60, # slip44 - "DEB", # shortcut - "Anduschain", # name - False, # rskip60 - ) - yield ( - 18289463, # chain_id - 60, # slip44 - "ILT", # shortcut - "IOLite", # name - False, # rskip60 - ) - yield ( - 20180430, # chain_id - 60, # slip44 - "SMT", # shortcut - "SmartMesh", # name - False, # rskip60 - ) - yield ( - 20181205, # chain_id - 60, # slip44 - "QKI", # shortcut - "quarkblockchain", # name - False, # rskip60 - ) - yield ( - 22052002, # chain_id - 60, # slip44 - "xlon", # shortcut - "Excelon", # name - False, # rskip60 - ) - yield ( - 27082022, # chain_id - 60, # slip44 - "EXL", # shortcut - "Excoincial Chain", # name - False, # rskip60 - ) - yield ( - 28945486, # chain_id - 344, # slip44 - "AUX", # shortcut - "Auxilium Network", # name - False, # rskip60 - ) - yield ( - 29032022, # chain_id - 60, # slip44 - "FLA", # shortcut - "Flachain", # name - False, # rskip60 - ) - yield ( - 35855456, # chain_id - 60, # slip44 - "JOYS", # shortcut - "Joys Digital", # name - False, # rskip60 - ) - yield ( - 43214913, # chain_id - 60, # slip44 - "MAI", # shortcut - "maistestsubnet", # name - False, # rskip60 - ) - yield ( - 61717561, # chain_id - 61717561, # slip44 - "AQUA", # shortcut - "Aquachain", # name - False, # rskip60 - ) - yield ( - 99415706, # chain_id - 1, # slip44 - "TOYS", # shortcut - "Joys Digital TestNet", # name - False, # rskip60 - ) - yield ( - 245022934, # chain_id - 60, # slip44 - "NEON", # shortcut - "Neon EVM", # name - False, # rskip60 - ) - yield ( - 311752642, # chain_id - 60, # slip44 - "OLT", # shortcut - "OneLedger", # name - False, # rskip60 - ) - yield ( - 1122334455, # chain_id - 60, # slip44 - "IPOS", # shortcut - "IPOS Network", # name - False, # rskip60 - ) - yield ( - 1666600000, # chain_id - 60, # slip44 - "ONE", # shortcut - "Harmony", # name - False, # rskip60 - ) - yield ( - 1666600001, # chain_id - 60, # slip44 - "ONE", # shortcut - "Harmony", # name - False, # rskip60 - ) - yield ( - 1666600002, # chain_id - 60, # slip44 - "ONE", # shortcut - "Harmony", # name - False, # rskip60 - ) - yield ( - 1666600003, # chain_id - 60, # slip44 - "ONE", # shortcut - "Harmony", # name - False, # rskip60 - ) - yield ( - 2021121117, # chain_id - 60, # slip44 - "HOP", # shortcut - "DataHopper", # name - False, # rskip60 - ) - yield ( - 3125659152, # chain_id - 164, # slip44 - "PIRL", # shortcut - "Pirl", # name - False, # rskip60 - ) - yield ( - 11297108109, # chain_id - 60, # slip44 - "PALM", # shortcut - "Palm", # name - False, # rskip60 - ) - yield ( - 197710212030, # chain_id - 60, # slip44 - "NTT", # shortcut - "Ntity", # name - False, # rskip60 - ) - yield ( - 383414847825, # chain_id - 60, # slip44 - "ZENIQ", # shortcut - "Zeniq", # name - False, # rskip60 - ) - yield ( - 666301171999, # chain_id - 60, # slip44 - "PDC", # shortcut - "PDC", # name - False, # rskip60 - ) - yield ( - 6022140761023, # chain_id - 60, # slip44 - "MOLE", # shortcut - "Molereum Network", # name - False, # rskip60 ) diff --git a/core/src/apps/ethereum/networks.py.mako b/core/src/apps/ethereum/networks.py.mako index 07e135120..81a53fa16 100644 --- a/core/src/apps/ethereum/networks.py.mako +++ b/core/src/apps/ethereum/networks.py.mako @@ -7,7 +7,7 @@ from typing import TYPE_CHECKING -from apps.common.paths import HARDENED +from trezor.messages import EthereumNetworkInfo if TYPE_CHECKING: from typing import Iterator @@ -17,71 +17,52 @@ if TYPE_CHECKING: NetworkInfoTuple = tuple[ int, # chain_id int, # slip44 - str, # shortcut + str, # symbol str, # name - bool # rskip60 ] # fmt: on +UNKNOWN_NETWORK = EthereumNetworkInfo( + chain_id=0, + slip44=0, + symbol="UNKN", + name="Unknown network", +) -def shortcut_by_chain_id(chain_id: int) -> str: - n = by_chain_id(chain_id) - return n.shortcut if n is not None else "UNKN" - -def by_chain_id(chain_id: int) -> "NetworkInfo" | None: +def by_chain_id(chain_id: int) -> EthereumNetworkInfo: for n in _networks_iterator(): n_chain_id = n[0] if n_chain_id == chain_id: - return NetworkInfo( + return EthereumNetworkInfo( chain_id=n[0], slip44=n[1], - shortcut=n[2], + symbol=n[2], name=n[3], - rskip60=n[4], ) - return None + return UNKNOWN_NETWORK -def by_slip44(slip44: int) -> "NetworkInfo" | None: +def by_slip44(slip44: int) -> EthereumNetworkInfo: for n in _networks_iterator(): n_slip44 = n[1] if n_slip44 == slip44: - return NetworkInfo( + return EthereumNetworkInfo( chain_id=n[0], slip44=n[1], - shortcut=n[2], + symbol=n[2], name=n[3], - rskip60=n[4], ) - return None - - -def all_slip44_ids_hardened() -> Iterator[int]: - for n in _networks_iterator(): - # n_slip_44 is the second element - yield n[1] | HARDENED - - -class NetworkInfo: - def __init__( - self, chain_id: int, slip44: int, shortcut: str, name: str, rskip60: bool - ) -> None: - self.chain_id = chain_id - self.slip44 = slip44 - self.shortcut = shortcut - self.name = name - self.rskip60 = rskip60 + return UNKNOWN_NETWORK # fmt: off def _networks_iterator() -> Iterator[NetworkInfoTuple]: -% for n in supported_on("trezor2", eth): +% for n in sorted(supported_on("trezor2", eth), key=lambda network: (int(network.chain_id), network.name)): yield ( ${n.chain_id}, # chain_id ${n.slip44}, # slip44 - "${n.shortcut}", # shortcut + "${n.shortcut}", # symbol "${n.name}", # name - ${n.rskip60}, # rskip60 ) % endfor diff --git a/core/src/apps/ethereum/sign_message.py b/core/src/apps/ethereum/sign_message.py index 808cc9892..ec2200040 100644 --- a/core/src/apps/ethereum/sign_message.py +++ b/core/src/apps/ethereum/sign_message.py @@ -3,10 +3,14 @@ from typing import TYPE_CHECKING from .keychain import PATTERNS_ADDRESS, with_keychain_from_path if TYPE_CHECKING: - from trezor.messages import EthereumSignMessage, EthereumMessageSignature + from trezor.messages import ( + EthereumSignMessage, + EthereumMessageSignature, + ) from trezor.wire import Context from apps.common.keychain import Keychain + from .definitions import Definitions def message_digest(message: bytes) -> bytes: @@ -23,7 +27,10 @@ def message_digest(message: bytes) -> bytes: @with_keychain_from_path(*PATTERNS_ADDRESS) async def sign_message( - ctx: Context, msg: EthereumSignMessage, keychain: Keychain + ctx: Context, + msg: EthereumSignMessage, + keychain: Keychain, + defs: Definitions, ) -> EthereumMessageSignature: from trezor.crypto.curve import secp256k1 from trezor.messages import EthereumMessageSignature @@ -37,7 +44,7 @@ async def sign_message( await paths.validate_path(ctx, keychain, msg.address_n) node = keychain.derive(msg.address_n) - address = address_from_bytes(node.ethereum_pubkeyhash()) + address = address_from_bytes(node.ethereum_pubkeyhash(), defs.network) await confirm_signverify( ctx, "ETH", decode_message(msg.message), address, verify=False ) diff --git a/core/src/apps/ethereum/sign_tx.py b/core/src/apps/ethereum/sign_tx.py index a6ccc6897..fd17f8df0 100644 --- a/core/src/apps/ethereum/sign_tx.py +++ b/core/src/apps/ethereum/sign_tx.py @@ -9,11 +9,11 @@ from .keychain import with_keychain_from_chain_id if TYPE_CHECKING: from apps.common.keychain import Keychain - from trezor.messages import EthereumSignTx, EthereumTxAck + from trezor.messages import EthereumSignTx, EthereumTxAck, EthereumTokenInfo from trezor.wire import Context - from .keychain import EthereumSignTxAny - from . import tokens + from .definitions import Definitions + from .keychain import MsgInSignTx # Maximum chain_id which returns the full signature_v (which must fit into an uint32). @@ -24,7 +24,10 @@ MAX_CHAIN_ID = (0xFFFF_FFFF - 36) // 2 @with_keychain_from_chain_id async def sign_tx( - ctx: Context, msg: EthereumSignTx, keychain: Keychain + ctx: Context, + msg: EthereumSignTx, + keychain: Keychain, + defs: Definitions, ) -> EthereumTxRequest: from trezor.utils import HashWriter from trezor.crypto.hashlib import sha3_256 @@ -45,11 +48,11 @@ async def sign_tx( await paths.validate_path(ctx, keychain, msg.address_n) # Handle ERC20s - token, address_bytes, recipient, value = await handle_erc20(ctx, msg) + token, address_bytes, recipient, value = await handle_erc20(ctx, msg, defs) data_total = msg.data_length - await require_confirm_tx(ctx, recipient, value, msg.chain_id, token) + await require_confirm_tx(ctx, recipient, value, defs.network, token) if token is None and msg.data_length > 0: await require_confirm_data(ctx, msg.data_initial_chunk, data_total) @@ -58,7 +61,7 @@ async def sign_tx( value, int.from_bytes(msg.gas_price, "big"), int.from_bytes(msg.gas_limit, "big"), - msg.chain_id, + defs.network, token, ) @@ -100,13 +103,14 @@ async def sign_tx( async def handle_erc20( - ctx: Context, msg: EthereumSignTxAny -) -> tuple[tokens.TokenInfo | None, bytes, bytes, int]: + ctx: Context, + msg: MsgInSignTx, + definitions: Definitions, +) -> tuple[EthereumTokenInfo | None, bytes, bytes, int]: from .layout import require_confirm_unknown_token from . import tokens data_initial_chunk = msg.data_initial_chunk # local_cache_attribute - token = None address_bytes = recipient = bytes_from_address(msg.to) value = int.from_bytes(msg.value, "big") @@ -118,7 +122,7 @@ async def handle_erc20( and data_initial_chunk[:16] == b"\xa9\x05\x9c\xbb\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" ): - token = tokens.token_by_chain_address(msg.chain_id, address_bytes) + token = definitions.get_token(address_bytes) recipient = data_initial_chunk[16:36] value = int.from_bytes(data_initial_chunk[36:68], "big") @@ -185,7 +189,7 @@ def _sign_digest( return req -def check_common_fields(msg: EthereumSignTxAny) -> None: +def check_common_fields(msg: MsgInSignTx) -> None: data_length = msg.data_length # local_cache_attribute if data_length > 0: diff --git a/core/src/apps/ethereum/sign_tx_eip1559.py b/core/src/apps/ethereum/sign_tx_eip1559.py index 098ebc352..db228a879 100644 --- a/core/src/apps/ethereum/sign_tx_eip1559.py +++ b/core/src/apps/ethereum/sign_tx_eip1559.py @@ -12,9 +12,9 @@ if TYPE_CHECKING: EthereumAccessList, EthereumTxRequest, ) - - from apps.common.keychain import Keychain from trezor.wire import Context + from apps.common.keychain import Keychain + from .definitions import Definitions _TX_TYPE = const(2) @@ -30,7 +30,10 @@ def access_list_item_length(item: EthereumAccessList) -> int: @with_keychain_from_chain_id async def sign_tx_eip1559( - ctx: Context, msg: EthereumSignTxEIP1559, keychain: Keychain + ctx: Context, + msg: EthereumSignTxEIP1559, + keychain: Keychain, + defs: Definitions, ) -> EthereumTxRequest: from trezor.crypto.hashlib import sha3_256 from trezor.utils import HashWriter @@ -56,11 +59,11 @@ async def sign_tx_eip1559( await paths.validate_path(ctx, keychain, msg.address_n) # Handle ERC20s - token, address_bytes, recipient, value = await handle_erc20(ctx, msg) + token, address_bytes, recipient, value = await handle_erc20(ctx, msg, defs) data_total = msg.data_length - await require_confirm_tx(ctx, recipient, value, msg.chain_id, token) + await require_confirm_tx(ctx, recipient, value, defs.network, token) if token is None and msg.data_length > 0: await require_confirm_data(ctx, msg.data_initial_chunk, data_total) @@ -70,7 +73,7 @@ async def sign_tx_eip1559( int.from_bytes(msg.max_priority_fee, "big"), int.from_bytes(msg.max_gas_fee, "big"), int.from_bytes(gas_limit, "big"), - msg.chain_id, + defs.network, token, ) diff --git a/core/src/apps/ethereum/sign_typed_data.py b/core/src/apps/ethereum/sign_typed_data.py index c1605ad61..bebe493b8 100644 --- a/core/src/apps/ethereum/sign_typed_data.py +++ b/core/src/apps/ethereum/sign_typed_data.py @@ -11,6 +11,7 @@ if TYPE_CHECKING: from apps.common.keychain import Keychain from trezor.wire import Context from trezor.utils import HashWriter + from .definitions import Definitions from trezor.messages import ( EthereumSignTypedData, @@ -22,7 +23,10 @@ if TYPE_CHECKING: @with_keychain_from_path(*PATTERNS_ADDRESS) async def sign_typed_data( - ctx: Context, msg: EthereumSignTypedData, keychain: Keychain + ctx: Context, + msg: EthereumSignTypedData, + keychain: Keychain, + defs: Definitions, ) -> EthereumTypedDataSignature: from trezor.crypto.curve import secp256k1 from apps.common import paths @@ -47,7 +51,7 @@ async def sign_typed_data( ) return EthereumTypedDataSignature( - address=address_from_bytes(address_bytes), + address=address_from_bytes(address_bytes, defs.network), signature=signature[1:] + signature[0:1], ) diff --git a/core/src/apps/ethereum/tokens.py b/core/src/apps/ethereum/tokens.py index 963292332..ddb3dde04 100644 --- a/core/src/apps/ethereum/tokens.py +++ b/core/src/apps/ethereum/tokens.py @@ -16,9490 +16,181 @@ from typing import Iterator +from trezor.messages import EthereumTokenInfo -class TokenInfo: - def __init__(self, symbol: str, decimals: int) -> None: - self.symbol = symbol - self.decimals = decimals +UNKNOWN_TOKEN = EthereumTokenInfo( + symbol="Wei UNKN", + decimals=0, + address=b"", + chain_id=0, + name="Unknown token", +) -UNKNOWN_TOKEN = TokenInfo("Wei UNKN", 0) - - -def token_by_chain_address(chain_id: int, address: bytes) -> TokenInfo: - for addr, symbol, decimal in _token_iterator(chain_id): +def token_by_chain_address(chain_id: int, address: bytes) -> EthereumTokenInfo | None: + for addr, symbol, decimal, name in _token_iterator(chain_id): if address == addr: - return TokenInfo(symbol, decimal) - return UNKNOWN_TOKEN + return EthereumTokenInfo( + symbol=symbol, + decimals=decimal, + address=address, + chain_id=chain_id, + name=name, + ) + return None -def _token_iterator(chain_id: int) -> Iterator[tuple[bytes, str, int]]: - if chain_id == 1: - yield ( # address, symbol, decimals - b"\x4e\x84\xe9\xe5\xfb\x0a\x97\x26\x28\xcf\x45\x68\xc4\x03\x16\x7e\xf1\xd4\x04\x31", - "$FFC", - 18, - ) - yield ( # address, symbol, decimals - b"\x7d\xd7\xf5\x6d\x69\x7c\xc0\xf2\xb5\x2b\xd5\x5c\x05\x7f\x37\x8f\x1f\xe6\xab\x4b", - "$TEAK", - 18, - ) - yield ( # address, symbol, decimals - b"\x88\x1b\xa0\x5d\xe1\xe7\x8f\x54\x9c\xc6\x3a\x8f\x6c\xab\xb1\xd4\xad\x32\x25\x0d", - "00", - 18, - ) - yield ( # address, symbol, decimals - b"\xb6\xed\x76\x44\xc6\x94\x16\xd6\x7b\x52\x2e\x20\xbc\x29\x4a\x9a\x9b\x40\x5b\x31", - "0xBTC", - 8, - ) - yield ( # address, symbol, decimals - b"\x0f\x72\x71\x4b\x35\xa3\x66\x28\x5d\xf8\x58\x86\xa2\xee\x17\x46\x01\x29\x2a\x17", - "1SG", - 18, - ) - yield ( # address, symbol, decimals - b"\xaf\x30\xd2\xa7\xe9\x0d\x7d\xc3\x61\xc8\xc4\x58\x5e\x9b\xb7\xd2\xf6\xf1\x5b\xc7", - "1ST", - 18, - ) - yield ( # address, symbol, decimals - b"\xfd\xbc\x1a\xdc\x26\xf0\xf8\xf8\x60\x6a\x5d\x63\xb7\xd3\xa3\xcd\x21\xc2\x2b\x23", - "1WO", - 8, - ) - yield ( # address, symbol, decimals - b"\x00\x73\xe5\xe5\x2e\x2b\x4f\xe2\x18\xd7\x5d\x99\x4e\xe2\xb3\xc8\x2f\x9c\x87\xea", - "22x", - 8, - ) - yield ( # address, symbol, decimals - b"\x9f\xc0\x58\x32\x20\xeb\x44\xfa\xee\x9e\x2d\xc1\xe6\x3f\x39\x20\x4d\xdd\x90\x90", - "2DC", - 18, - ) - yield ( # address, symbol, decimals - b"\xae\xc9\x8a\x70\x88\x10\x41\x48\x78\xc3\xbc\xdf\x46\xaa\xd3\x1d\xed\x4a\x45\x57", - "300", - 18, - ) - yield ( # address, symbol, decimals - b"\x43\x02\x41\x36\x8c\x1d\x29\x3f\xda\x21\xdb\xa8\xbb\x7a\xf3\x20\x07\xc5\x91\x09", - "3LT", - 8, - ) - yield ( # address, symbol, decimals - b"\x5d\x97\x76\x47\x24\x83\xee\x2c\x2b\x20\x47\x75\x54\x7b\xff\x6d\xb5\xa3\x0f\xed", - "599GTO1", - 8, - ) - yield ( # address, symbol, decimals - b"\xff\xc6\x3b\x91\x46\x96\x7a\x1b\xa3\x30\x66\xfb\x05\x7e\xe3\x72\x22\x21\xac\xf0", - "A", - 18, - ) - yield ( # address, symbol, decimals +def _token_iterator(chain_id: int) -> Iterator[tuple[bytes, str, int, str]]: + if chain_id == 1: # eth + yield ( # address, symbol, decimals, name b"\x7f\xc6\x65\x00\xc8\x4a\x76\xad\x7e\x9c\x93\x43\x7b\xfc\x5a\xc3\x3e\x2d\xda\xe9", "AAVE", 18, + "Aave", ) - yield ( # address, symbol, decimals - b"\x89\x2f\x0e\x41\x18\xa3\xbc\x4e\xa9\x30\x5f\xf7\xc5\xbf\xa5\x61\xca\x7c\x9a\xdf", - "aBAT", - 18, - ) - yield ( # address, symbol, decimals - b"\xcc\x7d\x26\xd8\xea\x62\x81\xbb\x36\x3c\x84\x48\x51\x5f\x2c\x61\xf7\xbc\x19\xf0", - "ABCH", - 18, - ) - yield ( # address, symbol, decimals - b"\xb3\x48\xcb\x06\x38\xb2\x39\x9a\xe5\x98\xb5\x57\x5d\x5c\x12\xe0\xf1\x5d\x36\x90", - "ABDX", - 18, - ) - yield ( # address, symbol, decimals - b"\xcb\x03\xbe\xc5\x36\x84\x3d\x33\x8a\xc1\x38\x20\x5a\x66\x89\xd4\xcd\xc1\x10\x46", - "ABPT", - 18, - ) - yield ( # address, symbol, decimals - b"\xb9\x8d\x4c\x97\x42\x5d\x99\x08\xe6\x6e\x53\xa6\xfd\xf6\x73\xac\xca\x0b\xe9\x86", - "ABT", - 18, - ) - yield ( # address, symbol, decimals - b"\x0e\x8d\x6b\x47\x1e\x33\x2f\x14\x0e\x7d\x9d\xbb\x99\xe5\xe3\x82\x2f\x72\x8d\xa6", - "ABYSS", - 18, - ) - yield ( # address, symbol, decimals - b"\x13\xf1\xb7\xfd\xfb\xe1\xfc\x66\x67\x6d\x56\x48\x3e\x21\xb1\xec\xb4\x0b\x58\xe2", - "ACC", - 18, - ) - yield ( # address, symbol, decimals - b"\x06\x14\x71\x10\x02\x2b\x76\x8b\xa8\xf9\x9a\x8f\x38\x5d\xf1\x1a\x15\x1a\x9c\xc8", - "ACE", - 0, - ) - yield ( # address, symbol, decimals - b"\x2b\xaa\xc9\x33\x0c\xf9\xac\x47\x9d\x81\x91\x95\x79\x4d\x79\xad\x0c\x76\x16\xe3", - "ADB", - 18, - ) - yield ( # address, symbol, decimals - b"\x82\x7f\xe1\x73\x6c\xee\x36\xf7\x73\x7b\xe6\xcf\x50\x24\x34\xaf\x29\x4c\xf1\x37", - "ADC$", - 18, - ) - yield ( # address, symbol, decimals - b"\xb6\xc3\xdc\x85\x78\x45\xa7\x13\xd3\x53\x1c\xea\x5a\xc5\x46\xf6\x76\x79\x92\xf4", - "ADCO", - 6, - ) - yield ( # address, symbol, decimals - b"\xe6\x9a\x35\x3b\x31\x52\xdd\x7b\x70\x6f\xf7\xdd\x40\xfe\x1d\x18\xb7\x80\x2d\x31", - "ADH", - 18, - ) - yield ( # address, symbol, decimals - b"\x88\x10\xc6\x34\x70\xd3\x86\x39\x95\x4c\x6b\x41\xaa\xc5\x45\x84\x8c\x46\x48\x4a", - "ADI", - 18, - ) - yield ( # address, symbol, decimals - b"\x66\x0e\x71\x48\x37\x85\xf6\x61\x33\x54\x8b\x10\xf6\x92\x6d\xc3\x32\xb0\x6e\x61", - "ADL", - 18, - ) - yield ( # address, symbol, decimals - b"\x42\x28\x66\xa8\xf0\xb0\x32\xc5\xcf\x1d\xfb\xde\xf3\x1a\x20\xf4\x50\x95\x62\xb0", - "ADST", - 0, - ) - yield ( # address, symbol, decimals - b"\xd0\xd6\xd6\xc5\xfe\x4a\x67\x7d\x34\x3c\xc4\x33\x53\x6b\xb7\x17\xba\xe1\x67\xdd", - "ADT", - 9, - ) - yield ( # address, symbol, decimals - b"\xd9\xa4\xcb\x9d\xc9\x29\x6e\x11\x1c\x66\xdf\xac\xab\x8b\xe0\x34\xee\x2e\x1c\x2c", - "ADX-LOYALTY", - 18, - ) - yield ( # address, symbol, decimals - b"\x5c\xa9\xa7\x1b\x1d\x01\x84\x9c\x0a\x95\x49\x0c\xc0\x05\x59\x71\x7f\xcf\x0d\x1d", - "AE", - 18, - ) - yield ( # address, symbol, decimals - b"\x25\x12\x65\x80\x92\xe5\x58\x91\x0a\xef\x76\xb4\xdb\x7e\xbb\xa7\x01\x62\x6a\x15", - "aETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xc9\x94\xa2\xde\xb0\x25\x43\xdb\x1f\x48\x68\x84\x38\xb9\x90\x3c\x4b\x30\x5c\xe3", - "AEUR", - 2, - ) - yield ( # address, symbol, decimals - b"\xfb\x48\xe0\xde\xa8\x37\xf9\x43\x83\x09\xa7\xe9\xf0\xcf\xe7\xee\x33\x53\xa8\x4e", - "AFA", - 2, - ) - yield ( # address, symbol, decimals - b"\x8e\xb2\x43\x19\x39\x37\x16\x66\x8d\x76\x8d\xce\xc2\x93\x56\xae\x9c\xff\xe2\x85", - "AGI", - 8, - ) - yield ( # address, symbol, decimals - b"\x73\x88\x65\x30\x1a\x9b\x7d\xd8\x0d\xc3\x66\x6d\xd4\x8c\xf0\x34\xec\x42\xbd\xda", - "AGRS", - 8, - ) - yield ( # address, symbol, decimals - b"\x7d\xb5\x45\x4f\x35\x00\xf2\x81\x71\xd1\xf9\xc7\xa3\x85\x27\xc9\xcf\x94\xe6\xb2", - "AGS", - 4, - ) - yield ( # address, symbol, decimals - b"\x51\x21\xe3\x48\xe8\x97\xda\xef\x1e\xef\x23\x95\x9a\xb2\x90\xe5\x55\x7c\xf2\x74", - "AI", - 18, - ) - yield ( # address, symbol, decimals - b"\x37\xe8\x78\x9b\xb9\x99\x6c\xac\x91\x56\xcd\x5f\x5f\xd3\x25\x99\xe6\xb9\x12\x89", - "AID", - 18, - ) - yield ( # address, symbol, decimals - b"\x4c\xed\xa7\x90\x6a\x5e\xd2\x17\x97\x85\xcd\x3a\x40\xa6\x9e\xe8\xbc\x99\xc4\x66", - "AION", - 8, - ) - yield ( # address, symbol, decimals - b"\x27\xdc\xe1\xec\x4d\x3f\x72\xc3\xe4\x57\xcc\x50\x35\x4f\x1f\x97\x5d\xde\xf4\x88", - "AIR", - 8, - ) - yield ( # address, symbol, decimals - b"\x10\x63\xce\x52\x42\x65\xd5\xa3\xa6\x24\xf4\x91\x4a\xcd\x57\x3d\xd8\x9c\xe9\x88", - "AIX", - 18, - ) - yield ( # address, symbol, decimals - b"\x1c\xa4\x3a\x17\x0b\xad\x61\x93\x22\xe6\xf5\x4d\x46\xb5\x7e\x50\x4d\xb6\x63\xaa", - "AKC", - 18, - ) - yield ( # address, symbol, decimals - b"\xce\xf9\x02\x96\x33\x2d\x6f\xde\xa3\x14\x17\xd7\xdd\x67\x9d\x78\xa5\x49\x63\x8b", - "aKNC", - 18, - ) - yield ( # address, symbol, decimals - b"\x18\x1a\x63\x74\x6d\x3a\xdc\xf3\x56\xcb\xc7\x3a\xce\x22\x83\x2f\xfb\xb1\xee\x5a", - "ALCO", - 8, - ) - yield ( # address, symbol, decimals - b"\xf1\x24\x36\xd7\x71\x66\xf0\x80\x1f\xb7\xbb\xda\xfa\xf1\x48\x2a\x75\x77\xfd\xaa", - "aLEND", - 18, - ) - yield ( # address, symbol, decimals - b"\x27\x70\x2a\x26\x12\x6e\x0b\x37\x02\xaf\x63\xee\x09\xac\x4d\x1a\x08\x4e\xf6\x28", - "ALEPH", - 18, - ) - yield ( # address, symbol, decimals - b"\x42\x89\xc0\x43\xa1\x23\x92\xf1\x02\x73\x07\xfb\x58\x27\x2d\x8e\xbd\x85\x39\x12", - "ALI", - 18, - ) - yield ( # address, symbol, decimals - b"\xc3\x02\x9a\x06\x6b\x20\xdc\x87\x12\xcb\xd2\x09\x3e\xb1\xe7\xf5\x8b\xc4\x9d\x83", - "aLINK", - 18, - ) - yield ( # address, symbol, decimals - b"\xea\x61\x0b\x11\x53\x47\x77\x20\x74\x8d\xc1\x3e\xd3\x78\x00\x39\x41\xd8\x4f\xab", - "ALIS", - 18, - ) - yield ( # address, symbol, decimals - b"\xe0\xcc\xa8\x6b\x25\x40\x05\x88\x9a\xc3\xa8\x1e\x73\x7f\x56\xa1\x4f\x4a\x38\xf5", - "ALTA", - 18, - ) - yield ( # address, symbol, decimals - b"\x63\x8a\xc1\x49\xea\x8e\xf9\xa1\x28\x6c\x41\xb9\x77\x01\x7a\xa7\x35\x9e\x6c\xfa", - "ALTS", - 18, - ) - yield ( # address, symbol, decimals - b"\x49\xb1\x27\xbc\x33\xce\x7e\x15\x86\xec\x28\xce\xc6\xa6\x5b\x11\x25\x96\xc8\x22", - "ALX", - 18, - ) - yield ( # address, symbol, decimals - b"\xa6\x2d\x9d\x68\x67\x4a\xaa\xc7\xcb\x31\xe8\xc0\x51\x5d\xd3\xa4\x7d\x89\x73\x63", - "aMANA", - 18, - ) - yield ( # address, symbol, decimals - b"\x4d\xc3\x64\x3d\xbc\x64\x2b\x72\xc1\x58\xe7\xf3\xd2\xff\x23\x2d\xf6\x1c\xb6\xce", - "AMB", - 18, - ) - yield ( # address, symbol, decimals - b"\xf1\xac\x7a\x37\x54\x29\x71\x9d\xe0\xdd\xe3\x35\x28\xe2\x63\x9b\x9a\x20\x6e\xba", - "AMGO", - 18, - ) - yield ( # address, symbol, decimals - b"\x94\x9b\xed\x88\x6c\x73\x9f\x1a\x32\x73\x62\x9b\x33\x20\xdb\x0c\x50\x24\xc7\x19", - "AMIS", - 9, - ) - yield ( # address, symbol, decimals - b"\xca\x0e\x72\x69\x60\x0d\x35\x3f\x70\xb1\x4a\xd1\x18\xa4\x95\x75\x45\x5c\x0f\x2f", - "AMLT", - 18, - ) - yield ( # address, symbol, decimals - b"\x73\x7f\x98\xac\x8c\xa5\x9f\x2c\x68\xad\x65\x8e\x3c\x3d\x8c\x89\x63\xe4\x0a\x4c", - "AMN", - 18, - ) - yield ( # address, symbol, decimals - b"\x38\xc8\x7a\xa8\x9b\x2b\x8c\xd9\xb9\x5b\x73\x6e\x1f\xa7\xb6\x12\xea\x97\x21\x69", - "AMO", - 18, - ) - yield ( # address, symbol, decimals - b"\x00\x05\x9a\xe6\x9c\x16\x22\xa7\x54\x2e\xdc\x15\xe8\xd1\x7b\x06\x0f\xe3\x07\xb6", - "AMON", - 18, - ) - yield ( # address, symbol, decimals - b"\xff\x20\x81\x77\x65\xcb\x7f\x73\xd4\xbd\xe2\xe6\x6e\x06\x7e\x58\xd1\x10\x95\xc2", - "AMP", - 18, - ) - yield ( # address, symbol, decimals - b"\xd4\x6b\xa6\xd9\x42\x05\x0d\x48\x9d\xbd\x93\x8a\x2c\x90\x9a\x5d\x50\x39\xa1\x61", - "AMPL", - 9, - ) - yield ( # address, symbol, decimals - b"\x84\x93\x6c\xf7\x63\x0a\xa3\xe2\x7d\xd9\xaf\xf9\x68\xb1\x40\xd5\xae\xe4\x9f\x5a", - "AMTC", - 8, - ) - yield ( # address, symbol, decimals - b"\xc3\x6e\x2c\x02\xe6\x45\x85\xc1\x57\x94\xb8\xe2\x5e\x82\x6d\x50\xb1\x5f\xd8\x78", - "ANIME", - 8, - ) - yield ( # address, symbol, decimals - b"\xcd\x62\xb1\xc4\x03\xfa\x76\x1b\xaa\xdf\xc7\x4c\x52\x5c\xe2\xb5\x17\x80\xb1\x84", - "ANJ", - 18, - ) - yield ( # address, symbol, decimals - b"\x9a\xb1\x65\xd7\x95\x01\x9b\x6d\x8b\x3e\x97\x1d\xda\x91\x07\x14\x21\x30\x5e\x5a", - "AOA", - 18, - ) - yield ( # address, symbol, decimals - b"\x0b\x38\x21\x0e\xa1\x14\x11\x55\x7c\x13\x45\x7d\x4d\xa7\xdc\x6e\xa7\x31\xb8\x8a", - "API3", + yield ( # address, symbol, decimals, name + b"\x4d\x22\x44\x52\x80\x1a\xce\xd8\xb2\xf0\xae\xbe\x15\x53\x79\xbb\x5d\x59\x43\x81", + "APE", 18, + "ApeCoin", ) - yield ( # address, symbol, decimals - b"\x4c\x0f\xbe\x1b\xb4\x66\x12\x91\x5e\x79\x67\xd2\xc3\x21\x3c\xd4\xd8\x72\x57\xad", - "APIS", - 18, - ) - yield ( # address, symbol, decimals - b"\x1a\x7a\x8b\xd9\x10\x6f\x2b\x8d\x97\x7e\x08\x58\x2d\xc7\xd2\x4c\x72\x3a\xb0\xdb", - "APPC", - 18, - ) - yield ( # address, symbol, decimals - b"\x23\xae\x3c\x5b\x39\xb1\x2f\x06\x93\xe0\x54\x35\xee\xaa\x1e\x51\xd8\xc6\x15\x30", - "APT", - 18, - ) - yield ( # address, symbol, decimals - b"\x2a\x9b\xdc\xff\x37\xab\x68\xb9\x5a\x53\x43\x5a\xdf\xd8\x89\x2e\x86\x08\x4f\x93", - "AQT", - 18, - ) - yield ( # address, symbol, decimals - b"\xaf\xbe\xc4\xd6\x5b\xc7\xb1\x16\xd8\x51\x07\xfd\x05\xd9\x12\x49\x10\x29\xbf\x46", - "ARB", - 18, - ) - yield ( # address, symbol, decimals - b"\xac\x70\x9f\xcb\x44\xa4\x3c\x35\xf0\xda\x4e\x31\x63\xb1\x17\xa1\x7f\x37\x70\xf5", - "ARC", - 18, - ) - yield ( # address, symbol, decimals - b"\x12\x45\xef\x80\xf4\xd9\xe0\x2e\xd9\x42\x53\x75\xe8\xf6\x49\xb9\x22\x1b\x31\xd8", - "ARCT", - 8, - ) - yield ( # address, symbol, decimals - b"\x75\xaa\x7b\x0d\x02\x53\x2f\x38\x33\xb6\x6c\x7f\x0a\xd3\x53\x76\xd3\x73\xdd\xf8", - "ARD", - 18, - ) - yield ( # address, symbol, decimals - b"\x92\xaf\xba\x41\x3b\xf9\xe5\xda\x39\x19\xa5\x22\xe3\x71\x88\x4b\xea\xc7\x63\x09", - "ARE", - 8, - ) - yield ( # address, symbol, decimals - b"\x9a\x58\xa6\xa5\x7a\x7d\xe1\x6f\xa3\x01\x51\x7c\x26\x15\xff\x1d\xef\x44\x26\x41", - "aREP", + yield ( # address, symbol, decimals, name + b"\xbb\x0e\x17\xef\x65\xf8\x2a\xb0\x18\xd8\xed\xd7\x76\xe8\xdd\x94\x03\x27\xb2\x8b", + "AXS", 18, + "Axie Infinity", ) - yield ( # address, symbol, decimals - b"\xba\x5f\x11\xb1\x6b\x15\x57\x92\xcf\x3b\x2e\x68\x80\xe8\x70\x68\x59\xa8\xae\xb6", - "ARN", - 8, - ) - yield ( # address, symbol, decimals - b"\x0c\x37\xbc\xf4\x56\xbc\x66\x1c\x14\xd5\x96\x68\x33\x25\x62\x30\x76\xd7\xe2\x83", - "ARNX", + yield ( # address, symbol, decimals, name + b"\x4f\xab\xb1\x45\xd6\x46\x52\xa9\x48\xd7\x25\x33\x02\x3f\x6e\x7a\x62\x3c\x7c\x53", + "BUSD", 18, + "Binance USD", ) - yield ( # address, symbol, decimals - b"\xfe\xc0\xcf\x7f\xe0\x78\xa5\x00\xab\xf1\x5f\x12\x84\x95\x8f\x22\x04\x9c\x2c\x7e", - "ART", + yield ( # address, symbol, decimals, name + b"\x35\x06\x42\x4f\x91\xfd\x33\x08\x44\x66\xf4\x02\xd5\xd9\x7f\x05\xf8\xe3\xb4\xaf", + "CHZ", 18, + "Chiliz", ) - yield ( # address, symbol, decimals - b"\x77\x05\xfa\xa3\x4b\x16\xeb\x6d\x77\xdf\xc7\x81\x2b\xe2\x36\x7b\xa6\xb0\x24\x8e", - "ARX", + yield ( # address, symbol, decimals, name + b"\xa0\xb7\x3e\x1f\xf0\xb8\x09\x14\xab\x6f\xe0\x44\x4e\x65\x84\x8c\x4c\x34\x45\x0b", + "CRO", 8, + "Cronos", ) - yield ( # address, symbol, decimals - b"\xb0\xd9\x26\xc1\xbc\x3d\x78\x06\x4f\x3e\x10\x75\xd5\xbd\x9a\x24\xf3\x5a\xe6\xc5", - "ARXT", + yield ( # address, symbol, decimals, name + b"\x6b\x17\x54\x74\xe8\x90\x94\xc4\x4d\xa9\x8b\x95\x4e\xed\xea\xc4\x95\x27\x1d\x0f", + "DAI", 18, + "Dai", ) - yield ( # address, symbol, decimals - b"\xa5\xf8\xfc\x09\x21\x88\x0c\xb7\x34\x23\x68\xbd\x12\x8e\xb8\x05\x04\x42\xb1\xa1", - "ARY", + yield ( # address, symbol, decimals, name + b"\x85\x3d\x95\x5a\xce\xf8\x22\xdb\x05\x8e\xb8\x50\x59\x11\xed\x77\xf1\x75\xb9\x9e", + "FRAX", 18, + "Frax", ) - yield ( # address, symbol, decimals - b"\x27\x05\x4b\x13\xb1\xb7\x98\xb3\x45\xb5\x91\xa4\xd2\x2e\x65\x62\xd4\x7e\xa7\x5a", - "AST", - 4, - ) - yield ( # address, symbol, decimals - b"\x7b\x22\x93\x8c\xa8\x41\xaa\x39\x2c\x93\xdb\xb7\xf4\xc4\x21\x78\xe3\xd6\x5e\x88", - "ASTRO", - 4, - ) - yield ( # address, symbol, decimals - b"\x01\x7b\x58\x4a\xcf\xd1\x6d\x76\x75\x41\xae\x9e\x80\xcd\xc7\x02\xf4\x52\x7b\x0b", - "ASY", + yield ( # address, symbol, decimals, name + b"\x50\xd1\xc9\x77\x19\x02\x47\x60\x76\xec\xfc\x8b\x2a\x83\xad\x6b\x93\x55\xa4\xc9", + "FTT", 18, + "FTX", ) - yield ( # address, symbol, decimals - b"\x98\xd0\xcd\xe5\xc3\xd7\x95\x31\x61\x3e\x18\xf0\x91\x21\x27\xbf\x17\x2b\xd7\xaa", - "ATG", + yield ( # address, symbol, decimals, name + b"\x2a\xf5\xd2\xad\x76\x74\x11\x91\xd1\x5d\xfe\x7b\xf6\xac\x92\xd4\xbd\x91\x2c\xa3", + "LEO", 18, + "LEO Token", ) - yield ( # address, symbol, decimals - b"\x78\xb7\xfa\xda\x55\xa6\x4d\xd8\x95\xd8\xc8\xc3\x57\x79\xdd\x8b\x67\xfa\x8a\x05", - "ATL", + yield ( # address, symbol, decimals, name + b"\x51\x49\x10\x77\x1a\xf9\xca\x65\x6a\xf8\x40\xdf\xf8\x3e\x82\x64\xec\xf9\x86\xca", + "LINK", 18, + "Chainlink", ) - yield ( # address, symbol, decimals - b"\x9b\x11\xef\xca\xaa\x18\x90\xf6\xee\x52\xc6\xbb\x7c\xf8\x15\x3a\xc5\xd7\x41\x39", - "ATM", - 8, - ) - yield ( # address, symbol, decimals - b"\x97\xae\xb5\x06\x6e\x1a\x59\x0e\x86\x8b\x51\x14\x57\xbe\xb6\xfe\x99\xd3\x29\xf5", - "ATMI", + yield ( # address, symbol, decimals, name + b"\x0f\x5d\x2f\xb2\x9f\xb7\xd3\xcf\xee\x44\x4a\x20\x02\x98\xf4\x68\x90\x8c\xc9\x42", + "MANA", 18, + "Decentraland", ) - yield ( # address, symbol, decimals - b"\x88\x78\x34\xd3\xb8\xd4\x50\xb6\xba\xb1\x09\xc2\x52\xdf\x3d\xa2\x86\xd7\x3c\xe4", - "ATT", + yield ( # address, symbol, decimals, name + b"\x7d\x1a\xfa\x7b\x71\x8f\xb8\x93\xdb\x30\xa3\xab\xc0\xcf\xc6\x08\xaa\xcf\xeb\xb0", + "MATIC", 18, + "Polygon", ) - yield ( # address, symbol, decimals - b"\x63\x39\x78\x4d\x94\x78\xda\x43\x10\x6a\x42\x91\x96\x77\x2a\x02\x9c\x2f\x17\x7d", - "ATTN", + yield ( # address, symbol, decimals, name + b"\x75\x23\x1f\x58\xb4\x32\x40\xc9\x71\x8d\xd5\x8b\x49\x67\xc5\x11\x43\x42\xa8\x6c", + "OKB", 18, + "OKB", ) - yield ( # address, symbol, decimals - b"\x48\x5b\x62\x7f\x43\xe3\x78\x41\x71\x25\xb4\x9e\xd9\x5c\xac\x28\xb7\x83\x39\xc4", - "aTUSD", + yield ( # address, symbol, decimals, name + b"\x4a\x22\x0e\x60\x96\xb2\x5e\xad\xb8\x83\x58\xcb\x44\x06\x8a\x32\x48\x25\x46\x75", + "QNT", 18, + "Quant", ) - yield ( # address, symbol, decimals - b"\x1a\x0f\x2a\xb4\x6e\xc6\x30\xf9\xfd\x63\x80\x29\x02\x7b\x55\x2a\xfa\x64\xb9\x4c", - "ATX", + yield ( # address, symbol, decimals, name + b"\x38\x45\xba\xda\xde\x8e\x6d\xff\x04\x98\x20\x68\x0d\x1f\x14\xbd\x39\x03\xa5\xd0", + "SAND", 18, + "The Sandbox", ) - yield ( # address, symbol, decimals - b"\xc1\x2d\x09\x9b\xe3\x15\x67\xad\xd4\xe4\xe4\xd0\xd4\x56\x91\xc3\xf5\x8f\x56\x63", - "AUC", + yield ( # address, symbol, decimals, name + b"\x95\xad\x61\xb0\xa1\x50\xd7\x92\x19\xdc\xf6\x4e\x1e\x6c\xc0\x1f\x0b\x64\xc4\xce", + "SHIB", 18, + "Shiba Inu", ) - yield ( # address, symbol, decimals - b"\x18\xaa\xa7\x11\x57\x05\xe8\xbe\x94\xbf\xfe\xbd\xe5\x7a\xf9\xbf\xc2\x65\xb9\x98", - "AUDIO", + yield ( # address, symbol, decimals, name + b"\xae\x7a\xb9\x65\x20\xde\x3a\x18\xe5\xe1\x11\xb5\xea\xab\x09\x53\x12\xd7\xfe\x84", + "STETH", 18, + "Lido Staked Ether", ) - yield ( # address, symbol, decimals - b"\xcd\xcf\xc0\xf6\x6c\x52\x2f\xd0\x86\xa1\xb7\x25\xea\x3c\x0e\xeb\x9f\x9e\x88\x14", - "AURA", + yield ( # address, symbol, decimals, name + b"\x1f\x98\x40\xa8\x5d\x5a\xf5\xbf\x1d\x17\x62\xf9\x25\xbd\xad\xdc\x42\x01\xf9\x84", + "UNI", 18, + "Uniswap", ) - yield ( # address, symbol, decimals - b"\x5f\xb9\xe9\xc3\x59\xcc\x71\x91\xb0\x29\x3d\x2f\xaf\x1c\xc4\x1c\xe3\x68\x8d\x75", - "AUS", - 4, - ) - yield ( # address, symbol, decimals - b"\xd4\xf1\x0f\x8f\x88\xd1\x2f\x96\xf6\x9d\x93\x78\x97\x2f\x06\xab\x10\xd8\x0d\xd6", - "aUSDC", + yield ( # address, symbol, decimals, name + b"\xa0\xb8\x69\x91\xc6\x21\x8b\x36\xc1\xd1\x9d\x4a\x2e\x9e\xb0\xce\x36\x06\xeb\x48", + "USDC", 6, + "USD Coin", ) - yield ( # address, symbol, decimals - b"\xc2\x10\x2b\x92\x1b\x49\xea\x86\x34\x76\xfa\x5c\xc9\xe5\x85\x1d\xce\x8c\xc6\x99", - "aUSDT", + yield ( # address, symbol, decimals, name + b"\xda\xc1\x7f\x95\x8d\x2e\xe5\x23\xa2\x20\x62\x06\x99\x45\x97\xc1\x3d\x83\x1e\xc7", + "USDT", 6, + "Tether", ) - yield ( # address, symbol, decimals - b"\x62\x2d\xff\xcc\x4e\x83\xc6\x4b\xa9\x59\x53\x0a\x5a\x55\x80\x68\x7a\x57\x58\x1b", - "AUTO", - 18, - ) - yield ( # address, symbol, decimals - b"\xed\x24\x79\x80\x39\x6b\x10\x16\x9b\xb1\xd3\x6f\x6e\x27\x8e\xd1\x67\x00\xa6\x0f", - "AVA", - 4, - ) - yield ( # address, symbol, decimals - b"\x0d\x88\xed\x6e\x74\xbb\xfd\x96\xb8\x31\x23\x16\x38\xb6\x6c\x05\x57\x1e\x82\x4f", - "AVT", - 18, - ) - yield ( # address, symbol, decimals - b"\xfc\x4b\x8e\xd4\x59\xe0\x0e\x54\x00\xbe\x80\x3a\x9b\xb3\x95\x42\x34\xfd\x50\xe3", - "aWBTC", - 8, - ) - yield ( # address, symbol, decimals - b"\xcd\x4b\x4b\x0f\x32\x84\xa3\x3a\xc4\x9c\x67\x96\x1e\xc6\xe1\x11\x70\x83\x18\xcf", - "AX1", - 5, - ) - yield ( # address, symbol, decimals - b"\x71\xf8\x5b\x2e\x46\x97\x6b\xd2\x13\x02\xb6\x43\x29\x86\x8f\xd1\x5e\xb0\xd1\x27", - "AXN", - 18, - ) - yield ( # address, symbol, decimals - b"\x9a\xf2\xc6\xb1\xa2\x8d\x3d\x6b\xc0\x84\xbd\x26\x7f\x70\xe9\x0d\x49\x74\x1d\x5b", - "AXP", - 8, - ) - yield ( # address, symbol, decimals - b"\xc3\x9e\x62\x6a\x04\xc5\x97\x1d\x77\x0e\x31\x97\x60\xd7\x92\x65\x02\x97\x5e\x47", - "AXPR", - 18, - ) - yield ( # address, symbol, decimals - b"\xbb\x0e\x17\xef\x65\xf8\x2a\xb0\x18\xd8\xed\xd7\x76\xe8\xdd\x94\x03\x27\xb2\x8b", - "AXS", - 18, - ) - yield ( # address, symbol, decimals - b"\x5d\x51\xfc\xce\xd3\x11\x4a\x8b\xb5\xe9\x0c\xdd\x0f\x9d\x68\x2b\xcb\xcc\x53\x93", - "B2BX", - 18, - ) - yield ( # address, symbol, decimals - b"\x06\x2e\x3b\xe6\xa7\xc5\x6a\x39\x5b\x18\x81\xa0\xcd\x69\xa4\x92\x3a\xde\x4f\xa2", - "BAC", - 18, - ) - yield ( # address, symbol, decimals - b"\xba\x10\x00\x00\x62\x5a\x37\x54\x42\x39\x78\xa6\x0c\x93\x17\xc5\x8a\x42\x4e\x3d", - "BAL", - 18, - ) - yield ( # address, symbol, decimals - b"\x01\x3a\x06\x55\x8f\x07\xd9\xe6\xf9\xa0\x0c\x95\xa3\x3f\x3a\x0e\x02\x55\x17\x6b", - "BALI", - 18, - ) - yield ( # address, symbol, decimals - b"\xf5\x68\x42\xaf\x3b\x56\xfd\x72\xd1\x7c\xb1\x03\xf9\x2d\x02\x7b\xba\x91\x2e\x89", - "BAMBOO", - 18, - ) - yield ( # address, symbol, decimals - b"\x99\x8b\x3b\x82\xbc\x9d\xba\x17\x39\x90\xbe\x7a\xfb\x77\x27\x88\xb5\xac\xb8\xbd", - "BANCA", - 18, - ) - yield ( # address, symbol, decimals - b"\xf8\x7f\x0d\x91\x53\xfe\xa5\x49\xc7\x28\xad\x61\xcb\x80\x15\x95\xa6\x8b\x73\xde", - "BANX", - 18, - ) - yield ( # address, symbol, decimals - b"\xc7\x3f\x24\x74\x00\x1a\xd1\xd6\xae\xd6\x15\xaf\x53\x63\x11\x48\xcf\x98\xde\x6b", - "BAR", - 18, - ) - yield ( # address, symbol, decimals - b"\x2a\x05\xd2\x2d\xb0\x79\xbc\x40\xc2\xf7\x7a\x1d\x1f\xf7\x03\xa5\x6e\x63\x1c\xc1", - "BAS", - 8, - ) - yield ( # address, symbol, decimals - b"\x0d\x87\x75\xf6\x48\x43\x06\x79\xa7\x09\xe9\x8d\x2b\x0c\xb6\x25\x0d\x28\x87\xef", - "BAT", - 18, - ) - yield ( # address, symbol, decimals - b"\x9a\x02\x42\xb7\xa3\x3d\xac\xbe\x40\xed\xb9\x27\x83\x4f\x96\xeb\x39\xf8\xfb\xcb", - "BAX", - 18, - ) - yield ( # address, symbol, decimals - b"\xe7\xd3\xe4\x41\x3e\x29\xae\x35\xb0\x89\x31\x40\xf4\x50\x09\x65\xc7\x43\x65\xe5", - "BBC", - 18, - ) - yield ( # address, symbol, decimals - b"\x37\xd4\x05\x10\xa2\xf5\xbc\x98\xaa\x7a\x0f\x7b\xf4\xb3\x45\x3b\xcf\xb9\x0a\xc1", - "BBI", - 18, - ) - yield ( # address, symbol, decimals - b"\x4a\x60\x58\x66\x6c\xf1\x05\x7e\xac\x3c\xd3\xa5\xa6\x14\x62\x05\x47\x55\x9f\xc9", - "BBK", - 18, - ) - yield ( # address, symbol, decimals - b"\x35\xa6\x96\x42\x85\x70\x83\xba\x2f\x30\xbf\xab\x73\x5d\xac\xc7\xf0\xba\xc9\x69", - "BBN", - 18, - ) - yield ( # address, symbol, decimals - b"\x84\xf7\xc4\x4b\x6f\xed\x10\x80\xf6\x47\xe3\x54\xd5\x52\x59\x5b\xe2\xcc\x60\x2f", - "BBO", - 18, - ) - yield ( # address, symbol, decimals - b"\x2e\xcb\x13\xa8\xc4\x58\xc3\x79\xc4\xd9\xa7\x25\x9e\x20\x2d\xe0\x3c\x8f\x3d\x19", - "BC", - 18, - ) - yield ( # address, symbol, decimals - b"\xb5\xbb\x48\x56\x7b\xfd\x0b\xfe\x9e\x4b\x08\xef\x8b\x7f\x91\x55\x6c\xc2\xa1\x12", - "BCASH", - 18, - ) - yield ( # address, symbol, decimals - b"\x73\x67\xa6\x80\x39\xd4\x70\x4f\x30\xbf\xbf\x6d\x94\x80\x20\xc3\xb0\x7d\xfc\x59", - "BCBC", - 18, - ) - yield ( # address, symbol, decimals - b"\x1e\x79\x7c\xe9\x86\xc3\xcf\xf4\x47\x2f\x7d\x38\xd5\xc4\xab\xa5\x5d\xfe\xfe\x40", - "BCDN", - 15, - ) - yield ( # address, symbol, decimals - b"\xac\xfa\x20\x9f\xb7\x3b\xf3\xdd\x5b\xbf\xb1\x10\x1b\x9b\xc9\x99\xc4\x90\x62\xa5", - "BCDT", - 18, - ) - yield ( # address, symbol, decimals - b"\xbc\x12\x34\x55\x2e\xbe\xa3\x2b\x51\x21\x19\x03\x56\xbb\xa6\xd3\xbb\x22\x5b\xb5", - "BCL", - 18, - ) - yield ( # address, symbol, decimals - b"\xd5\xe2\xa5\x4f\xef\x5f\x9e\x4a\x6b\x21\xec\x64\x6b\xbe\xd7\xa1\x60\xa0\x0f\x18", - "BCMC1", - 18, - ) - yield ( # address, symbol, decimals - b"\x1c\x44\x81\x75\x0d\xaa\x5f\xf5\x21\xa2\xa7\x49\x0d\x99\x81\xed\x46\x46\x5d\xbd", - "BCPT", - 18, - ) - yield ( # address, symbol, decimals - b"\x10\x14\x61\x3e\x2b\x3c\xbc\x4d\x57\x50\x54\xd4\x98\x2e\x58\x0d\x9b\x99\xd7\xb1", - "BCV", + yield ( # address, symbol, decimals, name + b"\x22\x60\xfa\xc5\xe5\x54\x2a\x77\x3a\xa4\x4f\xbc\xfe\xdf\x7c\x19\x3b\xc2\xc5\x99", + "WBTC", 8, + "Wrapped Bitcoin", ) - yield ( # address, symbol, decimals - b"\x19\x61\xb3\x33\x19\x69\xed\x52\x77\x07\x51\xfc\x71\x8e\xf5\x30\x83\x8b\x6d\xee", - "BDG", - 18, - ) - yield ( # address, symbol, decimals - b"\x01\x6e\xe7\x37\x32\x48\xa8\x0b\xde\x1f\xd6\xba\xa0\x01\x31\x1d\x23\x3b\x3c\xfa", - "BEAR", - 18, - ) - yield ( # address, symbol, decimals - b"\x4d\x8f\xc1\x45\x3a\x0f\x35\x9e\x99\xc9\x67\x59\x54\xe6\x56\xd8\x0d\x99\x6f\xbf", - "BEE", + yield ( # address, symbol, decimals, name + b"\xa2\xcd\x3d\x43\xc7\x75\x97\x8a\x96\xbd\xbf\x12\xd7\x33\xd5\xa1\xed\x94\xfb\x18", + "XCN", 18, + "Chain", ) - yield ( # address, symbol, decimals - b"\x74\xc1\xe4\xb8\xca\xe5\x92\x69\xec\x1d\x85\xd3\xd4\xf3\x24\x39\x60\x48\xf4\xac", - "BeerCoin", - 0, - ) - yield ( # address, symbol, decimals - b"\xb9\x1c\x2a\x2b\x95\x3d\x72\xf3\xef\x89\x04\x90\x66\x9a\x0a\x41\xb0\xad\xd5\xf7", - "BEFX", - 8, - ) - yield ( # address, symbol, decimals - b"\x6a\xeb\x95\xf0\x6c\xda\x84\xca\x34\x5c\x2d\xe0\xf3\xb7\xf9\x69\x23\xa4\x4f\x4c", - "BERRY", - 14, - ) - yield ( # address, symbol, decimals - b"\x8a\xa3\x3a\x78\x99\xfc\xc8\xea\x5f\xbe\x6a\x60\x8a\x10\x9c\x38\x93\xa1\xb8\xb2", - "BET", + if chain_id == 56: # bnb + yield ( # address, symbol, decimals, name + b"\x0e\xb3\xa7\x05\xfc\x54\x72\x50\x37\xcc\x9e\x00\x8b\xde\xde\x69\x7f\x62\xf3\x35", + "ATOM", 18, + "Cosmos Hub", ) - yield ( # address, symbol, decimals - b"\x14\xc9\x26\xf2\x29\x00\x44\xb6\x47\xe1\xbf\x20\x72\xe6\x7b\x49\x5e\xff\x19\x05", - "BETHER", - 18, - ) - yield ( # address, symbol, decimals - b"\x76\x31\x86\xeb\x8d\x48\x56\xd5\x36\xed\x44\x78\x30\x29\x71\x21\x4f\xeb\xc6\xa9", - "BETR", - 18, - ) - yield ( # address, symbol, decimals - b"\x38\x39\xd8\xba\x31\x27\x51\xaa\x02\x48\xfe\xd6\xa8\xba\xcb\x84\x30\x8e\x20\xed", - "BEZ", - 18, - ) - yield ( # address, symbol, decimals - b"\x01\xff\x50\xf8\xb7\xf7\x4e\x4f\x00\x58\x0d\x95\x96\xcd\x3d\x0d\x6d\x6e\x32\x6f", - "BFT", - 18, - ) - yield ( # address, symbol, decimals - b"\xee\x74\x11\x0f\xb5\xa1\x00\x7b\x06\x28\x2e\x0d\xe5\xd7\x3a\x61\xbf\x41\xd9\xcd", - "BHPC", - 18, - ) - yield ( # address, symbol, decimals - b"\xfe\x5d\x90\x8c\x9a\xd8\x5f\x65\x11\x85\xda\xa6\xa4\x77\x07\x26\xe2\xb2\x7d\x09", - "BHR", - 18, - ) - yield ( # address, symbol, decimals - b"\x25\xe1\x47\x41\x70\xc4\xc0\xaa\x64\xfa\x98\x12\x3b\xdc\x8d\xb4\x9d\x78\x02\xfa", - "BID", - 18, - ) - yield ( # address, symbol, decimals - b"\x08\x9b\x85\xfa\x15\xf7\x2c\x10\x88\xcb\xbe\xf2\x3a\x49\xdb\x80\xb9\x1d\xd5\x21", - "BIT", - 8, - ) - yield ( # address, symbol, decimals - b"\x08\xb4\xc8\x66\xae\x9d\x1b\xe5\x6a\x06\xe0\xc3\x02\x05\x4b\x4f\xfe\x06\x7b\x43", - "BITCAR", - 8, - ) - yield ( # address, symbol, decimals - b"\xf3\xd2\x9f\xb9\x8d\x2d\xc5\xe7\x8c\x87\x19\x8d\xee\xf9\x93\x77\x34\x5f\xd6\xf1", - "BITPARK", - 8, - ) - yield ( # address, symbol, decimals - b"\xff\x2b\x33\x53\xc3\x01\x5e\x9f\x1f\xbf\x95\xb9\xbd\xa2\x3f\x58\xaa\x7c\xe0\x07", - "BITX", - 18, - ) - yield ( # address, symbol, decimals - b"\xb3\x10\x4b\x4b\x9d\xa8\x20\x25\xe8\xb9\xf8\xfb\x28\xb3\x55\x3c\xe2\xf6\x70\x69", - "BIX", - 18, - ) - yield ( # address, symbol, decimals - b"\xc8\x8b\xe0\x4c\x80\x98\x56\xb7\x5e\x3d\xfe\x19\xeb\x4d\xcf\x0a\x3b\x15\x31\x7a", - "BKC", - 8, - ) - yield ( # address, symbol, decimals - b"\xbe\xe6\xed\xf5\xfa\x7e\x86\x2e\xd2\xea\x9b\x9f\x42\xcb\x08\x49\x18\x4a\xae\x85", - "BKN", - 0, - ) - yield ( # address, symbol, decimals - b"\x3c\xf9\xe0\xc3\x85\xa5\xab\xec\x9f\xd2\xa7\x17\x90\xaa\x34\x4c\x4e\x8e\x35\x70", - "BKRx", - 18, - ) - yield ( # address, symbol, decimals - b"\x45\x24\x5b\xc5\x92\x19\xee\xaa\xf6\xcd\x3f\x38\x2e\x07\x8a\x46\x1f\xf9\xde\x7b", - "BKX", - 18, - ) - yield ( # address, symbol, decimals - b"\xca\x29\xdb\x42\x21\xc1\x11\x88\x8a\x7e\x80\xb1\x2e\xac\x8a\x26\x6d\xa3\xee\x0d", - "BLN", - 18, - ) - yield ( # address, symbol, decimals - b"\x1c\x3b\xb1\x0d\xe1\x5c\x31\xd5\xdb\xe4\x8f\xbb\x7b\x87\x73\x5d\x1b\x7d\x8c\x32", - "BLO", - 18, - ) - yield ( # address, symbol, decimals - b"\x10\x7c\x45\x04\xcd\x79\xc5\xd2\x69\x6e\xa0\x03\x0a\x8d\xd4\xe9\x26\x01\xb8\x2e", - "BLT", - 18, - ) - yield ( # address, symbol, decimals - b"\x53\x9e\xfe\x69\xbc\xdd\x21\xa8\x3e\xfd\x91\x22\x57\x1a\x64\xcc\x25\xe0\x28\x2b", - "BLUE", - 8, - ) - yield ( # address, symbol, decimals - b"\xce\x59\xd2\x9b\x09\xaa\xe5\x65\xfe\xee\xf8\xe5\x2f\x47\xc3\xcd\x53\x68\xc6\x63", - "BLX (Bullion)", - 18, - ) - yield ( # address, symbol, decimals - b"\xe5\xa7\xc1\x29\x72\xf3\xbb\xfe\x70\xed\x29\x52\x1c\x89\x49\xb8\xaf\x6a\x09\x70", - "BLX (Iconomi)", - 18, - ) - yield ( # address, symbol, decimals - b"\x57\x32\x04\x6a\x88\x37\x04\x40\x4f\x28\x4c\xe4\x1f\xfa\xdd\x5b\x00\x7f\xd6\x68", - "BLZ", - 18, - ) - yield ( # address, symbol, decimals - b"\xf0\x28\xad\xee\x51\x53\x3b\x1b\x47\xbe\xaa\x89\x0f\xeb\x54\xa4\x57\xf5\x1e\x89", - "BMT", - 18, - ) - yield ( # address, symbol, decimals - b"\x98\x6e\xe2\xb9\x44\xc4\x2d\x01\x7f\x52\xaf\x21\xc4\xc6\x9b\x84\xdb\xea\x35\xd8", - "BMX", - 18, - ) - yield ( # address, symbol, decimals - b"\xb8\xc7\x74\x82\xe4\x5f\x1f\x44\xde\x17\x45\xf5\x2c\x74\x42\x6c\x63\x1b\xdd\x52", - "BNB", - 18, - ) - yield ( # address, symbol, decimals - b"\xda\x2c\x42\x4f\xc9\x8c\x74\x1c\x2d\x4e\xf2\xf4\x28\x97\xce\xfe\xd8\x97\xca\x75", - "BNFT", - 9, - ) - yield ( # address, symbol, decimals - b"\xda\x80\xb2\x00\x38\xbd\xf9\x68\xc7\x30\x7b\xb5\x90\x7a\x46\x94\x82\xcf\x62\x51", - "BNN", - 8, - ) - yield ( # address, symbol, decimals - b"\xd2\x7d\x76\xa1\xba\x55\xce\x5c\x02\x91\xcc\xd0\x4f\xeb\xbe\x79\x3d\x22\xeb\xf4", - "BNP", - 18, - ) - yield ( # address, symbol, decimals - b"\x1f\x57\x3d\x6f\xb3\xf1\x3d\x68\x9f\xf8\x44\xb4\xce\x37\x79\x4d\x79\xa7\xff\x1c", - "BNT", - 18, - ) - yield ( # address, symbol, decimals - b"\xd2\xd6\x15\x86\x83\xae\xe4\xcc\x83\x80\x67\x72\x72\x09\xa0\xaa\xf4\x35\x9d\xe3", - "BNTY", - 18, - ) - yield ( # address, symbol, decimals - b"\xdf\x34\x79\x11\x91\x0b\x6c\x9a\x42\x86\xba\x8e\x2e\xe5\xea\x4a\x39\xeb\x21\x34", - "BOB", - 18, - ) - yield ( # address, symbol, decimals - b"\x27\xc7\x43\x95\x4b\xce\x1b\xfa\xef\x8b\xcb\xd6\x85\x52\x75\x31\x00\x1d\x88\xd7", - "BOK", - 18, - ) - yield ( # address, symbol, decimals - b"\xef\xe9\x87\x65\xda\x38\x24\xef\x4a\x53\x58\xba\x79\x8c\xec\x87\xc1\x3d\x8c\x62", - "BOL", - 18, - ) - yield ( # address, symbol, decimals - b"\x9f\x23\x5d\x23\x35\x48\x57\xef\xe6\xc5\x41\xdb\x92\xa9\xef\x18\x77\x68\x9b\xcb", - "BOLT", - 18, - ) - yield ( # address, symbol, decimals - b"\xcc\x34\x36\x6e\x38\x42\xca\x1b\xd3\x6c\x1f\x32\x4d\x15\x25\x79\x60\xfc\xc8\x01", - "BON", - 18, - ) - yield ( # address, symbol, decimals - b"\x7f\x1e\x2c\x7d\x6a\x69\xbf\x34\x82\x4d\x72\xc5\x3b\x45\x50\xe8\x95\xc0\xd8\xc2", - "BOP", - 8, - ) - yield ( # address, symbol, decimals - b"\xc2\xc6\x3f\x23\xec\x5e\x97\xef\xbd\x75\x65\xdf\x9e\xc7\x64\xfd\xc7\xd4\xe9\x1d", - "BOU", - 18, - ) - yield ( # address, symbol, decimals - b"\x13\x9d\x93\x97\x27\x4b\xb9\xe2\xc2\x9a\x9a\xa8\xaa\x0b\x58\x74\xd3\x0d\x62\xe3", - "BOUTS", - 18, - ) - yield ( # address, symbol, decimals - b"\x78\x01\x16\xd9\x1e\x55\x92\xe5\x8a\x3b\x3c\x76\xa3\x51\x57\x1b\x39\xab\xce\xc6", - "BOXX", - 15, - ) - yield ( # address, symbol, decimals - b"\x51\x97\xfb\xe1\xa8\x66\x79\xff\x13\x60\xe2\x78\x62\xbf\x88\xb0\xc5\x11\x9b\xd8", - "BPF", - 18, - ) - yield ( # address, symbol, decimals - b"\x32\x76\x82\x77\x9b\xab\x2b\xf4\xd1\x33\x7e\x89\x74\xab\x9d\xe8\x27\x5a\x7c\xa8", - "BPT", - 18, - ) - yield ( # address, symbol, decimals - b"\x5a\xf2\xbe\x19\x3a\x6a\xbc\xa9\xc8\x81\x70\x01\xf4\x57\x44\x77\x7d\xb3\x07\x56", - "BQX", - 8, - ) - yield ( # address, symbol, decimals - b"\x9e\x77\xd5\xa1\x25\x1b\x6f\x7d\x45\x67\x22\xa6\xea\xc6\xd2\xd5\x98\x0b\xd8\x91", - "BRAT", - 8, - ) - yield ( # address, symbol, decimals - b"\x55\x8e\xc3\x15\x2e\x2e\xb2\x17\x49\x05\xcd\x19\xae\xa4\xe3\x4a\x23\xde\x9a\xd6", - "BRD", - 18, - ) - yield ( # address, symbol, decimals - b"\x01\xaa\x95\x2c\x2a\xa0\x25\x91\x98\xe4\x03\xc1\x07\x99\x55\x7e\x9a\x6b\x1e\xc1", - "BREZ", - 2, - ) - yield ( # address, symbol, decimals - b"\x80\x04\x63\x05\xaa\xab\x08\xf6\x03\x3b\x56\xa3\x60\xc1\x84\x39\x11\x65\xdc\x2d", - "BRLN", - 18, - ) - yield ( # address, symbol, decimals - b"\xb2\x2c\x27\x86\xa5\x49\xb0\x08\x51\x7b\x67\x62\x5f\x52\x96\xe8\xfa\xf9\x58\x9e", - "BRP", - 18, - ) - yield ( # address, symbol, decimals - b"\xe6\xd2\xa9\xfc\xd9\x46\xe0\x78\x26\xc6\xcd\xd9\x19\xda\x04\x76\x3e\xa4\xd8\x12", - "BRUH", - 18, - ) - yield ( # address, symbol, decimals - b"\x3a\x4a\x0d\x5b\x8d\xfa\xcd\x65\x1e\xe2\x8e\xd4\xff\xeb\xf9\x15\x00\x34\x54\x89", - "BRX", - 18, - ) - yield ( # address, symbol, decimals - b"\xf2\x6e\xf5\xe0\x54\x53\x84\xb7\xdc\xc0\xf2\x97\xf2\x67\x41\x89\x58\x68\x30\xdf", - "BSDC", - 18, - ) - yield ( # address, symbol, decimals - b"\x50\x9a\x38\xb7\xa1\xcc\x0d\xcd\x83\xaa\x9d\x06\x21\x46\x63\xd9\xec\x7c\x7f\x4a", - "BST", - 18, - ) - yield ( # address, symbol, decimals - b"\x03\x27\x11\x24\x23\xf3\xa6\x8e\xfd\xf1\xfc\xf4\x02\xf6\xc5\xcb\x9f\x7c\x33\xfd", - "BTC++", - 18, - ) - yield ( # address, symbol, decimals - b"\x02\x72\x58\x36\xeb\xf3\xec\xdb\x1c\xdf\x1c\x7b\x02\xfc\xbb\xfa\xa2\x73\x6a\xf8", - "BTCA", - 8, - ) - yield ( # address, symbol, decimals - b"\x08\x86\x94\x9c\x1b\x8c\x41\x28\x60\xc4\x26\x4c\xeb\x80\x83\xd1\x36\x5e\x86\xcf", - "BTCE", - 8, - ) - yield ( # address, symbol, decimals - b"\x5a\xcd\x19\xb9\xc9\x1e\x59\x6b\x1f\x06\x2f\x18\xe3\xd0\x2d\xa7\xed\x8d\x1e\x50", - "BTCL", - 8, - ) - yield ( # address, symbol, decimals - b"\x87\xf5\xe8\xc3\x42\x52\x18\x83\x7f\x3c\xb6\x7d\xb9\x41\xaf\x0c\x01\x32\x3e\x56", - "BTCONE", - 18, - ) - yield ( # address, symbol, decimals - b"\x6a\xac\x8c\xb9\x86\x1e\x42\xbf\x82\x59\xf5\xab\xdc\x6a\xe3\xae\x89\x90\x9e\x11", - "BTCR", - 8, - ) - yield ( # address, symbol, decimals - b"\x73\xdd\x06\x9c\x29\x9a\x5d\x69\x1e\x98\x36\x24\x3b\xca\xec\x9c\x8c\x1d\x87\x34", - "BTE", - 8, - ) - yield ( # address, symbol, decimals - b"\xfa\xd5\x72\xdb\x56\x6e\x52\x34\xac\x9f\xc3\xd5\x70\xc4\xed\xc0\x05\x0e\xaa\x92", - "BTH", - 18, - ) - yield ( # address, symbol, decimals - b"\xa0\x2e\x3b\xb9\xce\xbc\x03\x95\x26\x01\xb3\x72\x4b\x49\x40\xe0\x84\x5b\xeb\xcf", - "BTHR", - 18, - ) - yield ( # address, symbol, decimals - b"\xdb\x86\x46\xf5\xb4\x87\xb5\xdd\x97\x9f\xac\x61\x83\x50\xe8\x50\x18\xf5\x57\xd4", - "BTK", - 18, - ) - yield ( # address, symbol, decimals - b"\xcb\x97\xe6\x5f\x07\xda\x24\xd4\x6b\xcd\xd0\x78\xeb\xeb\xd7\xc6\xe6\xe3\xd7\x50", - "BTM", - 8, - ) - yield ( # address, symbol, decimals - b"\xd6\xb1\x07\xd3\xe4\x5b\x95\x9b\x6d\x13\xfa\xf1\xbb\x2a\x2c\xf8\xfc\x70\x25\xe6", - "BTNG", - 18, - ) - yield ( # address, symbol, decimals - b"\x36\x90\x5f\xc9\x32\x80\xf5\x23\x62\xa1\xcb\xab\x15\x1f\x25\xdc\x46\x74\x2f\xb5", - "BTO", - 18, - ) - yield ( # address, symbol, decimals - b"\x20\x90\x05\x87\xe5\x69\xe3\xd0\xb2\x60\x9b\xca\x6f\xb3\x46\x97\x65\xed\x09\x20", - "BTP", - 18, - ) - yield ( # address, symbol, decimals - b"\x16\xb0\xe6\x2a\xc1\x3a\x2f\xae\xd3\x6d\x18\xbc\xe2\x35\x6d\x25\xab\x3c\xfa\xd3", - "BTQ", - 18, - ) - yield ( # address, symbol, decimals - b"\x03\xc7\x80\xcd\x55\x45\x98\x59\x2b\x97\xb7\x25\x6d\xda\xad\x75\x99\x45\xb1\x25", - "BTRN", - 18, - ) - yield ( # address, symbol, decimals - b"\xb6\x83\xd8\x3a\x53\x2e\x2c\xb7\xdf\xa5\x27\x5e\xed\x36\x98\x43\x63\x71\xcc\x9f", - "BTU", - 18, - ) - yield ( # address, symbol, decimals - b"\x9e\xec\xec\x13\x0f\xb6\x65\xd0\x3a\x37\x28\x9e\xe3\x4c\x81\x8e\xe7\xf7\x99\x26", - "BTY", - 18, - ) - yield ( # address, symbol, decimals - b"\xe5\xf8\x67\xde\x1e\xa8\x13\x46\xdf\x51\x81\xb8\xb4\x8d\xd6\xb0\xbb\x33\x57\xb0", - "BTZ", - 18, - ) - yield ( # address, symbol, decimals - b"\xca\x3c\x18\xa6\x5b\x80\x2e\xc2\x67\xf8\xf4\x80\x25\x45\xe7\xf5\x3d\x24\xc7\x5e", - "BUC", - 18, - ) - yield ( # address, symbol, decimals - b"\x4f\xab\xb1\x45\xd6\x46\x52\xa9\x48\xd7\x25\x33\x02\x3f\x6e\x7a\x62\x3c\x7c\x53", - "BUSD", - 18, - ) - yield ( # address, symbol, decimals - b"\x51\xa4\xf6\x54\x63\x59\x7c\xa4\x60\x9c\x9a\x90\xea\x3d\x5a\xb2\x19\xfb\xc8\x5d", - "BWN", - 18, - ) - yield ( # address, symbol, decimals - b"\xbd\x16\x8c\xbf\x9d\x3a\x37\x5b\x38\xdc\x51\xa2\x02\xb5\xe8\xa4\xe5\x20\x69\xed", - "BWX", - 18, - ) - yield ( # address, symbol, decimals - b"\x43\x75\xe7\xad\x8a\x01\xb8\xec\x3e\xd0\x41\x39\x9f\x62\xd9\xcd\x12\x0e\x00\x63", - "BZ", - 18, - ) - yield ( # address, symbol, decimals - b"\xe1\xae\xe9\x84\x95\x36\x5f\xc1\x79\x69\x9c\x1b\xb3\xe7\x61\xfa\x71\x6b\xee\x62", - "BZNT", - 18, - ) - yield ( # address, symbol, decimals - b"\x00\x0c\x10\x00\x50\xe9\x8c\x91\xf9\x11\x4f\xa5\xdd\x75\xce\x68\x69\xbf\x4f\x53", - "C10", - 18, - ) - yield ( # address, symbol, decimals - b"\x26\xe7\x53\x07\xfc\x0c\x02\x14\x72\xfe\xb8\xf7\x27\x83\x95\x31\xf1\x12\xf3\x17", - "C20", - 18, - ) - yield ( # address, symbol, decimals - b"\xd4\x2d\xeb\xe4\xed\xc9\x2b\xd5\xa3\xfb\xb4\x24\x3e\x1e\xcc\xf6\xd6\x3a\x4a\x5d", - "C8", - 18, - ) - yield ( # address, symbol, decimals - b"\x7d\x4b\x8c\xce\x05\x91\xc9\x04\x4a\x22\xee\x54\x35\x33\xb7\x2e\x97\x6e\x36\xc3", - "CAG", - 18, - ) - yield ( # address, symbol, decimals - b"\xbb\xe7\x61\xea\x14\x47\xa2\x0b\x75\xaa\x48\x5b\x7b\xca\xd4\x83\x74\x15\xd7\xd7", - "CALL", - 18, - ) - yield ( # address, symbol, decimals - b"\x1d\x46\x24\x14\xfe\x14\xcf\x48\x9c\x7a\x21\xca\xc7\x85\x09\xf4\xbf\x8c\xd7\xc0", - "CAN", - 6, - ) - yield ( # address, symbol, decimals - b"\x04\xf2\xe7\x22\x1f\xdb\x1b\x52\xa6\x81\x69\xb2\x57\x93\xe5\x14\x78\xff\x03\x29", - "CAPP", - 2, - ) - yield ( # address, symbol, decimals - b"\xa5\x17\xa4\x6b\xaa\xd6\xb0\x54\xa7\x6b\xd1\x9c\x46\x84\x4f\x71\x7f\xe6\x9f\xea", - "CARB", - 8, - ) - yield ( # address, symbol, decimals - b"\x21\x08\xe6\x2d\x33\x5b\xbd\xc8\x9e\xc3\xe9\xd8\x58\x2f\x18\xdc\xfb\x0c\xdf\xf4", - "CARCO", - 8, - ) - yield ( # address, symbol, decimals - b"\xbf\x18\xf2\x46\xb9\x30\x1f\x23\x1e\x95\x61\xb3\x5a\x38\x79\x76\x9b\xb4\x63\x75", - "CARE", - 18, - ) - yield ( # address, symbol, decimals - b"\x6c\x8c\x6b\x02\xe7\xb2\xbe\x14\xd4\xfa\x60\x22\xdf\xd6\xd7\x59\x21\xd9\x0e\x4e", - "cBAT", - 8, - ) - yield ( # address, symbol, decimals - b"\x26\xdb\x54\x39\xf6\x51\xca\xf4\x91\xa8\x7d\x48\x79\x9d\xa8\x1f\x19\x1b\xdb\x6b", - "CBC", - 8, - ) - yield ( # address, symbol, decimals - b"\x05\xc3\x61\x7c\xbf\x13\x04\xb9\x26\x0a\xa6\x1e\xc9\x60\xf1\x15\xd6\x7b\xec\xea", - "CBIX", - 18, - ) - yield ( # address, symbol, decimals - b"\x95\xef\xd1\xfe\x60\x99\xf6\x5a\x7e\xd5\x24\xde\xf4\x87\x48\x32\x21\x09\x49\x47", - "CBM", - 18, - ) - yield ( # address, symbol, decimals - b"\x07\x6c\x97\xe1\xc8\x69\x07\x2e\xe2\x2f\x8c\x91\x97\x8c\x99\xb4\xbc\xb0\x25\x91", - "CBT", - 18, - ) - yield ( # address, symbol, decimals - b"\xc1\x66\x03\x87\x05\xff\xba\xb3\x79\x41\x85\xb3\xa9\xd9\x25\x63\x2a\x1d\xf3\x7d", - "CC3", - 18, - ) - yield ( # address, symbol, decimals - b"\x37\x89\x03\xa0\x3f\xb2\xc3\xac\x76\xbb\x52\x77\x3e\x3c\xe1\x13\x40\x37\x7a\x32", - "CCCX", - 18, - ) - yield ( # address, symbol, decimals - b"\xd3\x48\xe0\x7a\x28\x06\x50\x5b\x85\x61\x23\x04\x5d\x27\xae\xed\x90\x92\x4b\x50", - "CCLC", - 8, - ) - yield ( # address, symbol, decimals - b"\x67\x9b\xad\xc5\x51\x62\x6e\x01\xb2\x3c\xee\xce\xfb\xc9\xb8\x77\xea\x18\xfc\x46", - "CCO", - 18, - ) - yield ( # address, symbol, decimals - b"\x33\x6f\x64\x6f\x87\xd9\xf6\xbc\x6e\xd4\x2d\xd4\x6e\x8b\x3f\xd9\xdb\xd1\x5c\x22", - "CCT", - 18, - ) - yield ( # address, symbol, decimals - b"\x5d\x3a\x53\x6e\x4d\x6d\xbd\x61\x14\xcc\x1e\xad\x35\x77\x7b\xab\x94\x8e\x36\x43", - "cDAI", - 8, - ) - yield ( # address, symbol, decimals - b"\x8a\x95\xca\x44\x8a\x52\xc0\xad\xf0\x05\x4b\xb3\x40\x2d\xc5\xe0\x9c\xd6\xb2\x32", - "CDL", - 18, - ) - yield ( # address, symbol, decimals - b"\xb0\x56\xc3\x8f\x6b\x7d\xc4\x06\x43\x67\x40\x3e\x26\x42\x4c\xd2\xc6\x06\x55\xe1", - "CEEK", - 18, - ) - yield ( # address, symbol, decimals - b"\x4f\x92\x54\xc8\x3e\xb5\x25\xf9\xfc\xf3\x46\x49\x0b\xbb\x3e\xd2\x8a\x81\xc6\x67", - "CELR", - 18, - ) - yield ( # address, symbol, decimals - b"\x0b\xc6\x1d\xde\xd5\xf6\x71\x0c\x63\x7c\xf8\x28\x8e\xb6\x05\x87\x66\xce\x19\x21", - "CEN", - 18, - ) - yield ( # address, symbol, decimals - b"\x11\x22\xb6\xa0\xe0\x0d\xce\x05\x63\x08\x2b\x6e\x29\x53\xf3\xa9\x43\x85\x5c\x1f", - "CENNZ", - 18, - ) - yield ( # address, symbol, decimals - b"\xf6\x60\xca\x1e\x22\x8e\x7b\xe1\xfa\x8b\x4f\x55\x83\x14\x5e\x31\x14\x7f\xb5\x77", - "CET", - 18, - ) - yield ( # address, symbol, decimals - b"\x4d\xdc\x2d\x19\x39\x48\x92\x6d\x02\xf9\xb1\xfe\x9e\x1d\xaa\x07\x18\x27\x0e\xd5", - "cETH", - 8, - ) - yield ( # address, symbol, decimals - b"\x5d\xff\x89\xa2\xca\xa4\xd7\x6b\xc2\x86\xf7\x4d\x67\xbd\x71\x8e\xb8\x34\xda\x61", - "CFC", - 18, - ) - yield ( # address, symbol, decimals - b"\x12\xfe\xf5\xe5\x7b\xf4\x58\x73\xcd\x9b\x62\xe9\xdb\xd7\xbf\xb9\x9e\x32\xd7\x3e", - "CFI", - 18, - ) - yield ( # address, symbol, decimals - b"\x69\x56\x98\x3f\x8b\x3c\xe1\x73\xb4\xab\x84\x36\x1a\xa0\xad\x52\xf3\x8d\x93\x6f", - "CFTY", - 8, - ) - yield ( # address, symbol, decimals - b"\xf5\x23\x84\x62\xe7\x23\x5c\x7b\x62\x81\x15\x67\xe6\x3d\xd1\x7d\x12\xc2\xea\xa0", - "CGT", - 8, - ) - yield ( # address, symbol, decimals - b"\x06\xaf\x07\x09\x7c\x9e\xeb\x7f\xd6\x85\xc6\x92\x75\x1d\x5c\x66\xdb\x49\xc2\x15", - "CHAI", - 18, - ) - yield ( # address, symbol, decimals - b"\xf3\xdb\x75\x60\xe8\x20\x83\x46\x58\xb5\x90\xc9\x62\x34\xc3\x33\xcd\x3d\x5e\x5e", - "CHP", - 18, - ) - yield ( # address, symbol, decimals - b"\xba\x9d\x41\x99\xfa\xb4\xf2\x6e\xfe\x35\x51\xd4\x90\xe3\x82\x14\x86\xf1\x35\xba", - "CHSB", - 8, - ) - yield ( # address, symbol, decimals - b"\x14\x60\xa5\x80\x96\xd8\x0a\x50\xa2\xf1\xf9\x56\xdd\xa4\x97\x61\x1f\xa4\xf1\x65", - "CHX", - 18, - ) - yield ( # address, symbol, decimals - b"\x37\xfe\x0f\x06\x7f\xa8\x08\xff\xbd\xd1\x28\x91\xc0\x85\x85\x32\xcf\xe7\x36\x1d", - "CIV", - 18, - ) - yield ( # address, symbol, decimals - b"\xf7\x5f\xbf\xa2\xf6\x81\x86\x0b\x9a\x6d\x19\xfc\x3f\xf3\xd3\x4c\xb3\x22\xe2\xd6", - "CIYA", - 18, - ) - yield ( # address, symbol, decimals - b"\x3a\xbd\xff\x32\xf7\x6b\x42\xe7\x63\x5b\xdb\x7e\x42\x5f\x02\x31\xa5\xf3\xab\x17", - "CJT", - 18, - ) - yield ( # address, symbol, decimals - b"\x06\x01\x2c\x8c\xf9\x7b\xea\xd5\xde\xae\x23\x70\x70\xf9\x58\x7f\x8e\x7a\x26\x6d", - "CK", - 0, - ) - yield ( # address, symbol, decimals - b"\xe8\x1d\x72\xd1\x4b\x15\x16\xe6\x8a\xc3\x19\x0a\x46\xc9\x33\x02\xcc\x8e\xd6\x0f", - "CL", - 18, - ) - yield ( # address, symbol, decimals - b"\xb1\xc1\xcb\x8c\x7c\x19\x92\xdb\xa2\x4e\x62\x8b\xf7\xd3\x8e\x71\xda\xd4\x6a\xeb", - "CLB", - 18, - ) - yield ( # address, symbol, decimals - b"\x3d\xc9\xa4\x2f\xa7\xaf\xe5\x7b\xe0\x3c\x58\xfd\x7f\x44\x11\xb1\xe4\x66\xc5\x08", - "CLL", - 18, - ) - yield ( # address, symbol, decimals - b"\x41\x62\x17\x8b\x78\xd6\x98\x54\x80\xa3\x08\xb2\x19\x0e\xe5\x51\x74\x60\x40\x6d", - "CLN", - 18, - ) - yield ( # address, symbol, decimals - b"\x7f\xce\x28\x56\x89\x9a\x68\x06\xee\xef\x70\x80\x79\x85\xfc\x75\x54\xc6\x63\x40", - "CLP", - 9, - ) - yield ( # address, symbol, decimals - b"\x20\x01\xf2\xa0\xcf\x80\x1e\xcf\xda\x62\x2f\x6c\x28\xfb\x6e\x10\xd8\x03\xd9\x69", - "CLT", - 8, - ) - yield ( # address, symbol, decimals - b"\x3e\xdd\x23\x5c\x3e\x84\x0c\x1f\x29\x28\x6b\x2e\x39\x37\x0a\x25\x5c\x7b\x6f\xdb", - "CMBT", - 8, - ) - yield ( # address, symbol, decimals - b"\x7e\x66\x75\x25\x52\x1c\xf6\x13\x52\xe2\xe0\x1b\x50\xfa\xaa\xe7\xdf\x39\x74\x9a", - "CMC", - 18, - ) - yield ( # address, symbol, decimals - b"\x47\xbc\x01\x59\x77\x98\xdc\xd7\x50\x6d\xcc\xa3\x6a\xc4\x30\x2f\xc9\x3a\x8c\xfb", - "CMCT", - 8, - ) - yield ( # address, symbol, decimals - b"\xc4\x8b\x48\x14\xfa\xed\x1c\xcc\x88\x5d\xd6\xfd\xe6\x2a\x64\x74\xae\xcb\xb1\x9a", - "CMERGE", - 9, - ) - yield ( # address, symbol, decimals - b"\xeb\xf2\xf9\xe8\xde\x96\x0f\x64\xec\x0f\xdc\xda\x6c\xb2\x82\x42\x31\x33\x34\x7b", - "CNB", - 8, - ) - yield ( # address, symbol, decimals - b"\xd4\xc4\x35\xf5\xb0\x9f\x85\x5c\x33\x17\xc8\x52\x4c\xb1\xf5\x86\xe4\x27\x95\xfa", - "CND", - 18, - ) - yield ( # address, symbol, decimals - b"\x87\x13\xd2\x66\x37\xcf\x49\xe1\xb6\xb4\xa7\xce\x57\x10\x6a\xab\xc9\x32\x53\x43", - "CNN", - 18, - ) - yield ( # address, symbol, decimals - b"\xb4\xb1\xd2\xc2\x17\xec\x07\x76\x58\x4c\xe0\x8d\x3d\xd9\x8f\x90\xed\xed\xa4\x4b", - "CO2", - 18, - ) - yield ( # address, symbol, decimals - b"\x57\x4b\x36\xbc\xed\x44\x33\x38\x87\x5d\x17\x1c\xc3\x77\xe6\x91\xf7\xd4\xf8\x87", - "CO2Bit", - 18, - ) - yield ( # address, symbol, decimals - b"\xb2\xf7\xeb\x1f\x2c\x37\x64\x5b\xe6\x1d\x73\x95\x30\x35\x36\x0e\x76\x8d\x81\xe6", - "COB", - 18, - ) - yield ( # address, symbol, decimals - b"\x93\x3d\xfc\x56\x22\x79\x2b\x41\x24\x5a\xb8\x31\x34\x16\xca\xf0\xba\x88\x5a\xe7", - "COBR", - 18, - ) - yield ( # address, symbol, decimals - b"\x31\x36\xef\x85\x15\x92\xac\xf4\x9c\xa4\xc8\x25\x13\x1e\x36\x41\x70\xfa\x32\xb3", - "COFI", - 18, - ) - yield ( # address, symbol, decimals - b"\x0c\x91\xb0\x15\xab\xa6\xf7\xb4\x73\x8d\xcd\x36\xe7\x41\x01\x38\xb2\x9a\xdc\x29", - "COIL", - 8, - ) - yield ( # address, symbol, decimals - b"\xc0\x0e\x94\xcb\x66\x2c\x35\x20\x28\x2e\x6f\x57\x17\x21\x40\x04\xa7\xf2\x68\x88", - "COMP", - 18, - ) - yield ( # address, symbol, decimals - b"\x72\x5b\x19\x0b\xc0\x77\xff\xde\x17\xcf\x54\x9a\xa8\xba\x25\xe2\x98\x55\x0b\x18", - "CORI", - 2, - ) - yield ( # address, symbol, decimals - b"\xc4\xbc\xd6\x4c\xb2\x16\xd4\x9f\xd3\xc6\x43\xa3\x27\x62\xf3\x46\x26\xb4\x5a\x1a", - "COSM", - 18, - ) - yield ( # address, symbol, decimals - b"\xdd\xb3\x42\x24\x97\xe6\x1e\x13\x54\x3b\xea\x06\x98\x9c\x07\x89\x11\x75\x55\xc5", - "COTI", - 18, - ) - yield ( # address, symbol, decimals - b"\xe2\xfb\x65\x29\xef\x56\x6a\x08\x0e\x6d\x23\xde\x0b\xd3\x51\x31\x10\x87\xd5\x67", - "COV", - 18, - ) - yield ( # address, symbol, decimals - b"\x31\x91\x0a\xff\x55\x45\x78\x47\x55\x97\x0a\xe1\xfb\xe7\xfe\x65\xd5\xf0\xee\xa2", - "CPAL", - 8, - ) - yield ( # address, symbol, decimals - b"\x0e\xbb\x61\x42\x04\xe4\x7c\x09\xb6\xc3\xfe\xb9\xaa\xec\xad\x8e\xe0\x60\xe2\x3e", - "CPAY", - 0, - ) - yield ( # address, symbol, decimals - b"\xfa\xe4\xee\x59\xcd\xd8\x6e\x3b\xe9\xe8\xb9\x0b\x53\xaa\x86\x63\x27\xd7\xc0\x90", - "CPC", - 18, - ) - yield ( # address, symbol, decimals - b"\xb7\x87\xd4\xea\xc8\x89\x97\x30\xbb\x8c\x57\xfc\x3c\x99\x8c\x49\xc5\x24\x4e\xc0", - "CPEX", - 8, - ) - yield ( # address, symbol, decimals - b"\x70\x64\xaa\xb3\x9a\x0f\xcf\x72\x21\xc3\x39\x67\x19\xd0\x91\x7a\x65\xe3\x55\x15", - "CPLO", - 18, - ) - yield ( # address, symbol, decimals - b"\xf4\x47\x45\xfb\xd4\x1f\x6a\x1b\xa1\x51\xdf\x19\x0d\xb0\x56\x4c\x5f\xcc\x44\x10", - "CPY", - 18, - ) - yield ( # address, symbol, decimals - b"\x0d\x9a\x10\xa0\x46\x6b\x7e\x9a\xd6\x93\xe2\x49\x93\xf5\x10\x5b\xfd\xb2\x40\xe3", - "CR1", - 18, - ) - yield ( # address, symbol, decimals - b"\x7f\x58\x5b\x91\x30\xc6\x4e\x9e\x9f\x47\x0b\x61\x8a\x7b\xad\xd0\x3d\x79\xca\x7e", - "CR7", - 18, - ) - yield ( # address, symbol, decimals - b"\xae\xf3\x8f\xbf\xbf\x93\x2d\x1a\xef\x3b\x80\x8b\xc8\xfb\xd8\xcd\x8e\x1f\x8b\xc5", - "CRB", - 8, - ) - yield ( # address, symbol, decimals - b"\x2c\xf6\x18\xc1\x90\x41\xd9\xdb\x33\x0d\x82\x22\xb8\x60\xa6\x24\x02\x1f\x30\xfb", - "CRBT", - 18, - ) - yield ( # address, symbol, decimals - b"\xf4\x1e\x5f\xbc\x2f\x6a\xac\x20\x0d\xd8\x61\x9e\x12\x1c\xe1\xf0\x5d\x15\x00\x77", - "CRC", - 18, - ) - yield ( # address, symbol, decimals - b"\x67\x2a\x1a\xd4\xf6\x67\xfb\x18\xa3\x33\xaf\x13\x66\x7a\xa0\xaf\x1f\x5b\x5b\xdd", - "CRED", - 18, - ) - yield ( # address, symbol, decimals - b"\x4e\x06\x03\xe2\xa2\x7a\x30\x48\x0e\x5e\x3a\x4f\xe5\x48\xe2\x9e\xf1\x2f\x64\xbe", - "CREDO", - 18, - ) - yield ( # address, symbol, decimals - b"\x15\x80\x79\xee\x67\xfc\xe2\xf5\x84\x72\xa9\x65\x84\xa7\x3c\x7a\xb9\xac\x95\xc1", - "cREP", - 8, - ) - yield ( # address, symbol, decimals - b"\xf4\x9c\xdd\x50\xad\x40\x8d\x38\x7d\x61\x1f\x88\xa6\x47\x17\x9c\x3d\xe3\x49\x2b", - "CRGO", - 18, - ) - yield ( # address, symbol, decimals - b"\x92\x38\xbf\xb7\x81\xa5\x5e\xac\xc3\xcf\x05\xf7\xdf\x94\x03\x8c\x19\x8c\xd9\xb9", - "CRMT", - 8, - ) - yield ( # address, symbol, decimals - b"\xf0\xda\x11\x86\xa4\x97\x72\x26\xb9\x13\x5d\x06\x13\xee\x72\xe2\x29\xec\x3f\x4d", - "CRT", - 18, - ) - yield ( # address, symbol, decimals - b"\xe4\xc9\x4d\x45\xf7\xae\xf7\x01\x8a\x5d\x66\xf4\x4a\xf7\x80\xec\x60\x23\x37\x8e", - "CryptoCarbon", - 6, - ) - yield ( # address, symbol, decimals - b"\x46\xb9\xad\x94\x4d\x10\x59\x45\x0d\xa1\x16\x35\x11\x06\x9c\x71\x8f\x69\x9d\x31", - "CS", - 6, - ) - yield ( # address, symbol, decimals - b"\xf5\xdc\xe5\x72\x82\xa5\x84\xd2\x74\x6f\xaf\x15\x93\xd3\x12\x1f\xca\xc4\x44\xdc", - "cSai", - 8, - ) - yield ( # address, symbol, decimals - b"\x29\xd7\x52\x77\xac\x7f\x03\x35\xb2\x16\x5d\x08\x95\xe8\x72\x5c\xbf\x65\x8d\x73", - "CSNO", - 8, - ) - yield ( # address, symbol, decimals - b"\xbb\x49\xa5\x1e\xe5\xa6\x6c\xa3\xa8\xcb\xe5\x29\x37\x9b\xa4\x4b\xa6\x7e\x67\x71", - "CST", - 18, - ) - yield ( # address, symbol, decimals - b"\x45\x45\x75\x0f\x39\xaf\x6b\xe4\xf2\x37\xb6\x86\x9d\x4e\xcc\xa9\x28\xfd\x5a\x85", - "CTF", - 18, - ) - yield ( # address, symbol, decimals - b"\xc8\x7c\x5d\xd8\x6a\x3d\x56\x7f\xf2\x87\x01\x88\x6f\xb0\x74\x5a\xaa\x89\x8d\xa4", - "CTG", - 18, - ) - yield ( # address, symbol, decimals - b"\x9e\x7d\x29\xbd\x49\x9b\x6c\x7d\xa2\xa5\xb2\xea\xfc\xf4\xa3\x9d\x3b\xd8\x45\xd1", - "CTGC", - 18, - ) - yield ( # address, symbol, decimals - b"\xbf\x4c\xfd\x7d\x1e\xde\xee\xa5\xf6\x60\x08\x27\x41\x1b\x41\xa2\x1e\xb0\x8a\xbd", - "CTL", - 2, - ) - yield ( # address, symbol, decimals - b"\x96\xa6\x56\x09\xa7\xb8\x4e\x88\x42\x73\x2d\xeb\x08\xf5\x6c\x3e\x21\xac\x6f\x8a", - "CTR", - 18, - ) - yield ( # address, symbol, decimals - b"\x49\x16\x04\xc0\xfd\xf0\x83\x47\xdd\x1f\xa4\xee\x06\x2a\x82\x2a\x5d\xd0\x6b\x5d", - "CTSI", - 18, - ) - yield ( # address, symbol, decimals - b"\x66\x2a\xbc\xad\x0b\x7f\x34\x5a\xb7\xff\xb1\xb1\xfb\xb9\xdf\x78\x94\xf1\x8e\x66", - "CTX", - 18, - ) - yield ( # address, symbol, decimals - b"\xea\x11\x75\x5a\xe4\x1d\x88\x9c\xee\xc3\x9a\x63\xe6\xff\x75\xa0\x2b\xc1\xc0\x0d", - "CTXC", - 18, - ) - yield ( # address, symbol, decimals - b"\x49\x0d\xbf\x78\x84\xb8\xe1\x3c\x21\x61\x44\x8b\x83\xdd\x2d\x89\x09\xdb\x48\xed", - "CUR8", - 8, - ) - yield ( # address, symbol, decimals - b"\x1d\xab\xf6\xab\x0e\xb8\xe4\x20\x8e\x7e\x93\x02\xce\xc7\xa0\x14\x06\x89\x52\xe4", - "CURE", - 8, - ) - yield ( # address, symbol, decimals - b"\x39\xaa\x39\xc0\x21\xdf\xba\xe8\xfa\xc5\x45\x93\x66\x93\xac\x91\x7d\x5e\x75\x63", - "cUSDC", - 8, - ) - yield ( # address, symbol, decimals - b"\xda\x6c\xb5\x8a\x0d\x0c\x01\x61\x0a\x29\xc5\xa6\x5c\x30\x3e\x13\xe8\x85\x88\x7c", - "cV", - 18, - ) - yield ( # address, symbol, decimals - b"\x41\xe5\x56\x00\x54\x82\x4e\xa6\xb0\x73\x2e\x65\x6e\x3a\xd6\x4e\x20\xe9\x4e\x45", - "CVC", - 8, - ) - yield ( # address, symbol, decimals - b"\xdb\x56\x44\x8f\xe2\x63\x5f\x79\x12\x28\x7c\xd6\x19\xe7\xed\x3d\x93\x18\x0f\x25", - "CVS", - 18, - ) - yield ( # address, symbol, decimals - b"\xbe\x42\x8c\x38\x67\xf0\x5d\xea\x2a\x89\xfc\x76\xa1\x02\xb5\x44\xea\xc7\xf7\x72", - "CVT", - 18, - ) - yield ( # address, symbol, decimals - b"\xc1\x1b\x12\x68\xc1\xa3\x84\xe5\x5c\x48\xc2\x39\x1d\x8d\x48\x02\x64\xa3\xa7\xf4", - "cWBTC", - 8, - ) - yield ( # address, symbol, decimals - b"\x00\x2a\xcd\x33\xd7\x58\xfc\xbd\xc7\x22\x42\xa8\x6e\xd2\x7e\xfa\x00\x06\xd4\x2f", - "CWIOS", - 18, - ) - yield ( # address, symbol, decimals - b"\x21\x34\x05\x7c\x0b\x46\x1f\x89\x8d\x37\x5c\xea\xd6\x52\xac\xae\x62\xb5\x95\x41", - "CXC", - 18, - ) - yield ( # address, symbol, decimals - b"\xb6\xee\x96\x68\x77\x1a\x79\xbe\x79\x67\xee\x29\xa6\x3d\x41\x84\xf8\x09\x71\x43", - "CXO", - 18, - ) - yield ( # address, symbol, decimals - b"\xfe\x83\x19\x29\x09\x8b\x5f\xf5\xd7\x36\x10\x5b\xd6\x8b\xa9\x46\x0e\xf0\x72\x07", - "CYCLE", - 18, - ) - yield ( # address, symbol, decimals - b"\x3f\x06\xb5\xd7\x84\x06\xcd\x97\xbd\xf1\x0f\x5c\x42\x0b\x24\x1d\x32\x75\x9c\x80", - "CYFM", - 18, - ) - yield ( # address, symbol, decimals - b"\x78\xc2\x92\xd1\x44\x5e\x6b\x95\x58\xbf\x42\xe8\xbc\x36\x92\x71\xde\xd0\x62\xea", - "CYMT", - 8, - ) - yield ( # address, symbol, decimals - b"\x02\x23\xfc\x70\x57\x42\x14\xf6\x58\x13\xfe\x33\x6d\x87\x0a\xc4\x7e\x14\x7f\xae", - "CZR", - 18, - ) - yield ( # address, symbol, decimals - b"\xb3\x31\x9f\x5d\x18\xbc\x0d\x84\xdd\x1b\x48\x25\xdc\xde\x5d\x5f\x72\x66\xd4\x07", - "cZRX", - 8, - ) - yield ( # address, symbol, decimals - b"\xda\xb0\xc3\x1b\xf3\x4c\x89\x7f\xb0\xfe\x90\xd1\x2e\xc9\x40\x1c\xaf\x5c\x36\xec", - "DAB", - 0, - ) - yield ( # address, symbol, decimals - b"\xa3\x11\x08\xe5\xba\xb5\x49\x45\x60\xdb\x34\xc9\x54\x92\x65\x8a\xf2\x39\x35\x7c", - "DACS", - 18, - ) - yield ( # address, symbol, decimals - b"\xfb\x2f\x26\xf2\x66\xfb\x28\x05\xa3\x87\x23\x0f\x2a\xa0\xa3\x31\xb4\xd9\x6f\xba", - "DADI", - 18, - ) - yield ( # address, symbol, decimals - b"\x1d\x01\x98\x82\x9c\xba\x76\x8e\x4e\xf2\xf7\x62\xcd\x82\x84\x2b\xba\x3e\x34\x58", - "DAF", - 6, - ) - yield ( # address, symbol, decimals - b"\x6b\x17\x54\x74\xe8\x90\x94\xc4\x4d\xa9\x8b\x95\x4e\xed\xea\xc4\x95\x27\x1d\x0f", - "DAI", - 18, - ) - yield ( # address, symbol, decimals - b"\x07\xd9\xe4\x9e\xa4\x02\x19\x4b\xf4\x8a\x82\x76\xda\xfb\x16\xe4\xed\x63\x33\x17", - "DALC", - 8, - ) - yield ( # address, symbol, decimals - b"\x9b\x70\x74\x0e\x70\x8a\x08\x3c\x6f\xf3\x8d\xf5\x22\x97\x02\x0f\x5d\xfa\xa5\xee", - "DAN", - 10, - ) - yield ( # address, symbol, decimals - b"\x81\xc9\x15\x1d\xe0\xc8\xba\xfc\xd3\x25\xa5\x7e\x3d\xb5\xa5\xdf\x1c\xeb\xf7\x9c", - "DAT", - 18, - ) - yield ( # address, symbol, decimals - b"\x8f\x69\x3c\xa8\xd2\x1b\x15\x71\x07\x18\x4d\x29\xd3\x98\xa8\xd0\x82\xb3\x8b\x76", - "DATA", - 18, - ) - yield ( # address, symbol, decimals - b"\x1b\x5f\x21\xee\x98\xee\xd4\x8d\x29\x2e\x8e\x2d\x3e\xd8\x2b\x40\xa9\x72\x8a\x22", - "DATABroker", - 18, - ) - yield ( # address, symbol, decimals - b"\xab\xbb\xb6\x44\x7b\x68\xff\xd6\x14\x1d\xa7\x7c\x18\xc7\xb5\x87\x6e\xd6\xc5\xab", - "DATX", - 18, - ) - yield ( # address, symbol, decimals - b"\xd8\x2d\xf0\xab\xd3\xf5\x14\x25\xeb\x15\xef\x75\x80\xfd\xa5\x57\x27\x87\x5f\x14", - "DAV", - 18, - ) - yield ( # address, symbol, decimals - b"\x0b\x4b\xdc\x47\x87\x91\x89\x72\x74\x65\x2d\xc1\x5e\xf5\xc1\x35\xca\xe6\x1e\x60", - "DAX", - 18, - ) - yield ( # address, symbol, decimals - b"\x61\x72\x5f\x3d\xb4\x00\x4a\xfe\x01\x47\x45\xb2\x1d\xab\x1e\x16\x77\xcc\x32\x8b", - "DAXT", - 18, - ) - yield ( # address, symbol, decimals - b"\xe8\x14\xae\xe9\x60\xa8\x52\x08\xc3\xdb\x54\x2c\x53\xe7\xd4\xa6\xc8\xd5\xf6\x0f", - "DAY", - 18, - ) - yield ( # address, symbol, decimals - b"\x9b\x68\xbf\xae\x21\xdf\x5a\x51\x09\x31\xa2\x62\xce\xcf\x63\xf4\x13\x38\xf2\x64", - "DBET", - 18, - ) - yield ( # address, symbol, decimals - b"\x38\x6f\xaa\x47\x03\xa3\x4a\x7f\xdb\x19\xbe\xc2\xe1\x4f\xd4\x27\xc9\x63\x84\x16", - "DCA", - 18, - ) - yield ( # address, symbol, decimals - b"\x2d\x8e\x1d\xd4\x83\x00\x8c\x68\x43\xb9\xcf\x64\x4b\xad\x7f\xb2\x5b\xf5\x2b\x84", - "DCB", - 18, - ) - yield ( # address, symbol, decimals - b"\xff\xa9\x3a\xac\xf4\x92\x97\xd5\x1e\x21\x18\x17\x45\x28\x39\x05\x2f\xdf\xb9\x61", - "DCC", - 18, - ) - yield ( # address, symbol, decimals - b"\x39\x9a\x0e\x6f\xbe\xb3\xd7\x4c\x85\x35\x74\x39\xf4\xc8\xae\xd9\x67\x8a\x5c\xbf", - "DCL", - 3, - ) - yield ( # address, symbol, decimals - b"\x08\xd3\x2b\x0d\xa6\x3e\x2c\x3b\xcf\x80\x19\xc9\xc5\xd8\x49\xd7\xa9\xd7\x91\xe6", - "DCN", - 0, - ) - yield ( # address, symbol, decimals - b"\x00\x00\x00\x00\x00\x18\x76\xeb\x14\x44\xc9\x86\xfd\x50\x2e\x61\x8c\x58\x74\x30", - "dDai", - 8, - ) - yield ( # address, symbol, decimals - b"\xcc\x4e\xf9\xee\xaf\x65\x6a\xc1\xa2\xab\x88\x67\x43\xe9\x8e\x97\xe0\x90\xed\x38", - "DDF", - 18, - ) - yield ( # address, symbol, decimals - b"\x15\x12\x02\xc9\xc1\x8e\x49\x56\x56\xf3\x72\x28\x1f\x49\x3e\xb7\x69\x89\x61\xd5", - "DEB", - 18, - ) - yield ( # address, symbol, decimals - b"\xff\x9b\xce\x84\x09\xdf\x63\x7c\xd3\x93\x6b\xa7\x7f\x87\x46\xbf\x99\xa4\xf8\x0b", - "DEC", - 8, - ) - yield ( # address, symbol, decimals - b"\x07\x5c\x60\xee\x2c\xd3\x08\xff\x47\x87\x3b\x38\xbd\x9a\x0f\xa5\x85\x33\x82\xc4", - "DEEZ", - 18, - ) - yield ( # address, symbol, decimals - b"\xde\x1e\x0a\xe6\x10\x1b\x46\x52\x0c\xf6\x6f\xdc\x0b\x10\x59\xc5\xcc\x3d\x10\x6c", - "DELTA", - 8, - ) - yield ( # address, symbol, decimals - b"\x35\x97\xbf\xd5\x33\xa9\x9c\x9a\xa0\x83\x58\x7b\x07\x44\x34\xe6\x1e\xb0\xa2\x58", - "DENT", - 8, - ) - yield ( # address, symbol, decimals - b"\xdd\x94\xde\x9c\xfe\x06\x35\x77\x05\x1a\x5e\xb7\x46\x5d\x08\x31\x7d\x88\x08\xb6", - "Devcon2 Token", - 0, - ) - yield ( # address, symbol, decimals - b"\x20\xe9\x48\x67\x79\x4d\xba\x03\x0e\xe2\x87\xf1\x40\x6e\x10\x0d\x03\xc8\x4c\xd3", - "DEW", - 18, - ) - yield ( # address, symbol, decimals - b"\x49\x7b\xae\xf2\x94\xc1\x1a\x5f\x0f\x5b\xea\x3f\x2a\xdb\x30\x73\xdb\x44\x8b\x56", - "DEX", - 18, - ) - yield ( # address, symbol, decimals - b"\x43\x1a\xd2\xff\x6a\x9c\x36\x58\x05\xeb\xad\x47\xee\x02\x11\x48\xd6\xf7\xdb\xe0", - "DF", - 18, - ) - yield ( # address, symbol, decimals - b"\xe0\xb7\x92\x7c\x4a\xf2\x37\x65\xcb\x51\x31\x4a\x0e\x05\x21\xa9\x64\x5f\x0e\x2a", - "DGD", - 9, - ) - yield ( # address, symbol, decimals - b"\xf6\xcf\xe5\x3d\x6f\xeb\xae\xea\x05\x1f\x40\x0f\xf5\xfc\x14\xf0\xcb\xbd\xac\xa1", - "DGPT", - 18, - ) - yield ( # address, symbol, decimals - b"\x6a\xed\xbf\x8d\xff\x31\x43\x72\x20\xdf\x35\x19\x50\xba\x2a\x33\x62\x16\x8d\x1b", - "DGS", - 8, - ) - yield ( # address, symbol, decimals - b"\x4f\x3a\xfe\xc4\xe5\xa3\xf2\xa6\xa1\xa4\x11\xde\xf7\xd7\xdf\xe5\x0e\xe0\x57\xbf", - "DGX", - 9, - ) - yield ( # address, symbol, decimals - b"\x55\xb9\xa1\x1c\x2e\x83\x51\xb4\xff\xc7\xb1\x15\x61\x14\x8b\xfa\xc9\x97\x78\x55", - "DGX1", - 9, - ) - yield ( # address, symbol, decimals - b"\x2e\x07\x1d\x29\x66\xaa\x7d\x8d\xec\xb1\x00\x58\x85\xba\x19\x77\xd6\x03\x8a\x65", - "DICE", - 16, - ) - yield ( # address, symbol, decimals - b"\xc7\x19\xd0\x10\xb6\x3e\x5b\xbf\x2c\x05\x51\x87\x2c\xd5\x31\x6e\xd2\x6a\xcd\x83", - "DIP", - 18, - ) - yield ( # address, symbol, decimals - b"\x4f\xab\x74\x07\x79\xc7\x3a\xa3\x94\x5a\x5c\xf6\x02\x5b\xf1\xb0\xe7\xf6\x34\x9c", - "DIRTY", - 18, - ) - yield ( # address, symbol, decimals - b"\xf1\x49\x22\x00\x1a\x2f\xb8\x54\x1a\x43\x39\x05\x43\x7a\xe9\x54\x41\x9c\x24\x39", - "DIT", - 8, - ) - yield ( # address, symbol, decimals - b"\x13\xf1\x1c\x99\x05\xa0\x8c\xa7\x6e\x3e\x85\x3b\xe6\x3d\x4f\x09\x44\x32\x6c\x72", - "DIVX", - 18, - ) - yield ( # address, symbol, decimals - b"\xba\x18\x7b\x09\xff\xa8\xdd\xdc\x80\xd2\x57\x1e\xd3\xcb\xc4\xbe\x0a\xf6\x9e\x0c", - "DKP", - 18, - ) - yield ( # address, symbol, decimals - b"\x6f\x3a\x5d\xcc\x36\xee\xee\x5b\xd8\xb9\xb5\xdb\x3b\x64\x31\x18\x7a\x8f\x1e\x17", - "dLBAT2x", - 18, - ) - yield ( # address, symbol, decimals - b"\xe7\xbe\xd2\xe5\xfc\xa0\x1f\x13\xe8\x23\x0b\xf9\xb6\x79\x63\xad\x23\x1b\x81\xa6", - "dLBAT3x", - 18, - ) - yield ( # address, symbol, decimals - b"\x88\x80\xf7\x1f\xe0\x78\xaa\x1c\x5b\xbf\x8a\x5f\xf6\xfb\x93\xe4\x75\xa9\xfc\xe3", - "dLBAT4x", - 18, - ) - yield ( # address, symbol, decimals - b"\x5c\x24\xf1\x9f\x91\xf4\xea\x8a\x3f\x95\xcb\x21\xeb\xbe\xa0\x53\x44\x6d\x86\x32", - "dLKNC2x", - 18, - ) - yield ( # address, symbol, decimals - b"\x9b\x70\xe6\xaa\xc4\x69\xc7\x5f\x40\x44\xc7\x8d\x41\x6e\xe3\xbc\x1a\x92\xac\x22", - "dLKNC3x", - 18, - ) - yield ( # address, symbol, decimals - b"\x7f\xd7\x5a\xc9\x6c\xa1\xf0\xaf\xfa\x15\x4f\xbc\x1a\xe0\x87\x52\xd4\x88\x0e\x83", - "dLKNC4x", - 18, - ) - yield ( # address, symbol, decimals - b"\x1a\xbb\x24\xc9\xc8\x06\xea\xa7\x17\x50\xfa\x05\xc4\x00\x9b\xd3\x2e\x65\xeb\xad", - "dLLINK2x", - 18, - ) - yield ( # address, symbol, decimals - b"\x92\xba\x75\x61\x69\xaa\x6f\xf8\x2a\x3d\x6a\xe8\xe4\x45\x6a\x58\x83\x18\x2f\xa3", - "dLLINK3x", - 18, - ) - yield ( # address, symbol, decimals - b"\x37\x89\xa8\xca\xc9\xd2\xeb\x3c\xb8\x7c\x09\xca\x34\x22\xb9\x28\xc7\x68\xb3\x62", - "dLLINK4x", - 18, - ) - yield ( # address, symbol, decimals - b"\xfd\x6c\x76\x54\x6d\x93\xe6\x12\x0e\xb6\xea\xa2\x66\x96\x6f\x51\x33\x02\x80\xc3", - "dLREP2x", - 18, - ) - yield ( # address, symbol, decimals - b"\xaf\x16\x30\x88\x08\x36\x1b\x20\x3d\x4e\xd5\x21\xcd\xde\x6d\xd2\xe9\xb1\x68\xf0", - "dLREP3x", - 18, - ) - yield ( # address, symbol, decimals - b"\x24\x0f\xe8\x54\x47\xa8\x78\xf5\x1a\x74\xa5\xdc\x0b\x64\x4b\x4a\x72\x58\x78\x39", - "dLREP4x", - 18, - ) - yield ( # address, symbol, decimals - b"\x07\xe3\xc7\x06\x53\x54\x8b\x04\xf0\xa7\x59\x70\xc1\xf8\x1b\x4c\xbb\xfb\x60\x6f", - "DLT", - 18, - ) - yield ( # address, symbol, decimals - b"\x9f\xe6\x85\x44\x47\xbb\x39\xdc\x8b\x78\x96\x08\x82\x83\x12\x69\xf9\xe7\x84\x08", - "dLWBTC2x", - 18, - ) - yield ( # address, symbol, decimals - b"\x6d\x08\xb8\x60\x02\x22\x1d\xc2\xfe\x4e\x27\x17\x0f\xf9\x0e\x1b\x92\xde\x32\x54", - "dLWBTC3x", - 18, - ) - yield ( # address, symbol, decimals - b"\x4f\x4d\x52\x3c\x69\xa4\x7c\x5c\x3e\xf0\x6c\x53\xec\x64\x80\x1f\x11\xa8\x84\xdd", - "dLWBTC4x", - 18, - ) - yield ( # address, symbol, decimals - b"\x1b\x73\x95\xd7\xd8\xb2\x89\xa7\x89\x20\xa8\x7c\xe1\x21\x60\xba\xcd\x30\x4c\x51", - "dLZRX2x", - 18, - ) - yield ( # address, symbol, decimals - b"\x2a\x93\xcb\xec\x0d\x13\x42\x05\xc3\x52\xd9\x2d\x81\xbb\x7c\x4e\xc5\xef\x4d\x4e", - "dLZRX3x", - 18, - ) - yield ( # address, symbol, decimals - b"\xf8\x57\x53\xfb\x0d\xc0\xa6\xc9\xb4\xf2\x30\xeb\x86\x17\x08\x67\x7a\xc3\xc0\x0f", - "dLZRX4x", - 18, - ) - yield ( # address, symbol, decimals - b"\x2c\xcb\xff\x3a\x04\x2c\x68\x71\x6e\xd2\xa2\xcb\x0c\x54\x4a\x9f\x1d\x19\x35\xe1", - "DMT", - 8, - ) - yield ( # address, symbol, decimals - b"\xef\x63\x44\xde\x1f\xcf\xc5\xf4\x8c\x30\x23\x4c\x16\xc1\x38\x9e\x8c\xdc\x57\x2c", - "DNA", - 18, - ) - yield ( # address, symbol, decimals - b"\x82\xb0\xe5\x04\x78\xee\xaf\xde\x39\x2d\x45\xd1\x25\x9e\xd1\x07\x1b\x6f\xda\x81", - "[deprecated] DNA", - 18, - ) - yield ( # address, symbol, decimals - b"\x0a\xbd\xac\xe7\x0d\x37\x90\x23\x5a\xf4\x48\xc8\x85\x47\x60\x3b\x94\x56\x04\xea", - "DNT", - 18, - ) - yield ( # address, symbol, decimals - b"\xe4\x3e\x20\x41\xdc\x37\x86\xe1\x66\x96\x1e\xd9\x48\x4a\x55\x39\x03\x3d\x10\xfb", - "DNX", - 18, - ) - yield ( # address, symbol, decimals - b"\xe5\xda\xda\x80\xaa\x64\x77\xe8\x5d\x09\x74\x7f\x28\x42\xf7\x99\x3d\x0d\xf7\x1c", - "DOCK", - 18, - ) - yield ( # address, symbol, decimals - b"\xe4\xf6\xd4\x6c\x24\x4b\xb7\xcf\x3e\x21\x8c\xdf\xb5\xc3\x5c\xf9\xa4\xd9\xc9\x20", - "DONK", - 18, - ) - yield ( # address, symbol, decimals - b"\xc0\xf9\xbd\x5f\xa5\x69\x8b\x65\x05\xf6\x43\x90\x0f\xfa\x51\x5e\xa5\xdf\x54\xa9", - "DONUT", - 18, - ) - yield ( # address, symbol, decimals - b"\x90\x6b\x3f\x8b\x78\x45\x84\x01\x88\xea\xb5\x3c\x3f\x5a\xd3\x48\xa7\x87\x75\x2f", - "DOR", - 15, - ) - yield ( # address, symbol, decimals - b"\xac\x32\x11\xa5\x02\x54\x14\xaf\x28\x66\xff\x09\xc2\x3f\xc1\x8b\xc9\x7e\x79\xb1", - "DOV", - 18, - ) - yield ( # address, symbol, decimals - b"\x01\xb3\xec\x4a\xae\x1b\x87\x29\x52\x9b\xeb\x49\x65\xf2\x7d\x00\x87\x88\xb0\xeb", - "DPP", - 18, - ) - yield ( # address, symbol, decimals - b"\x82\xf4\xde\xd9\xce\xc9\xb5\x75\x0f\xbf\xf5\xc2\x18\x5a\xee\x35\xaf\xc1\x65\x87", - "DREAM", - 6, - ) - yield ( # address, symbol, decimals - b"\x41\x9c\x4d\xb4\xb9\xe2\x5d\x6d\xb2\xad\x96\x91\xcc\xb8\x32\xc8\xd9\xfd\xa0\x5e", - "DRGN", - 18, - ) - yield ( # address, symbol, decimals - b"\xe3\x0e\x02\xf0\x49\x95\x7e\x2a\x59\x07\x58\x9e\x06\xba\x64\x6f\xb2\xc3\x21\xba", - "DRPU", - 8, - ) - yield ( # address, symbol, decimals - b"\x9a\xf4\xf2\x69\x41\x67\x7c\x70\x6c\xfe\xcf\x6d\x33\x79\xff\x01\xbb\x85\xd5\xab", - "DRT", - 8, - ) - yield ( # address, symbol, decimals - b"\x62\xd4\xc0\x46\x44\x31\x4f\x35\x86\x8b\xa4\xc6\x5c\xc2\x7a\x77\x68\x1d\xe7\xa9", - "DRVH", - 18, - ) - yield ( # address, symbol, decimals - b"\x2a\x40\x25\x1b\xa7\x33\xf1\x08\x35\x44\x7a\x8f\xcf\x0e\x0f\x1c\xe6\x58\xf1\x8a", - "dsBAT", - 18, - ) - yield ( # address, symbol, decimals - b"\x14\x3b\x59\x1d\xe9\xcf\xf2\xba\xff\xb7\x17\xac\x0d\x10\x9b\xc5\xc0\x1e\x20\x3e", - "dsBAT2x", - 18, - ) - yield ( # address, symbol, decimals - b"\x83\xa0\xdc\x31\x70\x0a\xf1\x77\x2b\x7e\xa8\x4f\xde\x76\x75\xca\x60\x21\xb5\xda", - "dsBAT3x", - 18, - ) - yield ( # address, symbol, decimals - b"\xc3\x7a\x0d\x81\xd9\x61\x05\x14\xdb\x10\x47\xde\x52\xe9\xa9\x09\x35\x30\xd2\xe4", - "dsBAT4x", - 18, - ) - yield ( # address, symbol, decimals - b"\x1e\x09\xbd\x8c\xad\xb4\x41\x63\x2e\x44\x1d\xb3\xe1\xd7\x99\x09\xee\x0a\x22\x56", - "DSC", - 1, - ) - yield ( # address, symbol, decimals - b"\x03\xe3\xf0\xc2\x59\x65\xf1\x3d\xbb\xc5\x82\x46\x73\x8c\x18\x3e\x27\xb2\x6a\x56", - "DSCP", - 18, - ) - yield ( # address, symbol, decimals - b"\x69\x2a\x2b\x8b\xe7\xe1\x66\xd6\xee\x93\xb2\x2a\x4b\x8b\x35\x1e\x5d\x44\x43\x39", - "dsKNC", - 18, - ) - yield ( # address, symbol, decimals - b"\x30\xbb\x2d\x30\xb3\xa3\xa3\xf4\x94\x3f\x81\xd4\x60\xb4\x5d\x2d\xac\x57\x35\xdf", - "dsKNC2x", - 18, - ) - yield ( # address, symbol, decimals - b"\x5e\x91\x88\x28\x0e\x1e\x35\xae\x8f\x89\x9b\x09\xc9\x75\x58\xd0\xf1\x95\xcc\x14", - "dsKNC3x", - 18, - ) - yield ( # address, symbol, decimals - b"\x46\x65\xa6\xf4\xf7\x8b\xc1\x3a\xce\xcb\x32\x8f\x5f\x22\xf0\xe4\xe6\x6d\x22\x85", - "dsKNC4x", - 18, - ) - yield ( # address, symbol, decimals - b"\xaa\xbf\xd4\x07\xf3\x67\xb6\x32\x02\x2b\x4b\xde\x28\x9d\x9c\x85\xf1\xa0\x24\xd2", - "dsLINK", - 18, - ) - yield ( # address, symbol, decimals - b"\xa9\x01\xe4\x8d\xb5\xa8\x56\xda\x5f\x27\xe7\x4a\x93\x62\x59\x80\x8d\x4c\x83\xaf", - "dsLINK2x", - 18, - ) - yield ( # address, symbol, decimals - b"\xfd\xb4\x70\x08\xb9\x09\xd5\x3d\x4e\x41\x13\x06\xd5\xba\x5a\xf7\x74\x91\xe8\x71", - "dsLINK3x", - 18, - ) - yield ( # address, symbol, decimals - b"\x93\x7e\xfc\xe0\x75\x94\xd1\x4f\x87\x86\x50\xd5\xb6\x37\xf0\x22\x95\x2f\xae\x86", - "dsLINK4x", - 18, - ) - yield ( # address, symbol, decimals - b"\xe3\x32\x97\xb9\x93\xc8\x9a\x55\x80\x69\x32\x13\x88\x04\xb0\xdb\xb8\xd7\xca\x1c", - "dsREP", - 18, - ) - yield ( # address, symbol, decimals - b"\x44\x26\x2a\x6a\x07\x25\x6f\x07\x11\xf8\x15\x45\x1f\x2c\xd1\xa0\x28\xa0\xa7\x55", - "dsREP2x", - 18, - ) - yield ( # address, symbol, decimals - b"\xec\x3d\xe3\x39\x67\x89\x8c\x47\xec\x8f\xbb\x16\x2b\x93\x9c\x70\x14\xbd\x06\x01", - "dsREP3x", - 18, - ) - yield ( # address, symbol, decimals - b"\x66\x56\x4d\x3b\xce\xc6\x9c\x7f\xbe\xfe\xa1\x85\xbd\x6b\x9f\xaa\x57\xfa\xeb\xb9", - "dsREP4x", - 18, - ) - yield ( # address, symbol, decimals - b"\x68\xd5\x34\x41\xc0\xe2\x53\xf7\x6c\x50\x0e\x55\x1b\xde\xa3\xd1\x02\x20\x6c\x9a", - "DST", - 18, - ) - yield ( # address, symbol, decimals - b"\x9f\xc2\x08\x94\x7d\x92\xb1\x58\x8f\x7b\xde\x24\x56\x20\x43\x95\x68\xa8\x58\x7a", - "dsWBTC", - 18, - ) - yield ( # address, symbol, decimals - b"\x67\x1c\x78\x86\xc6\x1a\x18\xfc\x6e\x94\x89\x3a\x79\x1e\xaa\x06\x9d\x70\xeb\xa7", - "dsWBTC2x", - 18, - ) - yield ( # address, symbol, decimals - b"\x84\x95\x48\xf5\xd9\x66\x01\x7b\x6b\x49\xf6\xa3\xa7\x40\xbb\xdb\x78\x17\x6e\xdb", - "dsWBTC3x", - 18, - ) - yield ( # address, symbol, decimals - b"\x2f\xc9\xf5\x22\x40\xf6\x8e\xf0\xf1\x78\xe1\xb8\x96\x43\x5d\x8f\x64\xa8\xdf\xaa", - "dsWBTC4x", - 18, - ) - yield ( # address, symbol, decimals - b"\xdf\x0d\x72\x77\x42\xa8\xa9\xea\xcf\xc3\x30\x5c\x68\x7a\x0d\x21\x82\x6d\xae\x7e", - "dsZRX", - 18, - ) - yield ( # address, symbol, decimals - b"\xe1\x8e\x17\x89\xb9\x6f\xef\x73\x69\x09\x5d\xe1\x30\x3c\x3a\xcd\xcf\x03\x77\x5a", - "dsZRX2x", - 18, - ) - yield ( # address, symbol, decimals - b"\x48\x78\x6d\x24\x38\x97\xc5\x81\xe8\x8b\x59\x8d\x4f\x78\x6f\xb7\x16\x9e\x08\xac", - "dsZRX3x", - 18, - ) - yield ( # address, symbol, decimals - b"\xb7\x0a\xe7\x7f\xf9\xec\xf1\x3b\xae\xa9\x80\x76\x18\xec\x72\x36\xac\xf4\x4b\xd1", - "dsZRX4x", - 18, - ) - yield ( # address, symbol, decimals - b"\x5a\xdc\x96\x1d\x6a\xc3\xf7\x06\x2d\x2e\xa4\x5f\xef\xb8\xd8\x16\x7d\x44\xb1\x90", - "DTH", - 18, - ) - yield ( # address, symbol, decimals - b"\xd2\x34\xbf\x24\x10\xa0\x00\x9d\xf9\xc3\xc6\x3b\x61\x0c\x09\x73\x8f\x18\xcc\xd7", - "DTR", - 8, - ) - yield ( # address, symbol, decimals - b"\xc2\x04\x64\xe0\xc3\x73\x48\x6d\x2b\x33\x35\x57\x6e\x83\xa2\x18\xb1\x61\x8a\x5e", - "DTRC", - 18, - ) - yield ( # address, symbol, decimals - b"\xf9\xf7\xc2\x9c\xfd\xf1\x9f\xcf\x1f\x2a\xa6\xb8\x4a\xa3\x67\xbc\xf1\xbd\x16\x76", - "DTT", - 18, - ) - yield ( # address, symbol, decimals - b"\x00\x76\x34\x73\xe9\xd7\xc8\x2f\x38\xed\x84\x3f\x02\x1e\x25\x58\xd7\x42\x2a\xd8", - "DUCAT", - 4, - ) - yield ( # address, symbol, decimals - b"\x00\x00\x00\x00\x00\x89\x43\xc6\x5c\xaf\x78\x9f\xff\xcf\x95\x3b\xe1\x56\xf6\xf8", - "dUSDC", - 8, - ) - yield ( # address, symbol, decimals - b"\xff\xf3\xad\xa5\xa2\x55\x5a\x2b\x59\xbf\xf4\xf4\x4d\xfa\xd9\x01\x46\xcc\xe8\xcb", - "DXR", - 18, - ) - yield ( # address, symbol, decimals - b"\x8d\xb5\x4c\xa5\x69\xd3\x01\x9a\x2b\xa1\x26\xd0\x3c\x37\xc4\x4b\x5e\xf8\x1e\xf6", - "DXT", - 8, - ) - yield ( # address, symbol, decimals - b"\xce\x5c\x60\x3c\x78\xd0\x47\xef\x43\x03\x2e\x96\xb5\xb7\x85\x32\x4f\x75\x3a\x4f", - "E4ROW", - 2, - ) - yield ( # address, symbol, decimals - b"\x99\x4f\x0d\xff\xdb\xae\x0b\xbf\x09\xb6\x52\xd6\xf1\x1a\x49\x3f\xd3\x3f\x42\xb9", - "EAGLE", - 18, - ) - yield ( # address, symbol, decimals - b"\x90\x0b\x44\x49\x23\x6a\x7b\xb2\x6b\x28\x66\x01\xdd\x14\xd2\xbd\xe7\xa6\xac\x6c", - "EARTH", - 8, - ) - yield ( # address, symbol, decimals - b"\x31\xf3\xd9\xd1\xbe\xce\x0c\x03\x3f\xf7\x8f\xa6\xda\x60\xa6\x04\x8f\x3e\x13\xc5", - "EBC", - 18, - ) - yield ( # address, symbol, decimals - b"\xaf\xc3\x97\x88\xc5\x1f\x0c\x1f\xf7\xb5\x53\x17\xf3\xe7\x02\x99\xe5\x21\xff\xf6", - "eBCH", - 8, - ) - yield ( # address, symbol, decimals - b"\xeb\x7c\x20\x02\x71\x72\xe5\xd1\x43\xfb\x03\x0d\x50\xf9\x1c\xec\xe2\xd1\x48\x5d", - "EBTC", - 8, - ) - yield ( # address, symbol, decimals - b"\xa0\x1b\x65\x6e\x49\xef\xbb\x82\x10\xd8\x82\xa1\xf1\xa4\xd1\x0f\x5c\xad\xa8\xcc", - "ECGO", - 18, - ) - yield ( # address, symbol, decimals - b"\xa5\x78\xac\xc0\xcb\x78\x75\x78\x1b\x78\x80\x90\x3f\x45\x94\xd1\x3c\xfa\x8b\x98", - "ECN", - 2, - ) - yield ( # address, symbol, decimals - b"\x17\xf9\x34\x75\xd2\xa9\x78\xf5\x27\xc3\xf7\xc4\x4a\xbf\x44\xad\xfb\xa6\x0d\x5c", - "ECO2", - 2, - ) - yield ( # address, symbol, decimals - b"\x17\x1d\x75\x0d\x42\xd6\x61\xb6\x2c\x27\x7a\x6b\x48\x6a\xdb\x82\x34\x8c\x3e\xca", - "ECOM", - 18, - ) - yield ( # address, symbol, decimals - b"\xfa\x1d\xe2\xee\x97\xe4\xc1\x0c\x94\xc9\x1c\xb2\xb5\x06\x2b\x89\xfb\x14\x0b\x82", - "EDC", - 6, - ) - yield ( # address, symbol, decimals - b"\x08\x71\x1d\x3b\x02\xc8\x75\x8f\x2f\xb3\xab\x4e\x80\x22\x84\x18\xa7\xf8\xe3\x9c", - "EDG", - 0, - ) - yield ( # address, symbol, decimals - b"\x79\xc5\xa1\xae\x58\x63\x22\xa0\x7b\xfb\x60\xbe\x36\xe1\xb3\x1c\xe8\xc8\x4a\x1e", - "EDI", - 18, - ) - yield ( # address, symbol, decimals - b"\xce\xd4\xe9\x31\x98\x73\x4d\xda\xff\x84\x92\xd5\x25\xbd\x25\x8d\x49\xeb\x38\x8e", - "EDO", - 18, - ) - yield ( # address, symbol, decimals - b"\xc5\x28\xc2\x8f\xec\x0a\x90\xc0\x83\x32\x8b\xc4\x5f\x58\x7e\xe2\x15\x76\x0a\x0f", - "EDR", - 18, - ) - yield ( # address, symbol, decimals - b"\x2a\x22\xe5\xcc\xa0\x0a\x3d\x63\x30\x8f\xa3\x9f\x29\x20\x2e\xb1\xb3\x9e\xef\x52", - "EDU", - 18, - ) - yield ( # address, symbol, decimals - b"\xbf\x8d\x8f\x12\x42\xb9\x5d\xfb\xae\x53\x2a\xf6\xb0\xf4\x46\x39\x05\x41\x5c\xc1", - "EDX", - 18, - ) - yield ( # address, symbol, decimals - b"\xb5\x3a\x96\xbc\xbd\xd9\xcf\x78\xdf\xf2\x0b\xab\x6c\x2b\xe7\xba\xec\x8f\x00\xf8", - "eGAS", - 8, - ) - yield ( # address, symbol, decimals - b"\x99\x9a\xa6\x48\x8f\x07\x6e\x67\x65\x44\x8f\x09\x0a\xba\x83\xfb\xb4\x70\xfc\x99", - "EGG", - 18, - ) - yield ( # address, symbol, decimals - b"\x8e\x1b\x44\x8e\xc7\xad\xfc\x7f\xa3\x5f\xc2\xe8\x85\x67\x8b\xd3\x23\x17\x6e\x34", - "EGT", - 18, - ) - yield ( # address, symbol, decimals - b"\xa1\x9b\xbe\xf6\x4e\xff\x0d\x06\x0a\x65\x3e\x4d\xf1\x0a\x57\xb6\xd8\x00\x6d\x3e", - "EGX", - 18, - ) - yield ( # address, symbol, decimals - b"\xf9\xf0\xfc\x71\x67\xc3\x11\xdd\x2f\x1e\x21\xe9\x20\x4f\x87\xeb\xa9\x01\x2f\xb2", - "EHT", - 8, - ) - yield ( # address, symbol, decimals - b"\xa6\xa8\x40\xe5\x0b\xca\xa5\x0d\xa0\x17\xb9\x1a\x0d\x86\xb8\xb2\xd4\x11\x56\xee", - "EKO", - 18, - ) - yield ( # address, symbol, decimals - b"\xba\xb1\x65\xdf\x94\x55\xaa\x0f\x2a\xed\x1f\x25\x65\x52\x0b\x91\xdd\xad\xb4\xc8", - "EKT", - 8, - ) - yield ( # address, symbol, decimals - b"\xd4\x9f\xf1\x36\x61\x45\x13\x13\xca\x15\x53\xfd\x69\x54\xbd\x1d\x9b\x6e\x02\xb9", - "ELEC", - 18, - ) - yield ( # address, symbol, decimals - b"\xbf\x21\x79\x85\x9f\xc6\xd5\xbe\xe9\xbf\x91\x58\x63\x2d\xc5\x16\x78\xa4\x10\x0e", - "ELF", - 18, - ) - yield ( # address, symbol, decimals - b"\xc8\xc6\xa3\x1a\x4a\x80\x6d\x37\x10\xa7\xb3\x8b\x7b\x29\x6d\x2f\xab\xcc\xdb\xa8", - "ELIX", - 18, - ) - yield ( # address, symbol, decimals - b"\x44\x19\x7a\x4c\x44\xd6\xa0\x59\x29\x7c\xaf\x6b\xe4\xf7\xe1\x72\xbd\x56\xca\xaf", - "ELTCOIN", - 8, - ) - yield ( # address, symbol, decimals - b"\xa9\x55\x92\xdc\xff\xa3\xc0\x80\xb4\xb4\x0e\x45\x9c\x5f\x56\x92\xf6\x7d\xb7\xf8", - "ELY", - 18, - ) - yield ( # address, symbol, decimals - b"\x28\xb9\x4f\x58\xb1\x1a\xc9\x45\x34\x13\x29\xdb\xf2\xe5\xef\x7f\x8b\xd4\x42\x25", - "EMB", - 8, - ) - yield ( # address, symbol, decimals - b"\xb6\x7b\x88\xa2\x57\x08\xa3\x5a\xe7\xc2\xd7\x36\xd3\x98\xd2\x68\xce\x4f\x7f\x83", - "EMON", - 8, - ) - yield ( # address, symbol, decimals - b"\x95\xda\xaa\xb9\x80\x46\x84\x6b\xf4\xb2\x85\x3e\x23\xcb\xa2\x36\xfa\x39\x4a\x31", - "EMONT", - 8, - ) - yield ( # address, symbol, decimals - b"\x95\x01\xbf\xc4\x88\x97\xdc\xee\xad\xf7\x31\x13\xef\x63\x5d\x2f\xf7\xee\x4b\x97", - "EMT", - 18, - ) - yield ( # address, symbol, decimals - b"\xb8\x02\xb2\x4e\x06\x37\xc2\xb8\x7d\x2e\x8b\x77\x84\xc0\x55\xbb\xe9\x21\x01\x1a", - "EMV", - 2, - ) - yield ( # address, symbol, decimals - b"\x03\x9f\x50\x50\xde\x49\x08\xf9\xb5\xdd\xf4\x0a\x4f\x3a\xa3\xf3\x29\x08\x63\x87", - "ENC", - 18, - ) - yield ( # address, symbol, decimals - b"\xf0\xee\x6b\x27\xb7\x59\xc9\x89\x3c\xe4\xf0\x94\xb4\x9a\xd2\x8f\xd1\x5a\x23\xe4", - "ENG", - 8, - ) - yield ( # address, symbol, decimals - b"\x5d\xba\xc2\x4e\x98\xe2\xa4\xf4\x3a\xdc\x0d\xc8\x2a\xf4\x03\xfc\xa0\x63\xce\x2c", - "ENGT", - 18, - ) - yield ( # address, symbol, decimals - b"\xf6\x29\xcb\xd9\x4d\x37\x91\xc9\x25\x01\x52\xbd\x8d\xfb\xdf\x38\x0e\x2a\x3b\x9c", - "ENJ", - 18, - ) - yield ( # address, symbol, decimals - b"\x16\xea\x01\xac\xb4\xb0\xbc\xa2\x00\x0e\xe5\x47\x33\x48\xb6\x93\x7e\xe6\xf7\x2f", - "ENQ", - 10, - ) - yield ( # address, symbol, decimals - b"\x5b\xc7\xe5\xf0\xab\x8b\x2e\x10\xd2\xd0\xa3\xf2\x17\x39\xfc\xe6\x24\x59\xae\xf3", - "ENTRP", - 18, - ) - yield ( # address, symbol, decimals - b"\x7e\x9e\x43\x1a\x0b\x8c\x4d\x53\x2c\x74\x5b\x10\x43\xc7\xfa\x29\xa4\x8d\x4f\xba", - "eosDAC", - 18, - ) - yield ( # address, symbol, decimals - b"\x87\x50\x89\xa7\x34\x21\x3c\xa3\x9f\x0d\x93\xc2\xbb\xb8\x20\x98\x27\xec\x5e\x9f", - "EPH", - 8, - ) - yield ( # address, symbol, decimals - b"\x35\xba\xa7\x20\x38\xf1\x27\xf9\xf8\xc8\xf9\xb4\x91\x04\x9f\x64\xf3\x77\x91\x4d", - "EPX", - 4, - ) - yield ( # address, symbol, decimals - b"\x50\xee\x67\x46\x89\xd7\x5c\x0f\x88\xe8\xf8\x3c\xfe\x8c\x4b\x69\xe8\xfd\x59\x0d", - "EPY", - 8, - ) - yield ( # address, symbol, decimals - b"\x47\xdd\x62\xd4\xd0\x75\xde\xad\x71\xd0\xe0\x02\x99\xfc\x56\xa2\xd7\x47\xbe\xbb", - "EQL", - 18, - ) - yield ( # address, symbol, decimals - b"\x74\xce\xda\x77\x28\x1b\x33\x91\x42\xa3\x68\x17\xfa\x5f\x9e\x29\x41\x2b\xab\x85", - "ERO", - 8, - ) - yield ( # address, symbol, decimals - b"\x92\xa5\xb0\x4d\x0e\xd5\xd9\x4d\x7a\x19\x3d\x1d\x33\x4d\x3d\x16\x99\x6f\x4e\x13", - "ERT", - 18, - ) - yield ( # address, symbol, decimals - b"\x36\x97\x60\xeb\xf8\x9d\x57\x7a\x73\x4d\x92\x7a\x95\x99\xc1\x92\x13\x97\xa1\x52", - "ESB", - 8, - ) - yield ( # address, symbol, decimals - b"\xe8\xa1\xdf\x95\x8b\xe3\x79\x04\x5e\x2b\x46\xa3\x1a\x98\xb9\x3a\x2e\xcd\xfd\xed", - "ESZ", - 18, - ) - yield ( # address, symbol, decimals - b"\x1b\x97\x43\xf5\x56\xd6\x5e\x75\x7c\x4c\x65\x0b\x45\x55\xba\xf3\x54\xcb\x8b\xd3", - "ETBS", - 12, - ) - yield ( # address, symbol, decimals - b"\xdd\x74\xa7\xa3\x76\x9f\xa7\x25\x61\xb3\xa6\x9e\x65\x96\x8f\x49\x74\x8c\x69\x0c", - "ETCH", - 18, - ) - yield ( # address, symbol, decimals - b"\x28\xc8\xd0\x1f\xf6\x33\xea\x9c\xd8\xfc\x6a\x45\x1d\x74\x57\x88\x9e\x69\x8d\xe6", - "ETG", - 0, - ) - yield ( # address, symbol, decimals - b"\x3a\x26\x74\x6d\xdb\x79\xb1\xb8\xe4\x45\x0e\x3f\x4f\xfe\x32\x85\xa3\x07\x38\x7e", - "ETHB", - 8, - ) - yield ( # address, symbol, decimals - b"\xb1\xcd\x6e\x41\x53\xb2\xa3\x90\xcf\x00\xa6\x55\x6b\x0f\xc1\x45\x8c\x4a\x55\x33", - "ETHBNT", - 18, - ) - yield ( # address, symbol, decimals - b"\xdb\xfb\x42\x3e\x9b\xbf\x16\x29\x43\x88\xe0\x76\x96\xa5\x12\x0e\x4c\xeb\xa0\xc5", - "ETHD", - 18, - ) - yield ( # address, symbol, decimals - b"\xe5\x2e\x75\xe8\xa9\x75\x46\xf4\x09\x91\xb4\x89\xe9\x2c\x68\xeb\xb3\x86\xdc\x97", - "ETHPAY", - 18, - ) - yield ( # address, symbol, decimals - b"\x3c\x4a\x3f\xfd\x81\x3a\x10\x7f\xeb\xd5\x7b\x2f\x01\xbc\x34\x42\x64\xd9\x0f\xde", - "ETK", - 2, - ) - yield ( # address, symbol, decimals - b"\x69\x27\xc6\x9f\xb4\xda\xf2\x04\x3f\xbb\x1c\xb7\xb8\x6c\x56\x61\x41\x6b\xea\x29", - "ETR", - 18, - ) - yield ( # address, symbol, decimals - b"\xd9\x92\x98\x98\x59\x02\xc9\xa6\x9b\xf4\xc8\xa0\x89\x5f\xa1\x07\x21\x20\x4e\xcc", - "EUCX", - 18, - ) - yield ( # address, symbol, decimals - b"\xdb\x25\xf2\x11\xab\x05\xb1\xc9\x7d\x59\x55\x16\xf4\x57\x94\x52\x8a\x80\x7a\xd8", - "EURS", - 2, - ) - yield ( # address, symbol, decimals - b"\xab\xdf\x14\x78\x70\x23\x5f\xcf\xc3\x41\x53\x82\x8c\x76\x9a\x70\xb3\xfa\xe0\x1f", - "EURT", - 6, - ) - yield ( # address, symbol, decimals - b"\x52\x36\x30\x97\x6e\xb6\x14\x76\x21\xb5\xc3\x1c\x78\x1e\xbe\x2e\xc2\xa8\x06\xe0", - "eUSD", - 18, - ) - yield ( # address, symbol, decimals - b"\xb6\x2d\x18\xde\xa7\x40\x45\xe8\x22\x35\x2c\xe4\xb3\xee\x77\x31\x9d\xc5\xff\x2f", - "EVC", - 18, - ) - yield ( # address, symbol, decimals - b"\xaa\x5c\x28\xbe\x0f\x11\x73\x61\x2e\xa3\xfc\xc9\xe4\x61\xcc\xb7\xb9\x39\x02\x13", - "EVCO", - 18, - ) - yield ( # address, symbol, decimals - b"\x92\x31\x08\xa4\x39\xc4\xe8\xc2\x31\x5c\x4f\x65\x21\xe5\xce\x95\xb4\x4e\x9b\x4c", - "EVE", - 18, - ) - yield ( # address, symbol, decimals - b"\x5a\xae\xfe\x84\xe0\xfb\x3d\xd1\xf0\xfc\xff\x6f\xa7\x46\x81\x24\x98\x6b\x91\xbd", - "EVED", - 18, - ) - yield ( # address, symbol, decimals - b"\xa2\x6c\x4c\xaa\xae\xa8\xb8\x8e\xf4\x9b\xf8\xc3\x80\x48\x8f\x66\xc2\xd8\x07\xae", - "EVF", - 18, - ) - yield ( # address, symbol, decimals - b"\x44\x2d\x98\x5e\xfe\xbc\x63\x3b\x8b\xfd\x14\xff\x99\xe8\x60\xa5\x60\x9a\x64\x84", - "EVO", - 18, - ) - yield ( # address, symbol, decimals - b"\xf3\xdb\x5f\xa2\xc6\x6b\x7a\xf3\xeb\x0c\x0b\x78\x25\x10\x81\x6c\xbe\x48\x13\xb8", - "EVX", - 4, - ) - yield ( # address, symbol, decimals - b"\x44\x49\x97\xb7\xe7\xfc\x83\x0e\x20\x08\x9a\xfe\xa3\x07\x8c\xd5\x18\xfc\xf2\xa2", - "EWO", - 18, - ) - yield ( # address, symbol, decimals - b"\x0d\x9a\x65\x3f\x68\x11\x68\xf4\x10\xd1\x4d\x19\xb7\x74\x3c\x04\x1e\xaf\xc5\x8a", - "EXE", - 8, - ) - yield ( # address, symbol, decimals - b"\xc9\x8e\x06\x39\xc6\xd2\xec\x03\x7a\x61\x53\x41\xc3\x69\x66\x6b\x11\x0e\x80\xe5", - "EXMR", - 8, - ) - yield ( # address, symbol, decimals - b"\xff\xee\x4d\xb0\xf3\x0a\x43\x95\x53\x98\x77\x6a\x95\x24\xfd\xff\x06\x80\xdd\x7f", - "EXR", - 8, - ) - yield ( # address, symbol, decimals - b"\xe4\x69\xc4\x47\x3a\xf8\x22\x17\xb3\x0c\xf1\x7b\x10\xbc\xdb\x6c\x8c\x79\x6e\x75", - "EXRN", - 0, - ) - yield ( # address, symbol, decimals - b"\xe0\x6a\xf9\x51\x08\x6e\xc3\xc4\x88\xb5\x0e\x31\xbe\x29\xc0\x7f\x8a\x26\x0c\xa3", - "EXU", - 16, - ) - yield ( # address, symbol, decimals - b"\x5c\x74\x3a\x35\xe9\x03\xf6\xc5\x84\x51\x4e\xc6\x17\xac\xee\x06\x11\xcf\x44\xf3", - "EXY", - 18, - ) - yield ( # address, symbol, decimals - b"\x5e\x60\x16\xae\x7d\x7c\x49\xd3\x47\xdc\xf8\x34\x86\x0b\x9f\x3e\xe2\x82\x81\x2b", - "EZT", - 8, - ) - yield ( # address, symbol, decimals - b"\xb6\x77\x34\x52\x1e\xab\xbe\x9c\x77\x37\x29\xdb\x73\xe1\x6c\xc2\xdf\xb2\x0a\x58", - "E\u20b9", - 2, - ) - yield ( # address, symbol, decimals - b"\x0a\x1d\x2f\xf7\x15\x6a\x48\x13\x15\x53\xcf\x38\x1f\x22\x0b\xbe\xdb\x4e\xfa\x37", - "FABA", - 18, - ) - yield ( # address, symbol, decimals - b"\x1c\xca\xa0\xf2\xa7\x21\x0d\x76\xe1\xfd\xec\x74\x0d\x5f\x32\x3e\x2e\x1b\x16\x72", - "FACE", - 18, - ) - yield ( # address, symbol, decimals - b"\x19\x0e\x56\x9b\xe0\x71\xf4\x0c\x70\x4e\x15\x82\x5f\x28\x54\x81\xcb\x74\xb6\xcc", - "FAM", - 12, - ) - yield ( # address, symbol, decimals - b"\x06\xf6\x5b\x8c\xfc\xb1\x3a\x9f\xe3\x7d\x83\x6f\xe9\x70\x8d\xa3\x8e\xcb\x29\xb2", - "FAME", - 18, - ) - yield ( # address, symbol, decimals - b"\x90\x16\x2f\x41\x88\x6c\x09\x46\xd0\x99\x99\x73\x6f\x1c\x15\xc8\xa1\x05\xa4\x21", - "FAN", - 18, - ) - yield ( # address, symbol, decimals - b"\x7c\xf6\xdc\x76\x94\x82\xab\xee\x2f\xf7\x57\x95\xd0\x00\xf3\x81\xa8\x06\x2d\xec", - "FAR", - 18, - ) - yield ( # address, symbol, decimals - b"\x41\xf7\x23\x44\x84\x33\x36\x7b\xe1\x40\xd5\x28\xd3\x5e\xfe\xcd\x3e\x02\x3d\xb6", - "FARM", - 18, - ) - yield ( # address, symbol, decimals - b"\x23\x35\x20\x36\xe9\x11\xa2\x2c\xfc\x69\x2b\x5e\x2e\x19\x66\x92\x65\x8a\xde\xd9", - "FDZ", - 18, - ) - yield ( # address, symbol, decimals - b"\x4e\x59\x44\x79\xfa\x41\x7a\x1e\x9c\x57\x90\xa4\x13\x57\x58\x02\xd3\x93\x01\x0f", - "FER", - 8, - ) - yield ( # address, symbol, decimals - b"\xd9\xa8\xcf\xe2\x1c\x23\x2d\x48\x50\x65\xcb\x62\xa9\x68\x66\x79\x9d\x46\x45\xf7", - "FGP", - 18, - ) - yield ( # address, symbol, decimals - b"\x52\xfb\x36\xc8\x3a\xd3\x3c\x18\x24\x91\x2f\xc8\x10\x71\xca\x5e\xeb\x8a\xb3\x90", - "FID", - 18, - ) - yield ( # address, symbol, decimals - b"\x2a\x73\xcb\x91\xed\x89\x83\x39\x8f\x83\x08\x2c\x09\x3a\xc3\x06\xca\xc2\x09\xff", - "FIG", - 18, - ) - yield ( # address, symbol, decimals - b"\xdf\xc3\xe8\x57\xc8\xcc\xea\x76\x57\xe0\xed\x98\xab\x92\xe0\x48\xe3\x8d\xee\x0f", - "FIH", - 18, - ) - yield ( # address, symbol, decimals - b"\x00\x9e\x86\x49\x23\xb4\x92\x63\xc7\xf1\x0d\x19\xb7\xf8\xab\x7a\x9a\x5a\xad\x33", - "FKX", - 18, - ) - yield ( # address, symbol, decimals - b"\xf0\x4a\x8a\xc5\x53\xfc\xed\xb5\xba\x99\xa6\x47\x99\x15\x58\x26\xc1\x36\xb0\xbe", - "FLIXX", - 18, - ) - yield ( # address, symbol, decimals - b"\x04\x93\x99\xa6\xb0\x48\xd5\x29\x71\xf7\xd1\x22\xae\x21\xa1\x53\x27\x22\x28\x5f", - "FLOT", - 18, - ) - yield ( # address, symbol, decimals - b"\x3a\x1b\xda\x28\xad\xb5\xb0\xa8\x12\xa7\xcf\x10\xa1\x95\x0c\x92\x0f\x79\xbc\xd3", - "FLP", - 18, - ) - yield ( # address, symbol, decimals - b"\x9a\xef\xbe\x0b\x3c\x3b\xa9\xea\xb2\x62\xcb\x98\x56\xe8\x15\x7a\xb7\x64\x8e\x09", - "FLR", - 18, - ) - yield ( # address, symbol, decimals - b"\x95\x4b\x5d\xe0\x9a\x55\xe5\x97\x55\xac\xbd\xa2\x9e\x1e\xb7\x4a\x45\xd3\x01\x75", - "FLUZ", - 18, - ) - yield ( # address, symbol, decimals - b"\xb4\xd0\xfd\xfc\x84\x97\xae\xf9\x7d\x3c\x28\x92\xae\x68\x2e\xe0\x60\x64\xa2\xbc", - "FMF", - 18, - ) - yield ( # address, symbol, decimals - b"\xaa\x9d\x86\x66\x66\xc2\xa3\x74\x8d\x6b\x23\xff\x69\xe6\x3e\x52\xf0\x8d\x9a\xb4", - "FMTA", - 18, - ) - yield ( # address, symbol, decimals - b"\x4d\xf4\x7b\x49\x69\xb2\x91\x1c\x96\x65\x06\xe3\x59\x2c\x41\x38\x94\x93\x95\x3b", - "FND", - 18, - ) - yield ( # address, symbol, decimals - b"\x07\x07\x68\x1f\x34\x4d\xeb\x24\x18\x40\x37\xfc\x02\x28\x85\x6f\x21\x37\xb0\x2e", - "FNKOS", - 18, - ) - yield ( # address, symbol, decimals - b"\xbd\x4b\x60\xa1\x38\xb3\xfc\xe3\x58\x4e\xa0\x1f\x50\xc0\x90\x8c\x18\xf9\x67\x7a", - "FNTB", - 8, - ) - yield ( # address, symbol, decimals - b"\x49\x46\xfc\xea\x7c\x69\x26\x06\xe8\x90\x80\x02\xe5\x5a\x58\x2a\xf4\x4a\xc1\x21", - "FOAM", - 18, - ) - yield ( # address, symbol, decimals - b"\x2a\x09\x3b\xcf\x0c\x98\xef\x74\x4b\xb6\xf6\x9d\x74\xf2\xf8\x56\x05\x32\x42\x90", - "FOOD", - 8, - ) - yield ( # address, symbol, decimals - b"\x5b\xb1\x63\x2f\xa0\x02\x3e\x1a\xa7\x6a\x1a\xe9\x2b\x46\x35\xc8\xdb\xa4\x9f\xa2", - "FORK", - 18, - ) - yield ( # address, symbol, decimals - b"\x42\x70\xbb\x23\x8f\x6d\xd8\xb1\xc3\xca\x01\xf9\x6c\xa6\x5b\x26\x47\xc0\x6d\x3c", - "FOTA", - 18, - ) - yield ( # address, symbol, decimals - b"\xc7\x70\xee\xfa\xd2\x04\xb5\x18\x0d\xf6\xa1\x4e\xe1\x97\xd9\x9d\x80\x8e\xe5\x2d", - "FOX", - 18, - ) - yield ( # address, symbol, decimals - b"\x8c\x39\xaf\xdf\x7b\x17\xf1\x2c\x55\x32\x08\x55\x5e\x51\xab\x86\xe6\x9c\x35\xaa", - "FR8", - 8, - ) - yield ( # address, symbol, decimals - b"\x0a\xbe\xfb\x76\x11\xcb\x3a\x01\xea\x3f\xad\x85\xf3\x3c\x3c\x93\x4f\x8e\x2c\xf4", - "FRD", - 18, - ) - yield ( # address, symbol, decimals - b"\x17\xe6\x7d\x1c\xb4\xe3\x49\xb9\xca\x4b\xc3\xe1\x7c\x7d\xf2\xa3\x97\xa7\xbb\x64", - "FREC", - 18, - ) - yield ( # address, symbol, decimals - b"\xd8\xb8\xe1\xec\xa8\x9d\xa0\x14\xe6\x7f\xdb\xc2\x01\x4e\xaa\x8e\x17\x10\x79\xbf", - "FRECNX", - 18, - ) - yield ( # address, symbol, decimals - b"\x48\xdf\x4e\x02\x96\xf9\x08\xce\xab\x04\x28\xa5\x18\x2d\x19\xb3\x1f\xc0\x37\xd6", - "FRV", - 8, - ) - yield ( # address, symbol, decimals - b"\x36\xa7\x35\x57\xf5\xbd\xe5\x19\x5e\xc3\x9e\xca\x82\xd2\x8b\x8a\x36\xd2\x11\x41", - "FRX", - 18, - ) - yield ( # address, symbol, decimals - b"\xcb\xe8\x3d\x63\x23\xa9\xec\x79\x5d\x5c\xb7\x3b\x33\x3b\x23\x37\x7a\x82\x3e\xcc", - "fstETHDAI", - 18, - ) - yield ( # address, symbol, decimals - b"\x78\xa7\x3b\x6c\xbc\x5d\x18\x3c\xe5\x6e\x78\x6f\x6e\x90\x5c\xad\xec\x63\x54\x7b", - "FT", - 18, - ) - yield ( # address, symbol, decimals - b"\x94\x3e\xd8\x52\xda\xdb\x5c\x39\x38\xec\xdc\x68\x83\x71\x8d\xf8\x14\x2d\xe4\xc8", - "FTI", - 18, - ) - yield ( # address, symbol, decimals - b"\x4e\x15\x36\x1f\xd6\xb4\xbb\x60\x9f\xa6\x3c\x81\xa2\xbe\x19\xd8\x73\x71\x78\x70", - "FTM", - 18, - ) - yield ( # address, symbol, decimals - b"\x20\x23\xdc\xf7\xc4\x38\xc8\xc8\xc0\xb0\xf2\x8d\xba\xe1\x55\x20\xb4\xf3\xee\x20", - "FTR", - 18, - ) - yield ( # address, symbol, decimals - b"\x2a\xec\x18\xc5\x50\x0f\x21\x35\x9c\xe1\xbe\xa5\xdc\x17\x77\x34\x4d\xf4\xc0\xdc", - "FTT", - 18, - ) - yield ( # address, symbol, decimals - b"\xd5\x59\xf2\x02\x96\xff\x48\x95\xda\x39\xb5\xbd\x9a\xdd\x54\xb4\x42\x59\x6a\x61", - "FTX", - 18, - ) - yield ( # address, symbol, decimals - b"\x41\x87\x5c\x23\x32\xb0\x87\x7c\xdf\xaa\x69\x9b\x64\x14\x02\xb7\xd4\x64\x2c\x32", - "FTXT", - 8, - ) - yield ( # address, symbol, decimals - b"\xea\x38\xea\xa3\xc8\x6c\x8f\x9b\x75\x15\x33\xba\x2e\x56\x2d\xeb\x9a\xcd\xed\x40", - "FUEL", - 18, - ) - yield ( # address, symbol, decimals - b"\x41\x9d\x0d\x8b\xdd\x9a\xf5\xe6\x06\xae\x22\x32\xed\x28\x5a\xff\x19\x0e\x71\x1b", - "FUN", - 8, - ) - yield ( # address, symbol, decimals - b"\x18\x29\xaa\x04\x5e\x21\xe0\xd5\x95\x80\x02\x4a\x95\x1d\xb4\x80\x96\xe0\x17\x82", - "FXT", - 18, - ) - yield ( # address, symbol, decimals - b"\xa0\x24\xe8\x05\x7e\xec\x47\x4a\x9b\x23\x56\x83\x37\x07\xdd\x05\x79\xe2\x6e\xf3", - "FXY", - 18, - ) - yield ( # address, symbol, decimals - b"\x88\xfc\xfb\xc2\x2c\x6d\x3d\xba\xa2\x5a\xf4\x78\xc5\x78\x97\x83\x39\xbd\xe7\x7a", - "FYN", - 18, - ) - yield ( # address, symbol, decimals - b"\x8f\x09\x21\xf3\x05\x55\x62\x41\x43\xd4\x27\xb3\x40\xb1\x15\x69\x14\x88\x2c\x10", - "FYP", - 18, - ) - yield ( # address, symbol, decimals - b"\x6b\xff\x2f\xe2\x49\x60\x1e\xd0\xdb\x3a\x87\x42\x4a\x2e\x92\x31\x18\xbb\x03\x12", - "FYZ", - 18, - ) - yield ( # address, symbol, decimals - b"\xe5\xae\xe1\x63\x51\x31\x19\xf4\xf7\x50\x37\x6c\x71\x87\x66\xb4\x0f\xa3\x7a\x5f", - "Fzcoin", - 18, - ) - yield ( # address, symbol, decimals - b"\xa3\xee\x21\xc3\x06\xa7\x00\xe6\x82\xab\xcd\xfe\x9b\xaa\x6a\x08\xf3\x82\x04\x19", - "G-CRE", - 18, - ) - yield ( # address, symbol, decimals - b"\xf6\x74\x51\xdc\x84\x21\xf0\xe0\xaf\xeb\x52\xfa\xa8\x10\x10\x34\xed\x08\x1e\xd9", - "GAM", - 8, - ) - yield ( # address, symbol, decimals - b"\x63\xf8\x8a\x22\x98\xa5\xc4\xae\xe3\xc2\x16\xaa\x6d\x92\x6b\x18\x4a\x4b\x24\x37", - "GAME", - 18, - ) - yield ( # address, symbol, decimals - b"\x68\x71\x74\xf8\xc4\x9c\xeb\x77\x29\xd9\x25\xc3\xa9\x61\x50\x7e\xa4\xac\x7b\x28", - "GAT", - 18, - ) - yield ( # address, symbol, decimals - b"\x9d\x76\x30\xad\xf7\xab\x0b\x0c\xb0\x0a\xf7\x47\xdb\x76\x86\x4d\xf0\xec\x82\xe4", - "GATE", - 18, - ) - yield ( # address, symbol, decimals - b"\x70\x88\x76\xf4\x86\xe4\x48\xee\x89\xeb\x33\x2b\xfb\xc8\xe5\x93\x55\x30\x58\xb9", - "GAVEL", - 18, - ) - yield ( # address, symbol, decimals - b"\xcc\x2a\x74\xb2\x8e\x78\x6f\xac\x86\xbe\x3c\xa3\x54\xb1\x94\x1c\x25\xab\x3e\xab", - "GBO", - 18, - ) - yield ( # address, symbol, decimals - b"\x75\x85\xf8\x35\xae\x2d\x52\x27\x22\xd2\x68\x43\x23\xa0\xba\x83\x40\x1f\x32\xf5", - "GBT", - 18, - ) - yield ( # address, symbol, decimals - b"\x12\xfc\xd6\x46\x3e\x66\x97\x4c\xf7\xbb\xc2\x4f\xfc\x4d\x40\xd6\xbe\x45\x82\x83", - "GBX", - 18, - ) - yield ( # address, symbol, decimals - b"\x8e\xb3\x87\x15\x60\x4b\x93\x88\x12\xde\xc2\x5a\x0a\x1b\xc0\x5b\x4b\xec\xb9\xca", - "GC", - 18, - ) - yield ( # address, symbol, decimals - b"\x17\x78\xff\xfb\xd4\x31\xbe\x2a\xc3\xd6\x9e\x64\xd1\xd8\x19\xc7\x86\xb2\xbe\xe0", - "GCG", - 8, - ) - yield ( # address, symbol, decimals - b"\xdb\x0f\x69\x30\x6f\xf8\xf9\x49\xf2\x58\xe8\x3f\x6b\x87\xee\x5d\x05\x2d\x0b\x23", - "GCP", - 18, - ) - yield ( # address, symbol, decimals - b"\xa4\xec\x83\xc8\x90\x78\x88\xd0\x06\xa3\x7d\xeb\xf7\x55\xee\x39\x76\x6f\x38\xae", - "GCU", - 18, - ) - yield ( # address, symbol, decimals - b"\x44\xa6\x7c\x85\x70\xa6\x1a\x28\xba\xfd\x00\x35\x04\x2f\x2f\x0a\x73\xa6\x44\x28", - "GCX", - 6, - ) - yield ( # address, symbol, decimals - b"\x51\x5d\x7e\x9d\x75\xe2\xb7\x6d\xb6\x0f\x8a\x05\x1c\xd8\x90\xeb\xa2\x32\x86\xbc", - "GDAO", - 18, - ) - yield ( # address, symbol, decimals - b"\x4f\x4f\x0d\xb4\xde\x90\x3b\x88\xf2\xb1\xa2\x84\x79\x71\xe2\x31\xd5\x4f\x8f\xd3", - "GEE", - 8, - ) - yield ( # address, symbol, decimals - b"\xd0\x46\x4a\x19\x85\xed\xb7\x6b\xa8\x26\x02\x53\x4a\x2d\x89\xd8\xcc\xf3\xb7\xec", - "GEFT", - 2, - ) - yield ( # address, symbol, decimals - b"\x24\x08\x3b\xb3\x00\x72\x64\x3c\x3b\xb9\x0b\x44\xb7\x28\x58\x60\xa7\x55\xe6\x87", - "GELD", - 18, - ) - yield ( # address, symbol, decimals - b"\xc7\xbb\xa5\xb7\x65\x58\x1e\xfb\x2c\xdd\x26\x79\xdb\x5b\xea\x9e\xe7\x9b\x20\x1f", - "GEM", - 18, - ) - yield ( # address, symbol, decimals - b"\x54\x3f\xf2\x27\xf6\x4a\xa1\x7e\xa1\x32\xbf\x98\x86\xca\xb5\xdb\x55\xdc\xad\xdf", - "GEN", - 18, - ) - yield ( # address, symbol, decimals - b"\x6d\xd4\xe4\xaa\xd2\x9a\x40\xed\xd6\xa4\x09\xb9\xc1\x62\x51\x86\xc9\x85\x5b\x4d", - "GENE", - 8, - ) - yield ( # address, symbol, decimals - b"\x8a\x85\x42\x88\xa5\x97\x60\x36\xa7\x25\x87\x91\x64\xca\x3e\x91\xd3\x0c\x6a\x1b", - "GET", - 18, - ) - yield ( # address, symbol, decimals - b"\x39\x30\xe4\xdd\xb4\xd2\x4e\xf2\xf4\xcb\x54\xc1\xf0\x09\xa3\x69\x4b\x70\x84\x28", - "GFN", - 8, - ) - yield ( # address, symbol, decimals - b"\x7f\x96\x9c\x4d\x38\x8c\xa0\xae\x39\xa4\xfd\xdb\x1a\x6f\x89\x87\x8c\xa2\xfb\xf8", - "GGC", - 18, - ) - yield ( # address, symbol, decimals - b"\x72\x8f\x30\xfa\x2f\x10\x07\x42\xc7\x94\x9d\x19\x61\x80\x4f\xa8\xe0\xb1\x38\x7d", - "GHX", - 18, - ) - yield ( # address, symbol, decimals - b"\xfc\xd8\x62\x98\x56\x28\xb2\x54\x06\x1f\x7a\x91\x80\x35\xb8\x03\x40\xd0\x45\xd3", - "GIF", - 18, - ) - yield ( # address, symbol, decimals - b"\xae\x4f\x56\xf0\x72\xc3\x4c\x0a\x65\xb3\xae\x3e\x4d\xb7\x97\xd8\x31\x43\x9d\x93", - "GIM", - 8, - ) - yield ( # address, symbol, decimals - b"\x9a\xa7\xd1\x19\xbd\xf7\x7f\x65\xa7\x28\x45\x81\xa2\x11\xd8\xc4\x4f\xfb\x04\xb4", - "GIRL", - 18, - ) - yield ( # address, symbol, decimals - b"\x90\x0d\xb9\x99\x07\x4d\x92\x77\xc5\xda\x2a\x43\xf2\x52\xd7\x43\x66\x23\x0d\xa0", - "GIV", - 18, - ) - yield ( # address, symbol, decimals - b"\xa5\xb3\x99\xa7\x6b\xba\xbe\xf9\x3d\x70\x25\x55\x25\xc1\xd2\xbc\xc3\x70\x1d\x0b", - "GL", - 18, - ) - yield ( # address, symbol, decimals - b"\x71\xd0\x1d\xb8\xd6\xa2\xfb\xea\x7f\x8d\x43\x45\x99\xc2\x37\x98\x0c\x23\x4e\x4c", - "GLA", - 8, - ) - yield ( # address, symbol, decimals - b"\xa0\x00\x8f\x51\x0f\xe9\xee\x69\x6e\x7e\x32\x0c\x9e\x5c\xbf\x61\xe2\x77\x91\xee", - "GMB", - 18, - ) - yield ( # address, symbol, decimals - b"\x68\x10\xe7\x76\x88\x0c\x02\x93\x3d\x47\xdb\x1b\x9f\xc0\x59\x08\xe5\x38\x6b\x96", - "GNO", - 18, - ) - yield ( # address, symbol, decimals - b"\xa7\x44\x76\x44\x31\x19\xa9\x42\xde\x49\x85\x90\xfe\x1f\x24\x54\xd7\xd4\xac\x0d", - "GNT", - 18, - ) - yield ( # address, symbol, decimals - b"\x6e\xc8\xa2\x4c\xab\xdc\x33\x9a\x06\xa1\x72\xf8\x22\x3e\xa5\x57\x05\x5a\xda\xa5", - "GNX", - 9, - ) - yield ( # address, symbol, decimals - b"\x24\x75\x51\xf2\xeb\x33\x62\xe2\x22\xc7\x42\xe9\xc7\x88\xb8\x95\x7d\x9b\xc8\x7e", - "GNY", - 18, - ) - yield ( # address, symbol, decimals - b"\xea\xb4\x31\x93\xcf\x06\x23\x07\x3c\xa8\x9d\xb9\xb7\x12\x79\x63\x56\xfa\x74\x14", - "GOLDX", - 18, - ) - yield ( # address, symbol, decimals - b"\x42\x3b\x5f\x62\xb3\x28\xd0\xd6\xd4\x48\x70\xf4\xee\xe3\x16\xbe\xfa\x0b\x2d\xf5", - "GOT", - 18, - ) - yield ( # address, symbol, decimals - b"\xee\xaa\x40\xb2\x8a\x2d\x1b\x0b\x08\xf6\xf9\x7b\xb1\xdd\x4b\x75\x31\x6c\x61\x07", - "GOVI", - 18, - ) - yield ( # address, symbol, decimals - b"\xce\x59\x3a\x29\x90\x59\x51\xe8\xfc\x57\x9b\xc0\x92\xec\xa7\x25\x77\xda\x57\x5c", - "GR", - 6, - ) - yield ( # address, symbol, decimals - b"\x4f\xbb\x35\x00\x52\xbc\xa5\x41\x75\x66\xf1\x88\xeb\x2e\xbc\xe5\xb1\x9b\xc9\x64", - "GRG", - 18, - ) - yield ( # address, symbol, decimals - b"\x12\xb1\x9d\x3e\x2c\xcc\x14\xda\x04\xfa\xe3\x3e\x63\x65\x2c\xe4\x69\xb3\xf2\xfd", - "GRID", - 12, - ) - yield ( # address, symbol, decimals - b"\xb4\x44\x20\x8c\xb0\x51\x6c\x15\x01\x78\xfc\xf9\xa5\x26\x04\xbc\x04\xa1\xac\xea", - "GRMD", - 18, - ) - yield ( # address, symbol, decimals - b"\xc1\x71\x95\xbd\xe4\x9d\x70\xce\xfc\xf8\xa9\xf2\xee\x17\x59\xff\xc2\x7b\xf0\xb1", - "GROO", - 18, - ) - yield ( # address, symbol, decimals - b"\x0a\x9a\x9c\xe6\x00\xd0\x8b\xf9\xb7\x6f\x49\xfa\x4e\x7b\x38\xa6\x7e\xbe\xb1\xe6", - "GROW", - 8, - ) - yield ( # address, symbol, decimals - b"\xc9\x44\xe9\x0c\x64\xb2\xc0\x76\x62\xa2\x92\xbe\x62\x44\xbd\xf0\x5c\xda\x44\xa7", - "GRT", - 18, - ) - yield ( # address, symbol, decimals - b"\x22\x8b\xa5\x14\x30\x9f\xfd\xf0\x3a\x81\xa2\x05\xa6\xd0\x40\xe4\x29\xd6\xe8\x0c", - "GSC", - 18, - ) - yield ( # address, symbol, decimals - b"\xe5\x30\x44\x1f\x4f\x73\xbd\xb6\xdc\x2f\xa5\xaf\x7c\x3f\xc5\xfd\x55\x1e\xc8\x38", - "GSE", - 4, - ) - yield ( # address, symbol, decimals - b"\x00\x00\x00\x00\x00\xb3\xf8\x79\xcb\x30\xfe\x24\x3b\x4d\xfe\xe4\x38\x69\x1c\x04", - "GST2", - 2, - ) - yield ( # address, symbol, decimals - b"\xb7\x08\x35\xd7\x82\x2e\xbb\x94\x26\xb5\x65\x43\xe3\x91\x84\x6c\x10\x7b\xd3\x2c", - "GTC", - 18, - ) - yield ( # address, symbol, decimals - b"\x30\xe1\x93\xbd\x3f\x52\x71\x3d\x55\x62\xcf\x31\x6f\x35\x11\x50\x34\x52\x5f\x44", - "GTEC", - 18, - ) - yield ( # address, symbol, decimals - b"\xeb\x98\x6d\xa9\x94\xe4\xa1\x18\xd5\x95\x6b\x02\xd8\xb7\xc3\xc7\xce\x37\x36\x74", - "GTH", - 18, - ) - yield ( # address, symbol, decimals - b"\x02\x5a\xba\xd9\xe5\x18\x51\x6f\xda\xaf\xbd\xcd\xb9\x70\x1b\x37\xfb\x7e\xf0\xfa", - "GTKT", - 0, - ) - yield ( # address, symbol, decimals - b"\xc5\xbb\xae\x50\x78\x1b\xe1\x66\x93\x06\xb9\xe0\x01\xef\xf5\x7a\x29\x57\xb0\x9d", - "GTO", - 5, - ) - yield ( # address, symbol, decimals - b"\xbd\xcf\xbf\x5c\x4d\x91\xab\xc0\xbc\x97\x09\xc7\x28\x6d\x00\x06\x3c\x0e\x6f\x22", - "GUESS", - 2, - ) - yield ( # address, symbol, decimals - b"\x98\x47\x34\x5d\xe8\xb6\x14\xc9\x56\x14\x6b\xbe\xa5\x49\x33\x6d\x9c\x8d\x26\xb6", - "GULD", - 8, - ) - yield ( # address, symbol, decimals - b"\xf7\xb0\x98\x29\x8f\x7c\x69\xfc\x14\x61\x0b\xf7\x1d\x5e\x02\xc6\x07\x92\x89\x4c", - "GUP", - 3, - ) - yield ( # address, symbol, decimals - b"\x05\x6f\xd4\x09\xe1\xd7\xa1\x24\xbd\x70\x17\x45\x9d\xfe\xa2\xf3\x87\xb6\xd5\xcd", - "GUSD", - 2, - ) - yield ( # address, symbol, decimals - b"\x10\x3c\x3a\x20\x9d\xa5\x9d\x3e\x7c\x4a\x89\x30\x7e\x66\x52\x1e\x08\x1c\xfd\xf0", - "GVT", - 18, - ) - yield ( # address, symbol, decimals - b"\x58\xca\x30\x65\xc0\xf2\x4c\x7c\x96\xae\xe8\xd6\x05\x6b\x5b\x5d\xec\xf9\xc2\xf8", - "GXC", - 10, - ) - yield ( # address, symbol, decimals - b"\x22\xf0\xaf\x8d\x78\x85\x1b\x72\xee\x79\x9e\x05\xf5\x4a\x77\x00\x15\x86\xb1\x8a", - "GXVC", - 10, - ) - yield ( # address, symbol, decimals - b"\x9d\xae\x8b\x7f\x6d\x37\xea\x8e\x5d\x32\xc6\xc3\xe8\x56\xa6\xd8\xa1\xd3\xb3\x63", - "GZB", - 18, - ) - yield ( # address, symbol, decimals - b"\x8c\x65\xe9\x92\x29\x7d\x5f\x09\x2a\x75\x6d\xef\x24\xf4\x78\x1a\x28\x01\x98\xff", - "GZE", - 18, - ) - yield ( # address, symbol, decimals - b"\x0a\x68\x0e\x50\x3f\xd9\xae\x14\xb6\x24\x44\xc7\x5f\xfb\x4b\xef\x1f\x10\x56\x66", - "GZM", - 8, - ) - yield ( # address, symbol, decimals - b"\xe6\x38\xdc\x39\xb6\xad\xbe\xe8\x52\x6b\x5c\x22\x38\x0b\x4b\x45\xda\xf4\x6d\x8e", - "GZR", - 6, - ) - yield ( # address, symbol, decimals - b"\x5b\xfc\x1f\xf7\xf9\xe0\x87\xc6\x4f\xef\xb3\x4f\x2e\x7c\xf2\x4e\x55\x70\x91\x9f", - "HABS", - 18, - ) - yield ( # address, symbol, decimals - b"\x93\xa7\x17\x4d\xaf\xd3\x1d\x13\x40\x0c\xd9\xfa\x01\xf4\xe5\xb5\xba\xa0\x0d\x39", - "HAK", - 18, - ) - yield ( # address, symbol, decimals - b"\x48\xc1\xb2\xf3\xef\xa8\x5f\xba\xfb\x2a\xb9\x51\xbf\x4b\xa8\x60\xa0\x8c\xdb\xb7", - "HAND", - 0, - ) - yield ( # address, symbol, decimals - b"\x5a\x56\x7e\x28\xdb\xfa\x2b\xbd\x3e\xf1\x3c\x0a\x01\xbe\x11\x47\x45\x34\x96\x57", - "HAPPY", - 2, - ) - yield ( # address, symbol, decimals - b"\x2b\x89\xd3\x2c\xfb\x9b\x28\xdf\xcc\x7f\xac\xc2\x24\x53\xc8\x12\xf9\x09\x76\x55", - "HAREM", - 18, - ) - yield ( # address, symbol, decimals - b"\x90\x02\xd4\x48\x5b\x75\x94\xe3\xe8\x50\xf0\xa2\x06\x71\x3b\x30\x51\x13\xf6\x9e", - "HAT", - 18, - ) - yield ( # address, symbol, decimals - b"\xe2\x49\x2f\x8d\x2a\x26\x18\xd8\x70\x9c\xa9\x9b\x1d\x8d\x75\x71\x3b\xd8\x40\x89", - "HB", - 18, - ) - yield ( # address, symbol, decimals - b"\xdd\x6c\x68\xbb\x32\x46\x2e\x01\x70\x50\x11\xa4\xe2\xad\x1a\x60\x74\x0f\x21\x7f", - "HBT", - 15, - ) - yield ( # address, symbol, decimals - b"\xe3\x4e\x19\x44\xe7\x76\xf3\x9b\x92\x52\x79\x0a\x05\x27\xeb\xda\x64\x7a\xe6\x68", - "HBZ", - 18, - ) - yield ( # address, symbol, decimals - b"\xff\xe8\x19\x6b\xc2\x59\xe8\xde\xdc\x54\x4d\x93\x57\x86\xaa\x47\x09\xec\x3e\x64", - "HDG", - 18, - ) - yield ( # address, symbol, decimals - b"\x95\xc4\xbe\x85\x34\xd6\x9c\x24\x8c\x06\x23\xc4\xc9\xa7\xa2\xa0\x01\xc1\x73\x37", - "HDL", - 18, - ) - yield ( # address, symbol, decimals - b"\x86\xa6\x30\x63\xb3\xa6\x06\x52\xfb\x07\x0f\x23\xcb\xb4\xa9\x83\x3f\xdb\xbf\xf8", - "HDLRE", - 18, - ) - yield ( # address, symbol, decimals - b"\x19\x74\x78\x16\xa0\x30\xfe\xcd\xa3\x39\x4c\x60\x62\xcd\xf6\xb9\xb4\xdb\x0e\x0b", - "HEM", - 8, - ) - yield ( # address, symbol, decimals - b"\x49\x1c\x9a\x23\xdb\x85\x62\x3e\xed\x45\x5a\x8e\xfd\xd6\xab\xa9\xb9\x11\xc5\xdf", - "HER", - 18, - ) - yield ( # address, symbol, decimals - b"\x2b\x59\x1e\x99\xaf\xe9\xf3\x2e\xaa\x62\x14\xf7\xb7\x62\x97\x68\xc4\x0e\xeb\x39", - "HEX", - 8, - ) - yield ( # address, symbol, decimals - b"\xe9\xc9\xe7\xe1\xda\xbe\xa8\x30\xc9\x58\xc3\x9d\x6b\x25\x96\x4a\x6f\x52\x14\x3a", - "HEY", - 18, - ) - yield ( # address, symbol, decimals - b"\xba\x21\x84\x52\x0a\x1c\xc4\x9a\x61\x59\xc5\x7e\x61\xe1\x84\x4e\x08\x56\x15\xb6", - "HGT", - 8, - ) - yield ( # address, symbol, decimals - b"\x9b\xb1\xdb\x14\x45\xb8\x32\x13\xa5\x6d\x90\xd3\x31\x89\x4b\x3f\x26\x21\x8e\x4e", - "HIBT", - 18, - ) - yield ( # address, symbol, decimals - b"\xa9\x24\x0f\xbc\xac\x1f\x0b\x9a\x6a\xdf\xb0\x4a\x53\xc8\xe3\xb0\xcc\x1d\x14\x44", - "HIG", - 18, - ) - yield ( # address, symbol, decimals - b"\x7f\xcc\xad\xee\x21\x66\x04\x25\xfd\xec\x86\x02\x9b\x63\x62\x84\x5f\xfc\x05\x2c", - "HIN", - 8, - ) - yield ( # address, symbol, decimals - b"\x14\xf3\x7b\x57\x42\x42\xd3\x66\x55\x8d\xb6\x1f\x33\x35\x28\x9a\x50\x35\xc5\x06", - "HKG", - 3, - ) - yield ( # address, symbol, decimals - b"\x9e\x6b\x2b\x11\x54\x2f\x2b\xc5\x2f\x30\x29\x07\x7a\xce\x37\xe8\xfd\x83\x8d\x7f", - "HKN", - 8, - ) - yield ( # address, symbol, decimals - b"\x88\xac\x94\xd5\xd1\x75\x13\x03\x47\xfc\x95\xe1\x09\xd7\x7a\xc0\x9d\xbf\x5a\xb7", - "HKY", - 18, - ) - yield ( # address, symbol, decimals - b"\x66\xeb\x65\xd7\xab\x8e\x95\x67\xba\x0f\xa6\xe3\x7c\x30\x59\x56\xc5\x34\x15\x74", - "HLX", - 5, - ) - yield ( # address, symbol, decimals - b"\xaa\x0b\xb1\x0c\xec\x1f\xa3\x72\xeb\x3a\xbc\x17\xc9\x33\xfc\x6b\xa8\x63\xdd\x9e", - "HMC", - 18, - ) - yield ( # address, symbol, decimals - b"\xcb\xcc\x0f\x03\x6e\xd4\x78\x8f\x63\xfc\x0f\xee\x32\x87\x3d\x6a\x74\x87\xb9\x08", - "HMQ", - 8, - ) - yield ( # address, symbol, decimals - b"\xd6\xcb\x17\x57\x19\x36\x5a\x2e\xa6\x30\xf2\x66\xc5\x3d\xdf\xbe\x4e\x46\x8e\x25", - "HNI", - 18, - ) - yield ( # address, symbol, decimals - b"\x9c\x9f\xe3\xbd\x60\xb2\x2a\x97\x35\x90\x8b\x95\x89\x01\x1e\x78\xf2\x02\x5c\x11", - "HNST", - 18, - ) - yield ( # address, symbol, decimals - b"\xb4\x5d\x7b\xc4\xce\xbc\xab\x98\xad\x09\xba\xbd\xf8\xc8\x18\xb2\x29\x2b\x67\x2c", - "HODL", - 18, - ) - yield ( # address, symbol, decimals - b"\x5b\x07\x51\x71\x3b\x25\x27\xd7\xf0\x02\xc0\xc4\xe2\xa3\x7e\x12\x19\x61\x0a\x6b", - "HORSE", - 18, - ) - yield ( # address, symbol, decimals - b"\x6c\x6e\xe5\xe3\x1d\x82\x8d\xe2\x41\x28\x2b\x96\x06\xc8\xe9\x8e\xa4\x85\x26\xe2", - "HOT (Holo)", - 18, - ) - yield ( # address, symbol, decimals - b"\x9a\xf8\x39\x68\x7f\x6c\x94\x54\x2a\xc5\xec\xe2\xe3\x17\xda\xae\x35\x54\x93\xa1", - "HOT (Hydro)", - 18, - ) - yield ( # address, symbol, decimals - b"\x38\xc6\xa6\x83\x04\xcd\xef\xb9\xbe\xc4\x8b\xbf\xaa\xba\x5c\x5b\x47\x81\x8b\xb2", - "HPB", - 18, - ) - yield ( # address, symbol, decimals - b"\x55\x4c\x20\xb7\xc4\x86\xbe\xee\x43\x92\x77\xb4\x54\x0a\x43\x45\x66\xdc\x4c\x02", - "HST", - 18, - ) - yield ( # address, symbol, decimals - b"\x6f\x25\x96\x37\xdc\xd7\x4c\x76\x77\x81\xe3\x7b\xc6\x13\x3c\xd6\xa6\x8a\xa1\x61", - "HT", - 18, - ) - yield ( # address, symbol, decimals - b"\x46\xae\x26\x4b\xf6\xd9\xdc\x6d\xd8\x4c\x31\x06\x45\x51\xf9\x61\xc6\x7a\x75\x5c", - "HTX", - 18, - ) - yield ( # address, symbol, decimals - b"\xba\x35\x8b\x6f\x5b\x4c\x02\x15\x65\x04\x44\xb8\xc3\x0d\x87\x0b\x55\x05\x0d\x2d", - "HUB", - 18, - ) - yield ( # address, symbol, decimals - b"\x00\x1f\xc4\xa7\xf2\xf5\x86\x59\x63\x08\x09\x1c\x7b\x29\x6d\x45\x35\xa2\x5a\x90", - "HUBS", - 18, - ) - yield ( # address, symbol, decimals - b"\xcd\xb7\xec\xfd\x34\x03\xee\xf3\x88\x2c\x65\xb7\x61\xef\x9b\x50\x54\x89\x0a\x47", - "HUR", - 18, - ) - yield ( # address, symbol, decimals - b"\x56\xbe\x94\xd2\x9e\x11\x25\xd2\xd6\x1d\x06\x62\x9c\x1b\x25\x1d\x72\xc1\xb3\xb3", - "HUSL", - 18, - ) - yield ( # address, symbol, decimals - b"\x14\x1a\xbb\x03\xf0\x01\xde\xde\xd9\xa0\x22\x3d\x4f\xf2\x6d\x92\x91\x17\xb7\x2e", - "HV", - 18, - ) - yield ( # address, symbol, decimals - b"\xc0\xeb\x85\x28\x5d\x83\x21\x7c\xd7\xc8\x91\x70\x2b\xcb\xc0\xfc\x40\x1e\x2d\x9d", - "HVN", - 8, - ) - yield ( # address, symbol, decimals - b"\xeb\xbd\xf3\x02\xc9\x40\xc6\xbf\xd4\x9c\x6b\x16\x5f\x45\x7f\xdb\x32\x46\x49\xbc", - "HYDRO", - 18, - ) - yield ( # address, symbol, decimals - b"\xc1\xe2\x09\x7d\x78\x8d\x33\x70\x1b\xa3\xcc\x27\x73\xbf\x67\x15\x5e\xc9\x3f\xc4", - "IAD", - 18, - ) - yield ( # address, symbol, decimals - b"\xa8\xb6\x52\x49\xde\x7f\x85\x49\x4b\xc1\xfe\x75\xf5\x25\xf5\x68\xaa\x7d\xfa\x39", - "iBAT", - 18, - ) - yield ( # address, symbol, decimals - b"\x69\x1c\x25\xc4\x61\xda\xfc\x47\x79\x2b\x6e\x4d\x67\x4f\xbb\x63\x7b\xca\x1c\x6f", - "iBBT", - 18, - ) - yield ( # address, symbol, decimals - b"\x09\x40\x0e\xc6\x83\xf7\x01\x74\xe1\x21\x7d\x6d\xcd\xbf\x42\x44\x8e\x8d\xe5\xd6", - "iBNB", - 18, - ) - yield ( # address, symbol, decimals - b"\x83\x26\x6a\x95\x42\x9b\x90\x3c\xc5\xe9\x54\xbf\x61\xc7\xed\xdf\x8a\x52\xb9\x71", - "iBTC", - 18, - ) - yield ( # address, symbol, decimals - b"\x3c\x20\xd6\x7b\x6b\x1a\xe0\x98\x5f\x91\x3a\xbb\x73\x97\xba\xbc\x2f\xbb\x1a\x1f", - "ICD", - 18, - ) - yield ( # address, symbol, decimals - b"\x5a\x84\x96\x9b\xb6\x63\xfb\x64\xf6\xd0\x15\xdc\xf9\xf6\x22\xae\xdc\x79\x67\x50", - "ICE", - 18, - ) - yield ( # address, symbol, decimals - b"\xda\x5e\xd4\x3b\x9b\x6e\x36\xb4\xf2\x7c\xc6\xd8\xc1\x97\x45\x32\xcd\xbd\x55\xf9", - "iCEX", - 18, - ) - yield ( # address, symbol, decimals - b"\x88\x86\x66\xca\x69\xe0\xf1\x78\xde\xd6\xd7\x5b\x57\x26\xce\xe9\x9a\x87\xd6\x98", - "ICN", - 18, - ) - yield ( # address, symbol, decimals - b"\xa3\x3e\x72\x9b\xf4\xfd\xeb\x86\x8b\x53\x4e\x1f\x20\x52\x34\x63\xd9\xc4\x6b\xee", - "ICO", - 10, - ) - yield ( # address, symbol, decimals - b"\x01\x4b\x50\x46\x65\x90\x34\x0d\x41\x30\x7c\xc5\x4d\xce\xe9\x90\xc8\xd5\x8a\xa8", - "ICOS", - 6, - ) - yield ( # address, symbol, decimals - b"\xeb\xd9\xd9\x9a\x39\x82\xd5\x47\xc5\xbb\x4d\xb7\xe3\xb1\xf9\xf1\x4b\x67\xeb\x83", - "ID", - 18, - ) - yield ( # address, symbol, decimals - b"\x6b\xc4\x37\x50\x83\xd3\xad\x56\x3d\xe9\x1c\xad\x84\x38\xf6\x29\x84\x14\x48\xa5", - "ID7", - 18, - ) - yield ( # address, symbol, decimals - b"\x81\x4c\xaf\xd4\x78\x2d\x2e\x72\x81\x70\xfd\xa6\x82\x57\x98\x3f\x03\x32\x1c\x58", - "IDEA", - 0, - ) - yield ( # address, symbol, decimals - b"\xc5\xbf\xbc\x63\xdc\x8d\x36\xe8\x14\x34\xe9\x3e\x0e\xe0\x97\x99\x98\x79\xd7\xf4", - "iDEFI", - 18, - ) - yield ( # address, symbol, decimals - b"\x51\x36\xc9\x8a\x80\x81\x1c\x3f\x46\xbd\xda\x8b\x5c\x45\x55\xcf\xd9\xf8\x12\xf0", - "IDH", - 6, - ) - yield ( # address, symbol, decimals - b"\x99\x8f\xfe\x1e\x43\xfa\xcf\xfb\x94\x1d\xc3\x37\xdd\x04\x68\xd5\x2b\xa5\xb4\x8a", - "IDRT", - 2, - ) - yield ( # address, symbol, decimals - b"\xcc\x13\xfc\x62\x7e\xff\xd6\xe3\x5d\x2d\x27\x06\xea\x3c\x4d\x73\x96\xc6\x10\xea", - "IDXM", - 8, - ) - yield ( # address, symbol, decimals - b"\x76\x54\x91\x5a\x1b\x82\xd6\xd2\xd0\xaf\xc3\x7c\x52\xaf\x55\x6e\xa8\x98\x3c\x7e", - "IFT", - 18, - ) - yield ( # address, symbol, decimals - b"\x8a\x88\xf0\x4e\x0c\x90\x50\x54\xd2\xf3\x3b\x26\xbb\x3a\x46\xd7\x09\x1a\x03\x9a", - "IG", - 18, - ) - yield ( # address, symbol, decimals - b"\x44\x9c\x64\x0b\x6c\x7f\xce\x4f\x8a\xd2\xe3\xdc\xd9\x00\xd1\x3b\xe4\x01\x74\xaf", - "IGI", - 18, - ) - yield ( # address, symbol, decimals - b"\xed\xa8\xb0\x16\xef\xa8\xb1\x16\x12\x08\xcf\x04\x1c\xd8\x69\x72\xee\xe0\xf3\x1e", - "IHT", - 18, - ) - yield ( # address, symbol, decimals - b"\x16\x66\x2f\x73\xdf\x3e\x79\xe5\x4c\x6c\x59\x38\xb4\x31\x3f\x92\xc5\x24\xc1\x20", - "IIC", - 18, - ) - yield ( # address, symbol, decimals - b"\x88\xae\x96\x84\x5e\x15\x75\x58\xef\x59\xe9\xff\x90\xe7\x66\xe2\x2e\x48\x03\x90", - "IKB", - 0, - ) - yield ( # address, symbol, decimals - b"\x1c\xc9\x56\x7e\xa2\xeb\x74\x08\x24\xa4\x5f\x80\x26\xcc\xf8\xe4\x69\x73\x23\x4d", - "iKNC", - 18, - ) - yield ( # address, symbol, decimals - b"\xec\x98\xbb\x42\xc8\xf0\x34\x85\xbf\x65\x93\x78\xda\x69\x45\x12\xa1\x6f\x34\x82", - "iLTC", - 18, - ) - yield ( # address, symbol, decimals - b"\x32\x12\xb2\x9e\x33\x58\x7a\x00\xfb\x1c\x83\x34\x6f\x5d\xbf\xa6\x9a\x45\x89\x23", - "imBTC", - 8, - ) - yield ( # address, symbol, decimals - b"\xe3\x83\x1c\x5a\x98\x2b\x27\x9a\x19\x84\x56\xd5\x77\xcf\xb9\x04\x24\xcb\x63\x40", - "IMC", - 6, - ) - yield ( # address, symbol, decimals - b"\xd9\x5e\x7f\x80\x76\x65\x80\x63\x4b\x2e\x0e\x49\xd9\xf6\x6a\xf3\x17\x99\x4f\xc7", - "iMKR", - 18, - ) - yield ( # address, symbol, decimals - b"\xf8\xe3\x86\xed\xa8\x57\x48\x4f\x5a\x12\xe4\xb5\xda\xa9\x98\x4e\x06\xe7\x37\x05", - "IND", - 18, - ) - yield ( # address, symbol, decimals - b"\x00\xe1\x50\xd7\x41\xed\xa1\xd4\x9d\x34\x11\x89\xca\xe4\xc0\x8a\x73\xa4\x9c\x95", - "INF", - 18, - ) - yield ( # address, symbol, decimals - b"\x24\xdd\xff\x6d\x8b\x8a\x42\xd8\x35\xaf\x3b\x44\x0d\xe9\x1f\x33\x86\x55\x4a\xa4", - "ING", - 18, - ) - yield ( # address, symbol, decimals - b"\x48\xe5\x41\x3b\x73\xad\xd2\x43\x4e\x47\x50\x4e\x2a\x22\xd1\x49\x40\xdb\xfe\x78", - "INRM", - 3, - ) - yield ( # address, symbol, decimals - b"\x5b\x2e\x4a\x70\x0d\xfb\xc5\x60\x06\x1e\x95\x7e\xde\xc8\xf6\xee\xeb\x74\xa3\x20", - "INS", - 10, - ) - yield ( # address, symbol, decimals - b"\xc7\x2f\xe8\xe3\xdd\x5b\xef\x0f\x9f\x31\xf2\x59\x39\x9f\x30\x12\x72\xef\x2a\x2d", - "INSTAR", - 18, - ) - yield ( # address, symbol, decimals - b"\x0b\x76\x54\x4f\x6c\x41\x3a\x55\x5f\x30\x9b\xf7\x62\x60\xd1\xe0\x23\x77\xc0\x2a", - "INT", - 6, - ) - yield ( # address, symbol, decimals - b"\x01\x8d\x7d\x17\x93\x50\xf1\xbb\x98\x53\xd0\x49\x82\x82\x0e\x37\xcc\xe1\x3a\x92", - "INX", - 8, - ) - yield ( # address, symbol, decimals - b"\xa8\x00\x6c\x4c\xa5\x6f\x24\xd6\x83\x67\x27\xd1\x06\x34\x93\x20\xdb\x7f\xef\x82", - "INXT", - 8, - ) - yield ( # address, symbol, decimals - b"\xfa\x1a\x85\x6c\xfa\x34\x09\xcf\xa1\x45\xfa\x4e\x20\xeb\x27\x0d\xf3\xeb\x21\xab", - "IOST", - 18, - ) - yield ( # address, symbol, decimals - b"\xc3\x4b\x21\xf6\xf8\xe5\x1c\xc9\x65\xc2\x39\x3b\x3c\xcf\xa3\xb8\x2b\xeb\x24\x03", - "IoT", - 6, - ) - yield ( # address, symbol, decimals - b"\x6f\xb3\xe0\xa2\x17\x40\x7e\xff\xf7\xca\x06\x2d\x46\xc2\x6e\x5d\x60\xa1\x4d\x69", - "IOTX", - 18, - ) - yield ( # address, symbol, decimals - b"\x64\xcd\xf8\x19\xd3\xe7\x5a\xc8\xec\x21\x7b\x34\x96\xd7\xce\x16\x7b\xe4\x2e\x80", - "IPL", - 18, - ) - yield ( # address, symbol, decimals - b"\x00\x1f\x0a\xa5\xda\x15\x58\x5e\x5b\x23\x05\xdb\xab\x2b\xac\x42\x5e\xa7\x10\x07", - "IPSX", - 18, - ) - yield ( # address, symbol, decimals - b"\x0d\xb8\xd8\xb7\x6b\xc3\x61\xba\xcb\xb7\x2e\x2c\x49\x1e\x06\x08\x5a\x97\xab\x31", - "IQN", - 18, - ) - yield ( # address, symbol, decimals - b"\xbd\x56\xe9\x47\x7f\xc6\x99\x76\x09\xcf\x45\xf8\x47\x95\xef\xbd\xac\x64\x2f\xf1", - "iREP", - 18, - ) - yield ( # address, symbol, decimals - b"\x14\x09\x49\x49\x15\x2e\xdd\xbf\xcd\x07\x37\x17\x20\x0d\xa8\x2f\xed\x8d\xc9\x60", - "iSAI", - 18, - ) - yield ( # address, symbol, decimals - b"\x19\x69\x44\x23\x91\x73\x70\x25\x81\x2c\x22\x15\xe7\x7e\x67\x6d\x7f\xa8\x48\x47", - "ISL", - 18, - ) - yield ( # address, symbol, decimals - b"\x0c\xf7\x13\xb1\x1c\x9b\x98\x6e\xc4\x0d\x65\xbd\x4f\x7f\xbd\x50\xf6\xff\x2d\x64", - "IST34", - 18, - ) - yield ( # address, symbol, decimals - b"\x5e\x6b\x6d\x9a\xba\xd9\x09\x3f\xdc\x86\x1e\xa1\x60\x0e\xba\x1b\x35\x5c\xd9\x40", - "ITC", - 18, - ) - yield ( # address, symbol, decimals - b"\x29\x3b\x0c\xd0\x99\x1d\xb0\x7c\x85\x29\xfe\xbb\x01\xbc\x7d\x05\x23\x15\xc5\xab", - "ITO", - 18, - ) - yield ( # address, symbol, decimals - b"\x5e\x5b\xc2\x36\xd0\x24\xcd\x26\xbe\x78\x08\x02\xaa\xf1\xe0\xdc\x11\x8f\xc4\x84", - "[deprecated] ITO", - 18, - ) - yield ( # address, symbol, decimals - b"\x6e\xf5\xfe\xbb\xd2\xa5\x6f\xab\x23\xf1\x8a\x69\xd3\xfb\x9f\x4e\x2a\x70\x44\x0b", - "ITR", - 18, - ) - yield ( # address, symbol, decimals - b"\x40\x65\x55\xdb\xf0\x2e\x9e\x4d\xf9\xad\xea\xec\x9d\xa7\x6a\xbe\xed\x8c\x1b\xc3", - "iTRX", - 18, - ) - yield ( # address, symbol, decimals - b"\x0a\xef\x06\xdc\xcc\xc5\x31\xe5\x81\xf0\x44\x00\x59\xe6\xff\xcc\x20\x60\x39\xee", - "ITT", - 8, - ) - yield ( # address, symbol, decimals - b"\xf0\x13\x40\x6a\x0b\x1d\x54\x42\x38\x08\x3d\xf0\xb9\x3a\xd0\xd2\xcb\xe0\xf6\x5f", - "iUSDC", - 6, - ) - yield ( # address, symbol, decimals - b"\xa4\xea\x68\x7a\x2a\x7f\x29\xcf\x2d\xc6\x6b\x39\xc6\x8e\x44\x11\xc0\xd0\x0c\x49", - "IVY", - 18, - ) - yield ( # address, symbol, decimals - b"\xba\x92\x62\x57\x8e\xfe\xf8\xb3\xaf\xf7\xf6\x0c\xd6\x29\xd6\xcc\x88\x59\xc8\xb5", - "iWBTC", - 8, - ) - yield ( # address, symbol, decimals - b"\xd7\xad\xf1\xb5\xe3\x1d\x1c\x40\xe0\x8f\x16\xa2\x09\x53\x38\xce\x3a\xa8\xf2\xfc", - "iXRP", - 18, - ) - yield ( # address, symbol, decimals - b"\xfc\xa4\x79\x62\xd4\x5a\xdf\xdf\xd1\xab\x2d\x97\x23\x15\xdb\x4c\xe7\xcc\xf0\x94", - "IXT", - 8, - ) - yield ( # address, symbol, decimals - b"\xad\x72\x58\xd0\x05\x4c\x03\x11\x2a\x4f\x54\x89\xa4\xb2\x4e\xc3\x4a\x2f\xc7\x87", - "iXTZ", - 18, - ) - yield ( # address, symbol, decimals - b"\xa7\xeb\x2b\xc8\x2d\xf1\x80\x13\xec\xc2\xa6\xc5\x33\xfc\x29\x44\x64\x42\xed\xee", - "iZRX", - 18, - ) - yield ( # address, symbol, decimals - b"\x0d\x26\x2e\x5d\xc4\xa0\x6a\x0f\x1c\x90\xce\x79\xc7\xa6\x0c\x09\xdf\xc8\x84\xe4", - "J8T", - 8, - ) - yield ( # address, symbol, decimals - b"\x74\x20\xb4\xb9\xa0\x11\x0c\xdc\x71\xfb\x72\x09\x08\x34\x0c\x03\xf9\xbc\x03\xec", - "JASMY", - 18, - ) - yield ( # address, symbol, decimals - b"\x9a\x36\x19\x49\x98\x25\xfb\xae\x63\x32\x9a\xa8\xbc\xb3\xf1\x0c\xd5\x95\x8e\x1c", - "JBD", - 10, - ) - yield ( # address, symbol, decimals - b"\x88\x4e\x39\x02\xc4\xd5\xcf\xa8\x6d\xe4\xac\xe7\xa9\x6a\xa9\x1e\xbc\x25\xc0\xff", - "JBX", - 18, - ) - yield ( # address, symbol, decimals - b"\xe2\xd8\x2d\xc7\xda\x0e\x6f\x88\x2e\x96\x84\x64\x51\xf4\xfa\xbc\xc8\xf9\x05\x28", - "JC", - 18, - ) - yield ( # address, symbol, decimals - b"\xa5\xfd\x1a\x79\x1c\x4d\xfc\xaa\xcc\x96\x3d\x4f\x73\xc6\xae\x58\x24\x14\x9e\xa7", - "JNT", - 18, - ) - yield ( # address, symbol, decimals - b"\xdf\xbc\x90\x50\xf5\xb0\x1d\xf5\x35\x12\xdc\xc3\x9b\x4f\x2b\x2b\xba\xcd\x51\x7a", - "JOB", - 8, - ) - yield ( # address, symbol, decimals - b"\xdb\x45\x5c\x71\xc1\xbc\x2d\xe4\xe8\x0c\xa4\x51\x18\x40\x41\xef\x32\x05\x40\x01", - "JOT", - 18, - ) - yield ( # address, symbol, decimals - b"\xdd\xe1\x2a\x12\xa6\xf6\x71\x56\xe0\xda\x67\x2b\xe0\x5c\x37\x4e\x1b\x0a\x3e\x57", - "JOY", - 6, - ) - yield ( # address, symbol, decimals - b"\x2d\x18\x40\x14\xb5\x65\x8c\x45\x34\x43\xaa\x87\xc8\xe9\xc4\xd5\x72\x85\x62\x0b", - "JSE", - 18, - ) - yield ( # address, symbol, decimals - b"\x14\x10\x43\x4b\x03\x46\xf5\xbe\x67\x8d\x0f\xb5\x54\xe5\xc7\xab\x62\x0f\x8f\x4a", - "KAN", - 18, - ) - yield ( # address, symbol, decimals - b"\xe1\x52\x54\xa1\x3d\x34\xf9\x70\x03\x20\x33\x0a\xbc\xb7\xc7\xf8\x57\xaf\x2f\xb7", - "KAPA", - 2, - ) - yield ( # address, symbol, decimals - b"\x0d\x6d\xd9\xf6\x8d\x24\xec\x1d\x5f\xe2\x17\x4f\x3e\xc8\xda\xb5\x2b\x52\xba\xf5", - "KC", - 18, - ) - yield ( # address, symbol, decimals - b"\x03\x9b\x56\x49\xa5\x99\x67\xe3\xe9\x36\xd7\x47\x1f\x9c\x37\x00\x10\x0e\xe1\xab", - "KCS", - 6, - ) - yield ( # address, symbol, decimals - b"\x72\xd3\x2a\xc1\xc5\xe6\x6b\xfc\x5b\x08\x80\x62\x71\xf8\xee\xf9\x15\x54\x51\x64", - "KEE", - 0, - ) - yield ( # address, symbol, decimals - b"\x81\x8f\xc6\xc2\xec\x59\x86\xbc\x6e\x2c\xbf\x00\x93\x9d\x90\x55\x6a\xb1\x2c\xe5", - "KIN", - 18, - ) - yield ( # address, symbol, decimals - b"\x46\x18\x51\x9d\xe4\xc3\x04\xf3\x44\x4f\xfa\x7f\x81\x2d\xdd\xc2\x97\x1c\xc6\x88", - "KIND", - 8, - ) - yield ( # address, symbol, decimals - b"\xc9\x7a\x5c\xdf\x41\xba\xfd\x51\xc8\xdb\xe8\x22\x70\x09\x7e\x70\x4d\x74\x8b\x92", - "KLOWN", - 7, - ) - yield ( # address, symbol, decimals - b"\x2b\xdd\x6c\x9b\xf1\xbf\x39\x6a\x37\x50\x1a\xae\x53\x75\x1b\x99\x46\xb5\x03\xda", - "KMTBA", - 18, - ) - yield ( # address, symbol, decimals - b"\xdd\x97\x4d\x5c\x2e\x29\x28\xde\xa5\xf7\x1b\x98\x25\xb8\xb6\x46\x68\x6b\xd2\x00", - "KNC", - 18, - ) - yield ( # address, symbol, decimals - b"\x8e\x56\x10\xab\x5e\x39\xd2\x68\x28\x16\x76\x40\xea\x29\x82\x3f\xe1\xdd\x58\x43", - "KNDC", - 8, - ) - yield ( # address, symbol, decimals - b"\xff\x5c\x25\xd2\xf4\x0b\x47\xc4\xa3\x7f\x98\x9d\xe9\x33\xe2\x65\x62\xef\x0a\xc0", - "KNT", - 16, - ) - yield ( # address, symbol, decimals - b"\xb5\xc3\x3f\x96\x5c\x88\x99\xd2\x55\xc3\x4c\xdd\x2a\x3e\xfa\x8a\xbc\xbb\x3d\xea", - "KPR", - 18, - ) - yield ( # address, symbol, decimals - b"\x00\x86\x5a\x6c\xa2\x52\x98\x62\xbe\x93\x44\xc4\xf8\x88\x00\x74\x1b\x73\x7e\xe9", - "KPX", - 18, - ) - yield ( # address, symbol, decimals - b"\xee\xf8\x10\x2a\x0d\x46\xd5\x08\xf1\x71\xd7\x32\x3b\xce\xff\xc5\x92\x83\x5f\x13", - "KRI", - 18, - ) - yield ( # address, symbol, decimals - b"\x46\x4e\xbe\x77\xc2\x93\xe4\x73\xb4\x8c\xfe\x96\xdd\xcf\x88\xfc\xf7\xbf\xda\xc0", - "KRL", - 18, - ) - yield ( # address, symbol, decimals - b"\xae\xfa\xd6\x86\xf4\xb8\x94\xce\x4f\x9c\x74\xaf\x75\x5a\xb4\x65\x1e\x42\x0e\xba", - "KRP", - 18, - ) - yield ( # address, symbol, decimals - b"\xbd\x4a\xb8\xb9\xc2\x6c\x48\x88\xe2\x79\x2c\xac\x6d\x57\x93\xef\xea\x9e\xbb\x20", - "KRTY", - 18, - ) - yield ( # address, symbol, decimals - b"\x4c\xc8\x48\x6f\x2f\x3d\xce\x2d\x3b\x5e\x27\x05\x7c\xf5\x65\xe1\x69\x06\xd1\x2d", - "KRW-G", - 18, - ) - yield ( # address, symbol, decimals - b"\xdf\x13\x38\xfb\xaf\xe7\xaf\x17\x89\x15\x16\x27\xb8\x86\x78\x1b\xa5\x56\xef\x9a", - "KUE", - 18, - ) - yield ( # address, symbol, decimals - b"\x24\x1b\xa6\x72\x57\x4a\x78\xa3\xa6\x04\xcd\xd0\xa9\x44\x29\xa7\x3a\x84\xa3\x24", - "KWATT", - 18, - ) - yield ( # address, symbol, decimals - b"\x01\x63\x96\x04\x47\x09\xeb\x3e\xdc\x69\xc4\x4f\x4d\x5f\xa6\x99\x69\x17\xe4\xe8", - "KXC", - 18, - ) - yield ( # address, symbol, decimals - b"\x95\x41\xfd\x8b\x9b\x5f\xa9\x73\x81\x78\x37\x83\xce\xbf\x2f\x5f\xa7\x93\xc2\x62", - "KZN", - 8, - ) - yield ( # address, symbol, decimals - b"\xe5\x03\x65\xf5\xd6\x79\xcb\x98\xa1\xdd\x62\xd6\xf6\xe5\x8e\x59\x32\x1b\xcd\xdf", - "LA", - 18, - ) - yield ( # address, symbol, decimals - b"\xfd\x10\x7b\x47\x3a\xb9\x0e\x8f\xbd\x89\x87\x21\x44\xa3\xdc\x92\xc4\x0f\xa8\xc9", - "LALA", - 18, - ) - yield ( # address, symbol, decimals - b"\x89\x71\xf9\xfd\x71\x96\xe5\xce\xe2\xc1\x03\x2b\x50\xf6\x56\x85\x5a\xf7\xdd\x26", - "LAMB", - 18, - ) - yield ( # address, symbol, decimals - b"\x2f\x85\xe5\x02\xa9\x88\xaf\x76\xf7\xee\x6d\x83\xb7\xdb\x8d\x6c\x0a\x82\x3b\xf9", - "LATX", - 8, - ) - yield ( # address, symbol, decimals - b"\xfe\x5f\x14\x1b\xf9\x4f\xe8\x4b\xc2\x8d\xed\x0a\xb9\x66\xc1\x6b\x17\x49\x06\x57", - "LBA", - 18, - ) - yield ( # address, symbol, decimals - b"\xaa\x19\x96\x1b\x6b\x85\x8d\x9f\x18\xa1\x15\xf2\x5a\xa1\xd9\x8a\xbc\x1f\xdb\xa8", - "LCS", - 18, - ) - yield ( # address, symbol, decimals - b"\x51\x02\x79\x1c\xa0\x2f\xc3\x59\x53\x98\x40\x0b\xfe\x0e\x33\xd7\xb6\xc8\x22\x67", - "LDC", - 18, - ) - yield ( # address, symbol, decimals - b"\x9e\xfa\x0e\x23\x87\xe4\xcb\xa0\x2a\x6e\x4e\x65\x94\xb8\xf4\xdd\x20\x9a\x0b\x93", - "LDX", - 0, - ) - yield ( # address, symbol, decimals - b"\x5b\x26\xc5\xd0\x77\x2e\x5b\xba\xc8\xb3\x18\x2a\xe9\xa1\x3f\x9b\xb2\xd0\x37\x65", - "LEDU", - 8, - ) - yield ( # address, symbol, decimals - b"\x80\xfb\x78\x4b\x7e\xd6\x67\x30\xe8\xb1\xdb\xd9\x82\x0a\xfd\x29\x93\x1a\xab\x03", - "LEND", - 18, - ) - yield ( # address, symbol, decimals - b"\xf9\x7b\x5d\x65\xda\x6b\x04\x68\xb9\x0d\x53\x1d\xda\xe2\xa6\x98\x43\xe6\x79\x7d", - "LEO", - 18, - ) - yield ( # address, symbol, decimals - b"\x0f\x4c\xa9\x26\x60\xef\xad\x97\xa9\xa7\x0c\xb0\xfe\x96\x9c\x75\x54\x39\x77\x2c", - "LEV", - 9, - ) - yield ( # address, symbol, decimals - b"\xc7\x98\xcd\x1c\x49\xdb\x0e\x29\x73\x12\xe4\xc6\x82\x75\x26\x68\xce\x1d\xb2\xad", - "LFR", - 5, - ) - yield ( # address, symbol, decimals - b"\x59\x06\x1b\x6f\x26\xbb\x4a\x9c\xe5\x82\x8a\x19\xd3\x5c\xfd\x5a\x4b\x80\xf0\x56", - "LGD", - 8, - ) - yield ( # address, symbol, decimals - b"\x0a\x50\xc9\x3c\x76\x2f\xdd\x6e\x56\xd8\x62\x15\xc2\x4a\xaa\xd4\x3a\xb6\x29\xaa", - "LGO", - 8, - ) - yield ( # address, symbol, decimals - b"\x12\x3a\xb1\x95\xdd\x38\xb1\xb4\x05\x10\xd4\x67\xa6\xa3\x59\xb2\x01\xaf\x05\x6f", - "[deprecated] LGO (old)", - 8, - ) - yield ( # address, symbol, decimals - b"\x2e\xb8\x6e\x8f\xc5\x20\xe0\xf6\xbb\x5d\x9a\xf0\x8f\x92\x4f\xe7\x05\x58\xab\x89", - "LGR", - 8, - ) - yield ( # address, symbol, decimals - b"\xe6\xdf\xbf\x1f\xac\xa9\x50\x36\xb8\xe7\x6e\x1f\xb2\x89\x33\xd0\x25\xb7\x6c\xc0", - "LIBER", - 18, - ) - yield ( # address, symbol, decimals - b"\xeb\x99\x51\x02\x16\x98\xb4\x2e\x43\x99\xf9\xcb\xb6\x26\x7a\xa3\x5f\x82\xd5\x9d", - "LIF", - 18, - ) - yield ( # address, symbol, decimals - b"\xff\x18\xdb\xc4\x87\xb4\xc2\xe3\x22\x2d\x11\x59\x52\xba\xbf\xda\x8b\xa5\x2f\x5f", - "LIFE", - 18, - ) - yield ( # address, symbol, decimals - b"\x02\xf6\x1f\xd2\x66\xda\x6e\x8b\x10\x2d\x41\x21\xf5\xce\x7b\x99\x26\x40\xcf\x98", - "LIKE", - 18, - ) - yield ( # address, symbol, decimals - b"\x51\x49\x10\x77\x1a\xf9\xca\x65\x6a\xf8\x40\xdf\xf8\x3e\x82\x64\xec\xf9\x86\xca", - "LINK (Chainlink)", - 18, - ) - yield ( # address, symbol, decimals - b"\x24\xa7\x7c\x1f\x17\xc5\x47\x10\x5e\x14\x81\x3e\x51\x7b\xe0\x6b\x00\x40\xaa\x76", - "LIVE", - 18, - ) - yield ( # address, symbol, decimals - b"\x49\xbd\x2d\xa7\x5b\x1f\x7a\xf1\xe4\xdf\xd6\xb1\x12\x5f\xec\xde\x59\xdb\xec\x58", - "LKY", - 18, - ) - yield ( # address, symbol, decimals - b"\x25\xb6\x32\x5f\x5b\xb1\xc1\xe0\x3c\xfb\xc3\xe5\x3f\x47\x0e\x1f\x1c\xa0\x22\xe3", - "LML", - 18, - ) - yield ( # address, symbol, decimals - b"\x66\xfd\x97\xa7\x8d\x88\x54\xfe\xc4\x45\xcd\x1c\x80\xa0\x78\x96\xb0\xb4\x85\x1f", - "LMY", - 18, - ) - yield ( # address, symbol, decimals - b"\x09\x47\xb0\xe6\xd8\x21\x37\x88\x05\xc9\x59\x82\x91\x38\x5c\xe7\xc7\x91\xa6\xb2", - "LND", - 18, - ) - yield ( # address, symbol, decimals - b"\x5e\x33\x46\x44\x40\x10\x13\x53\x22\x26\x8a\x46\x30\xd2\xed\x5f\x8d\x09\x44\x6c", - "LOC", - 18, - ) - yield ( # address, symbol, decimals - b"\x9c\x23\xd6\x7a\xea\x7b\x95\xd8\x09\x42\xe3\x83\x6b\xcd\xf7\xe7\x08\xa7\x47\xc2", - "LOCI", - 18, - ) - yield ( # address, symbol, decimals - b"\xc6\x45\x00\xdd\x7b\x0f\x17\x94\x80\x7e\x67\x80\x2f\x8a\xbb\xf5\xf8\xff\xb0\x54", - "LOCUS", - 18, - ) - yield ( # address, symbol, decimals - b"\x21\xae\x23\xb8\x82\xa3\x40\xa2\x22\x82\x16\x20\x86\xbc\x98\xd3\xe2\xb7\x30\x18", - "LOK", - 18, - ) - yield ( # address, symbol, decimals - b"\x25\x3c\x7d\xd0\x74\xf4\xba\xcb\x30\x53\x87\xf9\x22\x22\x5a\x4f\x73\x7c\x08\xbd", - "LOOK", - 18, - ) - yield ( # address, symbol, decimals - b"\xf4\xd2\x88\x8d\x29\xd7\x22\x22\x6f\xaf\xa5\xd9\xb2\x4f\x91\x64\xc0\x92\x42\x1e", - "LOOKS", - 18, - ) - yield ( # address, symbol, decimals - b"\x42\x47\x6f\x74\x42\x92\x10\x7e\x34\x51\x9f\x9c\x35\x79\x27\x07\x4e\xa3\xf7\x5d", - "LOOM", - 18, - ) - yield ( # address, symbol, decimals - b"\xa4\xe8\xc3\xec\x45\x61\x07\xea\x67\xd3\x07\x5b\xf9\xe3\xdf\x3a\x75\x82\x3d\xb0", - "[deprecated] LOOM", - 18, - ) - yield ( # address, symbol, decimals - b"\x5a\x27\x6a\xeb\x77\xbc\xfd\xac\x8a\xc6\xf3\x1b\xbc\x74\x16\xae\x1a\x85\xee\xf2", - "LOVE", - 0, - ) - yield ( # address, symbol, decimals - b"\x58\xb6\xa8\xa3\x30\x23\x69\xda\xec\x38\x33\x34\x67\x24\x04\xee\x73\x3a\xb2\x39", - "LPT", - 18, - ) - yield ( # address, symbol, decimals - b"\xd2\x9f\x0b\x5b\x3f\x50\xb0\x7f\xe9\xa9\x51\x1f\x7d\x86\xf4\xf4\xba\xc3\xf8\xc4", - "LQD", - 18, - ) - yield ( # address, symbol, decimals - b"\xbb\xbb\xca\x6a\x90\x1c\x92\x6f\x24\x0b\x89\xea\xcb\x64\x1d\x8a\xec\x7a\xea\xfd", - "LRC", - 18, - ) - yield ( # address, symbol, decimals - b"\xef\x68\xe7\xc6\x94\xf4\x0c\x82\x02\x82\x1e\xdf\x52\x5d\xe3\x78\x24\x58\x63\x9f", - "[deprecated] LRC (old)", - 18, - ) - yield ( # address, symbol, decimals - b"\x5d\xbe\x29\x6f\x97\xb2\x3c\x4a\x6a\xa6\x18\x3d\x73\xe5\x74\xd0\x2b\xa5\xc7\x19", - "LUC", - 18, - ) - yield ( # address, symbol, decimals - b"\xa5\xef\x74\x06\x8d\x04\xba\x08\x09\xb7\x37\x9d\xd7\x6a\xf5\xce\x34\xab\x7c\x57", - "LUCHOW", - 18, - ) - yield ( # address, symbol, decimals - b"\xfb\x12\xe3\xcc\xa9\x83\xb9\xf5\x9d\x90\x91\x2f\xd1\x7f\x8d\x74\x5a\x8b\x29\x53", - "LUCK", - 0, - ) - yield ( # address, symbol, decimals - b"\x01\xcd\x3d\x9d\xf5\x86\x9c\xa7\x95\x47\x45\x66\x3b\xd6\x20\x1c\x57\x1e\x05\xcf", - "LULU", - 18, - ) - yield ( # address, symbol, decimals - b"\xa8\x9b\x59\x34\x86\x34\x47\xf6\xe4\xfc\x53\xb3\x15\xa9\x3e\x87\x3b\xda\x69\xa3", - "LUM", - 18, - ) - yield ( # address, symbol, decimals - b"\xfa\x05\xa7\x3f\xfe\x78\xef\x8f\x1a\x73\x94\x73\xe4\x62\xc5\x4b\xae\x65\x67\xd9", - "LUN", - 18, - ) - yield ( # address, symbol, decimals - b"\xc8\xca\xc7\x67\x2f\x46\x69\x68\x58\x17\xcf\x33\x2a\x33\xeb\x24\x9f\x08\x54\x75", - "LVN", - 18, - ) - yield ( # address, symbol, decimals - b"\xdd\x41\xfb\xd1\xae\x95\xc5\xd9\xb1\x98\x17\x4a\x28\xe0\x4b\xe6\xb3\xd1\xaa\x27", - "LYS", - 8, - ) - yield ( # address, symbol, decimals - b"\x3f\x4b\x72\x66\x68\xda\x46\xf5\xe0\xe7\x5a\xa5\xd4\x78\xac\xec\x9f\x38\x21\x0f", - "M-ETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x5b\x09\xa0\x37\x1c\x1d\xa4\x4a\x8e\x24\xd3\x6b\xf5\xde\xb1\x14\x1a\x84\xd8\x75", - "MAD", - 18, - ) - yield ( # address, symbol, decimals - b"\xb0\xc7\xa3\xba\x49\xc7\xa6\xea\xba\x6c\xd4\xa9\x6c\x55\xa1\x39\x10\x70\xac\x9a", - "MAGIC", - 18, - ) - yield ( # address, symbol, decimals - b"\xe2\x5b\xce\xc5\xd3\x80\x1c\xe3\xa7\x94\x07\x9b\xf9\x4a\xdf\x1b\x8c\xcd\x80\x2d", - "MAN", - 18, - ) - yield ( # address, symbol, decimals - b"\x0f\x5d\x2f\xb2\x9f\xb7\xd3\xcf\xee\x44\x4a\x20\x02\x98\xf4\x68\x90\x8c\xc9\x42", - "MANA", - 18, - ) - yield ( # address, symbol, decimals - b"\xfd\xcc\x07\xab\x60\x66\x0d\xe5\x33\xb5\xad\x26\xe1\x45\x7b\x56\x5a\x9d\x59\xbd", - "MART", - 18, - ) - yield ( # address, symbol, decimals - b"\x23\xcc\xc4\x33\x65\xd9\xdd\x38\x82\xea\xb8\x8f\x43\xd5\x15\x20\x8f\x83\x24\x30", - "MAS", - 18, - ) - yield ( # address, symbol, decimals - b"\x7d\x1a\xfa\x7b\x71\x8f\xb8\x93\xdb\x30\xa3\xab\xc0\xcf\xc6\x08\xaa\xcf\xeb\xb0", - "MATIC", - 18, - ) - yield ( # address, symbol, decimals - b"\xef\xbb\x3f\x10\x58\xfd\x8e\x0c\x9d\x72\x04\xf5\x32\xe1\x7d\x75\x72\xaf\xfc\x3e", - "MBCASH", - 18, - ) - yield ( # address, symbol, decimals - b"\x38\x64\x67\xf1\xf3\xdd\xbe\x83\x24\x48\x65\x04\x18\x31\x1a\x47\x9e\xec\xfc\x57", - "MBRS", - 0, - ) - yield ( # address, symbol, decimals - b"\x93\xe6\x82\x10\x7d\x1e\x9d\xef\xb0\xb5\xee\x70\x1c\x71\x70\x7a\x4b\x2e\x46\xbc", - "MCAP", - 8, - ) - yield ( # address, symbol, decimals - b"\x13\x8a\x87\x52\x09\x3f\x4f\x9a\x79\xaa\xed\xf4\x8d\x4b\x92\x48\xfa\xb9\x3c\x9c", - "MCI", - 18, - ) - yield ( # address, symbol, decimals - b"\xb6\x3b\x60\x6a\xc8\x10\xa5\x2c\xca\x15\xe4\x4b\xb6\x30\xfd\x42\xd8\xd1\xd8\x3d", - "MCO", - 8, - ) - yield ( # address, symbol, decimals - b"\x51\xdb\x5a\xd3\x5c\x67\x1a\x87\x20\x7d\x88\xfc\x11\xd5\x93\xac\x0c\x84\x15\xbd", - "MDA", - 18, - ) - yield ( # address, symbol, decimals - b"\x81\x4e\x09\x08\xb1\x2a\x99\xfe\xcf\x5b\xc1\x01\xbb\x5d\x0b\x8b\x5c\xdf\x7d\x26", - "MDT", - 18, - ) - yield ( # address, symbol, decimals - b"\x94\x7a\xeb\x02\x30\x43\x91\xf8\xfb\xe5\xb2\x5d\x7d\x98\xd6\x49\xb5\x7b\x17\x88", - "MDX", - 18, - ) - yield ( # address, symbol, decimals - b"\x66\x52\xfa\x20\x1b\x6b\xbb\xc0\xb5\xb0\xad\x3f\x57\x02\xb2\xb9\x84\x9c\xc8\x30", - "MEDCASH", - 4, - ) - yield ( # address, symbol, decimals - b"\xfd\x1e\x80\x50\x8f\x24\x3e\x64\xce\x23\x4e\xa8\x8a\x5f\xd2\x82\x7c\x71\xd4\xb7", - "MEDX", - 8, - ) - yield ( # address, symbol, decimals - b"\xd5\x52\x5d\x39\x78\x98\xe5\x50\x20\x75\xea\x5e\x83\x0d\x89\x14\xf6\xf0\xaf\xfe", - "MEME", - 8, - ) - yield ( # address, symbol, decimals - b"\x42\x01\x67\xd8\x7d\x35\xc3\xa2\x49\xb3\x2e\xf6\x22\x58\x72\xfb\xd9\xab\x85\xd2", - "MESG", - 18, - ) - yield ( # address, symbol, decimals - b"\x5b\x8d\x43\xff\xde\x4a\x29\x82\xb9\xa5\x38\x7c\xdf\x21\xd5\x4e\xad\x64\xac\x8d", - "MEST", - 18, - ) - yield ( # address, symbol, decimals - b"\xfe\xf3\x88\x4b\x60\x3c\x33\xef\x8e\xd4\x18\x33\x46\xe0\x93\xa1\x73\xc9\x4d\xa6", - "METM", - 18, - ) - yield ( # address, symbol, decimals - b"\x67\x10\xc6\x34\x32\xa2\xde\x02\x95\x4f\xc0\xf8\x51\xdb\x07\x14\x6a\x6c\x03\x12", - "MFG", - 18, - ) - yield ( # address, symbol, decimals - b"\xdf\x2c\x72\x38\x19\x8a\xd8\xb3\x89\x66\x65\x74\xf2\xd8\xbc\x41\x1a\x4b\x74\x28", - "MFT", - 18, - ) - yield ( # address, symbol, decimals - b"\x05\xd4\x12\xce\x18\xf2\x40\x40\xbb\x3f\xa4\x5c\xf2\xc6\x9e\x50\x65\x86\xd8\xe8", - "MFTU", - 18, - ) - yield ( # address, symbol, decimals - b"\x80\xf2\x22\xa7\x49\xa2\xe1\x8e\xb7\xf6\x76\xd3\x71\xf1\x9a\xd7\xef\xee\xe3\xb7", - "MGN", - 18, - ) - yield ( # address, symbol, decimals - b"\x40\x39\x50\x44\xac\x3c\x0c\x57\x05\x19\x06\xda\x93\x8b\x54\xbd\x65\x57\xf2\x12", - "MGO", - 8, - ) - yield ( # address, symbol, decimals - b"\xe3\xd0\xa1\x62\xfc\xc5\xc0\x2c\x94\x48\x27\x4d\x7c\x58\xe1\x8e\x18\x11\x38\x5f", - "MHLK", - 2, - ) - yield ( # address, symbol, decimals - b"\x3a\x12\x37\xd3\x8d\x0f\xb9\x45\x13\xf8\x5d\x61\x67\x9c\xad\x7f\x38\x50\x72\x42", - "MIC", - 18, - ) - yield ( # address, symbol, decimals - b"\xd7\x17\xb7\x54\x04\x02\x2f\xb1\xc8\x58\x2a\xdf\x1c\x66\xb9\xa5\x53\x81\x17\x54", - "MILC", - 18, - ) - yield ( # address, symbol, decimals - b"\xb2\x66\x31\xc6\xdd\xa0\x6a\xd8\x9b\x93\xc7\x14\x00\xd2\x56\x92\xde\x89\xc0\x68", - "MINDS", - 18, - ) - yield ( # address, symbol, decimals - b"\x38\x93\xb9\x42\x2c\xd5\xd7\x0a\x81\xed\xef\xfe\x3d\x5a\x1c\x6a\x97\x83\x10\xbb", - "MITH", - 18, - ) - yield ( # address, symbol, decimals - b"\x4a\x52\x7d\x8f\xc1\x3c\x52\x03\xab\x24\xba\x09\x44\xf4\xcb\x14\x65\x8d\x1d\xb6", - "MITX", - 18, - ) - yield ( # address, symbol, decimals - b"\x9f\x8f\x72\xaa\x93\x04\xc8\xb5\x93\xd5\x55\xf1\x2e\xf6\x58\x9c\xc3\xa5\x79\xa2", - "MKR", - 18, - ) - yield ( # address, symbol, decimals - b"\x79\x39\x88\x2b\x54\xfc\xf0\xbc\xae\x6b\x53\xde\xc3\x9a\xd6\xe8\x06\x17\x64\x42", - "MKT", - 8, - ) - yield ( # address, symbol, decimals - b"\xec\x67\x00\x5c\x4e\x49\x8e\xc7\xf5\x5e\x09\x2b\xd1\xd3\x5c\xbc\x47\xc9\x18\x92", - "MLN (new)", - 18, - ) - yield ( # address, symbol, decimals - b"\xbe\xb9\xef\x51\x4a\x37\x9b\x99\x7e\x07\x98\xfd\xcc\x90\x1e\xe4\x74\xb6\xd9\xa1", - "[deprecated] MLN (old)", - 18, - ) - yield ( # address, symbol, decimals - b"\x6b\x4c\x7a\x5e\x3f\x0b\x99\xfc\xd8\x3e\x9c\x08\x9b\xdd\xd6\xc7\xfc\xe5\xc6\x11", - "MM", - 18, - ) - yield ( # address, symbol, decimals - b"\x1a\x95\xb2\x71\xb0\x53\x5d\x15\xfa\x49\x93\x2d\xab\xa3\x1b\xa6\x12\xb5\x29\x46", - "MNE", - 8, - ) - yield ( # address, symbol, decimals - b"\x0d\x62\xdc\x6c\xd8\xc8\x1d\xca\x8c\xaa\xdc\xcf\x01\xff\xe7\xc1\xf3\x1d\x94\x02", - "MNL", - 18, - ) - yield ( # address, symbol, decimals - b"\xa9\x87\x7b\x1e\x05\xd0\x35\x89\x91\x31\xdb\xd1\xe4\x03\x82\x51\x66\xd0\x9f\x92", - "MNT", - 18, - ) - yield ( # address, symbol, decimals - b"\x83\xce\xe9\xe0\x86\xa7\x7e\x49\x2e\xe0\xbb\x93\xc2\xb0\x43\x7a\xd6\xfd\xec\xcc", - "MNTP", - 18, - ) - yield ( # address, symbol, decimals - b"\x95\x7c\x30\xab\x04\x26\xe0\xc9\x3c\xd8\x24\x1e\x2c\x60\x39\x2d\x08\xc6\xac\x8e", - "MOD", - 0, - ) - yield ( # address, symbol, decimals - b"\x50\x12\x62\x28\x1b\x2b\xa0\x43\xe2\xfb\xf1\x49\x04\x98\x06\x89\xcd\xdb\x0c\x78", - "MORE", - 2, - ) - yield ( # address, symbol, decimals - b"\x26\x3c\x61\x84\x80\xdb\xe3\x5c\x30\x0d\x8d\x5e\xcd\xa1\x9b\xbb\x98\x6a\xca\xed", - "MOT", - 18, - ) - yield ( # address, symbol, decimals - b"\x44\xbf\x22\x94\x9f\x9c\xc8\x4b\x61\xb9\x32\x8a\x9d\x88\x5d\x1b\x5c\x80\x6b\x41", - "MOZO", - 2, - ) - yield ( # address, symbol, decimals - b"\xf4\x53\xb5\xb9\xd4\xe0\xb5\xc6\x2f\xfb\x25\x6b\xb2\x37\x8c\xc2\xbc\x8e\x8a\x89", - "MRK", - 8, - ) - yield ( # address, symbol, decimals - b"\x82\x12\x5a\xfe\x01\x81\x9d\xff\x15\x35\xd0\xd6\x27\x6d\x57\x04\x52\x91\xb6\xc0", - "MRL", - 18, - ) - yield ( # address, symbol, decimals - b"\x21\xf0\xf0\xfd\x31\x41\xee\x9e\x11\xb3\xd7\xf1\x3a\x10\x28\xcd\x51\x5f\x45\x9c", - "MRP", - 18, - ) - yield ( # address, symbol, decimals - b"\x9a\xf5\xa2\x0a\xac\x8d\x83\x23\x0b\xa6\x85\x42\xba\x29\xd1\x32\xd5\x0c\xbe\x08", - "MRS", - 18, - ) - yield ( # address, symbol, decimals - b"\xab\x6c\xf8\x7a\x50\xf1\x7d\x7f\x5e\x1f\xea\xf8\x1b\x6f\xe9\xff\xbe\x8e\xbf\x84", - "MRV", - 18, - ) - yield ( # address, symbol, decimals - b"\x68\xaa\x3f\x23\x2d\xa9\xbd\xc2\x34\x34\x65\x54\x57\x94\xef\x3e\xea\x52\x09\xbd", - "MSP", - 18, - ) - yield ( # address, symbol, decimals - b"\xa3\xbe\xd4\xe1\xc7\x5d\x00\xfa\x6f\x4e\x5e\x69\x22\xdb\x72\x61\xb5\xe9\xac\xd2", - "MTA", - 18, - ) - yield ( # address, symbol, decimals - b"\xaf\x4d\xce\x16\xda\x28\x77\xf8\xc9\xe0\x05\x44\xc9\x3b\x62\xac\x40\x63\x1f\x16", - "MTH", - 5, - ) - yield ( # address, symbol, decimals - b"\xf4\x33\x08\x93\x66\x89\x9d\x83\xa9\xf2\x6a\x77\x3d\x59\xec\x7e\xcf\x30\x35\x5e", - "MTL", - 8, - ) - yield ( # address, symbol, decimals - b"\x41\xdb\xec\xc1\xcd\xc5\x51\x7c\x6f\x76\xf6\xa6\xe8\x36\xad\xbe\xe2\x75\x4d\xe3", - "MTN", - 18, - ) - yield ( # address, symbol, decimals - b"\x7f\xc4\x08\x01\x11\x65\x76\x0e\xe3\x1b\xe2\xbf\x20\xda\xf4\x50\x35\x66\x92\xaf", - "MTR", - 8, - ) - yield ( # address, symbol, decimals - b"\x1e\x49\xff\x77\xc3\x55\xa3\xe3\x8d\x66\x51\xce\x84\x04\xaf\x0e\x48\xc5\x39\x5f", - "MTRc", - 18, - ) - yield ( # address, symbol, decimals - b"\x0a\xf4\x4e\x27\x84\x63\x72\x18\xdd\x1d\x32\xa3\x22\xd4\x4e\x60\x3a\x8f\x0c\x6a", - "MTX", - 18, - ) - yield ( # address, symbol, decimals - b"\xea\x64\x12\xfb\x37\x0e\x8d\x16\x05\xe6\xae\xea\xa2\x1a\xd0\x7c\x3c\x7e\x9f\x24", - "MUSH", - 18, - ) - yield ( # address, symbol, decimals - b"\x51\x56\x69\xd3\x08\xf8\x87\xfd\x83\xa4\x71\xc7\x76\x4f\x5d\x08\x48\x86\xd3\x4d", - "MUXE", - 18, - ) - yield ( # address, symbol, decimals - b"\x71\x39\x6a\x64\x10\x24\x97\x25\xc5\x60\x96\x46\xc4\xe4\x49\xc6\xc4\xd4\x1e\x27", - "MVG", - 0, - ) - yield ( # address, symbol, decimals - b"\xa8\x49\xea\xae\x99\x4f\xb8\x6a\xfa\x73\x38\x2e\x9b\xd8\x8c\x2b\x6b\x18\xdc\x71", - "MVL", - 18, - ) - yield ( # address, symbol, decimals - b"\x8a\x77\xe4\x09\x36\xbb\xc2\x7e\x80\xe9\xa3\xf5\x26\x36\x8c\x96\x78\x69\xc8\x6d", - "MVP", - 18, - ) - yield ( # address, symbol, decimals - b"\x64\x25\xc6\xbe\x90\x2d\x69\x2a\xe2\xdb\x75\x2b\x3c\x26\x8a\xfa\xdb\x09\x9d\x3b", - "MWAT", - 18, - ) - yield ( # address, symbol, decimals - b"\xf7\xe9\x83\x78\x16\x09\x01\x23\x07\xf2\x51\x4f\x63\xd5\x26\xd8\x3d\x24\xf4\x66", - "MYD", - 16, - ) - yield ( # address, symbol, decimals - b"\x4c\xf8\x9c\xa0\x6a\xd9\x97\xbc\x73\x2d\xc8\x76\xed\x2a\x7f\x26\xa9\xe7\xf3\x61", - "MYST", - 18, - ) - yield ( # address, symbol, decimals - b"\xa6\x45\x26\x4c\x56\x03\xe9\x6c\x3b\x0b\x07\x8c\xda\xb6\x87\x33\x79\x4b\x0a\x71", - "[deprecated] MYST", - 8, - ) - yield ( # address, symbol, decimals - b"\x8d\x80\xde\x8a\x78\x19\x83\x96\x32\x9d\xfa\x76\x9a\xd5\x4d\x24\xbf\x90\xe7\xaa", - "NAC", - 18, - ) - yield ( # address, symbol, decimals - b"\xa7\x9e\x00\x12\xbb\x33\x79\xf8\x50\x9a\x5a\xb4\x9c\xab\x7e\x6a\xbb\x49\x70\x1d", - "NAMTC", - 18, - ) - yield ( # address, symbol, decimals - b"\x90\x25\xf9\xa5\x96\x94\xdd\x93\x97\x39\xe0\x5b\xeb\x25\x02\xa5\x67\xe8\x32\x6f", - "NAMTT", - 18, - ) - yield ( # address, symbol, decimals - b"\xff\xe0\x2e\xe4\xc6\x9e\xdf\x1b\x34\x0f\xca\xd6\x4f\xbd\x6b\x37\xa7\xb9\xe2\x65", - "NANJ", - 8, - ) - yield ( # address, symbol, decimals - b"\x4a\x61\x5b\xb7\x16\x62\x10\xcc\xe2\x0e\x66\x42\xa6\xf8\xfb\x5d\x4d\x04\x44\x96", - "NAOS", - 18, - ) - yield ( # address, symbol, decimals - b"\x5d\x65\xd9\x71\x89\x5e\xdc\x43\x8f\x46\x5c\x17\xdb\x69\x92\x69\x8a\x52\x31\x8d", - "NAS", - 18, - ) - yield ( # address, symbol, decimals - b"\x58\x80\x47\x36\x5d\xf5\xba\x58\x9f\x92\x36\x04\xaa\xc2\x3d\x67\x35\x55\xc6\x23", - "NAVI", - 18, - ) - yield ( # address, symbol, decimals - b"\x17\xf8\xaf\xb6\x3d\xfc\xdc\xc9\x0e\xbe\x6e\x84\xf0\x60\xcc\x30\x6a\x98\x25\x7d", - "NBAI", - 18, - ) - yield ( # address, symbol, decimals - b"\x9f\x19\x56\x17\xfa\x8f\xba\xd9\x54\x0c\x5d\x11\x3a\x99\xa0\xa0\x17\x2a\xae\xdc", - "NBC", - 18, - ) - yield ( # address, symbol, decimals - b"\x80\x98\x26\xcc\xea\xb6\x8c\x38\x77\x26\xaf\x96\x27\x13\xb6\x4c\xb5\xcb\x3c\xca", - "NCASH", - 18, - ) - yield ( # address, symbol, decimals - b"\xdb\x5c\x3c\x46\xe2\x8b\x53\xa3\x9c\x25\x5a\xa3\x9a\x41\x1d\xd6\x4e\x5f\xed\x9c", - "NCR", - 18, - ) - yield ( # address, symbol, decimals - b"\x9e\x46\xa3\x8f\x5d\xaa\xbe\x86\x83\xe1\x07\x93\xb0\x67\x49\xee\xf7\xd7\x33\xd1", - "NCT", - 18, - ) - yield ( # address, symbol, decimals - b"\xa5\x4d\xdc\x7b\x3c\xce\x7f\xc8\xb1\xe3\xfa\x02\x56\xd0\xdb\x80\xd2\xc1\x09\x70", - "NDC", - 18, - ) - yield ( # address, symbol, decimals - b"\x19\x66\xd7\x18\xa5\x65\x56\x6e\x8e\x20\x27\x92\x65\x8d\x7b\x5f\xf4\xec\xe4\x69", - "NDX", - 18, - ) - yield ( # address, symbol, decimals - b"\xcc\x80\xc0\x51\x05\x7b\x77\x4c\xd7\x50\x67\xdc\x48\xf8\x98\x7c\x4e\xb9\x7a\x5e", - "NEC", - 18, - ) - yield ( # address, symbol, decimals - b"\xd8\x44\x62\x36\xfa\x95\xb9\xb5\xf9\xfd\x0f\x8e\x7d\xf1\xa9\x44\x82\x3c\x68\x3d", - "NEEO", - 18, - ) - yield ( # address, symbol, decimals - b"\xcf\xb9\x86\x37\xbc\xae\x43\xc1\x33\x23\xea\xa1\x73\x1c\xed\x2b\x71\x69\x62\xfd", - "NET", - 18, - ) - yield ( # address, symbol, decimals - b"\xa8\x23\xe6\x72\x20\x06\xaf\xe9\x9e\x91\xc3\x0f\xf5\x29\x50\x52\xfe\x6b\x8e\x32", - "NEU", - 18, - ) - yield ( # address, symbol, decimals - b"\x81\x49\x64\xb1\xbc\xea\xf2\x4e\x26\x29\x6d\x03\x1e\xad\xf1\x34\xa2\xca\x41\x05", - "NEWB", - 0, - ) - yield ( # address, symbol, decimals - b"\xb6\x21\x32\xe3\x5a\x6c\x13\xee\x1e\xe0\xf8\x4d\xc5\xd4\x0b\xad\x8d\x81\x52\x06", - "NEXO", - 18, - ) - yield ( # address, symbol, decimals - b"\x3c\x8d\x2f\xce\x49\x90\x6e\x11\xe7\x1c\xb1\x6f\xa0\xff\xeb\x2b\x16\xc2\x96\x38", - "NFTL", - 18, - ) - yield ( # address, symbol, decimals - b"\x72\xdd\x4b\x6b\xd8\x52\xa3\xaa\x17\x2b\xe4\xd6\xc5\xa6\xdb\xec\x58\x8c\xf1\x31", - "NGC", - 18, - ) - yield ( # address, symbol, decimals - b"\xe2\x65\x17\xa9\x96\x72\x99\x45\x3d\x3f\x1b\x48\xaa\x00\x5e\x61\x27\xe6\x72\x10", - "NIMFA", - 18, - ) - yield ( # address, symbol, decimals - b"\x5c\xf0\x47\x16\xba\x20\x12\x7f\x1e\x22\x97\xad\xdc\xf4\xb5\x03\x50\x00\xc9\xeb", - "NKN", - 18, - ) - yield ( # address, symbol, decimals - b"\xce\xe4\x01\x9f\xd4\x1e\xcd\xc8\xba\xe9\xef\xdd\x20\x51\x0f\x4b\x6f\xaa\x61\x97", - "NLYA", - 18, - ) - yield ( # address, symbol, decimals - b"\x17\x76\xe1\xf2\x6f\x98\xb1\xa5\xdf\x9c\xd3\x47\x95\x3a\x26\xdd\x3c\xb4\x66\x71", - "NMR", - 18, - ) - yield ( # address, symbol, decimals - b"\x58\xa4\x88\x41\x82\xd9\xe8\x35\x59\x7f\x40\x5e\x5f\x25\x82\x90\xe4\x6a\xe7\xc2", - "NOAH", - 18, - ) - yield ( # address, symbol, decimals - b"\xf4\xfa\xea\x45\x55\x75\x35\x4d\x26\x99\xbc\x20\x9b\x0a\x65\xca\x99\xf6\x99\x82", - "NOBS", - 18, - ) - yield ( # address, symbol, decimals - b"\x64\x3b\x68\x70\xbe\xab\xee\x94\x1b\x92\x60\xa0\xa8\x78\xbc\xf4\xa6\x1f\xb0\xf1", - "NONE", - 0, - ) - yield ( # address, symbol, decimals - b"\x00\x27\x44\x9b\xf0\x88\x7c\xa3\xe4\x31\xd2\x63\xff\xde\xfb\x24\x4d\x95\xb5\x55", - "NOT", - 18, - ) - yield ( # address, symbol, decimals - b"\xec\x46\xf8\x20\x7d\x76\x60\x12\x45\x4c\x40\x8d\xe2\x10\xbc\xbc\x22\x43\xe7\x1c", - "NOX", - 18, - ) - yield ( # address, symbol, decimals - b"\x4c\xe6\xb3\x62\xbc\x77\xa2\x49\x66\xdd\xa9\x07\x8f\x9c\xef\x81\xb3\xb8\x86\xa7", - "NPER", - 18, - ) - yield ( # address, symbol, decimals - b"\x28\xb5\xe1\x2c\xce\x51\xf1\x55\x94\xb0\xb9\x1d\x5b\x5a\xda\xa7\x0f\x68\x4a\x02", - "NPX", - 2, - ) - yield ( # address, symbol, decimals - b"\xa1\x5c\x7e\xbe\x1f\x07\xca\xf6\xbf\xf0\x97\xd8\xa5\x89\xfb\x8a\xc4\x9a\xe5\xb3", - "NPXS", - 18, - ) - yield ( # address, symbol, decimals - b"\x00\x00\x00\x08\x58\x24\xf2\x3a\x07\x0c\x24\x74\x44\x2e\xd0\x14\xc0\xe4\x6b\x58", - "NRM", - 18, - ) - yield ( # address, symbol, decimals - b"\x8a\x99\xed\x8a\x1b\x20\x49\x03\xee\x46\xe7\x33\xf2\xc1\x28\x6f\x6d\x20\xb1\x77", - "NTO", - 18, - ) - yield ( # address, symbol, decimals - b"\x22\x33\x79\x9e\xe2\x68\x3d\x75\xdf\xef\xac\xbc\xd2\xa2\x6c\x78\xd3\x4b\x47\x0d", - "NTWK", - 18, - ) - yield ( # address, symbol, decimals - b"\x4f\xe8\x32\x13\xd5\x63\x08\x33\x0e\xc3\x02\xa8\xbd\x64\x1f\x1d\x01\x13\xa4\xcc", - "NU", - 18, - ) - yield ( # address, symbol, decimals - b"\x24\x5e\xf4\x7d\x4d\x05\x05\xec\xf3\xac\x46\x3f\x4d\x81\xf4\x1a\xde\x8f\x1f\xd1", - "NUG", - 18, - ) - yield ( # address, symbol, decimals - b"\xc5\x8c\x0f\xca\x06\x90\x8e\x66\x54\x01\x02\x35\x6f\x2e\x91\xed\xca\xeb\x8d\x81", - "NUKE", - 18, - ) - yield ( # address, symbol, decimals - b"\xb9\x13\x18\xf3\x5b\xdb\x26\x2e\x94\x23\xbc\x7c\x7c\x2a\x3a\x93\xdd\x93\xc9\x2c", - "NULS", - 18, - ) - yield ( # address, symbol, decimals - b"\x30\x3d\x39\x6b\xb1\xe2\xa7\x3b\x15\x36\x66\x59\x64\xaa\x9f\x5a\xa0\xf7\xf9\xca", - "NUMA", - 0, - ) - yield ( # address, symbol, decimals - b"\x0c\x61\x44\xc1\x6a\xf2\x88\x94\x8c\x8f\xdb\x37\xfd\x8f\xec\x94\xbf\xf3\xd1\xd9", - "NUSD", - 6, - ) - yield ( # address, symbol, decimals - b"\x45\xe4\x2d\x65\x9d\x9f\x94\x66\xcd\x5d\xf6\x22\x50\x60\x33\x14\x5a\x9b\x89\xbc", - "NxC", - 3, - ) - yield ( # address, symbol, decimals - b"\x76\x27\xde\x4b\x93\x26\x3a\x6a\x75\x70\xb8\xda\xfa\x64\xba\xe8\x12\xe5\xc3\x94", - "NXX", - 8, - ) - yield ( # address, symbol, decimals - b"\x5e\x88\x8b\x83\xb7\x28\x7e\xed\x4f\xb7\xda\x7b\x7d\x0a\x0d\x4c\x73\x5d\x94\xb3", - "OAK", - 18, - ) - yield ( # address, symbol, decimals - b"\x70\x1c\x24\x4b\x98\x8a\x51\x3c\x94\x59\x73\xde\xfa\x05\xde\x93\x3b\x23\xfe\x1d", - "OAX", - 18, - ) - yield ( # address, symbol, decimals - b"\x43\xe5\x77\x33\x8d\x6c\x07\xbc\x92\xa0\x6c\x8c\xa4\xb7\x81\x47\x05\x15\xdf\xa8", - "OBC", - 18, - ) - yield ( # address, symbol, decimals - b"\x02\x35\xfe\x62\x4e\x04\x4a\x05\xee\xd7\xa4\x3e\x16\xe3\x08\x3b\xc8\xa4\x28\x7a", - "OCC", - 18, - ) - yield ( # address, symbol, decimals - b"\x96\x7d\xa4\x04\x8c\xd0\x7a\xb3\x78\x55\xc0\x90\xaa\xf3\x66\xe4\xce\x1b\x9f\x48", - "OCEAN", - 18, - ) - yield ( # address, symbol, decimals - b"\x7a\xfe\xbb\xb4\x6f\xdb\x47\xed\x17\xb2\x2e\xd0\x75\xcd\xe2\x44\x76\x94\xfb\x9e", - "[deprecated] OCEAN", - 18, - ) - yield ( # address, symbol, decimals - b"\x40\x92\x67\x8e\x4e\x78\x23\x0f\x46\xa1\x53\x4c\x0f\xbc\x8f\xa3\x97\x80\x89\x2b", - "OCN", - 18, - ) - yield ( # address, symbol, decimals - b"\x72\x40\xac\x91\xf0\x12\x33\xba\xaf\x8b\x06\x42\x48\xe8\x0f\xea\xa5\x91\x2b\xa3", - "OCTO", - 18, - ) - yield ( # address, symbol, decimals - b"\xbf\x52\xf2\xab\x39\xe2\x6e\x09\x51\xd2\xa0\x2b\x49\xb7\x70\x2a\xbe\x30\x40\x6a", - "ODE", - 18, - ) - yield ( # address, symbol, decimals - b"\x5f\x45\x06\xdb\x5b\x56\x8e\x10\x35\x32\xf8\x4d\x32\xa2\x85\xcd\xd5\xaa\x57\x51", - "OGK", - 10, - ) - yield ( # address, symbol, decimals - b"\x82\x07\xc1\xff\xc5\xb6\x80\x4f\x60\x24\x32\x2c\xcf\x34\xf2\x9c\x35\x41\xae\x26", - "OGN", - 18, - ) - yield ( # address, symbol, decimals - b"\x9c\x35\x45\x03\xc3\x84\x81\xa7\xa7\xa5\x16\x29\x14\x29\x63\xf9\x8e\xcc\x12\xd0", - "OGV", - 18, - ) - yield ( # address, symbol, decimals - b"\x21\xe1\x3c\xb3\xf3\xf2\x6f\x92\xa6\x2a\xc7\xad\xab\x40\x93\xe8\x99\x7d\x1f\xb1", - "OIKOS", - 2, - ) - yield ( # address, symbol, decimals - b"\xbe\xef\x54\x6a\xc8\xa4\xe0\xa8\x0d\xc1\xe2\xd6\x96\x96\x8e\xf5\x41\x38\xf1\xd4", - "OJX", - 18, - ) - yield ( # address, symbol, decimals - b"\x75\x23\x1f\x58\xb4\x32\x40\xc9\x71\x8d\xd5\x8b\x49\x67\xc5\x11\x43\x42\xa8\x6c", - "OKB", - 18, - ) - yield ( # address, symbol, decimals - b"\x36\x18\x51\x6f\x45\xcd\x3c\x91\x3f\x81\xf9\x98\x7a\xf4\x10\x77\x93\x2b\xc4\x0d", - "OLDPCL", - 8, - ) - yield ( # address, symbol, decimals - b"\xc6\x6e\xa8\x02\x71\x7b\xfb\x98\x33\x40\x02\x64\xdd\x12\xc2\xbc\xea\xa3\x4a\x6d", - "OLD_MKR", - 18, - ) - yield ( # address, symbol, decimals - b"\x9d\x92\x23\x43\x6d\xdd\x46\x6f\xc2\x47\xe9\xdb\xbd\x20\x20\x7e\x64\x0f\xef\x58", - "OLE", - 18, - ) - yield ( # address, symbol, decimals - b"\x64\xa6\x04\x93\xd8\x88\x72\x8c\xf4\x26\x16\xe0\x34\xa0\xdf\xea\xe3\x8e\xfc\xf0", - "OLT", - 18, - ) - yield ( # address, symbol, decimals - b"\xd2\x61\x14\xcd\x6e\xe2\x89\xac\xcf\x82\x35\x0c\x8d\x84\x87\xfe\xdb\x8a\x0c\x07", - "OMG", - 18, - ) - yield ( # address, symbol, decimals - b"\x04\x71\x87\xe5\x34\x77\xbe\x70\xdb\xe8\xea\x5b\x79\x93\x18\xf2\xe1\x65\x05\x2f", - "OMT", - 18, - ) - yield ( # address, symbol, decimals - b"\xb5\xdb\xc6\xd3\xcf\x38\x00\x79\xdf\x3b\x27\x13\x56\x64\xb6\xbc\xf4\x5d\x18\x69", - "OMX", - 8, - ) - yield ( # address, symbol, decimals - b"\xb2\x3b\xe7\x35\x73\xbc\x7e\x03\xdb\x6e\x5d\xfc\x62\x40\x53\x68\x71\x6d\x28\xa8", - "ONEK", - 18, - ) - yield ( # address, symbol, decimals - b"\xd3\x41\xd1\x68\x0e\xee\xe3\x25\x5b\x8c\x4c\x75\xbc\xce\x7e\xb5\x7f\x14\x4d\xae", - "ONG", - 18, - ) - yield ( # address, symbol, decimals - b"\x68\x63\xbe\x0e\x7c\xf7\xce\x86\x0a\x57\x47\x60\xe9\x02\x0d\x51\x9a\x8b\xdc\x47", - "ONL", - 18, - ) - yield ( # address, symbol, decimals - b"\xb3\x1c\x21\x99\x59\xe0\x6f\x9a\xfb\xeb\x36\xb3\x88\xa4\xba\xd1\x3e\x80\x27\x25", - "ONOT", - 18, - ) - yield ( # address, symbol, decimals - b"\x77\x59\x9d\x2c\x6d\xb1\x70\x22\x42\x43\xe2\x55\xe6\x66\x92\x80\xf1\x1f\x14\x73", - "OPQ", - 18, - ) - yield ( # address, symbol, decimals - b"\x43\x55\xfc\x16\x0f\x74\x32\x8f\x9b\x38\x3d\xf2\xec\x58\x9b\xb3\xdf\xd8\x2b\xa0", - "OPT", - 18, - ) - yield ( # address, symbol, decimals - b"\x83\x29\x04\x86\x39\x78\xb9\x48\x02\x12\x31\x06\xe6\xeb\x49\x1b\xdf\x0d\xf9\x28", - "OPTI", - 18, - ) - yield ( # address, symbol, decimals - b"\x3f\xf9\xce\xbb\xea\xa7\xbc\xc4\x8a\x95\x2a\x01\x1a\x02\xa2\x2a\x1f\xdd\x1c\x62", - "OR", - 18, - ) - yield ( # address, symbol, decimals - b"\xff\x56\xcc\x6b\x1e\x6d\xed\x34\x7a\xa0\xb7\x67\x6c\x85\xab\x0b\x3d\x08\xb0\xfa", - "ORBS", - 18, - ) - yield ( # address, symbol, decimals - b"\x6f\x59\xe0\x46\x1a\xe5\xe2\x79\x9f\x1f\xb3\x84\x7f\x05\xa6\x3b\x16\xd0\xdb\xf8", - "ORCA", - 18, - ) - yield ( # address, symbol, decimals - b"\xd2\xfa\x8f\x92\xea\x72\xab\xb3\x5d\xbd\x6d\xec\xa5\x71\x73\xd2\x2d\xb2\xba\x49", - "ORI", - 18, - ) - yield ( # address, symbol, decimals - b"\x8f\xb0\x0f\xde\xbb\x4e\x83\xf2\xc5\x8b\x3b\xcd\x67\x32\xac\x1b\x6a\x7b\x72\x21", - "ORN", - 8, - ) - yield ( # address, symbol, decimals - b"\xeb\x9a\x4b\x18\x58\x16\xc3\x54\xdb\x92\xdb\x09\xcc\x3b\x50\xbe\x60\xb9\x01\xb6", - "ORS", - 18, - ) - yield ( # address, symbol, decimals - b"\x4e\x84\xa6\x5b\x56\x64\xd3\x3b\x67\x75\x07\x71\xf8\xbe\xae\xc4\x58\xbd\x67\x29", - "ORX", - 18, - ) - yield ( # address, symbol, decimals - b"\xff\xa5\x2d\xce\x6e\xb5\x69\x54\x36\xbe\x96\xca\x9b\x7d\xf6\x33\x82\xe4\xc3\x4d", - "OSPVS", - 18, - ) - yield ( # address, symbol, decimals - b"\x2c\x4e\x8f\x2d\x74\x61\x13\xd0\x69\x6c\xe8\x9b\x35\xf0\xd8\xbf\x88\xe0\xae\xca", - "OST", - 18, - ) - yield ( # address, symbol, decimals - b"\x88\x1e\xf4\x82\x11\x98\x2d\x01\xe2\xcb\x70\x92\xc9\x15\xe6\x47\xcd\x40\xd8\x5c", - "OTN", - 18, - ) - yield ( # address, symbol, decimals - b"\x02\x8c\xe5\xea\x32\x98\xa5\x0c\x0d\x8a\x27\xb9\x37\xb1\xf4\x8c\xf0\xd6\x8b\x56", - "OTO", - 18, - ) - yield ( # address, symbol, decimals - b"\xc5\x2b\x11\x28\x3f\x4c\xa6\xbd\x20\xcb\xc4\xad\xdd\x2c\x13\x6a\x19\x3f\x6a\xf1", - "[deprecated] OTO", - 18, - ) - yield ( # address, symbol, decimals - b"\x2a\x8e\x1e\x67\x6e\xc2\x38\xd8\xa9\x92\x30\x7b\x49\x5b\x45\xb3\xfe\xaa\x5e\x86", - "OUSD", - 18, - ) - yield ( # address, symbol, decimals - b"\x17\x0b\x27\x5c\xed\x08\x9f\xff\xae\xbf\xe9\x27\xf4\x45\xa3\x50\xed\x91\x60\xdc", - "OWN", - 8, - ) - yield ( # address, symbol, decimals - b"\xc2\x49\x46\x04\xe9\xdc\xef\xa2\xa7\x0d\xce\xbf\x81\xe6\xd7\xbe\x06\x4a\x33\x4e", - "OWT", - 18, - ) - yield ( # address, symbol, decimals - b"\x65\xa1\x50\x14\x96\x4f\x21\x02\xff\x58\x64\x7e\x16\xa1\x6a\x6b\x9e\x14\xbc\xf6", - "Ox Fina", - 3, - ) - yield ( # address, symbol, decimals - b"\x45\x75\xf4\x13\x08\xec\x14\x83\xf3\xd3\x99\xaa\x9a\x28\x26\xd7\x4d\xa1\x3d\xeb", - "OXT", - 18, - ) - yield ( # address, symbol, decimals - b"\x45\x27\xa3\xb4\xa8\xa1\x50\x40\x30\x90\xa9\x9b\x87\xef\xfc\x96\xf2\x19\x50\x47", - "P2PS", - 8, - ) - yield ( # address, symbol, decimals - b"\xb9\xbb\x08\xab\x7e\x9f\xa0\xa1\x35\x6b\xd4\xa3\x9e\xc0\xca\x26\x7e\x03\xb0\xb3", - "PAI", - 18, - ) - yield ( # address, symbol, decimals - b"\xfe\xda\xe5\x64\x26\x68\xf8\x63\x6a\x11\x98\x7f\xf3\x86\xbf\xd2\x15\xf9\x42\xee", - "PAL", - 18, - ) - yield ( # address, symbol, decimals - b"\xd5\x6d\xac\x73\xa4\xd6\x76\x64\x64\xb3\x8e\xc6\xd9\x1e\xb4\x5c\xe7\x45\x7c\x44", - "PAN", - 18, - ) - yield ( # address, symbol, decimals - b"\xea\x5f\x88\xe5\x4d\x98\x2c\xbb\x0c\x44\x1c\xde\x4e\x79\xbc\x30\x5e\x5b\x43\xbc", - "PARETO", - 18, - ) - yield ( # address, symbol, decimals - b"\xf3\xb3\xca\xd0\x94\xb8\x93\x92\xfc\xe5\xfa\xfd\x40\xbc\x03\xb8\x0f\x2b\xc6\x24", - "PAT", - 18, - ) - yield ( # address, symbol, decimals - b"\x69\x44\x04\x59\x5e\x30\x75\xa9\x42\x39\x7f\x46\x6a\xac\xd4\x62\xff\x1a\x7b\xd0", - "PATENTS", - 18, - ) - yield ( # address, symbol, decimals - b"\xf8\x13\xf3\x90\x2b\xbc\x00\xa6\xdc\xe3\x78\x63\x4d\x3b\x79\xd8\x4f\x98\x03\xd7", - "PATH", - 18, - ) - yield ( # address, symbol, decimals - b"\x9f\xba\x68\x4d\x77\xd2\xd6\xa1\x40\x8c\x24\xb6\x0a\x1f\x55\x34\xe7\x1f\x5b\x75", - "PATR", - 18, - ) - yield ( # address, symbol, decimals - b"\x45\x80\x48\x80\xde\x22\x91\x3d\xaf\xe0\x9f\x49\x80\x84\x8e\xce\x6e\xcb\xaf\x78", - "PAXG", - 18, - ) - yield ( # address, symbol, decimals - b"\xb9\x70\x48\x62\x8d\xb6\xb6\x61\xd4\xc2\xaa\x83\x3e\x95\xdb\xe1\xa9\x05\xb2\x80", - "PAY", - 18, - ) - yield ( # address, symbol, decimals - b"\x55\x64\x8d\xe1\x98\x36\x33\x85\x49\x13\x0b\x1a\xf5\x87\xf1\x6b\xea\x46\xf6\x6b", - "PBL", - 18, - ) - yield ( # address, symbol, decimals - b"\xf4\xc0\x7b\x18\x65\xbc\x32\x6a\x3c\x01\x33\x94\x92\xca\x75\x38\xfd\x03\x8c\xc0", - "PBT", - 4, - ) - yield ( # address, symbol, decimals - b"\x52\x28\xa2\x2e\x72\xcc\xc5\x2d\x41\x5e\xcf\xd1\x99\xf9\x9d\x06\x65\xe7\x73\x3b", - "pBTC", - 18, - ) - yield ( # address, symbol, decimals - b"\x0f\x02\xe2\x77\x45\xe3\xb6\xe9\xe1\x31\x0d\x19\x46\x9e\x2b\x5d\x7b\x5e\xc9\x9a", - "PCL", - 8, - ) - yield ( # address, symbol, decimals - b"\x53\x14\x8b\xb4\x55\x17\x07\xed\xf5\x1a\x1e\x8d\x7a\x93\x69\x8d\x18\x93\x12\x25", - "PCLOLD", - 8, - ) - yield ( # address, symbol, decimals - b"\x0d\xb0\x3b\x6c\xde\x0b\x2d\x42\x7c\x64\xa0\x4f\xea\xfd\x82\x59\x38\x36\x8f\x1f", - "PDATA", - 18, - ) - yield ( # address, symbol, decimals - b"\x8a\xe5\x6a\x68\x50\xa7\xcb\xea\xc3\xc3\xab\x2c\xb3\x11\xe7\x62\x01\x67\xea\xc8", - "PEG", - 18, - ) - yield ( # address, symbol, decimals - b"\xbb\x0e\xf9\xe6\x17\xfa\xdd\xf5\x4b\x8d\x16\xe2\x90\x46\xf7\x2b\x4d\x3e\xc7\x7f", - "PEP", - 18, - ) - yield ( # address, symbol, decimals - b"\x30\xfe\xf2\x58\xd2\x72\x8f\x9d\x1e\xdf\x03\x80\x59\xc7\x25\xfa\xf7\x85\x69\x7e", - "PESO", - 2, - ) - yield ( # address, symbol, decimals - b"\x58\x84\x96\x9e\xc0\x48\x05\x56\xe1\x1d\x11\x99\x80\x13\x6a\x4c\x17\xed\xde\xd1", - "PET", - 18, - ) - yield ( # address, symbol, decimals - b"\xf5\x3a\xd2\xc6\x85\x10\x52\xa8\x1b\x42\x13\x34\x67\x48\x09\x61\xb2\x32\x1c\x09", - "PETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xec\x18\xf8\x98\xb4\x07\x6a\x3e\x18\xf1\x08\x9d\x33\x37\x6c\xc3\x80\xbd\xe6\x1d", - "PETRO", - 18, - ) - yield ( # address, symbol, decimals - b"\x55\xc2\xa0\xc1\x71\xd9\x20\x84\x35\x60\x59\x4d\xe3\xd6\xee\xcc\x09\xef\xc0\x98", - "PEXT", - 4, - ) - yield ( # address, symbol, decimals - b"\x46\x76\x0d\x2b\xf2\xf4\xdd\x54\x05\x64\x6d\x9b\x2c\xe7\xb7\x23\xef\xe7\x4a\x48", - "PFB", - 18, - ) - yield ( # address, symbol, decimals - b"\x2f\xa3\x2a\x39\xfc\x1c\x39\x9e\x0c\xc7\xb2\x93\x58\x68\xf5\x16\x5d\xe7\xce\x97", - "PFR", - 8, - ) - yield ( # address, symbol, decimals - b"\x13\xc2\xfa\xb6\x35\x4d\x37\x90\xd8\xec\xe4\xf0\xf1\xa3\x28\x0b\x4a\x25\xad\x96", - "PHI", - 18, - ) - yield ( # address, symbol, decimals - b"\x42\x98\x81\x67\x2b\x9a\xe4\x2b\x8e\xba\x0e\x26\xcd\x9c\x73\x71\x1b\x89\x1c\xa5", - "PICKLE", - 18, - ) - yield ( # address, symbol, decimals - b"\xe6\x45\x09\xf0\xbf\x07\xce\x2d\x29\xa7\xef\x19\xa8\xa9\xbc\x06\x54\x77\xc1\xb4", - "PIPL", - 8, - ) - yield ( # address, symbol, decimals - b"\x0f\xf1\x61\x07\x1e\x62\x7a\x0e\x6d\xe1\x38\x10\x5c\x73\x97\x0f\x86\xca\x79\x22", - "PIT", - 18, - ) - yield ( # address, symbol, decimals - b"\x8e\xff\xd4\x94\xeb\x69\x8c\xc3\x99\xaf\x62\x31\xfc\xcd\x39\xe0\x8f\xd2\x0b\x15", - "PIX", - 0, - ) - yield ( # address, symbol, decimals - b"\x93\x18\x10\x54\x60\x62\x6e\x7f\xa5\x83\x08\xfa\x4b\xce\x40\xe4\x61\x6f\x35\x65", - "PIXIE", - 18, - ) - yield ( # address, symbol, decimals - b"\x02\xf2\xd4\xa0\x4e\x6e\x01\xac\xe8\x8b\xd2\xcd\x63\x28\x75\x54\x3b\x2e\xf5\x77", - "PKG", - 18, - ) - yield ( # address, symbol, decimals - b"\x26\x04\xfa\x40\x6b\xe9\x57\xe5\x42\xbe\xb8\x9e\x67\x54\xfc\xde\x68\x15\xe8\x3f", - "PKT", - 18, - ) - yield ( # address, symbol, decimals - b"\x01\x98\xf4\x6f\x52\x0f\x33\xcd\x43\x29\xbd\x4b\xe3\x80\xa2\x5a\x90\x53\x6c\xd5", - "PLA", - 18, - ) - yield ( # address, symbol, decimals - b"\x59\x41\x6a\x25\x62\x8a\x76\xb4\x73\x0e\xc5\x14\x86\x11\x4c\x32\xe0\xb5\x82\xa1", - "PLASMA", - 6, - ) - yield ( # address, symbol, decimals - b"\x0a\xff\xa0\x6e\x7f\xbe\x5b\xc9\xa7\x64\xc9\x79\xaa\x66\xe8\x25\x6a\x63\x1f\x02", - "PLBT", - 6, - ) - yield ( # address, symbol, decimals - b"\xe3\x81\x85\x04\xc1\xb3\x2b\xf1\x55\x7b\x16\xc2\x38\xb2\xe0\x1f\xd3\x14\x9c\x17", - "PLR", - 18, - ) - yield ( # address, symbol, decimals - b"\xe4\x3a\xc1\x71\x4f\x73\x94\x17\x3b\x15\xe7\xcf\xf3\x1a\x63\xd5\x23\xce\x4f\xb9", - "PLS", - 18, - ) - yield ( # address, symbol, decimals - b"\xd8\x91\x2c\x10\x68\x1d\x8b\x21\xfd\x37\x42\x24\x4f\x44\x65\x8d\xba\x12\x26\x4e", - "PLU", - 18, - ) - yield ( # address, symbol, decimals - b"\x84\x6c\x66\xcf\x71\xc4\x3f\x80\x40\x3b\x51\xfe\x39\x06\xb3\x59\x9d\x63\x33\x6f", - "PMA", - 18, - ) - yield ( # address, symbol, decimals - b"\x81\xb4\xd0\x86\x45\xda\x11\x37\x4a\x03\x74\x9a\xb1\x70\x83\x6e\x4e\x53\x97\x67", - "PMNT", - 9, - ) - yield ( # address, symbol, decimals - b"\x93\xed\x3f\xbe\x21\x20\x7e\xc2\xe8\xf2\xd3\xc3\xde\x6e\x05\x8c\xb7\x3b\xc0\x4d", - "PNK", - 18, - ) - yield ( # address, symbol, decimals - b"\x67\x58\xb7\xd4\x41\xa9\x73\x9b\x98\x55\x2b\x37\x37\x03\xd8\xd3\xd1\x4f\x9e\x62", - "POA20", - 18, - ) - yield ( # address, symbol, decimals - b"\x0e\x09\x89\xb1\xf9\xb8\xa3\x89\x83\xc2\xba\x80\x53\x26\x9c\xa6\x2e\xc9\xb1\x95", - "POE", - 8, - ) - yield ( # address, symbol, decimals - b"\x43\xf6\xa1\xbe\x99\x2d\xee\x40\x87\x21\x74\x84\x90\x77\x2b\x15\x14\x3c\xe0\xa7", - "POIN", - 0, - ) - yield ( # address, symbol, decimals - b"\x70\x5e\xe9\x6c\x1c\x16\x08\x42\xc9\x2c\x1a\xec\xfc\xff\xcc\xc9\xc4\x12\xe3\xd9", - "POLL", - 18, - ) - yield ( # address, symbol, decimals - b"\x99\x92\xec\x3c\xf6\xa5\x5b\x00\x97\x8c\xdd\xf2\xb2\x7b\xc6\x88\x2d\x88\xd1\xec", - "POLY", - 18, - ) - yield ( # address, symbol, decimals - b"\x77\x9b\x7b\x71\x3c\x86\xe3\xe6\x77\x4f\x50\x40\xd9\xcc\xc2\xd4\x3a\xd3\x75\xf8", - "POOL", - 8, - ) - yield ( # address, symbol, decimals - b"\x5d\x85\x8b\xcd\x53\xe0\x85\x92\x06\x20\x54\x92\x14\xa8\xb2\x7c\xe2\xf0\x46\x70", - "POP", - 18, - ) - yield ( # address, symbol, decimals - b"\xee\x60\x9f\xe2\x92\x12\x8c\xad\x03\xb7\x86\xdb\xb9\xbc\x26\x34\xcc\xdb\xe7\xfc", - "POS", - 18, - ) - yield ( # address, symbol, decimals - b"\x59\x58\x32\xf8\xfc\x6b\xf5\x9c\x85\xc5\x27\xfe\xc3\x74\x0a\x1b\x7a\x36\x12\x69", - "POWR", - 6, - ) - yield ( # address, symbol, decimals - b"\xc4\x22\x09\xac\xcc\x14\x02\x9c\x10\x12\xfb\x56\x80\xd9\x5f\xbd\x60\x36\xe2\xa0", - "PPP", - 18, - ) - yield ( # address, symbol, decimals - b"\xd4\xfa\x14\x60\xf5\x37\xbb\x90\x85\xd2\x2c\x7b\xcc\xb5\xdd\x45\x0e\xf2\x8e\x3a", - "PPT", - 8, - ) - yield ( # address, symbol, decimals - b"\x88\xa3\xe4\xf3\x5d\x64\xaa\xd4\x1a\x6d\x40\x30\xac\x9a\xfe\x43\x56\xcb\x84\xfa", - "PRE", - 18, - ) - yield ( # address, symbol, decimals - b"\x77\x28\xdf\xef\x5a\xbd\x46\x86\x69\xeb\x7f\x9b\x48\xa7\xf7\x0a\x50\x1e\xd2\x9d", - "PRG", - 6, - ) - yield ( # address, symbol, decimals - b"\x3a\xdf\xc4\x99\x9f\x77\xd0\x4c\x83\x41\xba\xc5\xf3\xa7\x6f\x58\xdf\xf5\xb3\x7a", - "PRIX", - 8, - ) - yield ( # address, symbol, decimals - b"\x18\x44\xb2\x15\x93\x26\x26\x68\xb7\x24\x8d\x0f\x57\xa2\x20\xca\xab\xa4\x6a\xb9", - "PRL", - 18, - ) - yield ( # address, symbol, decimals - b"\xa3\x14\x9e\x0f\xa0\x06\x1a\x90\x07\xfa\xf3\x07\x07\x4c\xdc\xd2\x90\xf0\xe2\xfd", - "PRON", - 8, - ) - yield ( # address, symbol, decimals - b"\x6f\xe5\x6c\x0b\xcd\xd4\x71\x35\x90\x19\xfc\xbc\x48\x86\x3d\x6c\x3e\x9d\x4f\x41", - "PROPS", - 18, - ) - yield ( # address, symbol, decimals - b"\x16\x37\x33\xbc\xc2\x8d\xbf\x26\xb4\x1a\x8c\xfa\x83\xe3\x69\xb5\xb3\xaf\x74\x1b", - "PRS", - 18, - ) - yield ( # address, symbol, decimals - b"\x0c\x04\xd4\xf3\x31\xda\x8d\xf7\x5f\x9e\x2e\x27\x1e\x3f\x3f\x14\x94\xc6\x6c\x36", - "PRSP", - 9, - ) - yield ( # address, symbol, decimals - b"\x5f\x85\xc6\x01\x87\xab\x23\x3c\xa6\xe7\x50\x73\x1d\x15\xe7\xef\xd0\x61\xfb\xde", - "PSDN", - 18, - ) - yield ( # address, symbol, decimals - b"\x1c\x5f\x43\x71\x0a\x17\x76\xb0\xea\x71\x91\xb7\xea\xd7\x5d\x4b\x98\xd6\x98\x58", - "PSK", - 18, - ) - yield ( # address, symbol, decimals - b"\x5d\x4a\xbc\x77\xb8\x40\x5a\xd1\x77\xd8\xac\x66\x82\xd5\x84\xec\xbf\xd4\x6c\xec", - "PST", - 18, - ) - yield ( # address, symbol, decimals - b"\x66\x49\x7a\x28\x3e\x0a\x00\x7b\xa3\x97\x4e\x83\x77\x84\xc6\xae\x32\x34\x47\xde", - "PT", - 18, - ) - yield ( # address, symbol, decimals - b"\x2a\x8e\x98\xe2\x56\xf3\x22\x59\xb5\xe5\xcb\x55\xdd\x63\xc8\xe8\x91\x95\x06\x66", - "PTC", - 18, - ) - yield ( # address, symbol, decimals - b"\x49\x46\x58\x3c\x5b\x86\xe0\x1c\xcd\x30\xc7\x1a\x05\x61\x7d\x06\xe3\xe7\x30\x60", - "PTON", - 18, - ) - yield ( # address, symbol, decimals - b"\x8a\xe4\xbf\x2c\x33\xa8\xe6\x67\xde\x34\xb5\x49\x38\xb0\xcc\xd0\x3e\xb8\xcc\x06", - "PTOY", - 8, - ) - yield ( # address, symbol, decimals - b"\x46\x89\xa4\xe1\x69\xeb\x39\xcc\x90\x78\xc0\x94\x0e\x21\xff\x1a\xa8\xa3\x9b\x9c", - "PTT", - 18, - ) - yield ( # address, symbol, decimals - b"\x55\x12\xe1\xd6\xa7\xbe\x42\x4b\x43\x23\x12\x6b\x4f\x9e\x86\xd0\x23\xf9\x57\x64", - "PTWO", - 18, - ) - yield ( # address, symbol, decimals - b"\xef\x6b\x4c\xe8\xc9\xbc\x83\x74\x4f\xbc\xde\x26\x57\xb3\x2e\xc1\x87\x90\x45\x8a", - "PUC", - 0, - ) - yield ( # address, symbol, decimals - b"\xe2\x5f\xf6\xeb\x95\x9b\xce\x67\x97\x57\x78\xe4\x6a\x47\x75\x0c\x24\x3b\x6b\x99", - "PURC", - 18, - ) - yield ( # address, symbol, decimals - b"\x93\xd3\x29\x6c\xac\x20\x84\x22\xbf\x58\x7c\x35\x97\xd1\x16\xe8\x09\x87\x0f\x2b", - "pUSD", - 8, - ) - yield ( # address, symbol, decimals - b"\x91\x96\xe1\x8b\xc3\x49\xb1\xf6\x4b\xc0\x87\x84\xea\xe2\x59\x52\x53\x29\xa1\xad", - "PUSSY", - 18, - ) - yield ( # address, symbol, decimals - b"\x47\xe6\x7b\xa6\x6b\x06\x99\x50\x0f\x18\xa5\x3f\x94\xe2\xb9\xdb\x3d\x47\x43\x7e", - "PXG", - 18, - ) - yield ( # address, symbol, decimals - b"\xc1\x48\x30\xe5\x3a\xa3\x44\xe8\xc1\x46\x03\xa9\x12\x29\xa0\xb9\x25\xb0\xb2\x62", - "PXT", - 8, - ) - yield ( # address, symbol, decimals - b"\x77\x03\xc3\x5c\xff\xdc\x5c\xda\x8d\x27\xaa\x3d\xf2\xf9\xba\x69\x64\x54\x4b\x6e", - "PYLNT", - 18, - ) - yield ( # address, symbol, decimals - b"\x01\x42\xc3\xb2\xfc\x51\x81\x9b\x5a\xf5\xdf\xc4\xaa\x52\xdf\x97\x22\x79\x08\x51", - "PYN", - 18, - ) - yield ( # address, symbol, decimals - b"\x61\x8e\x75\xac\x90\xb1\x2c\x60\x49\xba\x3b\x27\xf5\xd5\xf8\x65\x1b\x00\x37\xf6", - "QASH", - 6, - ) - yield ( # address, symbol, decimals - b"\x67\x1a\xbb\xe5\xce\x65\x24\x91\x98\x53\x42\xe8\x54\x28\xeb\x1b\x07\xbc\x6c\x64", - "QAU", - 8, - ) - yield ( # address, symbol, decimals - b"\x24\x67\xaa\x6b\x5a\x23\x51\x41\x6f\xd4\xc3\xde\xf8\x46\x2d\x84\x1f\xee\xec\xec", - "QBX", - 18, - ) - yield ( # address, symbol, decimals - b"\x68\x7b\xfc\x3e\x73\xf6\xaf\x55\xf0\xcc\xca\x84\x50\x11\x4d\x10\x7e\x78\x1a\x0e", - "QCH", - 18, - ) - yield ( # address, symbol, decimals - b"\x9a\xdc\x77\x10\xe9\xd1\xb2\x9d\x8a\x78\xc0\x4d\x52\xd3\x25\x32\x29\x7c\x2e\xf3", - "QDT", - 18, - ) - yield ( # address, symbol, decimals - b"\xea\x26\xc4\xac\x16\xd4\xa5\xa1\x06\x82\x0b\xc8\xae\xe8\x5f\xd0\xb7\xb2\xb6\x64", - "QKC", - 18, - ) - yield ( # address, symbol, decimals - b"\x4a\x22\x0e\x60\x96\xb2\x5e\xad\xb8\x83\x58\xcb\x44\x06\x8a\x32\x48\x25\x46\x75", - "QNT", - 18, - ) - yield ( # address, symbol, decimals - b"\xff\xaa\x5f\xfc\x45\x5d\x91\x31\xf8\xa2\x71\x3a\x74\x1f\xd1\x96\x03\x30\x50\x8b", - "QRG", - 18, - ) - yield ( # address, symbol, decimals - b"\x69\x7b\xea\xc2\x8b\x09\xe1\x22\xc4\x33\x2d\x16\x39\x85\xe8\xa7\x31\x21\xb9\x7f", - "QRL", - 8, - ) - yield ( # address, symbol, decimals - b"\x99\xea\x4d\xb9\xee\x77\xac\xd4\x0b\x11\x9b\xd1\xdc\x4e\x33\xe1\xc0\x70\xb8\x0d", - "QSP", - 18, - ) - yield ( # address, symbol, decimals - b"\x2c\x3c\x1f\x05\x18\x7d\xba\x7a\x5f\x2d\xd4\x7d\xca\x57\x28\x1c\x4d\x4f\x18\x3f", - "QTQ", - 18, - ) - yield ( # address, symbol, decimals - b"\x9a\x64\x2d\x6b\x33\x68\xdd\xc6\x62\xca\x24\x4b\xad\xf3\x2c\xda\x71\x60\x05\xbc", - "QTUM", - 18, - ) - yield ( # address, symbol, decimals - b"\x26\x4d\xc2\xde\xdc\xdc\xbb\x89\x75\x61\xa5\x7c\xba\x50\x85\xca\x41\x6f\xb7\xb4", - "QUN", - 18, - ) - yield ( # address, symbol, decimals - b"\x11\x83\xf9\x2a\x56\x24\xd6\x8e\x85\xff\xb9\x17\x0f\x16\xbf\x04\x43\xb4\xc2\x42", - "QVT", - 18, - ) - yield ( # address, symbol, decimals - b"\x48\xf7\x75\xef\xbe\x4f\x5e\xce\x6e\x0d\xf2\xf7\xb5\x93\x2d\xf5\x68\x23\xb9\x90", - "R", - 0, - ) - yield ( # address, symbol, decimals - b"\xe5\xa3\x22\x9c\xcb\x22\xb6\x48\x45\x94\x97\x3a\x03\xa3\x85\x1d\xcd\x94\x87\x56", - "RAE", - 18, - ) - yield ( # address, symbol, decimals - b"\x03\xab\x45\x86\x34\x91\x0a\xad\x20\xef\x5f\x1c\x8e\xe9\x6f\x1d\x6a\xc5\x49\x19", - "RAI", - 18, - ) - yield ( # address, symbol, decimals - b"\x45\xed\xb5\x35\x94\x2a\x8c\x84\xd9\xf4\xb5\xd3\x7e\x1b\x25\xf9\x1e\xa4\x80\x4c", - "RAO", - 18, - ) - yield ( # address, symbol, decimals - b"\xe8\x66\x3a\x64\xa9\x61\x69\xff\x4d\x95\xb4\x29\x9e\x7a\xe9\xa7\x6b\x90\x5b\x31", - "RATING", - 8, - ) - yield ( # address, symbol, decimals - b"\xfc\x2c\x4d\x8f\x95\x00\x2c\x14\xed\x0a\x7a\xa6\x51\x02\xca\xc9\xe5\x95\x3b\x5e", - "RBLX", - 18, - ) - yield ( # address, symbol, decimals - b"\x16\x5b\x67\x49\x81\x29\x00\x53\x84\x02\xcd\x54\x0c\x55\xbe\x68\x41\x1f\x8e\xa0", - "RBT", - 18, - ) - yield ( # address, symbol, decimals - b"\x82\x54\xe2\x6e\x45\x3e\xb5\xab\xd2\x9b\x3c\x37\xac\x9e\x8d\xa3\x2e\x5d\x32\x99", - "RBX", - 18, - ) - yield ( # address, symbol, decimals - b"\xf9\x70\xb8\xe3\x6e\x23\xf7\xfc\x3f\xd7\x52\xee\xa8\x6f\x8b\xe8\xd8\x33\x75\xa6", - "RCN", - 18, - ) - yield ( # address, symbol, decimals - b"\x25\x5a\xa6\xdf\x07\x54\x0c\xb5\xd3\xd2\x97\xf0\xd0\xd4\xd8\x4c\xb5\x2b\xc8\xe6", - "RDN", - 18, - ) - yield ( # address, symbol, decimals - b"\xd9\x67\xd9\xf9\x41\xcd\x31\x6a\xb2\x38\xd3\xee\x76\x1f\x80\xb7\xca\xec\x78\x19", - "RDV", - 18, - ) - yield ( # address, symbol, decimals - b"\x76\x7b\xa2\x91\x5e\xc3\x44\x01\x5a\x79\x38\xe3\xee\xdf\xec\x27\x85\x19\x5d\x05", - "REA", - 18, - ) - yield ( # address, symbol, decimals - b"\x92\x14\xec\x02\xcb\x71\xcb\xa0\xad\xa6\x89\x6b\x8d\xa2\x60\x73\x6a\x67\xab\x10", - "REAL", - 18, - ) - yield ( # address, symbol, decimals - b"\x5f\x53\xf7\xa8\x07\x56\x14\xb6\x99\xba\xad\x0b\xc2\xc8\x99\xf4\xba\xd8\xfb\xbf", - "REBL", - 18, - ) - yield ( # address, symbol, decimals - b"\x76\x96\x0d\xcc\xd5\xa1\xfe\x79\x9f\x7c\x29\xbe\x9f\x19\xce\xb4\x62\x7a\xeb\x2f", - "RED", - 18, - ) - yield ( # address, symbol, decimals - b"\xb5\x63\x30\x0a\x3b\xac\x79\xfc\x09\xb9\x3b\x6f\x84\xce\x0d\x44\x65\xa2\xac\x27", - "REDC", - 18, - ) - yield ( # address, symbol, decimals - b"\xfe\x3e\x6a\x25\xe6\xb1\x92\xa4\x2a\x44\xec\xdd\xcd\x13\x79\x64\x71\x73\x5a\xcf", - "REEF", - 18, - ) - yield ( # address, symbol, decimals - b"\x89\x30\x35\x00\xa7\xab\xfb\x17\x8b\x27\x4f\xd8\x9f\x24\x69\xc2\x64\x95\x1e\x1f", - "REF", - 8, - ) - yield ( # address, symbol, decimals - b"\x83\x98\x4d\x61\x42\x93\x4b\xb5\x35\x79\x3a\x82\xad\xb0\xa4\x6e\xf0\xf6\x6b\x6d", - "REM", - 4, - ) - yield ( # address, symbol, decimals - b"\x13\xcb\x85\x82\x3f\x78\xcf\xf3\x8f\x0b\x0e\x90\xd3\xe9\x75\xb8\xcb\x3a\xad\x64", - "REMI", - 18, - ) - yield ( # address, symbol, decimals - b"\x40\x8e\x41\x87\x6c\xcc\xdc\x0f\x92\x21\x06\x00\xef\x50\x37\x26\x56\x05\x2a\x38", - "REN", - 18, - ) - yield ( # address, symbol, decimals - b"\x19\x85\x36\x5e\x9f\x78\x35\x9a\x9b\x6a\xd7\x60\xe3\x24\x12\xf4\xa4\x45\xe8\x62", - "REP", - 18, - ) - yield ( # address, symbol, decimals - b"\xe9\x43\x27\xd0\x7f\xc1\x79\x07\xb4\xdb\x78\x8e\x5a\xdf\x2e\xd4\x24\xad\xdf\xf6", - "[deprecated] REP", - 18, - ) - yield ( # address, symbol, decimals - b"\x22\x16\x57\x77\x68\x46\x89\x09\x89\xa7\x59\xba\x29\x73\xe4\x27\xdf\xf5\xc9\xbb", - "REPv2", - 18, - ) - yield ( # address, symbol, decimals - b"\x8f\x82\x21\xaf\xbb\x33\x99\x8d\x85\x84\xa2\xb0\x57\x49\xba\x73\xc3\x7a\x93\x8a", - "REQ", - 18, - ) - yield ( # address, symbol, decimals - b"\x01\xaf\x92\x41\x98\xe8\x93\xfc\x57\xa1\xb2\xd2\xbe\x5a\x6c\xc4\x20\xb8\x76\x4a", - "RET", - 18, - ) - yield ( # address, symbol, decimals - b"\x2e\xf5\x2e\xd7\xde\x8c\x5c\xe0\x3a\x4e\xf0\xef\xbe\x9b\x74\x50\xf2\xd7\xed\xc9", - "REV", - 6, - ) - yield ( # address, symbol, decimals - b"\xf0\x5a\x93\x82\xa4\xc3\xf2\x9e\x27\x84\x50\x27\x54\x29\x3d\x88\xb8\x35\x10\x9c", - "REX", - 18, - ) - yield ( # address, symbol, decimals - b"\xd0\x92\x9d\x41\x19\x54\xc4\x74\x38\xdc\x1d\x87\x1d\xd6\x08\x1f\x5c\x5e\x14\x9c", - "RFR", - 4, - ) - yield ( # address, symbol, decimals - b"\x4c\x38\x3b\xdc\xae\x52\xa6\xe1\xcb\x81\x0c\x76\xc7\x0d\x6f\x31\xa2\x49\xec\x9b", - "RGS", - 8, - ) - yield ( # address, symbol, decimals - b"\x16\x82\x96\xbb\x09\xe2\x4a\x88\x80\x5c\xb9\xc3\x33\x56\x53\x6b\x98\x0d\x3f\xc5", - "RHOC", - 8, - ) - yield ( # address, symbol, decimals - b"\xdd\x00\x72\x78\xb6\x67\xf6\xbe\xf5\x2f\xd0\xa4\xc2\x36\x04\xaa\x1f\x96\x03\x9a", - "RIPT", - 8, - ) - yield ( # address, symbol, decimals - b"\x0b\x17\x24\xcc\x9f\xda\x01\x86\x91\x1e\xf6\xa7\x59\x49\xe9\xc0\xd3\xf0\xf2\xf3", - "RIYA", - 8, - ) - yield ( # address, symbol, decimals - b"\x10\x6a\xa4\x92\x95\xb5\x25\xfc\xf9\x59\xaa\x75\xec\x3f\x7d\xcb\xf5\x35\x2f\x1c", - "RKT", - 18, - ) - yield ( # address, symbol, decimals - b"\x60\x7f\x4c\x5b\xb6\x72\x23\x0e\x86\x72\x08\x55\x32\xf7\xe9\x01\x54\x4a\x73\x75", - "RLC", - 9, - ) - yield ( # address, symbol, decimals - b"\xcc\xed\x5b\x82\x88\x08\x6b\xe8\xc3\x8e\x23\x56\x7e\x68\x4c\x37\x40\xbe\x4d\x48", - "RLT", - 10, - ) - yield ( # address, symbol, decimals - b"\xbe\x99\xb0\x97\x09\xfc\x75\x3b\x09\xbc\xf5\x57\xa9\x92\xf6\x60\x5d\x59\x97\xb0", - "RLTY", - 8, - ) - yield ( # address, symbol, decimals - b"\x4a\x42\xd2\xc5\x80\xf8\x3d\xce\x40\x4a\xca\xd1\x8d\xab\x26\xdb\x11\xa1\x75\x0e", - "RLX", - 18, - ) - yield ( # address, symbol, decimals - b"\x7d\xc4\xf4\x12\x94\x69\x7a\x79\x03\xc4\x02\x7f\x6a\xc5\x28\xc5\xd1\x4c\xd7\xeb", - "RMC", - 8, - ) - yield ( # address, symbol, decimals - b"\x8d\x56\x82\x94\x1c\xe4\x56\x90\x0b\x12\xd4\x7a\xc0\x6a\x88\xb4\x7c\x76\x4c\xe1", - "RMESH", - 18, - ) - yield ( # address, symbol, decimals - b"\x09\x96\xbf\xb5\xd0\x57\xfa\xa2\x37\x64\x0e\x25\x06\xbe\x7b\x4f\x9c\x46\xde\x0b", - "RNDR", - 18, - ) - yield ( # address, symbol, decimals - b"\xff\x60\x3f\x43\x94\x6a\x3a\x28\xdf\x5e\x6a\x73\x17\x25\x55\xd8\xc8\xb0\x23\x86", - "RNT", - 18, - ) - yield ( # address, symbol, decimals - b"\x1f\xe7\x0b\xe7\x34\xe4\x73\xe5\x72\x1e\xa5\x7c\x8b\x5b\x01\xe6\xca\xa5\x26\x86", - "RNTB", - 18, - ) - yield ( # address, symbol, decimals - b"\x1b\xcb\xc5\x41\x66\xf6\xba\x14\x99\x34\x87\x0b\x60\x50\x61\x99\xb6\xc9\xdb\x6d", - "ROC", - 10, - ) - yield ( # address, symbol, decimals - b"\xa4\x01\x06\x13\x4c\x5b\xf4\xc4\x14\x11\x55\x4e\x6d\xb9\x9b\x95\xa1\x5e\xd9\xd8", - "ROCK", - 18, - ) - yield ( # address, symbol, decimals - b"\xc1\x6b\x54\x2f\xf4\x90\xe0\x1f\xcc\x0d\xc5\x8a\x60\xe1\xef\xdc\x3e\x35\x7c\xa6", - "ROCK2", - 0, - ) - yield ( # address, symbol, decimals - b"\x0e\x3d\xe3\xb0\xe3\xd6\x17\xfd\x8d\x1d\x80\x88\x63\x9b\xa8\x77\xfe\xb4\xd7\x42", - "ROCK2PAY", - 18, - ) - yield ( # address, symbol, decimals - b"\xc9\xde\x4b\x7f\x0c\x3d\x99\x1e\x96\x71\x58\xe4\xd4\xbf\xa4\xb5\x1e\xc0\xb1\x14", - "ROK", - 18, - ) - yield ( # address, symbol, decimals - b"\xa3\x1b\x17\x67\xe0\x9f\x84\x2e\xcf\xd4\xbc\x47\x1f\xe4\x4f\x83\x0e\x38\x91\xaa", - "ROOBEE", - 18, - ) - yield ( # address, symbol, decimals - b"\x49\x93\xcb\x95\xc7\x44\x3b\xdc\x06\x15\x5c\x5f\x56\x88\xbe\x9d\x8f\x69\x99\xa5", - "ROUND", - 18, - ) - yield ( # address, symbol, decimals - b"\xcc\xc8\x5a\xa8\x99\x95\x05\xd6\xf8\x86\xa3\x2d\xa4\xa1\x07\xbb\xe0\xd1\xde\x9e", - "RPE", - 18, - ) - yield ( # address, symbol, decimals - b"\xb4\xef\xd8\x5c\x19\x99\x9d\x84\x25\x13\x04\xbd\xa9\x9e\x90\xb9\x23\x00\xbd\x93", - "RPL", - 18, - ) - yield ( # address, symbol, decimals - b"\x32\x06\x23\xb8\xe4\xff\x03\x37\x39\x31\x76\x9a\x31\xfc\x52\xa4\xe7\x8b\x5d\x70", - "RSR", - 18, - ) - yield ( # address, symbol, decimals - b"\xec\x49\x1c\x10\x88\xea\xe9\x92\xb7\xa2\x14\xef\xb0\xa2\x66\xad\x09\x27\xa7\x2a", - "RTB", - 18, - ) - yield ( # address, symbol, decimals - b"\x7a\x55\x99\xb9\x7e\x8c\x4a\xbb\x5d\xd0\x6e\xba\x0e\x9d\x1f\x75\xaf\x81\x8d\xb9", - "RTC", - 18, - ) - yield ( # address, symbol, decimals - b"\x3f\xd8\xf3\x9a\x96\x2e\xfd\xa0\x49\x56\x98\x1c\x31\xab\x89\xfa\xb5\xfb\x8b\xc8", - "RTH", - 18, - ) - yield ( # address, symbol, decimals - b"\x54\xb2\x93\x22\x60\x00\xcc\xbf\xc0\x4d\xf9\x02\xee\xc5\x67\xcb\x4c\x35\xa9\x03", - "RTN", - 18, - ) - yield ( # address, symbol, decimals - b"\xf2\x78\xc1\xca\x96\x90\x95\xff\xdd\xde\xd0\x20\x29\x0c\xf8\xb5\xc4\x24\xac\xe2", - "RUFF", - 18, - ) - yield ( # address, symbol, decimals - b"\xde\xe0\x2d\x94\xbe\x49\x29\xd2\x6f\x67\xb6\x4a\xda\x7a\xcf\x19\x14\x00\x7f\x10", - "RUNE", - 18, - ) - yield ( # address, symbol, decimals - b"\x41\xf6\x15\xe2\x4f\xab\xd2\xb0\x97\xa3\x20\xe9\xe6\xc1\xf4\x48\xcb\x40\x52\x1c", - "RVL", - 18, - ) - yield ( # address, symbol, decimals - b"\x3d\x1b\xa9\xbe\x9f\x66\xb8\xee\x10\x19\x11\xbc\x36\xd3\xfb\x56\x2e\xac\x22\x44", - "RVT", - 18, - ) - yield ( # address, symbol, decimals - b"\xd3\x0a\x2e\x93\x47\xad\x48\xea\x20\x8e\xe5\x63\xa9\xcd\xfd\x80\xe9\x62\xa7\x27", - "RYLT", - 18, - ) - yield ( # address, symbol, decimals - b"\x1e\xc8\xfe\x51\xa9\xb6\xa3\xa6\xc4\x27\xd1\x7d\x9e\xcc\x30\x60\xfb\xc4\xa4\x5c", - "S-A-PAT", - 18, - ) - yield ( # address, symbol, decimals - b"\x3e\xb9\x1d\x23\x7e\x49\x1e\x0d\xee\x85\x82\xc4\x02\xd8\x5c\xb4\x40\xfb\x6b\x54", - "S-ETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xab\xc1\x28\x0a\x01\x87\xa2\x02\x0c\xc6\x75\x43\x7a\xed\x40\x01\x85\xf8\x6d\xb6", - "SAC", - 18, - ) - yield ( # address, symbol, decimals - b"\x89\xd2\x4a\x6b\x4c\xcb\x1b\x6f\xaa\x26\x25\xfe\x56\x2b\xdd\x9a\x23\x26\x03\x59", - "SAI", - 18, - ) - yield ( # address, symbol, decimals - b"\x41\x56\xd3\x34\x2d\x5c\x38\x5a\x87\xd2\x64\xf9\x06\x53\x73\x35\x92\x00\x05\x81", - "SALT", - 8, - ) - yield ( # address, symbol, decimals - b"\x7c\x5a\x0c\xe9\x26\x7e\xd1\x9b\x22\xf8\xca\xe6\x53\xf1\x98\xe3\xe8\xda\xf0\x98", - "SAN", - 18, - ) - yield ( # address, symbol, decimals - b"\xa6\xfe\x80\xc4\xc4\xaa\xdb\x4b\x33\xdb\x7f\x22\xdc\x9a\xe2\xc4\x69\x7c\xc4\x06", - "sAUD", - 18, - ) - yield ( # address, symbol, decimals - b"\xe5\x78\x79\x27\x41\x0b\x65\x9c\xc4\xea\x24\x41\xcd\xaa\x36\x1f\x9d\x7b\x25\x0c", - "sBNB", - 18, - ) - yield ( # address, symbol, decimals - b"\x6b\xcd\x1c\xae\x4a\x3c\x09\x9c\x69\x6b\x51\xf8\x89\xbe\x21\x20\xdf\x62\xb7\xc0", - "sBTC", - 18, - ) - yield ( # address, symbol, decimals - b"\x78\xfe\x18\xe4\x1f\x43\x6e\x19\x81\xa3\xa6\x0d\x15\x57\xc8\xa7\xa9\x37\x04\x61", - "SCANDI", - 2, - ) - yield ( # address, symbol, decimals - b"\x8a\x3c\xa1\xd2\xd9\xa0\x56\x83\xeb\x4d\xb4\x47\xd0\xe3\x12\x2f\xec\x09\xd9\xee", - "sCEX", - 18, - ) - yield ( # address, symbol, decimals - b"\xff\x0b\x88\x94\xcc\x44\xf3\x00\xe1\x24\xbc\xd3\x9f\x95\x55\x58\x16\xb8\xb1\xd5", - "sCHF", - 18, - ) - yield ( # address, symbol, decimals - b"\xd7\x63\x17\x87\xb4\xdc\xc8\x7b\x12\x54\xcf\xd1\xe5\xce\x48\xe9\x68\x23\xde\xe8", - "SCL", - 8, - ) - yield ( # address, symbol, decimals - b"\x24\xdc\xc8\x81\xe7\xdd\x73\x05\x46\x83\x44\x52\xf2\x18\x72\xd5\xcb\x4b\x52\x93", - "SCRL", - 18, - ) - yield ( # address, symbol, decimals - b"\xf7\x78\xec\x50\x42\x45\xef\xe1\xea\x01\x0c\x5c\x3e\x50\xb6\xf5\xf5\xe1\x17\xda", - "sDEFI", - 18, - ) - yield ( # address, symbol, decimals - b"\xb1\xee\xf1\x47\x02\x8e\x9f\x48\x0d\xbc\x5c\xca\xa3\x27\x7d\x41\x7d\x1b\x85\xf0", - "SEELE", - 18, - ) - yield ( # address, symbol, decimals - b"\x67\xab\x11\x05\x8e\xf2\x3d\x0a\x19\x17\x8f\x61\xa0\x50\xd3\xc3\x8f\x81\xae\x21", - "SELF", - 18, - ) - yield ( # address, symbol, decimals - b"\xa1\x3f\x07\x43\x95\x1b\x4f\x6e\x3e\x3a\xa0\x39\xf6\x82\xe1\x72\x79\xf5\x2b\xc3", - "SENC", - 18, - ) - yield ( # address, symbol, decimals - b"\x4c\xa7\x41\x85\x53\x2d\xc1\x78\x95\x27\x19\x4e\x5b\x9c\x86\x6d\xd3\x3f\x4e\x82", - "SenSatorI", - 18, - ) - yield ( # address, symbol, decimals - b"\x67\x45\xfa\xb6\x80\x1e\x37\x6c\xd2\x4f\x03\x57\x2b\x9c\x9b\x0d\x4e\xdd\xdc\xcf", - "SENSE", - 8, - ) - yield ( # address, symbol, decimals - b"\xa4\x4e\x51\x37\x29\x3e\x85\x5b\x1b\x7b\xc7\xe2\xc6\xf8\xcd\x79\x6f\xfc\xb0\x37", - "SENT", - 8, - ) - yield ( # address, symbol, decimals - b"\xe0\x6e\xda\x74\x35\xba\x74\x9b\x04\x73\x80\xce\xd4\x91\x21\xdd\xe9\x33\x34\xae", - "SET", - 0, - ) - yield ( # address, symbol, decimals - b"\x04\xe0\xaf\x0a\xf1\xb7\xf0\x02\x3c\x6b\x12\xaf\x5a\x94\xdf\x59\xb0\xe8\xcf\x59", - "SETS", - 18, - ) - yield ( # address, symbol, decimals - b"\x68\x47\x3d\xc4\xb7\xa4\xb0\x86\x7f\xd7\xc5\xb9\xa9\x82\xfe\xa4\x07\xda\xd3\x20", - "sEUR", - 18, - ) - yield ( # address, symbol, decimals - b"\xaf\x50\xf8\xbe\xc1\xdb\xec\x01\x3b\x70\x25\xdb\x44\x4d\xa0\x19\xc2\xf5\xd4\x88", - "SEV", - 18, - ) - yield ( # address, symbol, decimals - b"\x98\xf5\xe9\xb7\xf0\xe3\x39\x56\xc0\x44\x3e\x81\xbf\x7d\xeb\x8b\x5b\x1e\xd5\x45", - "SEXY", - 18, - ) - yield ( # address, symbol, decimals - b"\xed\x08\x49\xbf\x46\xcf\xb9\x84\x5a\x2d\x90\x0a\x0a\x4e\x59\x3f\x2d\xd3\x67\x3c", - "SGA", - 18, - ) - yield ( # address, symbol, decimals - b"\x48\x6e\x27\xd5\x6c\x07\x44\x97\x06\x87\x92\x77\x28\x59\x8f\x8b\x96\x45\x1c\xc4", - "sGBP", - 18, - ) - yield ( # address, symbol, decimals - b"\xa1\xcc\xc1\x66\xfa\xf0\xe9\x98\xb3\xe3\x32\x25\xa1\xa0\x30\x1b\x1c\x86\x11\x9d", - "SGEL", - 18, - ) - yield ( # address, symbol, decimals - b"\xb2\x13\x5a\xb9\x69\x5a\x76\x78\xdd\x59\x0b\x1a\x99\x6c\xb0\xf3\x7b\xcb\x07\x18", - "SGN", - 9, - ) - yield ( # address, symbol, decimals - b"\x33\xc6\x23\xa2\xba\xaf\xeb\x8d\x15\xdf\xaf\x3c\xe4\x40\x95\xef\xec\x83\xd7\x2c", - "SGP", - 18, - ) - yield ( # address, symbol, decimals - b"\xcb\x5a\x05\xbe\xf3\x25\x76\x13\xe9\x84\xc1\x7d\xbc\xf0\x39\x95\x2b\x6d\x88\x3f", - "SGR", - 8, - ) - yield ( # address, symbol, decimals - b"\x95\xad\x61\xb0\xa1\x50\xd7\x92\x19\xdc\xf6\x4e\x1e\x6c\xc0\x1f\x0b\x64\xc4\xce", - "SHIB", - 18, - ) - yield ( # address, symbol, decimals - b"\xe2\x5b\x0b\xba\x01\xdc\x56\x30\x31\x2b\x6a\x21\x92\x7e\x57\x80\x61\xa1\x3f\x55", - "SHIP", - 18, - ) - yield ( # address, symbol, decimals - b"\xef\x2e\x99\x66\xeb\x61\xbb\x49\x4e\x53\x75\xd5\xdf\x8d\x67\xb7\xdb\x8a\x78\x0d", - "SHIT", - 0, - ) - yield ( # address, symbol, decimals - b"\x85\x42\x32\x5b\x72\xc6\xd9\xfc\x0a\xd2\xca\x96\x5a\x78\x43\x54\x13\xa9\x15\xa0", - "SHL", - 18, - ) - yield ( # address, symbol, decimals - b"\xef\x24\x63\x09\x93\x60\xa0\x85\xf1\xf1\x0b\x07\x6e\xd7\x2e\xf6\x25\x49\x7a\x06", - "SHP", - 18, - ) - yield ( # address, symbol, decimals - b"\x3a\x9f\xff\x45\x3d\x50\xd4\xac\x52\xa6\x89\x06\x47\xb8\x23\x37\x9b\xa3\x6b\x9e", - "SHUF", - 18, - ) - yield ( # address, symbol, decimals - b"\x98\x0e\x45\xab\x37\xc6\xbc\xaf\x93\xfe\x91\x1b\x3e\x20\x7e\x08\xa3\xa6\x0b\x5e", - "SIBU", - 2, - ) - yield ( # address, symbol, decimals - b"\x8a\x18\x7d\x52\x85\xd3\x16\xbc\xbc\x9a\xda\xfc\x08\xb5\x1d\x70\xa0\xd8\xe0\x00", - "SIFT", - 0, - ) - yield ( # address, symbol, decimals - b"\x68\x88\xa1\x6e\xa9\x79\x2c\x15\xa4\xdc\xf2\xf6\xc6\x23\xd0\x55\xc8\xed\xe7\x92", - "SIG", - 18, - ) - yield ( # address, symbol, decimals - b"\x6d\x72\x8f\xf8\x62\xbf\xe7\x4b\xe2\xab\xa3\x05\x37\xe9\x92\xa2\x4f\x25\x9a\x22", - "SIH", - 18, - ) - yield ( # address, symbol, decimals - b"\xe8\xd1\xef\xd0\xc9\x50\x11\x29\x8e\x9a\x30\x14\x3a\x01\x82\xc0\x6b\x45\xff\x5d", - "SION", - 9, - ) - yield ( # address, symbol, decimals - b"\x4b\x1c\xe9\xc4\x2a\x38\x1c\xb2\xd7\x4f\xfe\xf2\x01\x03\xe5\x02\xe2\xfc\x61\x9c", - "sJPY", - 18, - ) - yield ( # address, symbol, decimals - b"\x4a\xf3\x28\xc5\x29\x21\x70\x6d\xcb\x73\x9f\x25\x78\x62\x10\x49\x91\x69\xaf\xe6", - "SKB", - 8, - ) - yield ( # address, symbol, decimals - b"\x13\xdb\x74\xb3\xcf\x51\x2f\x65\xc4\xb9\x16\x83\x94\x0b\x4f\x39\x55\xe0\x50\x85", - "SKE", - 8, - ) - yield ( # address, symbol, decimals - b"\x06\xa0\x1a\x4d\x57\x94\x79\xdd\x5d\x88\x4e\xbf\x61\xa3\x17\x27\xa3\xd8\xd4\x42", - "Skey", - 8, - ) - yield ( # address, symbol, decimals - b"\x2b\xdc\x0d\x42\x99\x60\x17\xfc\xe2\x14\xb2\x16\x07\xa5\x15\xda\x41\xa9\xe0\xc5", - "SKIN", - 6, - ) - yield ( # address, symbol, decimals - b"\x49\x94\xe8\x18\x97\xa9\x20\xc0\xfe\xa2\x35\xeb\x8c\xed\xee\xd3\xc6\xff\xf6\x97", - "SKO1", - 18, - ) - yield ( # address, symbol, decimals - b"\x4c\x38\x2f\x8e\x09\x61\x5a\xc8\x6e\x08\xce\x58\x26\x6c\xc2\x27\xe7\xd4\xd9\x13", - "SKR", - 6, - ) - yield ( # address, symbol, decimals - b"\x88\x71\x68\x12\x0c\xb8\x9f\xb0\x6f\x3e\x74\xdc\x4a\xf2\x0d\x67\xdf\x09\x77\xf6", - "SKRT", - 18, - ) - yield ( # address, symbol, decimals - b"\x72\x97\x86\x2b\x96\x70\xff\x01\x51\x92\x79\x9c\xc8\x49\x72\x6c\x88\xbf\x1d\x77", - "SKYM", - 18, - ) - yield ( # address, symbol, decimals - b"\x46\x82\x4b\xfa\xaf\xd0\x49\xfb\x0a\xf9\xa4\x51\x59\xa8\x8e\x59\x5b\xbb\xb9\xf7", - "sLINK", - 18, - ) - yield ( # address, symbol, decimals - b"\xcc\x8f\xa2\x25\xd8\x0b\x9c\x7d\x42\xf9\x6e\x95\x70\x15\x6c\x65\xd6\xca\xaa\x25", - "SLP", - 0, - ) - yield ( # address, symbol, decimals - b"\x7a\x5f\xf2\x95\xdc\x82\x39\xd5\xc2\x37\x4e\x4d\x89\x42\x02\xaa\xf0\x29\xca\xb6", - "SLT", - 3, - ) - yield ( # address, symbol, decimals - b"\x08\x82\x56\x94\x54\x80\xc8\x84\xc0\x67\xa8\xbc\x98\xa7\x2a\x1c\x98\x4f\x82\x6b", - "sLTC", - 18, - ) - yield ( # address, symbol, decimals - b"\x79\x28\xc8\xab\xf1\xf7\x4e\xf9\xf9\x6d\x4d\x0a\x44\xe3\xb4\x20\x9d\x36\x07\x85", - "SLY", - 18, - ) - yield ( # address, symbol, decimals - b"\x84\x96\x5d\xca\x28\xc4\xeb\x9d\xe6\x1d\x80\xf8\x0e\x81\x1e\xa1\x2b\xe1\xc8\x19", - "sMKR", - 18, - ) - yield ( # address, symbol, decimals - b"\x39\x01\x3f\x96\x1c\x37\x8f\x02\xc2\xb8\x2a\x6e\x1d\x31\xe9\x81\x27\x86\xfd\x9d", - "SMS", - 3, - ) - yield ( # address, symbol, decimals - b"\x19\x8a\x87\xb3\x11\x41\x43\x91\x3d\x42\x29\xfb\x0f\x6d\x4b\xcb\x44\xaa\x8a\xff", - "SNBL", - 8, - ) - yield ( # address, symbol, decimals - b"\xf4\x13\x41\x46\xaf\x2d\x51\x1d\xd5\xea\x8c\xdb\x1c\x4a\xc8\x8c\x57\xd6\x04\x04", - "SNC", - 18, - ) - yield ( # address, symbol, decimals - b"\xf3\x33\xb2\xac\xe9\x92\xac\x2b\xbd\x87\x98\xbf\x57\xbc\x65\xa0\x61\x84\xaf\xba", - "SND", - 0, - ) - yield ( # address, symbol, decimals - b"\xcf\xd6\xae\x8b\xf1\x3f\x42\xde\x14\x86\x73\x51\xea\xff\x7a\x8a\x3b\x9f\xbb\xe7", - "SNG", - 8, - ) - yield ( # address, symbol, decimals - b"\xae\xc2\xe8\x7e\x0a\x23\x52\x66\xd9\xc5\xad\xc9\xde\xb4\xb2\xe2\x9b\x54\xd0\x09", - "SNGLS", - 0, - ) - yield ( # address, symbol, decimals - b"\x44\xf5\x88\xae\xeb\x8c\x44\x47\x14\x39\xd1\x27\x0b\x36\x03\xc6\x6a\x92\x62\xf1", - "SNIP", - 18, - ) - yield ( # address, symbol, decimals - b"\x98\x3f\x6d\x60\xdb\x79\xea\x8c\xa4\xeb\x99\x68\xc6\xaf\xf8\xcf\xa0\x4b\x3c\x63", - "SNM", - 18, - ) - yield ( # address, symbol, decimals - b"\xbd\xc5\xba\xc3\x9d\xbe\x13\x2b\x1e\x03\x0e\x89\x8a\xe3\x83\x00\x17\xd7\xd9\x69", - "SNOV", - 18, - ) - yield ( # address, symbol, decimals - b"\x74\x4d\x70\xfd\xbe\x2b\xa4\xcf\x95\x13\x16\x26\x61\x4a\x17\x63\xdf\x80\x5b\x9e", - "SNT", - 18, - ) - yield ( # address, symbol, decimals - b"\xc0\x11\xa7\x3e\xe8\x57\x6f\xb4\x6f\x5e\x1c\x57\x51\xca\x3b\x9f\xe0\xaf\x2a\x6f", - "SNX", - 18, - ) - yield ( # address, symbol, decimals - b"\xd6\x59\x60\xfa\xcb\x8e\x4a\x2d\xfc\xb2\xc2\x21\x2c\xb2\xe4\x4a\x02\xe2\xa5\x7e", - "SOAR", - 6, - ) - yield ( # address, symbol, decimals - b"\x2d\x0e\x95\xbd\x47\x95\xd7\xac\xe0\xda\x3c\x0f\xf7\xb7\x06\xa5\x97\x0e\xb9\xd3", - "SOC", - 18, - ) - yield ( # address, symbol, decimals - b"\x23\xb6\x08\x67\x5a\x2b\x2f\xb1\x89\x0d\x3a\xbb\xd8\x5c\x57\x75\xc5\x16\x91\xd5", - "SOCKS", - 18, - ) - yield ( # address, symbol, decimals - b"\x1f\x54\x63\x8b\x77\x37\x19\x3f\xfd\x86\xc1\x9e\xc5\x19\x07\xa7\xc4\x17\x55\xd8", - "SOL", - 6, - ) - yield ( # address, symbol, decimals - b"\x1c\x62\xac\xa2\xb7\x60\x5d\xb3\x60\x6e\xac\xda\x7b\xc6\x7a\x18\x57\xdd\xb8\xff", - "SONIQ", - 18, - ) - yield ( # address, symbol, decimals - b"\xbb\x1f\x24\xc0\xc1\x55\x4b\x99\x90\x22\x2f\x03\x6b\x0a\xad\x6e\xe4\xca\xec\x29", - "SOUL", - 18, - ) - yield ( # address, symbol, decimals - b"\xcc\x7a\xb8\xd7\x8d\xba\x18\x7d\xc9\x5b\xf3\xbb\x86\xe6\x5e\x0c\x26\xd0\x04\x1f", - "SPACE", - 18, - ) - yield ( # address, symbol, decimals - b"\x42\xd6\x62\x2d\xec\xe3\x94\xb5\x49\x99\xfb\xd7\x3d\x10\x81\x23\x80\x6f\x6a\x18", - "SPANK", - 18, - ) - yield ( # address, symbol, decimals - b"\x58\xbf\x7d\xf5\x7d\x9d\xa7\x11\x3c\x4c\xcb\x49\xd8\x46\x3d\x49\x08\xc7\x35\xcb", - "SPARC", - 18, - ) - yield ( # address, symbol, decimals - b"\x24\xae\xf3\xbf\x1a\x47\x56\x15\x00\xf9\x43\x0d\x74\xed\x40\x97\xc4\x7f\x51\xf2", - "SPARTA", - 4, - ) - yield ( # address, symbol, decimals - b"\x8f\x9b\xfe\x5b\x6a\x5c\x3f\xea\x8c\x64\xad\x41\xa5\xcf\x6f\x60\xec\x4a\xa4\x7c", - "SPAZ", - 8, - ) - yield ( # address, symbol, decimals - b"\x80\x69\x08\x0a\x92\x28\x34\x46\x0c\x3a\x09\x2f\xb2\xc1\x51\x02\x24\xdc\x06\x6b", - "SPC", - 18, - ) - yield ( # address, symbol, decimals - b"\x1d\xea\x97\x9a\xe7\x6f\x26\x07\x18\x70\xf8\x24\x08\x8d\xa7\x89\x79\xeb\x91\xc8", - "SPD", - 18, - ) - yield ( # address, symbol, decimals - b"\x85\x08\x93\x89\xc1\x4b\xd9\xc7\x7f\xc2\xb8\xf0\xc3\xd1\xdc\x33\x63\xbf\x06\xef", - "SPF", - 18, - ) - yield ( # address, symbol, decimals - b"\x38\x33\xdd\xa0\xae\xb6\x94\x7b\x98\xce\x45\x4d\x89\x36\x6c\xba\x8c\xc5\x55\x28", - "SPHTX", - 18, - ) - yield ( # address, symbol, decimals - b"\x03\x24\xdd\x19\x5d\x0c\xd5\x3f\x9f\x07\xbe\xe6\xa4\x8e\xe7\xa2\x0b\xad\x73\x8f", - "SPICE", - 8, - ) - yield ( # address, symbol, decimals - b"\x92\xd7\xa8\x94\x05\xea\x3c\xc6\x05\xa4\x67\xe8\x34\x23\x6e\x09\xdf\x60\xbf\x16", - "SPIRIT", - 18, - ) - yield ( # address, symbol, decimals - b"\x20\xf7\xa3\xdd\xf2\x44\xdc\x92\x99\x97\x5b\x4d\xa1\xc3\x9f\x8d\x5d\x75\xf0\x5a", - "SPN", - 6, - ) - yield ( # address, symbol, decimals - b"\x01\xcc\x41\x51\xfe\x5f\x00\xef\xb8\xdf\x2f\x90\xff\x83\x37\x25\xd3\xa4\x82\xa3", - "SPT", - 8, - ) - yield ( # address, symbol, decimals - b"\x05\xaa\xaa\x82\x9a\xfa\x40\x7d\x83\x31\x5c\xde\xd1\xd4\x5e\xb1\x60\x25\x91\x0c", - "SPX", - 18, - ) - yield ( # address, symbol, decimals - b"\x00\x51\xd3\x63\xa6\x0b\xd9\x8d\x8a\x10\x92\x7d\x10\x70\x8e\x5e\xf8\x53\xb3\x06", - "SPZ", - 6, - ) - yield ( # address, symbol, decimals - b"\x68\xd5\x7c\x9a\x1c\x35\xf6\x3e\x2c\x83\xee\x8e\x49\xa6\x4e\x9d\x70\x52\x8d\x25", - "SRN", - 18, - ) - yield ( # address, symbol, decimals - b"\x32\xf3\xb8\xa0\x0b\x69\x12\xd0\x31\x4b\xe2\x12\xfe\x95\x38\xb7\xb9\x43\x0c\x12", - "SRX", - 8, - ) - yield ( # address, symbol, decimals - b"\x62\x4d\x52\x0b\xab\x2e\x4a\xd8\x39\x35\xfa\x50\x3f\xb1\x30\x61\x43\x74\xe8\x50", - "SSP", - 4, - ) - yield ( # address, symbol, decimals - b"\x4a\x89\xcd\x48\x6f\xa9\x96\xad\x50\xc0\xa6\x3c\x35\xc7\x87\x02\xf5\x42\x2a\x50", - "STABIT", - 3, - ) - yield ( # address, symbol, decimals - b"\x9a\x00\x5c\x9a\x89\xbd\x72\xa4\xbd\x27\x72\x1e\x7a\x09\xa3\xc1\x1d\x2b\x03\xc4", - "STAC", - 18, - ) - yield ( # address, symbol, decimals - b"\x28\x67\x08\xf0\x69\x22\x59\x05\x19\x46\x73\x75\x5f\x12\x35\x9e\x6a\xff\x6f\xe1", - "STACS", - 18, - ) - yield ( # address, symbol, decimals - b"\xf7\x0a\x64\x2b\xd3\x87\xf9\x43\x80\xff\xb9\x04\x51\xc2\xc8\x1d\x4e\xb8\x2c\xbc", - "STAR", - 18, - ) - yield ( # address, symbol, decimals - b"\x00\xc2\x99\x9c\x8b\x2a\xdf\x4a\xbc\x83\x5c\xc6\x32\x09\x53\x39\x73\x71\x8e\xb1", - "STATE", - 18, - ) - yield ( # address, symbol, decimals - b"\x09\xbc\xa6\xeb\xab\x05\xee\x2a\xe9\x45\xbe\x4e\xda\x51\x39\x3d\x94\xbf\x7b\x99", - "STB", - 4, - ) - yield ( # address, symbol, decimals - b"\x62\x9a\xee\x55\xed\x49\x58\x1c\x33\xab\x27\xf9\x40\x3f\x79\x92\xa2\x89\xff\xd5", - "STC", - 18, - ) - yield ( # address, symbol, decimals - b"\xae\x73\xb3\x8d\x1c\x9a\x8b\x27\x41\x27\xec\x30\x16\x0a\x49\x27\xc4\xd7\x18\x24", - "STK", - 18, - ) - yield ( # address, symbol, decimals - b"\xc1\xad\x68\xc4\x35\x08\xdd\x5a\xdd\xb8\xd0\xac\x09\x27\xdb\xe7\x52\xd1\x49\xd6", - "STL", - 18, - ) - yield ( # address, symbol, decimals - b"\x30\x2c\xe6\x67\x4a\x16\xb5\x4b\xa1\xb8\xa4\x9f\xed\x64\xc4\x71\xed\xe6\xc1\x74", - "STM", - 0, - ) - yield ( # address, symbol, decimals - b"\x59\x93\x46\x77\x9e\x90\xfc\x3f\x5f\x99\x7b\x5e\xa7\x15\x34\x98\x20\xf9\x15\x71", - "STN", - 4, - ) - yield ( # address, symbol, decimals - b"\xb6\x4e\xf5\x1c\x88\x89\x72\xc9\x08\xcf\xac\xf5\x9b\x47\xc1\xaf\xbc\x0a\xb8\xac", - "STORJ", - 8, - ) - yield ( # address, symbol, decimals - b"\xd0\xa4\xb8\x94\x6c\xb5\x2f\x06\x61\x27\x3b\xfb\xc6\xfd\x0e\x0c\x75\xfc\x64\x33", - "STORM", - 18, - ) - yield ( # address, symbol, decimals - b"\xec\xd5\x70\xbb\xf7\x47\x61\xb9\x60\xfa\x04\xcc\x10\xfe\x2c\x4e\x86\xff\xda\x36", - "STP", - 8, - ) - yield ( # address, symbol, decimals - b"\x5c\x3a\x22\x85\x10\xd2\x46\xb7\x8a\x37\x65\xc2\x02\x21\xcb\xf3\x08\x2b\x44\xa4", - "STQ", - 18, - ) - yield ( # address, symbol, decimals - b"\xba\xe2\x35\x82\x3d\x72\x55\xd9\xd4\x86\x35\xce\xd4\x73\x52\x27\x24\x4c\xd5\x83", - "STR", - 18, - ) - yield ( # address, symbol, decimals - b"\x46\x49\x24\x73\x75\x5e\x8d\xf9\x60\xf8\x03\x48\x77\xf6\x17\x32\xd7\x18\xce\x96", - "STRC", - 8, - ) - yield ( # address, symbol, decimals - b"\x1a\x60\xe2\xe2\xa8\xbe\x0b\xc2\xb6\x38\x1d\xd3\x1f\xd3\xfd\x5f\x9a\x28\xde\x4c", - "sTRX", - 18, - ) - yield ( # address, symbol, decimals - b"\x03\x71\xa8\x2e\x4a\x9d\x0a\x43\x12\xf3\xee\x2a\xc9\xc6\x95\x85\x12\x89\x13\x72", - "STU", - 18, - ) - yield ( # address, symbol, decimals - b"\x00\x6b\xea\x43\xba\xa3\xf7\xa6\xf7\x65\xf1\x4f\x10\xa1\xa1\xb0\x83\x34\xef\x45", - "STX", - 18, - ) - yield ( # address, symbol, decimals - b"\x8d\x75\x95\x9f\x1e\x61\xec\x25\x71\xaa\x72\x79\x82\x37\x10\x1f\x08\x4d\xe6\x3a", - "SUB", - 18, - ) - yield ( # address, symbol, decimals - b"\x12\x48\x0e\x24\xeb\x5b\xec\x1a\x9d\x43\x69\xca\xb6\xa8\x0c\xad\x3c\x0a\x37\x7a", - "[deprecated] SUB (old)", - 2, - ) - yield ( # address, symbol, decimals - b"\xe1\x20\xc1\xec\xbf\xdf\xea\x7f\x0a\x8f\x0e\xe3\x00\x63\x49\x1e\x8c\x26\xfe\xdf", - "SUR", - 8, - ) - yield ( # address, symbol, decimals - b"\x6b\x35\x95\x06\x87\x78\xdd\x59\x2e\x39\xa1\x22\xf4\xf5\xa5\xcf\x09\xc9\x0f\xe2", - "SUSHI", - 18, - ) - yield ( # address, symbol, decimals - b"\xbd\xeb\x4b\x83\x25\x1f\xb1\x46\x68\x7f\xa1\x9d\x1c\x66\x0f\x99\x41\x1e\xef\xe3", - "SVD", - 18, - ) - yield ( # address, symbol, decimals - b"\xff\xc9\x71\x42\x86\x3e\x9b\x25\x83\x58\x8e\x37\x05\xe2\x32\x2e\xf0\x36\x96\x35", - "SVG", - 18, - ) - yield ( # address, symbol, decimals - b"\xc9\x58\xe9\xfb\x59\x72\x4f\x8b\x09\x27\x42\x6a\x88\x36\xf1\x15\x8f\x0d\x03\xcf", - "SWAP", - 18, - ) - yield ( # address, symbol, decimals - b"\xa1\x30\xe3\xa3\x3a\x4d\x84\xb0\x4c\x39\x18\xc4\xe5\x76\x22\x23\xae\x25\x2f\x80", - "SWASH", - 18, - ) - yield ( # address, symbol, decimals - b"\x0b\xb2\x17\xe4\x0f\x8a\x5c\xb7\x9a\xdf\x04\xe1\xaa\xb6\x0e\x5a\xbd\x0d\xfc\x1e", - "SWFTC", - 8, - ) - yield ( # address, symbol, decimals - b"\x9e\x88\x61\x34\x18\xcf\x03\xdc\xa5\x4d\x6a\x2c\xf6\xad\x93\x4a\x78\xc7\xa1\x7a", - "SWM", - 18, - ) - yield ( # address, symbol, decimals - b"\x6e\x20\x50\xcb\xfb\x3e\xd8\xa4\xd3\x9b\x64\xcc\x9f\x47\xe7\x11\xa0\x3a\x5a\x89", - "SWRM", - 18, - ) - yield ( # address, symbol, decimals - b"\xb9\xe7\xf8\x56\x8e\x08\xd5\x65\x9f\x5d\x29\xc4\x99\x71\x73\xd8\x4c\xdf\x26\x07", - "SWT", - 18, - ) - yield ( # address, symbol, decimals - b"\x3a\x41\x20\x43\x93\x9d\x9f\x7e\x53\x37\x3b\x64\xf8\x58\xec\xb8\x70\xa9\x2e\x50", - "sXAG", - 18, - ) - yield ( # address, symbol, decimals - b"\x4d\x96\xb6\x7f\x5b\xde\x58\xa6\x22\xd9\xbf\x2b\x8a\x19\x06\xc8\xb0\x84\xfa\xf4", - "sXAU", - 18, - ) - yield ( # address, symbol, decimals - b"\x12\xb3\x06\xfa\x98\xf4\xcb\xb8\xd4\x45\x7f\xdf\xf3\xa0\xa0\xa5\x6f\x07\xcc\xdf", - "SXDT", - 18, - ) - yield ( # address, symbol, decimals - b"\xfc\xda\xe8\x77\x1f\x8d\x28\xe3\xb9\x02\x7a\xb5\x8f\x4a\x20\x74\x97\x67\xa0\x97", - "SXR", - 8, - ) - yield ( # address, symbol, decimals - b"\xc6\x4c\xda\x66\xbc\x1d\x02\x6b\x98\x4d\x6b\xee\x6a\xdb\xf7\x1e\xac\x8a\x09\x9d", - "sXRP", - 18, - ) - yield ( # address, symbol, decimals - b"\xe1\x09\xda\x53\x61\x29\x9e\xd9\x6d\x91\x14\x6b\x8c\xc1\x2f\x68\x2d\x21\x96\x4e", - "sXTZ", - 18, - ) - yield ( # address, symbol, decimals - b"\x2c\x82\xc7\x3d\x5b\x34\xaa\x01\x59\x89\x46\x2b\x29\x48\xcd\x61\x6a\x37\x64\x1f", - "SXUT", - 18, - ) - yield ( # address, symbol, decimals - b"\x10\xb1\x23\xfd\xdd\xe0\x03\x24\x31\x99\xaa\xd0\x35\x22\x06\x5d\xc0\x58\x27\xa0", - "SYN", - 18, - ) - yield ( # address, symbol, decimals - b"\x46\xea\xf7\x5e\x6d\x39\x17\x08\xb7\xf1\xa0\xd5\x68\x75\xd9\x08\x44\x11\x95\x21", - "SYS", - 18, - ) - yield ( # address, symbol, decimals - b"\x3a\x0d\x74\x6b\x3e\xa1\xd8\xcc\xdf\x19\xad\x91\x59\x13\xbd\x68\x39\x11\x33\xca", - "SYSX", - 8, - ) - yield ( # address, symbol, decimals - b"\xe7\x77\x5a\x6e\x9b\xcf\x90\x4e\xb3\x9d\xa2\xb6\x8c\x5e\xfb\x4f\x93\x60\xe0\x8c", - "TaaS", - 6, - ) - yield ( # address, symbol, decimals - b"\x1d\x4c\xcc\x31\xda\xb6\xea\x20\xf4\x61\xd3\x29\xa0\x56\x2c\x1c\x58\x41\x25\x15", - "TALAO", - 18, - ) - yield ( # address, symbol, decimals - b"\x2c\x36\x20\x4a\x07\x12\xa2\xa5\x0e\x54\xa6\x2f\x7c\x4f\x01\x86\x7e\x78\xcb\x53", - "TAN", - 18, - ) - yield ( # address, symbol, decimals - b"\xc2\x7a\x2f\x05\xfa\x57\x7a\x83\xba\x0f\xdb\x4c\x38\x44\x3c\x07\x18\x35\x65\x01", - "TAU", - 18, - ) - yield ( # address, symbol, decimals - b"\x00\x00\x61\x00\xf7\x09\x00\x10\x00\x5f\x1b\xd7\xae\x61\x22\xc3\xc2\xcf\x00\x90", - "TAUD", - 18, - ) - yield ( # address, symbol, decimals - b"\x64\x78\x60\x63\xa3\x52\xb3\x99\xd4\x4d\xe2\x87\x59\x09\xd1\x22\x9f\x12\x0e\xbe", - "TAUR", - 18, - ) - yield ( # address, symbol, decimals - b"\x62\x79\x74\x84\x74\x50\xc4\x5b\x60\xb3\xfe\x35\x98\xf4\xe6\xe4\xcf\x94\x5b\x9a", - "TBC", - 18, - ) - yield ( # address, symbol, decimals - b"\xfa\xcc\xd5\xfc\x83\xc3\xe4\xc3\xc1\xac\x1e\xf3\x5d\x15\xad\xf0\x6b\xcf\x20\x9c", - "TBC2", - 8, - ) - yield ( # address, symbol, decimals - b"\xaf\xe6\x05\x11\x34\x1a\x37\x48\x8d\xe2\x5b\xef\x35\x19\x52\x56\x2e\x31\xfc\xc1", - "TBT", - 8, - ) - yield ( # address, symbol, decimals - b"\x8d\xae\xba\xde\x92\x2d\xf7\x35\xc3\x8c\x80\xc7\xeb\xd7\x08\xaf\x50\x81\x5f\xaa", - "TBTC", - 18, - ) - yield ( # address, symbol, decimals - b"\x3a\x92\xbd\x39\x6a\xef\x82\xaf\x98\xeb\xc0\xaa\x90\x30\xd2\x5a\x23\xb1\x1c\x6b", - "TBX", - 18, - ) - yield ( # address, symbol, decimals - b"\xfa\x0e\xf5\xe0\x34\xca\xe1\xae\x75\x2d\x59\xbd\xb8\xad\xcd\xe3\x7e\xd7\xab\x97", - "TCA", - 18, - ) - yield ( # address, symbol, decimals - b"\x00\x00\x01\x00\xf2\xa2\xbd\x00\x07\x15\x00\x19\x20\xeb\x70\xd2\x29\x70\x00\x85", - "TCAD", - 18, - ) - yield ( # address, symbol, decimals - b"\x99\x72\xa0\xf2\x41\x94\x44\x7e\x73\xa7\xe8\xb6\xcd\x26\xa5\x2e\x02\xdd\xfa\xd5", - "TCH", - 0, - ) - yield ( # address, symbol, decimals - b"\x28\xd7\xf4\x32\xd2\x4b\xa6\x02\x0d\x1c\xbd\x4f\x28\xbe\xdc\x5a\x82\xf2\x43\x20", - "TCNX", - 18, - ) - yield ( # address, symbol, decimals - b"\x99\x10\xf4\xae\xd4\xa7\x55\x0a\x41\x20\xad\x7d\xa8\xdf\x8b\x56\xe9\x11\x97\xfa", - "TCST", - 0, - ) - yield ( # address, symbol, decimals - b"\xed\x82\x73\x03\x12\xba\xbb\x41\x36\x7e\x06\x09\x11\xf7\x98\x00\x2f\xfa\x44\x5f", - "TCT", - 18, - ) - yield ( # address, symbol, decimals - b"\x2a\x1d\xba\xbe\x65\xc5\x95\xb0\x02\x2e\x75\x20\x8c\x34\x01\x41\x39\xd5\xd3\x57", - "TDH", - 18, - ) - yield ( # address, symbol, decimals - b"\x31\x7e\xb4\xad\x9c\xfa\xc6\x23\x2f\x00\x46\x83\x13\x22\xe8\x95\x50\x7b\xcb\xeb", - "TDX", - 18, - ) - yield ( # address, symbol, decimals - b"\x1c\x79\xab\x32\xc6\x6a\xca\xa1\xe9\xe8\x19\x52\xb8\xaa\xa5\x81\xb4\x3e\x54\xe7", - "TEAM", - 4, - ) - yield ( # address, symbol, decimals - b"\xa1\xba\x71\x86\xee\xc1\xbe\x51\x14\xb0\xcf\x49\xb9\x5b\x23\xad\xc4\x13\x1b\x51", - "TECH", - 10, - ) - yield ( # address, symbol, decimals - b"\xdd\x16\xec\x0f\x66\xe5\x4d\x45\x3e\x67\x56\x71\x3e\x53\x33\x55\x98\x90\x40\xe4", - "TEN", - 18, - ) - yield ( # address, symbol, decimals - b"\x51\x5b\xa0\xa2\xe2\x86\xaf\x10\x11\x52\x84\xf1\x51\xcf\x39\x86\x88\xa6\x91\x70", - "TENX", - 18, - ) - yield ( # address, symbol, decimals - b"\xe5\xf1\x66\xc0\xd8\x87\x2b\x68\x79\x00\x61\x31\x7b\xb6\xcc\xa0\x45\x82\xc9\x12", - "TFD", - 18, - ) - yield ( # address, symbol, decimals - b"\xa7\xf9\x76\xc3\x60\xeb\xbe\xd4\x46\x5c\x28\x55\x68\x4d\x1a\xae\x52\x71\xef\xa9", - "TFL", - 8, - ) - yield ( # address, symbol, decimals - b"\xf8\xe0\x6e\x4e\x4a\x80\x28\x7f\xdc\xa5\xb0\x2d\xcc\xec\xaa\x9d\x09\x54\x84\x0f", - "TGAME", - 18, - ) - yield ( # address, symbol, decimals - b"\x00\x00\x00\x00\x44\x13\x78\x00\x8e\xa6\x7f\x42\x84\xa5\x79\x32\xb1\xc0\x00\xa5", - "TGBP", - 18, - ) - yield ( # address, symbol, decimals - b"\x96\xc3\x0d\x54\x99\xef\x6e\xa9\x6a\x9c\x22\x1b\xc1\x8b\xc3\x9d\x29\xc9\x7f\x27", - "Thar", - 18, - ) - yield ( # address, symbol, decimals - b"\x00\x00\x85\x26\x00\xce\xb0\x01\xe0\x8e\x00\xbc\x00\x8b\xe6\x20\xd6\x00\x31\xf2", - "THKD", - 18, - ) - yield ( # address, symbol, decimals - b"\x1c\xb3\x20\x9d\x45\xb2\xa6\x0b\x7f\xbc\xa1\xcc\xdb\xf8\x7f\x67\x42\x37\xa4\xaa", - "THR", - 4, - ) - yield ( # address, symbol, decimals - b"\x4f\x27\x05\x3f\x32\xed\xa8\xaf\x84\x95\x64\x37\xbc\x00\xe5\xff\xa7\x00\x32\x87", - "THRT", - 18, - ) - yield ( # address, symbol, decimals - b"\xfe\x7b\x91\x5a\x0b\xaa\x0e\x79\xf8\x5c\x55\x53\x26\x65\x13\xf7\xc1\xc0\x3e\xd0", - "THUG", - 18, - ) - yield ( # address, symbol, decimals - b"\x99\x99\x67\xe2\xec\x8a\x74\xb7\xc8\xe9\xdb\x19\xe0\x39\xd9\x20\xb3\x1d\x39\xd0", - "TIE", - 18, - ) - yield ( # address, symbol, decimals - b"\xee\xe2\xd0\x0e\xb7\xde\xb8\xdd\x69\x24\x18\x7f\x5a\xa3\x49\x6b\x7d\x06\xe6\x2a", - "TIG", - 18, - ) - yield ( # address, symbol, decimals - b"\x09\x22\xf1\xd8\x08\xad\xc3\xa4\x44\x4b\xed\x2f\x73\xfa\xc5\x3a\x1a\x2a\x58\x59", - "TIK", - 18, - ) - yield ( # address, symbol, decimals - b"\x65\x31\xf1\x33\xe6\xde\xeb\xe7\xf2\xdc\xe5\xa0\x44\x1a\xa7\xef\x33\x0b\x4e\x53", - "TIME", - 8, - ) - yield ( # address, symbol, decimals - b"\x80\xbc\x55\x12\x56\x1c\x7f\x85\xa3\xa9\x50\x8c\x7d\xf7\x90\x1b\x37\x0f\xa1\xdf", - "TIO", - 18, - ) - yield ( # address, symbol, decimals - b"\xea\x1f\x34\x6f\xaf\x02\x3f\x97\x4e\xb5\xad\xaf\x08\x8b\xbc\xdf\x02\xd7\x61\xf4", - "TIX", - 18, - ) - yield ( # address, symbol, decimals - b"\xda\xe1\xba\xf2\x49\x96\x4b\xc4\xb6\xac\x98\xc3\x12\x2f\x0e\x3e\x78\x5f\xd2\x79", - "TKA", - 18, - ) - yield ( # address, symbol, decimals - b"\x06\x75\xda\xa9\x47\x25\xa5\x28\xb0\x5a\x3a\x88\x63\x5c\x03\xea\x96\x4b\xfa\x7e", - "TKLN", - 18, - ) - yield ( # address, symbol, decimals - b"\xaa\xaf\x91\xd9\xb9\x0d\xf8\x00\xdf\x4f\x55\xc2\x05\xfd\x69\x89\xc9\x77\xe7\x3a", - "TKN", - 8, - ) - yield ( # address, symbol, decimals - b"\xd3\x16\x95\xa1\xd3\x5e\x48\x92\x52\xce\x57\xb1\x29\xfd\x4b\x1b\x05\xe6\xac\xac", - "TKP", - 18, - ) - yield ( # address, symbol, decimals - b"\xb4\x5a\x50\x54\x5b\xee\xab\x73\xf3\x8f\x31\xe5\x97\x37\x68\xc4\x21\x80\x5e\x5e", - "TKR", - 18, - ) - yield ( # address, symbol, decimals - b"\x67\x91\x31\xf5\x91\xb4\xf3\x69\xac\xb8\xcd\x8c\x51\xe6\x85\x96\x80\x6c\x39\x16", - "TLN", - 18, - ) - yield ( # address, symbol, decimals - b"\xb3\x61\x65\x50\xab\xc8\xaf\x79\xc7\xa5\x90\x2d\xef\x9e\xfa\x3b\xc9\xa9\x52\x00", - "TLX", - 8, - ) - yield ( # address, symbol, decimals - b"\x32\x09\xf9\x8b\xeb\xf0\x14\x9b\x76\x9c\xe2\x6d\x71\xf7\xae\xa8\xe4\x35\xef\xea", - "TMT", - 18, - ) - yield ( # address, symbol, decimals - b"\x10\x08\x63\x99\xdd\x8c\x1e\x3d\xe7\x36\x72\x4a\xf5\x25\x87\xa2\x04\x4c\x9f\xa2", - "TMTG", - 18, - ) - yield ( # address, symbol, decimals - b"\xf7\x92\x0b\x07\x68\xec\xb2\x0a\x12\x3f\xac\x32\x31\x1d\x07\xd1\x93\x38\x1d\x6f", - "TNB", - 18, - ) - yield ( # address, symbol, decimals - b"\xad\x66\x83\xb7\xf3\x61\x8c\x44\xf5\xca\x60\x40\x90\x28\x12\xdd\x89\x0d\xde\x4d", - "TNO", - 18, - ) - yield ( # address, symbol, decimals - b"\xb0\x28\x07\x43\xb4\x4b\xf7\xdb\x4b\x6b\xe4\x82\xb2\xba\x7b\x75\xe5\xda\x09\x6c", - "TNS", - 18, - ) - yield ( # address, symbol, decimals - b"\x08\xf5\xa9\x23\x5b\x08\x17\x3b\x75\x69\xf8\x36\x45\xd2\xc7\xfb\x55\xe8\xcc\xd8", - "TNT", - 8, - ) - yield ( # address, symbol, decimals - b"\x9a\x49\xf0\x2e\x12\x8a\x8e\x98\x9b\x44\x3a\x8f\x94\x84\x3c\x09\x18\xbf\x45\xe7", - "TOK", - 8, - ) - yield ( # address, symbol, decimals - b"\x8b\x35\x30\x21\x18\x93\x75\x59\x17\x23\xe7\x38\x42\x62\xf4\x57\x09\xa3\xc3\xdc", - "TOMO", - 18, - ) - yield ( # address, symbol, decimals - b"\x8e\xb9\x65\xee\x9c\xcf\xbc\xe7\x6c\x0a\x06\x26\x44\x92\xc0\xaf\xef\xc2\x82\x6d", - "TOOR", - 18, - ) - yield ( # address, symbol, decimals - b"\xaa\x7a\x9c\xa8\x7d\x36\x94\xb5\x75\x5f\x21\x3b\x5d\x04\x09\x4b\x8d\x0f\x0a\x6f", - "TRAC", - 18, - ) - yield ( # address, symbol, decimals - b"\x12\x75\x95\x12\xd3\x26\x30\x3b\x45\xf1\xce\xc8\xf7\xb6\xfd\x96\xf3\x87\x77\x8e", - "TRAK", - 18, - ) - yield ( # address, symbol, decimals - b"\x56\x6f\xd7\x99\x9b\x1f\xc3\x98\x80\x22\xbd\x38\x50\x7a\x48\xf0\xbc\xf2\x2c\x77", - "TRCN", - 18, - ) - yield ( # address, symbol, decimals - b"\x30\xce\xcb\x54\x61\xa4\x49\xa9\x00\x81\xf5\xa5\xf5\x5d\xb4\xe0\x48\x39\x7b\xab", - "TRCT", - 8, - ) - yield ( # address, symbol, decimals - b"\x33\xf9\x0d\xee\x07\xc6\xe8\xb9\x68\x2d\xd2\x0f\x73\xe6\xc3\x58\xb2\xed\x0f\x03", - "TRDT", - 0, - ) - yield ( # address, symbol, decimals - b"\xcb\x94\xbe\x6f\x13\xa1\x18\x2e\x4a\x4b\x61\x40\xcb\x7b\xf2\x02\x5d\x28\xe4\x1b", - "TRST", - 6, - ) - yield ( # address, symbol, decimals - b"\xf1\x0e\x3e\x8f\x6b\x02\xb5\x94\xb7\xc9\x5f\xca\x59\xdc\x7e\x5c\xe7\x36\x4d\xf5", - "TRUCCO", - 8, - ) - yield ( # address, symbol, decimals - b"\x2c\x53\x7e\x56\x24\xe4\xaf\x88\xa7\xae\x40\x60\xc0\x22\x60\x93\x76\xc8\xd0\xeb", - "TRYB", - 6, - ) - yield ( # address, symbol, decimals - b"\x6b\x87\x99\x9b\xe8\x73\x58\x06\x5b\xbd\xe4\x1e\x8a\x0f\xe0\xb7\xb1\xcd\x25\x14", - "TSW", - 18, - ) - yield ( # address, symbol, decimals - b"\xaa\xb6\x06\x81\x78\x09\x84\x1e\x8b\x11\x68\xbe\x87\x79\xee\xaf\x67\x44\xef\x64", - "TTA", - 18, - ) - yield ( # address, symbol, decimals - b"\x93\x89\x43\x48\x52\xb9\x4b\xba\xd4\xc8\xaf\xed\x5b\x7b\xdb\xc5\xff\x0c\x22\x75", - "TTC", - 18, - ) - yield ( # address, symbol, decimals - b"\x9c\xda\x8a\x60\xdd\x5a\xfa\x15\x6c\x95\xbd\x97\x44\x28\xd9\x1a\x08\x12\xe0\x54", - "TTU", - 18, - ) - yield ( # address, symbol, decimals - b"\xa8\x38\xbe\x6e\x4b\x76\x0e\x60\x61\xd4\x73\x2d\x6b\x9f\x11\xbf\x57\x8f\x9a\x76", - "TTV", - 18, - ) - yield ( # address, symbol, decimals - b"\x00\x00\x00\x00\x00\x08\x5d\x47\x80\xb7\x31\x19\xb6\x44\xae\x5e\xcd\x22\xb3\x76", - "TUSD", - 18, - ) - yield ( # address, symbol, decimals - b"\x2e\xf1\xab\x8a\x26\x18\x7c\x58\xbb\x8a\xae\xb1\x1b\x2f\xc6\xd2\x5c\x5c\x07\x16", - "TWN", - 18, - ) - yield ( # address, symbol, decimals - b"\xfb\xd0\xd1\xc7\x7b\x50\x17\x96\xa3\x5d\x86\xcf\x91\xd6\x5d\x97\x78\xee\xe6\x95", - "TWNKL", - 3, - ) - yield ( # address, symbol, decimals - b"\x01\xc0\x98\x7e\x88\xf7\x78\xdf\x66\x40\x78\x72\x26\xbc\x96\x35\x4e\x1a\x97\x66", - "UAT", - 18, - ) - yield ( # address, symbol, decimals - b"\x67\x04\xb6\x73\xc7\x0d\xe9\xbf\x74\xc8\xfb\xa4\xb4\xbd\x74\x8f\x0e\x21\x90\xe1", - "UBEX", - 18, - ) - yield ( # address, symbol, decimals - b"\x84\x00\xd9\x4a\x5c\xb0\xfa\x0d\x04\x1a\x37\x88\xe3\x95\x28\x5d\x61\xc9\xee\x5e", - "UBT", - 8, - ) - yield ( # address, symbol, decimals - b"\x92\xe5\x2a\x1a\x23\x5d\x9a\x10\x3d\x97\x09\x01\x06\x6c\xe9\x10\xaa\xce\xfd\x37", - "UCASH", - 8, - ) - yield ( # address, symbol, decimals - b"\x2a\xdb\xa2\x3c\xf1\x25\x2d\xe0\x95\xac\xed\x80\x1e\x75\x8b\x36\x9e\xc1\x04\x26", - "UCBI", - 8, - ) - yield ( # address, symbol, decimals - b"\xaa\xf3\x70\x55\x18\x8f\xee\xe4\x86\x9d\xe6\x34\x64\x93\x7e\x68\x3d\x61\xb2\xa1", - "UCN", - 18, - ) - yield ( # address, symbol, decimals - b"\xea\x09\x7a\x2b\x1d\xb0\x06\x27\xb2\xfa\x17\x46\x0a\xd2\x60\xc0\x16\x01\x69\x77", - "UFR", - 18, - ) - yield ( # address, symbol, decimals - b"\x24\x69\x27\x91\xbc\x44\x4c\x5c\xd0\xb8\x1e\x3c\xbc\xab\xa4\xb0\x4a\xcd\x1f\x3b", - "UKG", - 18, - ) - yield ( # address, symbol, decimals - b"\xd1\x99\xa3\xf8\xa6\x5f\xd0\xc8\x0a\x47\x71\x8c\xb5\xe2\xd1\xc9\xf3\x72\x9b\xc6", - "uLBAT2x", - 6, - ) - yield ( # address, symbol, decimals - b"\xb5\x6f\x2c\xe6\x79\xe1\xff\xba\x50\x9e\xe5\x2e\x94\x47\xa3\xdd\x7a\xbe\x0b\xa1", - "uLBAT3x", - 6, - ) - yield ( # address, symbol, decimals - b"\xaa\x20\x29\x78\x94\x04\xa2\x98\x99\xec\x97\x51\x61\x4e\xc4\xcc\xb2\x7f\xf3\x32", - "uLBAT4x", - 6, - ) - yield ( # address, symbol, decimals - b"\x63\x68\xb0\x95\xa4\xf4\x70\x2b\xf1\x37\x3a\x0a\x2a\xd0\x29\x69\x6a\x2e\x76\x95", - "uLETH2x", - 6, - ) - yield ( # address, symbol, decimals - b"\x23\x18\x73\x65\x19\x5e\x70\x59\xfa\x41\x3b\x33\xab\x46\xa4\x65\x17\x3e\xb7\x87", - "uLETH3x", - 6, - ) - yield ( # address, symbol, decimals - b"\x12\x87\x96\x98\x21\xf9\x16\x0c\x1a\xf5\x16\xaf\x0f\xf1\x8d\xb2\x90\x33\x86\xad", - "uLETH4x", - 6, - ) - yield ( # address, symbol, decimals - b"\xc3\x0f\xa8\x48\x4b\x1c\x35\x69\x6c\x4a\x8c\xf7\x39\x1e\xe0\x67\x15\x92\x20\x3b", - "uLKNC2x", - 6, - ) - yield ( # address, symbol, decimals - b"\xa6\x79\xaa\x83\x06\x19\x76\x8e\x2d\x8a\x23\x65\x52\x6c\xed\xff\x7a\xba\xc2\xa3", - "uLKNC3x", - 6, - ) - yield ( # address, symbol, decimals - b"\x19\x19\x77\x96\xa9\xd8\x90\x31\x9d\x86\xb3\xf8\xf0\x22\x64\x00\xb4\x16\x79\xfd", - "uLKNC4x", - 6, - ) - yield ( # address, symbol, decimals - b"\x18\x72\x34\xe7\xa0\xc6\x4d\xce\xf6\x17\x6a\x53\x4e\xf1\xe9\xe6\x27\xd9\xad\xc8", - "uLREP2x", - 6, - ) - yield ( # address, symbol, decimals - b"\xf4\xbf\xf8\x45\xc2\xdd\x28\x06\x0c\xde\xac\xbd\x21\xa9\x1c\xb6\xd2\xe7\xdd\x4b", - "uLREP3x", - 6, - ) - yield ( # address, symbol, decimals - b"\x09\x2e\xd6\x78\x28\x35\x7a\xfc\x65\xe8\xae\xc9\x3d\x43\x4b\x02\x17\xd1\x85\x0a", - "uLREP4x", - 6, - ) - yield ( # address, symbol, decimals - b"\xbd\x40\x86\x12\xba\xcc\xcb\xf1\x4f\xf2\x6c\xa0\xde\xf8\x59\xfa\xcc\x36\x73\xbd", - "uLWBTC2x", - 6, - ) - yield ( # address, symbol, decimals - b"\x43\x1e\x5f\x6f\x33\x68\x23\x0b\x10\xb7\x32\xce\xf6\x8a\xcf\xf6\x2a\x97\x27\xf0", - "uLWBTC3x", - 6, - ) - yield ( # address, symbol, decimals - b"\x61\x97\x32\xbe\x53\xbd\xfb\x27\x0e\xe8\x89\xcf\x3d\xfe\x6f\xce\xe4\x17\x12\x61", - "uLWBTC4x", - 6, - ) - yield ( # address, symbol, decimals - b"\x04\xb2\x72\xa2\x1d\x9a\x0f\x0a\xe0\xca\xe2\x01\x5e\x9c\x90\x95\x96\xb8\x2a\x4d", - "uLZRX2x", - 6, - ) - yield ( # address, symbol, decimals - b"\xb0\xae\x52\xa5\x39\xe6\x81\xb9\xd0\xd4\x89\xfe\x34\xab\xa7\xa8\x8f\x98\x1d\x2e", - "uLZRX3x", - 6, - ) - yield ( # address, symbol, decimals - b"\x39\x2b\x9f\xae\x89\x65\x94\x58\x6b\x4e\x6b\x08\x09\x16\xc6\x87\x2e\x74\xd4\x4f", - "uLZRX4x", - 6, - ) - yield ( # address, symbol, decimals - b"\x6f\xc1\x3e\xac\xe2\x65\x90\xb8\x0c\xcc\xab\x1b\xa5\xd5\x18\x90\x57\x7d\x83\xb2", - "UMB", - 18, - ) - yield ( # address, symbol, decimals - b"\x1f\x98\x40\xa8\x5d\x5a\xf5\xbf\x1d\x17\x62\xf9\x25\xbd\xad\xdc\x42\x01\xf9\x84", - "UNI", - 18, - ) - yield ( # address, symbol, decimals - b"\x70\x15\x64\xaa\x6e\x26\x81\x61\x47\xd4\xfa\x21\x1a\x07\x79\xf1\xb7\x74\xbb\x9b", - "uni0xBTC", - 18, - ) - yield ( # address, symbol, decimals - b"\x7c\xfa\xb8\x7a\xac\x08\x99\xc0\x93\x23\x5b\x34\x2a\xc0\xe5\xb1\xac\xf1\x59\xeb", - "uniaDAI", - 18, - ) - yield ( # address, symbol, decimals - b"\xe6\xc1\x98\xd2\x7a\x5b\x71\x14\x4b\x40\xcf\xa2\x36\x2a\xe3\x16\x67\x28\xe0\xc8", - "uniAMN", - 18, - ) - yield ( # address, symbol, decimals - b"\x04\x2d\xbb\xdc\x27\xf7\x5d\x27\x7c\x3d\x99\xef\xe3\x27\xdb\x21\xbc\x4f\xde\x75", - "uniAMPL", - 18, - ) - yield ( # address, symbol, decimals - b"\x07\x7d\x52\xb0\x47\x73\x59\x76\xdf\xda\x76\xfe\xf7\x4d\x4d\x98\x8a\xc2\x51\x96", - "uniANT", - 18, - ) - yield ( # address, symbol, decimals - b"\x2e\x64\x2b\x8d\x59\xb4\x5a\x1d\x8c\x5a\xef\x71\x6a\x84\xff\x44\xea\x66\x59\x14", - "uniBAT", - 18, - ) - yield ( # address, symbol, decimals - b"\x0e\x6a\x53\xb1\x36\x88\x01\x8a\x3d\xf8\xc6\x9f\x99\xaf\xb1\x9a\x30\x68\xd0\x4f", - "uniBLT", - 18, - ) - yield ( # address, symbol, decimals - b"\x87\xd8\x0d\xbd\x37\xe5\x51\xf5\x86\x80\xb4\x21\x7b\x23\xaf\x6a\x75\x2d\xa8\x3f", - "uniBNT", - 18, - ) - yield ( # address, symbol, decimals - b"\xf7\xb5\xa4\xb9\x34\x65\x80\x25\x39\x0f\xf6\x9d\xb3\x02\xbc\x7f\x2a\xc4\xa5\x42", - "uniC20", - 18, - ) - yield ( # address, symbol, decimals - b"\x34\xe8\x97\x40\xad\xf9\x7c\x3a\x9d\x3f\x63\xcc\x2c\xe4\xa9\x14\x38\x2c\x23\x0b", - "unicDAI", - 18, - ) - yield ( # address, symbol, decimals - b"\x1e\x37\x40\xa0\x30\xaf\x8c\x75\x5c\x88\x8a\x0e\xe8\x3a\xc9\xe7\x9e\x09\xf4\xf1", - "uniCELR", - 18, - ) - yield ( # address, symbol, decimals - b"\x6c\x39\x42\xb3\x83\xbc\x3d\x0e\xfd\x3f\x36\xef\xa1\xcb\xe7\xc8\xe1\x2c\x8a\x2b", - "uniCHAI", - 18, - ) - yield ( # address, symbol, decimals - b"\x89\x20\x5a\x3a\x3b\x2a\x69\xde\x6d\xbf\x7f\x01\xed\x13\xb2\x10\x8b\x2c\x43\xe7", - "Unicorn", - 0, - ) - yield ( # address, symbol, decimals - b"\x45\xa2\xfd\xfe\xd7\xf7\xa2\xc7\x91\xfb\x1b\xdf\x60\x75\xb8\x3f\xad\x82\x1d\xde", - "unicSAI", - 18, - ) - yield ( # address, symbol, decimals - b"\x1c\x6c\x71\x2b\x1f\x4a\x7c\x26\x3b\x1d\xbd\x8f\x97\xfb\x44\x7c\x94\x5d\x3b\x9a", - "uniCVC", - 18, - ) - yield ( # address, symbol, decimals - b"\x2a\x15\x30\xc4\xc4\x1d\xb0\xb0\xb2\xbb\x64\x6c\xb5\xeb\x1a\x67\xb7\x15\x86\x67", - "uniDAI", - 18, - ) - yield ( # address, symbol, decimals - b"\x4f\x0d\x6e\x21\x79\x93\x88\x28\xcf\xf9\x3d\xa4\x0a\x8b\xa1\xdf\x75\x19\xca\x8c", - "uniDATA", - 18, - ) - yield ( # address, symbol, decimals - b"\xd5\x5c\x1c\xa9\xf5\x99\x2a\x2e\x5e\x37\x9d\xce\x49\xab\xf2\x42\x94\xab\xe0\x55", - "uniDGD", - 18, - ) - yield ( # address, symbol, decimals - b"\xb9\x2d\xe8\xb3\x05\x84\x39\x2a\xf2\x77\x26\xd5\xce\x04\xef\x3c\x4e\x5c\x99\x24", - "uniDGX", - 18, - ) - yield ( # address, symbol, decimals - b"\x61\x79\x2f\x29\x0e\x51\x00\xfb\xbc\xbb\x23\x09\xf0\x3a\x1b\xab\x86\x9f\xb8\x50", - "uniDIP", - 18, - ) - yield ( # address, symbol, decimals - b"\xd5\x52\x11\x9e\xd4\x4e\xc8\xfa\x8f\x87\xc5\x68\x76\x9c\x67\xbd\x02\xb5\xb3\xfb", - "uniDONUT", - 18, - ) - yield ( # address, symbol, decimals - b"\xb9\x9a\x23\xb1\xa4\x58\x5f\xc5\x6d\x0e\xc3\xb7\x65\x28\xc2\x7c\xad\x42\x74\x73", - "uniENJ", - 18, - ) - yield ( # address, symbol, decimals - b"\x5e\x79\x07\xac\x70\xb9\xa7\x81\x36\x5c\x72\xf2\xac\xee\x96\x71\x0b\xda\x04\x2e", - "uniFAME", - 18, - ) - yield ( # address, symbol, decimals - b"\xf7\x9c\xb3\xbe\xa8\x3b\xd5\x02\x73\x75\x86\xa6\xe8\xb1\x33\xc3\x78\xfd\x1f\xf2", - "uniFOAM", - 18, - ) - yield ( # address, symbol, decimals - b"\x60\xa8\x7c\xc7\xfc\xa7\xe5\x38\x67\xfa\xcb\x79\xda\x73\x18\x1b\x1b\xb4\x23\x8b", - "uniFUN", - 18, - ) - yield ( # address, symbol, decimals - b"\x26\xcc\x0e\xab\x6c\xb6\x50\xb0\xdb\x4d\x0d\x0d\xa8\xcb\x5b\xf6\x9f\x4a\xd6\x92", - "uniGEN", - 18, - ) - yield ( # address, symbol, decimals - b"\xe8\xe4\x54\x31\xb9\x32\x15\x56\x6b\xa9\x23\xa7\xe6\x11\xb7\x34\x2e\xa9\x54\xdf", - "uniGNO", - 18, - ) - yield ( # address, symbol, decimals - b"\x4b\x17\x68\x5b\x33\x03\x07\xc7\x51\xb4\x7f\x33\x89\x0c\x83\x98\xdf\x4f\xe4\x07", - "uniGRID", - 18, - ) - yield ( # address, symbol, decimals - b"\x92\x95\x07\xcd\x3d\x90\xab\x11\xec\x48\x22\xe9\xeb\x5a\x48\xeb\x3a\x17\x8f\x19", - "uniGST2", - 18, - ) - yield ( # address, symbol, decimals - b"\xd4\x77\x7e\x16\x4c\x6c\x68\x3e\x10\x59\x3e\x08\x76\x0b\x80\x3d\x58\x52\x9a\x8e", - "uniHOT", - 18, - ) - yield ( # address, symbol, decimals - b"\x3e\x03\x49\xf5\xd3\x84\x14\x00\x8b\x9b\xb1\x90\x7e\xa4\x22\x73\x9b\xe7\xcd\x4c", - "uniiDAI", - 18, - ) - yield ( # address, symbol, decimals - b"\xff\xcf\x45\xb5\x40\xe6\xc9\xf0\x94\xae\x65\x6d\x2e\x34\xad\x11\xcd\xfd\xb1\x87", - "uniimBTC", - 18, - ) - yield ( # address, symbol, decimals - b"\x08\x4f\x00\x26\x71\xa5\xf0\x3d\x54\x98\xb1\xe5\xfb\x15\xfc\x0c\xfe\xe9\xa4\x70", - "uniIOTX", - 18, - ) - yield ( # address, symbol, decimals - b"\x81\xee\xd7\xf1\xec\xbd\x7f\xa9\x97\x8f\xcc\x75\x84\x29\x6f\xb0\xc2\x15\xdc\x5c", - "uniiSAI", - 18, - ) - yield ( # address, symbol, decimals - b"\xb7\x52\x0a\x5f\x8c\x83\x2c\x57\x3d\x6b\xd0\xdf\x95\x5f\xc5\xc9\xb7\x24\x00\xf7", - "uniKIN", - 18, - ) - yield ( # address, symbol, decimals - b"\x49\xc4\xf9\xbc\x14\x88\x4f\x62\x10\xf2\x83\x42\xce\xd5\x92\xa6\x33\x80\x1a\x8b", - "uniKNC", - 18, - ) - yield ( # address, symbol, decimals - b"\xca\xa7\xe4\x65\x6f\x6a\x2b\x59\xf5\xf9\x9c\x74\x5f\x91\xab\x26\xd1\x21\x0d\xce", - "uniLEND", - 18, - ) - yield ( # address, symbol, decimals - b"\xf1\x73\x21\x4c\x72\x0f\x58\xe0\x3e\x19\x40\x85\xb1\xdb\x28\xb5\x0a\xcd\xee\xad", - "uniLINK", - 18, - ) - yield ( # address, symbol, decimals - b"\x41\x7c\xb3\x2b\xc9\x91\xfb\xbd\xca\xe2\x30\xc7\xc4\x77\x1c\xc0\xd6\x9d\xaa\x6b", - "uniLOOM", - 18, - ) - yield ( # address, symbol, decimals - b"\xc4\xa1\xc4\x5d\x55\x46\x02\x9f\xd5\x71\x28\x48\x3a\xe6\x5b\x56\x12\x4b\xfa\x6a", - "uniLPT", - 18, - ) - yield ( # address, symbol, decimals - b"\xe3\x40\x6e\x7d\x01\x55\xe0\xa8\x32\x36\xec\x25\xd3\x4c\xd3\xd9\x03\x03\x66\x69", - "uniLQD", - 18, - ) - yield ( # address, symbol, decimals - b"\xa5\x39\xba\xaa\x3a\xca\x45\x5c\x98\x6b\xb1\xe2\x53\x01\xce\xf9\x36\xce\x1b\x65", - "uniLRC", - 18, - ) - yield ( # address, symbol, decimals - b"\xc6\x58\x1c\xe3\xa0\x05\xe2\x80\x1c\x1e\x09\x03\x28\x1b\xbd\x31\x8e\xc5\xb5\xc2", - "uniMANA", - 18, - ) - yield ( # address, symbol, decimals - b"\x9a\x7a\x75\xe6\x6b\x32\x5a\x3b\xd4\x69\x73\xb2\xb5\x7c\x9b\x8d\x9d\x26\xa6\x21", - "uniMATIC", - 18, - ) - yield ( # address, symbol, decimals - b"\xe1\xb7\xae\xc3\x63\x90\x68\xb4\x74\xbf\xbc\xb9\x16\x58\x0f\xc2\x8a\x20\x71\x7b", - "uniMBC", - 18, - ) - yield ( # address, symbol, decimals - b"\xdd\x80\xca\x80\x62\xc7\xef\x90\xfc\xa2\x54\x7e\x6a\x2a\x12\x6c\x59\x6e\x61\x1f", - "uniMGN", - 18, - ) - yield ( # address, symbol, decimals - b"\x2c\x4b\xd0\x64\xb9\x98\x83\x80\x76\xfa\x34\x1a\x83\xd0\x07\xfc\x2f\xa5\x09\x57", - "uniMKR", - 18, - ) - yield ( # address, symbol, decimals - b"\xa9\x31\xf4\xeb\x16\x5a\xc3\x07\xfd\x74\x31\xb5\xec\x6e\xad\xde\x53\xe1\x4b\x0c", - "uniMLN", - 18, - ) - yield ( # address, symbol, decimals - b"\xcc\xb9\x86\x54\xcd\x48\x62\x16\xff\xf2\x73\xdd\x02\x52\x46\x58\x8e\x77\xcf\xc1", - "uniMOD", - 18, - ) - yield ( # address, symbol, decimals - b"\x06\x9c\x97\xdb\xa9\x48\x17\x5d\x10\xaf\x4b\x24\x14\x96\x9e\x0b\x88\xd4\x46\x69", - "uniNEXO", - 18, - ) - yield ( # address, symbol, decimals - b"\x2b\xf5\xa5\xba\x29\xe6\x06\x82\xfc\x56\xb2\xfc\xf9\xce\x07\xbe\xf4\xf6\x19\x6f", - "uniNMR", - 18, - ) - yield ( # address, symbol, decimals - b"\xe9\xa5\xbb\xe4\x1d\xc6\x3d\x55\x5e\x06\x74\x6b\x04\x7d\x62\x4e\x33\x43\xea\x52", - "uniOXT", - 18, - ) - yield ( # address, symbol, decimals - b"\xf5\x3b\xbf\xbf\xf0\x1c\x50\xf2\xd4\x2d\x54\x2b\x09\x63\x7d\xca\x97\x93\x5f\xf7", - "uniPAN", - 18, - ) - yield ( # address, symbol, decimals - b"\xc0\x40\xd5\x1b\x07\xae\xa5\xd9\x4a\x89\xbc\x21\xe8\x07\x8b\x77\x36\x6f\xc6\xc7", - "uniPAX", - 18, - ) - yield ( # address, symbol, decimals - b"\x0d\x2e\x1a\x84\x63\x8b\xd1\xb6\xc0\xc2\x60\xc7\x58\xc3\x94\x51\xd4\x58\x7b\xe1", - "uniPAXG", - 18, - ) - yield ( # address, symbol, decimals - b"\xf5\x06\x82\x8b\x16\x6d\xe8\x8c\xa2\xed\xb2\xa9\x8d\x96\x0a\xbb\xa0\xd2\x40\x2a", - "uniPNK", - 18, - ) - yield ( # address, symbol, decimals - b"\xa2\xe6\xb3\xef\x20\x5f\xea\xee\x47\x59\x37\xc4\x88\x3b\x24\xe6\xeb\x71\x7e\xef", - "uniPOA20", - 18, - ) - yield ( # address, symbol, decimals - b"\x75\x58\x99\xf0\x54\x0c\x35\x48\xb9\x9e\x68\xc5\x9a\xdb\x0f\x15\xd2\x69\x51\x88", - "uniQCH", - 18, - ) - yield ( # address, symbol, decimals - b"\x82\xdb\x9f\xc4\x95\x6f\xa4\x0e\xfe\x1e\x35\xd8\x81\x00\x46\x12\xb5\xcb\x2c\xc2", - "uniQSP", - 18, - ) - yield ( # address, symbol, decimals - b"\xd9\x1f\xf1\x6e\xf9\x25\x68\xfc\x27\xf4\x66\xc3\xc5\x61\x3e\x43\x31\x3a\xb1\xdc", - "uniRCN", - 18, - ) - yield ( # address, symbol, decimals - b"\x7d\x03\xce\xcb\x36\x82\x0b\x46\x66\xf4\x5e\x1b\x4c\xa2\x53\x87\x24\xdb\x27\x1c", - "uniRDN", - 18, - ) - yield ( # address, symbol, decimals - b"\x43\x89\x29\x92\xb0\xb1\x02\x45\x9e\x89\x5b\x88\x60\x1b\xb2\xc7\x67\x36\x94\x2c", - "uniREN", - 18, - ) - yield ( # address, symbol, decimals - b"\x48\xb0\x4d\x2a\x05\xb6\xb6\x04\xd8\xd5\x22\x3f\xd1\x98\x4f\x19\x1d\xed\x51\xaf", - "uniREP", - 18, - ) - yield ( # address, symbol, decimals - b"\xeb\xd8\xaa\x50\xb2\x6b\xfa\x63\x00\x7d\x61\xeb\xa7\x77\xa9\xdd\xe7\xe4\x3c\x64", - "uniRING", - 18, - ) - yield ( # address, symbol, decimals - b"\xa8\x25\xca\xe0\x2b\x31\x0e\x99\x01\xb4\x77\x68\x06\xce\x25\xdb\x52\x0c\x86\x42", - "uniRLC", - 18, - ) - yield ( # address, symbol, decimals - b"\x3f\xb2\xf1\x80\x65\x92\x6d\xdb\x33\xe7\x57\x14\x75\xc5\x09\x54\x1d\x15\xda\x0e", - "uniRPL", - 18, - ) - yield ( # address, symbol, decimals - b"\x09\xca\xbe\xc1\xea\xd1\xc0\xba\x25\x4b\x09\xef\xb3\xee\x13\x84\x17\x12\xbe\x14", - "uniSAI", - 18, - ) - yield ( # address, symbol, decimals - b"\xc0\xc5\x9c\xde\x85\x1b\xfc\xbd\xdd\xd3\x37\x7e\xc1\x0e\xa5\x4a\x18\xef\xb9\x37", - "uniSALT", - 18, - ) - yield ( # address, symbol, decimals - b"\x8a\x8d\x7a\xd4\xb8\x9d\x91\x98\x3c\xd0\x69\xc5\x8c\x4a\xa9\xf2\xf4\x16\x62\x98", - "uniSAN", - 18, - ) - yield ( # address, symbol, decimals - b"\xe9\xcf\x78\x87\xb9\x31\x50\xd4\xf2\xda\x7d\xfc\x6d\x50\x2b\x21\x64\x38\xf2\x44", - "unisETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x53\x69\x56\xfa\xb8\x67\x74\xfb\x55\xcf\xaa\xcf\x49\x6b\xc2\x5e\x4d\x2b\x43\x5c", - "uniSHUF", - 18, - ) - yield ( # address, symbol, decimals - b"\x1a\xec\x8f\x11\xa7\xe7\x8d\xc2\x24\x77\xe9\x1e\xd9\x24\xfa\xb4\x6e\x3a\x88\xfd", - "uniSNT", - 18, - ) - yield ( # address, symbol, decimals - b"\x39\x58\xb4\xec\x42\x7f\x8f\xa2\x4e\xb6\x0f\x42\x82\x17\x60\xe8\x8d\x48\x5f\x7f", - "uniSNX", - 18, - ) - yield ( # address, symbol, decimals - b"\x22\xd8\x43\x2c\xc7\xaa\x4f\x87\x12\xa6\x55\xfc\x4c\xdf\xb1\xba\xec\x29\xfc\xa9", - "uniSOCKS", - 18, - ) - yield ( # address, symbol, decimals - b"\x4e\x39\x53\x04\x65\x5f\x07\x96\xbc\x3b\xc6\x37\x09\xdb\x72\x17\x3b\x9d\xdf\x98", - "uniSPANK", - 18, - ) - yield ( # address, symbol, decimals - b"\xa7\x29\x85\x41\xe5\x2f\x96\xd4\x23\x82\xec\xbe\x4f\x24\x2c\xbc\xbc\x53\x4d\x02", - "uniSTORJ", - 18, - ) - yield ( # address, symbol, decimals - b"\xb9\x44\xd1\x3b\x2f\x40\x47\xfc\x7b\xd3\xf7\x01\x3b\xcf\x01\xb1\x15\xfb\x26\x0d", - "unisUSD", - 18, - ) - yield ( # address, symbol, decimals - b"\x88\xdf\x13\x88\x9e\x20\xef\xa9\x3f\xf9\xa0\xc0\x8f\x10\x1f\x43\x1b\xd9\xdd\xd7", - "uniTAUD", - 18, - ) - yield ( # address, symbol, decimals - b"\xf9\x96\xd7\xd9\xba\xcb\x92\x17\xca\x64\xbb\xce\x1b\x1c\xd7\x2e\x0e\x88\x6b\xe6", - "uniTCAD", - 18, - ) - yield ( # address, symbol, decimals - b"\x6b\xfa\x11\x9a\x19\x15\x76\xba\x26\xbc\x5e\x71\x14\x32\xac\xa0\xcf\xda\x04\xde", - "uniTGBP", - 18, - ) - yield ( # address, symbol, decimals - b"\x50\x5c\x02\xb4\xaa\x12\x86\x37\x5f\xbd\xf0\xc3\x90\xac\x0f\xe9\x20\x9d\xcb\x05", - "uniTHKD", - 18, - ) - yield ( # address, symbol, decimals - b"\xb6\xcf\xbf\x32\x2d\xb4\x7d\x39\x33\x1e\x30\x60\x05\xdc\x7e\x5e\x65\x49\x94\x2b", - "uniTKN", - 18, - ) - yield ( # address, symbol, decimals - b"\x95\xe4\x64\x9f\x52\x09\xdd\x29\x2c\xaf\x1f\x08\x7b\x8f\x1d\xb3\xbe\x24\x92\x7f", - "uniTRST", - 18, - ) - yield ( # address, symbol, decimals - b"\x12\x23\x27\xfd\x43\xb2\xc6\x6d\xd9\xe4\xb6\xc9\x1c\x8f\x07\x1e\x21\x75\x58\xef", - "uniTRYB", - 18, - ) - yield ( # address, symbol, decimals - b"\x50\x48\xb9\xd0\x10\x97\x49\x8f\xd7\x2f\x3f\x14\xbc\x9b\xc7\x4a\x5a\xac\x8f\xa7", - "uniTUSD", - 18, - ) - yield ( # address, symbol, decimals - b"\x60\x1c\x32\xe0\x58\x0d\x3a\xef\x94\x37\xdb\x52\xd0\x9f\x5a\x5d\x7e\x60\xec\x22", - "uniUNI-V1:SAI", - 18, - ) - yield ( # address, symbol, decimals - b"\x97\xde\xc8\x72\x01\x3f\x6b\x5f\xb4\x43\x86\x10\x90\xad\x93\x15\x42\x87\x81\x26", - "uniUSDC", - 18, - ) - yield ( # address, symbol, decimals - b"\x7e\xf7\x19\x1a\xb9\x1d\xdb\x4d\x7c\xc3\x47\xfb\xfa\x17\x03\x55\xac\xba\xf0\x2d", - "uniUSDS", - 18, - ) - yield ( # address, symbol, decimals - b"\xc1\x2c\x4c\x3e\x00\x08\xb8\x38\xf7\x51\x89\xbf\xb3\x92\x83\x46\x7c\xf6\xe5\xb3", - "univ20xBTCETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xf4\x91\x44\xe6\x1c\x05\x12\x0f\x1b\x16\x7e\x4b\x4f\x59\xcf\x0a\x5d\x77\x90\x3f", - "univ21UPETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x8c\xb7\x7e\xa8\x69\xde\xf8\xf7\xfd\xea\xb9\xe4\xda\x6c\xf0\x28\x97\xbb\xf0\x76", - "univ2AKROETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x58\x3c\xad\xd8\x30\x37\x4b\xb5\xc1\xec\x8e\x1b\x64\x8e\x02\x94\xcc\x1e\x01\xf1", - "univ2ALEPHETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x49\x0b\x5b\x24\x89\xee\xfc\x41\x06\xc6\x97\x43\xf6\x57\xe3\xc4\xa2\x87\x0a\xc5", - "univ2ATISETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xf4\x21\xc3\xf2\xe6\x95\xc2\xd4\xc0\x76\x53\x79\xcc\xac\xe8\xad\xe4\xa4\x80\xd9", - "univ2BANDETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xb6\x90\x9b\x96\x0d\xbb\xe7\x39\x2d\x40\x54\x29\xeb\x2b\x36\x49\x75\x2b\x48\x38", - "univ2BATETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xfa\xd8\xb0\x70\x55\xa0\x37\x14\x42\xa3\x10\x6a\x22\x44\xa8\x2b\x24\xe3\x1c\xec", - "univ2BIZETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x3f\xd4\xcf\x93\x03\xc4\xbc\x9e\x13\x77\x26\x18\x82\x87\x12\xc8\xea\xc7\xdd\x2f", - "univ2BNTETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x6b\x4a\x0b\xd2\xee\xe3\xca\x06\x65\x2f\x75\x88\x44\x93\x7d\xaf\x91\xea\x84\x22", - "univ2BOOSTETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x13\xe6\x38\xb4\xf8\x97\x40\xa1\xc2\xff\x45\xd7\x1f\x71\xee\x28\x10\x1c\xc1\xdc", - "univ2BPTETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x48\xf4\xa6\xc6\x5a\xbb\x4b\x20\x98\x23\x77\x1b\x0d\x2c\x0f\x15\x6e\xe6\x26\x8b", - "univ2CAMOETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xa5\xe7\x9b\xae\xe5\x40\xf0\x00\xef\x6f\x23\xd0\x67\xcd\x3a\xc2\x2c\x7d\x9f\xe6", - "univ2CELETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xa6\xf3\xef\x84\x1d\x37\x1a\x82\xca\x75\x7f\xad\x08\xef\xc0\xde\xe2\xf1\xf5\xe2", - "univ2CHIETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xcf\xfd\xde\xd8\x73\x55\x4f\x36\x2a\xc0\x2f\x8f\xb1\xf0\x2e\x5a\xda\x10\x51\x6f", - "univ2COMPETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xdd\xf9\xb7\xa3\x1b\x32\xeb\xaf\x5c\x06\x4c\x80\x90\x00\x46\xc9\xe5\xb7\xc6\x5f", - "univ2CREAMETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xda\x9a\x09\xed\x40\x01\x53\x46\xf6\xb0\x70\x4c\x5b\xf1\xa2\xcc\xbf\x94\xde\x43", - "univ2DAI2KEY", - 18, - ) - yield ( # address, symbol, decimals - b"\x18\xe3\x37\x23\xfe\xf4\x3a\x33\xf9\x56\x0a\x8b\x97\x3d\x33\x31\xe5\x26\x9f\xac", - "univ2DAIALEPH", - 18, - ) - yield ( # address, symbol, decimals - b"\xa4\x78\xc2\x97\x5a\xb1\xea\x89\xe8\x19\x68\x11\xf5\x1a\x7b\x7a\xde\x33\xeb\x11", - "univ2DAIETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xe4\xa3\x56\xaf\xd9\x25\xf7\x3f\x3d\xd2\x2a\xcb\xeb\x2c\x0c\x87\xa0\x5e\x89\x5d", - "univ2DAIJRT", - 18, - ) - yield ( # address, symbol, decimals - b"\xb6\x03\xc2\xb5\xab\x4e\xe7\x93\x21\x03\xb4\x2f\x8d\xd8\x99\xc8\x72\x1d\xd2\x5e", - "univ2DAILEND", - 18, - ) - yield ( # address, symbol, decimals - b"\xe8\x05\x6b\x83\xba\x7d\xaf\x02\x74\x14\xb5\x80\x48\xa4\x89\x11\xac\xf1\xb2\xa9", - "univ2DAIMFT", - 18, - ) - yield ( # address, symbol, decimals - b"\xae\x46\x1c\xa6\x7b\x15\xdc\x8d\xc8\x1c\xe7\x61\x5e\x03\x20\xda\x1a\x9a\xb8\xd5", - "univ2DAIUSDC", - 18, - ) - yield ( # address, symbol, decimals - b"\xd6\x05\x44\x55\xca\x2e\x1a\xef\x02\x17\x8e\x04\x62\xd9\xab\x95\x3b\xea\x4e\x23", - "univ2DATAETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x3a\xee\xe5\xba\x05\x3e\xf8\x40\x64\x20\xdb\xc5\x80\x1f\xc9\x5e\xc5\x7b\x0e\x0a", - "univ2DECETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x41\x68\xce\xf0\xfc\xa0\x77\x41\x76\x63\x2d\x86\xba\x26\x55\x3e\x3b\x9c\xf5\x9d", - "univ2DEVETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x37\xa0\x46\x4f\x8f\x4c\x20\x7b\x54\x82\x1f\x3c\x79\x9a\xfd\x3d\x26\x2a\xa9\x44", - "univ2DEXTETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x1c\x90\x52\xe8\x23\xb5\xf4\x61\x1e\xf7\xd5\xfb\x41\x53\x99\x5b\x04\x0c\xcb\xf5", - "univ2DXDETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xc5\xa7\x88\xf6\x3e\x5d\x9c\xf2\xc3\x24\x62\x1e\xed\x51\xa9\x8f\x85\xae\x37\x3b", - "univ2DZARETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x3b\x0f\x0f\xe3\xbe\x83\x08\x26\xd8\x33\xa6\x7c\xd1\xd7\xc8\x0e\xdf\x3f\xb4\x9b", - "univ2EBASEETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x8c\x0e\x87\x6f\x1d\xa5\x81\x40\x69\x56\x73\xd0\x7f\xf4\x2d\x47\x86\x20\x7d\x1b", - "univ2ESWAETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x63\xe7\xaa\x05\xb7\x81\x44\x01\x3c\xfa\x4b\x23\xc9\xb6\x15\x99\xd0\xa2\x90\x23", - "univ2ETH2KEY", - 18, - ) - yield ( # address, symbol, decimals - b"\xa0\xd0\x6b\xdc\x32\x74\x56\x4d\xdd\xa6\x5b\xfa\xb6\xae\x61\xe5\xf0\x00\xe4\x9b", - "univ2ETHACID", - 18, - ) - yield ( # address, symbol, decimals - b"\xc5\xbe\x99\xa0\x2c\x68\x57\xf9\xea\xc6\x7b\xbc\xe5\x8d\xf5\x57\x24\x98\xf4\x0c", - "univ2ETHAMPL", - 18, - ) - yield ( # address, symbol, decimals - b"\x0f\xfc\x70\xbe\x6e\x2d\x84\x1e\x10\x96\x53\xdd\xb3\x03\x49\x61\x59\x16\x79\xd6", - "univ2ETHANJ", - 18, - ) - yield ( # address, symbol, decimals - b"\x63\x80\x4d\x75\x7b\x5b\x7c\x43\x50\x9f\xde\xd8\xf7\xce\x10\xcc\x0b\xac\x2a\xe0", - "univ2ETHASKO", - 18, - ) - yield ( # address, symbol, decimals - b"\xc0\x47\x44\xab\x87\xa4\xc3\x7a\xfd\x91\x68\x0e\xf2\x80\xb9\x6e\xe2\x1a\x02\x6e", - "univ2ETHAUC", - 18, - ) - yield ( # address, symbol, decimals - b"\x8a\x38\xad\x17\xd1\xad\xcd\xbe\x37\x75\x33\x8d\x14\x70\xfd\x6f\x00\xf7\x78\x02", - "univ2ETHBUIDL", - 18, - ) - yield ( # address, symbol, decimals - b"\x93\x8d\x14\x59\xee\x0a\xaf\x8f\xe7\x37\x78\xc5\x90\xa6\x39\x82\x1e\x44\x4d\x45", - "univ2ETHCKN", - 18, - ) - yield ( # address, symbol, decimals - b"\x44\x7f\x8d\x28\x71\x20\xb6\x6f\x39\x85\x6a\xe5\xce\xb0\x15\x12\xa7\xa4\x74\x44", - "univ2ETHDAM", - 18, - ) - yield ( # address, symbol, decimals - b"\x07\x82\xfb\x02\x6d\x1c\x26\x4e\x59\xa2\xb2\x74\x83\x32\x40\xc5\x33\x67\xed\x1a", - "univ2ETHDAOX", - 18, - ) - yield ( # address, symbol, decimals - b"\x81\x75\x36\x2a\xfb\xee\xe3\x2a\xfb\x22\xd0\x5a\xdc\x0b\xbd\x08\xde\x32\xf5\xae", - "univ2ETHDMG", - 18, - ) - yield ( # address, symbol, decimals - b"\xe5\x6c\x60\xb5\xf9\xf7\xb5\xfc\x70\xde\x0e\xb7\x9c\x6e\xe7\xd0\x0e\xfa\x26\x25", - "univ2ETHENJ", - 18, - ) - yield ( # address, symbol, decimals - b"\x12\x1b\x38\x2b\x5f\x00\x3c\x41\xfb\x49\xe7\xb8\x8d\x07\x9c\x8f\x51\x3f\xea\xac", - "univ2ETHESH", - 18, - ) - yield ( # address, symbol, decimals - b"\x92\x33\x0d\x88\x18\xe8\xa3\xb5\x0f\x02\x7c\x81\x9f\xa4\x60\x31\xff\xba\x2c\x8c", - "univ2ETHFRM", - 18, - ) - yield ( # address, symbol, decimals - b"\xe2\x75\xeb\x61\x54\xcb\x4a\x73\xf0\xba\x57\x3e\x43\xb2\xb0\x6e\x9e\x78\xb7\xf0", - "univ2ETHFSW", - 18, - ) - yield ( # address, symbol, decimals - b"\xed\xae\xdd\x22\xe6\x53\xc5\x04\xff\x68\x06\xbf\x61\x66\x42\x92\x84\x8e\xb2\x6e", - "univ2ETHHEX2T", - 18, - ) - yield ( # address, symbol, decimals - b"\xf4\x9c\x43\xae\x0f\xaf\x37\x21\x7b\xdc\xb0\x0d\xf4\x78\xcf\x79\x3e\xdd\x66\x87", - "univ2ETHKNC", - 18, - ) - yield ( # address, symbol, decimals - b"\x2d\xda\x09\xfb\x92\x9c\x57\x6a\x6a\xb6\xc1\xd1\xee\x62\xe8\xaf\x72\xb2\xf6\xa7", - "univ2ETHNEC", - 18, - ) - yield ( # address, symbol, decimals - b"\x1c\x60\x82\x35\xe6\xa9\x46\x40\x3f\x2a\x04\x8a\x38\x55\x0b\xef\xe4\x1e\x1b\x85", - "univ2ETHPAMP", - 18, - ) - yield ( # address, symbol, decimals - b"\x1b\x21\x60\x9d\x42\xfa\x32\xf3\x71\xf5\x8d\xf2\x94\xed\x25\xb2\xd2\xe5\xc8\xba", - "univ2ETHPAN", - 18, - ) - yield ( # address, symbol, decimals - b"\x2e\xcf\x24\x5b\x60\xe3\x51\xa7\x11\xe5\x6a\x3a\xe2\x58\x66\xd1\xc8\xbe\xb3\x24", - "univ2ETHPDS", - 18, - ) - yield ( # address, symbol, decimals - b"\x49\xf9\x31\x6e\xb2\x2d\xe9\x0d\x93\x43\xc5\x73\xfb\xd7\xcc\x0b\x5e\xc6\xe1\x9f", - "univ2ETHPOWER", - 18, - ) - yield ( # address, symbol, decimals - b"\xfb\x7a\x31\x12\xc9\x6b\xbc\xfe\x4b\xbf\x3e\x86\x27\xb0\xde\x6f\x49\xe5\x14\x2a", - "univ2ETHSHIP", - 18, - ) - yield ( # address, symbol, decimals - b"\xd9\x0a\x1b\xa0\xcb\xaa\xaa\xbf\xdc\x6c\x81\x4c\xdf\x16\x11\x30\x6a\x26\xe1\xf8", - "univ2ETHSWAP", - 18, - ) - yield ( # address, symbol, decimals - b"\xed\x9c\x85\x4c\xb0\x2d\xe7\x5c\xe4\xc9\xbb\xa9\x92\x82\x8d\x6c\xb7\xfd\x5c\x71", - "univ2ETHUBOMB", - 18, - ) - yield ( # address, symbol, decimals - b"\x5e\x64\xcd\x6f\x84\xd0\xee\x2a\xd2\xa8\x4c\xad\xc4\x64\x18\x4e\x36\x27\x4e\x0c", - "univ2ETHUNC", - 18, - ) - yield ( # address, symbol, decimals - b"\x0d\x4a\x11\xd5\xee\xaa\xc2\x8e\xc3\xf6\x1d\x10\x0d\xaf\x4d\x40\x47\x1f\x18\x52", - "univ2ETHUSDT", - 18, - ) - yield ( # address, symbol, decimals - b"\x6c\x35\xc4\x04\x47\xe8\x01\x1a\x63\xab\x05\xf0\x88\xfa\x7c\xd9\x14\xd6\x69\x04", - "univ2ETHXAMP", - 18, - ) - yield ( # address, symbol, decimals - b"\xc6\xf3\x48\xdd\x3b\x91\xa5\x6d\x11\x7e\xc0\x07\x1c\x1e\x9b\x83\xc0\x99\x6d\xe4", - "univ2ETHZRX", - 18, - ) - yield ( # address, symbol, decimals - b"\xdc\x7d\x8c\xc3\xa2\x2f\xe0\xec\x69\x77\x0e\x02\x93\x1f\x43\x45\x1b\x7b\x97\x5e", - "univ2EWTBETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x99\x26\x28\x53\x61\xac\xf7\x46\x11\x05\xb4\x64\xae\x9e\xa6\x83\xdf\xb0\x6b\x83", - "univ2FMAETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xd9\xd3\x95\x40\xd6\x1f\x8d\x6e\xb2\xee\x7e\xed\xfa\xe9\x3c\xc0\x9c\xc2\x4f\x0e", - "univ2FOAMETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x05\xb0\xc1\xd8\x83\x9e\xf3\xa9\x89\xb3\x3b\x6b\x63\xd3\xaa\x96\xcb\x7e\xc1\x42", - "univ2FUNETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x30\x2a\xc8\x7b\x1b\x5e\xf1\x84\x85\x97\x1e\xd0\x11\x5a\x17\x40\x3e\xa3\x09\x11", - "univ2FXCETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xf3\x7e\xd7\x42\x81\x9e\xc0\x06\xb0\x80\x2d\xf5\xc2\xb0\xe9\x13\x2f\x22\xc6\x25", - "univ2GENETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x39\x5a\x13\x50\xdb\x96\x27\x36\x0d\x09\xc8\xb3\xe7\xc3\x1f\xb8\x42\x61\xb8\xf2", - "univ2GHOSTETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xab\x65\x9d\xee\x30\x30\x60\x2c\x1a\xf8\xc2\x9d\x14\x6f\xac\xd4\xae\xd6\xec\x85", - "univ2GHSTETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x30\x8e\x01\x91\x43\xb5\x60\x21\x57\x75\xa0\xc6\xef\xbd\x26\x73\x41\x3d\x76\xe6", - "univ2H3XETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x55\xd5\xc2\x32\xd9\x21\xb9\xea\xa6\xb3\x7b\x58\x45\xe4\x39\xac\xd0\x4b\x4d\xba", - "univ2HEXETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xf5\x2f\x43\x3b\x79\xd2\x10\x23\xaf\x94\x25\x19\x58\xbe\xd3\xb6\x4a\x2b\x79\x30", - "univ2HKMTUSDT", - 18, - ) - yield ( # address, symbol, decimals - b"\xad\xea\x64\x59\x07\xdb\xe2\xb9\xbc\xb7\xb1\x02\x69\x5a\xd0\xc3\x21\xf6\xb4\x0c", - "univ2HXBETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xfd\xc3\xf6\x8a\xf2\x0d\x56\xe0\x5a\xd0\xc7\xeb\x51\xda\x4a\x3f\x7d\x75\x3a\x04", - "univ2IDXTETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x2b\x6a\x25\xf7\xc5\x4f\x43\xc7\x1c\x74\x3e\x62\x7f\x56\x63\x23\x25\x86\xc3\x9f", - "univ2JRTETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x65\x07\xba\x0f\x3e\xb8\x2c\xba\x18\x5c\x08\x8a\x3f\xbd\x04\x35\xf1\xa7\x3b\x28", - "univ2KAIETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xab\x3f\x9b\xf1\xd8\x1d\xdb\x22\x4a\x20\x14\xe9\x8b\x23\x86\x38\x82\x4b\xcf\x20", - "univ2LENDETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x30\x8d\x87\x86\x53\x97\x67\x2a\x74\xec\x62\xb3\xdc\x8e\x73\x23\xa1\x8c\x0f\x1e", - "univ2LENDUSDC", - 18, - ) - yield ( # address, symbol, decimals - b"\xa2\x10\x7f\xa5\xb3\x8d\x9b\xbd\x2c\x46\x1d\x6e\xdf\x11\xb1\x1a\x50\xf6\xb9\x74", - "univ2LINKETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xdd\xb5\x04\x9f\xdb\x73\xea\x84\x42\x9c\xd9\x1f\x31\xd9\x07\x79\x03\x2e\x5e\xde", - "univ2LPTDAI", - 18, - ) - yield ( # address, symbol, decimals - b"\x75\x5c\x1a\x8f\x71\xf4\x21\x0c\xd7\xb6\x0b\x94\x39\x45\x1e\xfc\xbe\xba\x33\xd1", - "univ2LPTETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x88\x78\xdf\x9e\x1a\x7c\x87\xdc\xbf\x6d\x39\x99\xd9\x97\xf2\x62\xc0\x5d\x8c\x70", - "univ2LRCETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x11\xb1\xf5\x32\x04\xd0\x3e\x55\x29\xf0\x9e\xb3\x09\x19\x39\xe4\xfd\x8c\x9c\xf3", - "univ2MANAETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x30\x06\xc0\xd2\xa6\xe5\x4d\x35\x90\xa4\x43\x84\xc6\xf0\x66\xc9\xcf\x9a\x4c\xea", - "univ2MATHETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x10\xcf\xa7\x44\xc7\x7f\x1c\xb9\xa7\x7f\xa4\x18\xac\x4a\x1b\x6e\xc6\x2b\xcc\xe4", - "univ2MCBETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x5d\xfb\xe9\x59\x25\xff\xeb\x68\xf7\xd1\x79\x20\xbe\x7b\x31\x32\x89\xa1\xa5\x83", - "univ2MEMEETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xc2\xad\xda\x86\x1f\x89\xbb\xb3\x33\xc9\x0c\x49\x2c\xb8\x37\x74\x19\x16\xa2\x25", - "univ2MKRETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xad\xea\x7c\x5f\xeb\xf9\x3a\x62\x39\xe7\x3e\x14\xe3\x7a\xb4\x29\x03\x9e\xb9\xb1", - "univ2MKRMLN", - 18, - ) - yield ( # address, symbol, decimals - b"\x34\x0a\x5a\x2f\x73\xeb\xaa\x18\x1e\xc2\x82\x68\x02\xfd\xf8\xed\x21\xfc\x75\x9a", - "univ2MKRUSDC", - 18, - ) - yield ( # address, symbol, decimals - b"\xf8\x94\x03\xad\x67\xd6\x59\xd5\xd1\xfa\xe7\xc6\xec\x16\x31\x10\x50\x6b\x85\x8a", - "univ2MOONETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xaa\xcd\x36\xc8\x77\x40\x88\x24\xee\x59\x54\x0b\x0c\x09\x38\x04\xd7\xe9\xa7\xd9", - "univ2MRDNETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xb7\x84\xce\xd6\x99\x4c\x92\x81\x70\xb4\x17\xbb\xd0\x52\xa0\x96\xc6\xfb\x17\xe2", - "univ2NMRETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x9b\x7d\xad\x79\xfc\x16\x10\x6b\x47\xa3\xda\xb7\x91\xf3\x89\xc1\x67\xe1\x5e\xb0", - "univ2OCEANETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x8f\xd3\xa0\x4c\xb3\x0a\x1f\xd9\xff\xaf\x15\x48\x97\x2b\x2e\x51\x17\xd0\xa5\x2d", - "[deprecated] univ2OCEANETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xf0\x63\x80\x6d\x07\xfe\x74\x2b\x03\x1a\x54\x31\x45\xfb\x46\xd1\xbc\x67\x0f\xe8", - "[deprecated] univ2OCEANETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xce\x2c\xc0\x51\x36\x34\xce\xf3\xa7\xc9\xc2\x57\xe2\x94\xef\x5e\x30\x92\xf1\x85", - "univ2OGNETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x9c\x4f\xe5\xff\xd9\xa9\xfc\x56\x78\xcf\xbd\x93\xaa\x2d\x4f\xd6\x84\xb6\x7c\x4c", - "univ2PAXGETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xdc\x98\x55\x6c\xe2\x4f\x00\x7a\x5e\xf6\xdc\x1c\xe9\x63\x22\xd6\x58\x32\xa8\x19", - "univ2PICKLEETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xae\x2d\x40\x04\x24\x12\x54\xae\xd3\xf9\x38\x73\x60\x4d\x39\x88\x3c\x82\x59\xf0", - "univ2PLRETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x34\x3f\xd1\x71\xca\xf4\xf0\x28\x7a\xe6\xb8\x7d\x75\xa8\x96\x4d\xc4\x45\x16\xab", - "univ2PNKETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xe7\xcc\xa7\x84\xb1\xd8\x38\xd9\x9f\xf4\xff\xf5\x74\xd3\x18\x70\xd1\x61\x9c\x1d", - "univ2PODETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xcb\x7f\x78\xa0\x79\xb5\xfc\x38\x7c\x80\xb9\x3b\xe7\x9d\x40\x30\x9c\x27\xa2\x37", - "univ2RAINETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x33\xbe\x7e\xd8\x06\x47\x90\x61\xa7\xe6\x2a\x33\xd3\xc9\xb5\x00\xfc\x9b\x47\xbf", - "univ2RELETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x8b\xd1\x66\x1d\xa9\x8e\xbd\xd3\xbd\x08\x0f\x0b\xe4\xe6\xd9\xbe\x8c\xe9\x85\x8c", - "univ2RENETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xec\x2d\x22\x40\xd0\x2a\x8c\xf6\x3c\x3f\xa0\xb7\xd2\xc5\xa3\x16\x9a\x31\x94\x96", - "univ2REPETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xa3\x25\x23\x37\x13\x90\xb0\xcc\x4e\x11\xf6\xbb\x23\x6e\xcf\x4c\x2c\xde\xa1\x01", - "univ2RINGETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x6d\x57\xa5\x3a\x45\x34\x31\x87\x90\x5a\xad\x6a\xd8\xed\x53\x2d\x10\x56\x97\xc1", - "univ2RLCETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x70\xea\x56\xe4\x62\x66\xf0\x13\x7b\xac\x6b\x75\x71\x0e\x35\x46\xf4\x7c\x85\x5d", - "univ2RPLETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xba\x65\x01\x68\x90\x70\x9d\xbc\x94\x91\xca\x7b\xf5\xde\x39\x5b\x84\x41\xdc\x8b", - "univ2RSRETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xd2\xe0\xc4\x92\x87\x89\xe5\xdb\x62\x0e\x53\xaf\x29\xf5\xfc\x7b\xca\x26\x26\x35", - "univ2SAKEETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x59\x8e\x74\x0c\xda\x7c\x52\x50\x80\xd3\xfc\xb9\xfa\x7c\x4e\x1b\xd0\x04\x4b\x34", - "univ2sETHETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x26\x0e\x06\x9d\xea\xd7\x6b\xaa\xc5\x87\xb5\x14\x1b\xb6\x06\xef\x8b\x9b\xab\x6c", - "univ2SHUFETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x43\xae\x24\x96\x0e\x55\x34\x73\x1f\xc8\x31\x38\x6c\x07\x75\x5a\x2d\xc3\x3d\x47", - "univ2SNXETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xea\xf1\xcc\x33\xb8\xd1\xc4\xc3\xe6\x7c\xf6\x47\xe1\x17\x3f\x06\xaa\x7b\x6d\x0c", - "univ2SoETHETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x59\xf9\x6b\x85\x71\xe3\xb1\x1f\x85\x9a\x09\xea\xf5\xa7\x90\xa1\x38\xfc\x64\xd0", - "univ2STAETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x3b\x3d\x4e\xef\xdc\x60\x3b\x23\x29\x07\xa7\xf3\xd0\xed\x1e\xea\x5c\x62\xb5\xf7", - "univ2STAKEETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xe0\xa0\x8f\xd1\x36\x6b\x5b\x4c\xf2\x56\xdb\x1a\x85\xb6\xeb\x0e\x01\xaa\xcb\xce", - "univ2STONKETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xae\xf1\x69\x13\xb6\xc5\x0e\xbc\xf6\x27\xa3\x94\x92\x1f\x30\x69\x85\xfc\x86\x04", - "univ2STORJETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xf8\x07\x58\xab\x42\xc3\xb0\x7d\xa8\x40\x53\xfd\x88\x80\x4b\xcb\x6b\xaa\x4b\x5c", - "univ2sUSDETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x34\xa0\x21\x6c\x50\x57\xbc\x18\xe5\xd3\x4d\x44\x05\x28\x45\x64\xef\xd7\x59\xb2", - "univ2sXAUUSDC", - 18, - ) - yield ( # address, symbol, decimals - b"\x1a\x58\xaa\x61\x8d\xf8\xf1\xec\x28\x27\x48\xfe\xf6\x18\x5c\x1a\x1c\xc2\xfa\xa6", - "univ2TRACETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xb8\x17\x20\x76\xce\xb3\x5b\x67\x01\xf9\x6e\xb9\x08\x88\x18\xef\xc0\x10\xbd\x44", - "univ2TRADEETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x27\xef\x0c\xb0\x21\x44\x6f\x6d\x43\xad\xf0\xbc\xc7\x4b\x64\xfd\x9c\x0a\xb1\x80", - "univ2TRBDAI", - 18, - ) - yield ( # address, symbol, decimals - b"\x70\x25\x8a\xa9\x83\x0c\x2c\x84\xd8\x55\xdf\x1d\x61\xe1\x2c\x25\x6f\x64\x48\xb4", - "univ2TRBETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xb2\x7d\xe0\xba\x2a\xbf\xbf\xdf\x15\x66\x7a\x93\x9f\x04\x1b\x52\x11\x8a\xf5\xba", - "univ2UBTETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x88\xd9\x7d\x19\x9b\x9e\xd3\x7c\x29\xd8\x46\xd0\x0d\x44\x3d\xe9\x80\x83\x2a\x22", - "univ2UMAETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xd3\xd2\xe2\x69\x25\x01\xa5\xc9\xca\x62\x31\x99\xd3\x88\x26\xe5\x13\x03\x3a\x17", - "univ2UNIETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xbd\x39\xb1\xf2\x4b\x89\x60\xd3\xd7\xcd\x2c\x54\x71\xd0\x49\x34\x96\x88\x81\x85", - "univ2UNIUSDETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xfd\x22\x6c\x17\xa5\x7f\x5e\xef\x0b\x84\x8d\x9b\x65\xbc\x53\xcb\xbf\x7e\xd9\x65", - "univ2USDCBUIDL", - 18, - ) - yield ( # address, symbol, decimals - b"\xb4\xe1\x6d\x01\x68\xe5\x2d\x35\xca\xcd\x2c\x61\x85\xb4\x42\x81\xec\x28\xc9\xdc", - "univ2USDCETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x30\x41\xcb\xd3\x68\x88\xbe\xcc\x7b\xbc\xbc\x00\x45\xe3\xb1\xf1\x44\x46\x6f\x5f", - "univ2USDCUSDT", - 18, - ) - yield ( # address, symbol, decimals - b"\x1a\x53\x14\xc1\xb3\xe1\x7a\x78\x1a\xae\xf1\x80\xbb\xa4\x46\xd1\x0e\x50\x6e\x6b", - "univ2uTOPIAETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xb0\x6d\x43\xb9\xf8\xeb\x4e\x64\xe8\xc4\x0f\x81\xe5\x57\x4b\x8a\xea\x6e\x1c\xb7", - "univ2VLINKETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x96\x60\x53\xca\x4f\xca\x04\x91\x73\xeb\x1f\x27\xe4\xcb\x16\x8c\xcb\x79\x45\x34", - "univ2VLTETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x0c\x9c\x5d\xaf\x1d\x7c\xd8\xb1\x0e\x9f\xc5\xe7\xa1\x07\x62\xf0\xa8\xd1\xc3\x35", - "univ2VXVETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xee\x89\xea\x23\xc1\x84\x10\xf2\xb5\x7e\x7a\xbc\x6e\xb2\x4c\xfc\xde\x4f\x49\xb0", - "univ2WBOMBETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xbb\x2b\x80\x38\xa1\x64\x01\x96\xfb\xe3\xe3\x88\x16\xf3\xe6\x7c\xba\x72\xd9\x40", - "univ2WBTCETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x06\xd5\xb7\x38\x0c\x65\xc8\x89\xab\xd8\x2d\x3d\xf8\xac\x11\x8a\xf3\x11\x56\xa1", - "univ2WINGSETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x23\xbf\xf8\xca\x20\xaa\xc0\x6e\xfd\xf2\x3c\xee\x3b\x8a\xe2\x96\xa3\x0d\xfd\x27", - "univ2wNXMETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x23\x1f\x33\x81\xd1\x04\x78\xbf\xc2\xca\x55\x21\x95\xb9\xd8\xb1\x59\x68\xb6\x0c", - "univ2XBASEETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xe0\xcc\x5a\xfc\x0f\xf2\xc7\x61\x83\x41\x6f\xb8\xd1\xa2\x9f\x67\x99\xfb\x2c\xdf", - "univ2XIOETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xb5\xbd\xb5\x1f\xdc\x63\x53\x59\x18\x11\x11\x43\x9e\xfe\x27\x99\xbc\x23\x36\xc6", - "univ2XNSETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x01\x96\x21\x44\xd4\x14\x15\xcc\xa0\x72\x90\x0f\xe8\x7b\xbe\x29\x92\xa9\x9f\x10", - "univ2XORETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x31\x85\x62\x6c\x14\xac\xb9\x53\x1d\x19\x56\x0d\xec\xb9\xd3\xe5\xe8\x06\x81\xb1", - "univ2XRTETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x2f\xdb\xad\xf3\xc4\xd5\xa8\x66\x6b\xc0\x66\x45\xb8\x35\x8a\xb8\x03\x99\x6e\x28", - "univ2YFIETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x89\x73\xbe\x44\x02\xbf\x0a\x39\x44\x8f\x41\x9c\x2d\x64\xbd\x35\x91\xdd\x22\x99", - "univ2YFIIETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x17\xe5\xbf\x07\xd6\x96\xea\xf0\xd1\x4c\xaa\x4b\x44\xff\x8a\x1e\x17\xb3\x4d\xe3", - "uniVERI", - 18, - ) - yield ( # address, symbol, decimals - b"\x4d\x2f\x5c\xfb\xa5\x5a\xe4\x12\x22\x11\x82\xd8\x47\x5b\xc8\x57\x99\xa5\x64\x4b", - "uniWBTC", - 18, - ) - yield ( # address, symbol, decimals - b"\x4f\xf7\xfa\x49\x35\x59\xc4\x0a\xbd\x6d\x15\x7a\x0b\xfc\x35\xdf\x68\xd8\xd0\xac", - "uniWCK", - 18, - ) - yield ( # address, symbol, decimals - b"\xa2\x88\x1a\x90\xbf\x33\xf0\x3e\x7a\x3f\x80\x37\x65\xcd\x2e\xd5\xc8\x92\x8d\xfb", - "uniWETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x8d\xe0\xd0\x02\xdc\x83\x47\x8f\x47\x9d\xc3\x1f\x76\xcb\x0a\x8a\xa7\xcc\xea\x17", - "uniXCHF", - 18, - ) - yield ( # address, symbol, decimals - b"\x7b\x6e\x52\x78\xa1\x4d\x53\x18\x57\x1d\x65\xac\xed\x03\x6d\x09\xc9\x98\xc7\x07", - "uniXIO", - 18, - ) - yield ( # address, symbol, decimals - b"\xae\x76\xc8\x4c\x92\x62\xcd\xb9\xab\xc0\xc2\xc8\x88\x8e\x62\xdb\x8e\x22\xa0\xbf", - "uniZRX", - 18, - ) - yield ( # address, symbol, decimals - b"\x6b\xa4\x60\xab\x75\xcd\x2c\x56\x34\x3b\x35\x17\xff\xeb\xa6\x07\x48\x65\x4d\x26", - "UP", - 8, - ) - yield ( # address, symbol, decimals - b"\xc8\x6d\x05\x48\x09\x62\x34\x32\x21\x0c\x10\x7a\xf2\xe3\xf6\x19\xdc\xfb\xf6\x52", - "UPP", - 18, - ) - yield ( # address, symbol, decimals - b"\xd0\x1d\xb7\x3e\x04\x78\x55\xef\xb4\x14\xe6\x20\x20\x98\xc4\xbe\x4c\xd2\x42\x3b", - "UQC", - 18, - ) - yield ( # address, symbol, decimals - b"\xff\x8b\xe4\xb2\x2c\xed\xc4\x40\x59\x1d\xcb\x1e\x64\x1e\xb2\xa0\xdd\x9d\x25\xa5", - "URAC", - 18, - ) - yield ( # address, symbol, decimals - b"\x93\x16\x84\x13\x9f\x75\x6c\x24\xec\x07\x31\xe9\xf7\x4f\xe5\x0e\x55\x48\xdd\xef", - "URB", - 18, - ) - yield ( # address, symbol, decimals - b"\x28\x5f\x58\x51\x06\xd1\x5a\x31\x3e\x7e\x61\x55\xbe\x4c\x55\x57\xd2\xde\xaa\xb1", - "usBAT", - 18, - ) - yield ( # address, symbol, decimals - b"\x07\x75\x39\x37\x1b\xfa\x52\xa4\x19\x4d\xe8\x33\x17\x4d\x85\xce\x21\x8d\xbe\x3e", - "usBAT2x", - 18, - ) - yield ( # address, symbol, decimals - b"\x07\x1b\xad\x91\x3f\xc4\x1e\xd1\x0f\x61\x7c\x8b\xbb\x4d\x12\xa4\xb4\xe5\x44\xc5", - "usBAT3x", - 18, - ) - yield ( # address, symbol, decimals - b"\x20\x22\x29\x79\x11\x7a\x9b\x39\x03\x00\x48\x42\x35\x57\xa6\x1e\xb5\xab\xd6\x81", - "usBAT4x", - 18, - ) - yield ( # address, symbol, decimals - b"\x01\x52\x2e\x6c\x54\x3f\xf0\x4e\x74\x84\x2a\xbd\x0f\x2a\xfe\xcc\x5e\xf5\xc2\x81", - "USC", - 18, - ) - yield ( # address, symbol, decimals - b"\xfb\x0a\xaa\x04\x32\x11\x27\x79\xd9\xac\x48\x3d\x9d\x5e\x39\x61\xec\xe1\x8e\xec", - "USD-G", - 18, - ) - yield ( # address, symbol, decimals - b"\xa0\xb8\x69\x91\xc6\x21\x8b\x36\xc1\xd1\x9d\x4a\x2e\x9e\xb0\xce\x36\x06\xeb\x48", - "USDC", - 6, - ) - yield ( # address, symbol, decimals - b"\xd7\x60\xad\xdf\xb2\x4d\x9c\x01\xfe\x4b\xfe\xa7\x47\x5c\x5e\x36\x36\x68\x40\x58", - "USDM", - 2, - ) - yield ( # address, symbol, decimals - b"\x8e\x87\x0d\x67\xf6\x60\xd9\x5d\x5b\xe5\x30\x38\x0d\x0e\xc0\xbd\x38\x82\x89\xe1", - "USDP", - 18, - ) - yield ( # address, symbol, decimals - b"\xa4\xbd\xb1\x1d\xc0\xa2\xbe\xc8\x8d\x24\xa3\xaa\x1e\x6b\xb1\x72\x01\x11\x2e\xbe", - "USDS", - 6, - ) - yield ( # address, symbol, decimals - b"\xda\xc1\x7f\x95\x8d\x2e\xe5\x23\xa2\x20\x62\x06\x99\x45\x97\xc1\x3d\x83\x1e\xc7", - "USDT", - 6, - ) - yield ( # address, symbol, decimals - b"\xeb\x26\x97\x32\xab\x75\xa6\xfd\x61\xea\x60\xb0\x6f\xe9\x94\xcd\x32\xa8\x35\x49", - "USDx", - 18, - ) - yield ( # address, symbol, decimals - b"\x29\xb9\x72\x3a\x3d\x88\xfe\x4a\x0b\x78\x13\x4f\xd2\x09\x43\x34\x43\xa3\x6b\x23", - "usETH", - 18, - ) - yield ( # address, symbol, decimals - b"\x32\x63\xb8\x5a\x9e\x52\xcd\xae\x86\xe9\xb1\x56\x0e\x2e\x04\xfb\x35\x7c\x42\xac", - "usETH2x", - 18, - ) - yield ( # address, symbol, decimals - b"\x18\xfa\xb5\xaf\xf3\xb3\xbb\x8a\xfb\x08\x40\x86\x1d\x83\x1c\x22\x8c\x1c\xb6\x8f", - "usETH3x", - 18, - ) - yield ( # address, symbol, decimals - b"\x0e\xbf\x28\xc5\x25\x21\x24\xb8\x98\xec\xaa\x41\xa1\x5c\xa4\x0d\xb9\xbf\x2b\xfc", - "usETH4x", - 18, - ) - yield ( # address, symbol, decimals - b"\xa1\x48\xac\x0a\xf7\x8b\x83\xb7\xc2\xcb\xd0\xca\xe9\x3f\xbf\xb5\xdd\xe3\xea\x1a", - "usKNC", - 18, - ) - yield ( # address, symbol, decimals - b"\x41\x75\x0a\xcb\x92\x6b\xde\x7b\xc1\xdf\x6d\x21\x69\x0d\x64\xed\xff\x9f\x20\xe7", - "usKNC2x", - 18, - ) - yield ( # address, symbol, decimals - b"\x40\x52\xea\x0a\x92\xbe\x6a\x3f\xbe\xc8\x3d\xcb\x0c\x96\x26\x43\x77\x12\x78\x05", - "usKNC3x", - 18, - ) - yield ( # address, symbol, decimals - b"\xc8\xcc\x7e\x53\xe3\x5c\xda\x71\xaf\x09\x83\x60\xe8\x00\xe9\xbb\x2e\xe8\x8f\x9e", - "usKNC4x", - 18, - ) - yield ( # address, symbol, decimals - b"\xdb\xb0\x96\x50\x46\xe1\x42\xb4\x30\x6a\xc4\x53\xc7\x70\x0b\xf7\x68\xd6\xac\x33", - "usREP", - 18, - ) - yield ( # address, symbol, decimals - b"\x9d\x94\xca\xfb\x3c\xc6\x7c\x5e\xfe\x66\x0f\xc9\x88\xc5\x1a\xbb\x71\x1c\xb7\xca", - "usREP2x", - 18, - ) - yield ( # address, symbol, decimals - b"\x5a\xd7\xbb\xb4\x8b\x85\x2c\x1c\x79\x8b\xdb\x99\x91\x1c\xbd\x59\xa5\xbf\xac\xfe", - "usREP3x", - 18, - ) - yield ( # address, symbol, decimals - b"\x7e\xe1\x2f\xff\x0a\x8f\x97\x5f\xca\x51\x93\x82\x5c\x21\x56\x12\xa0\xeb\x07\xb7", - "usREP4x", - 18, - ) - yield ( # address, symbol, decimals - b"\x9d\xfc\x72\x4c\x04\xf3\xef\x1b\x9d\x53\x9d\xcd\x0f\x8e\x43\x91\xa8\xb8\x6f\xa1", - "usWBTC", - 18, - ) - yield ( # address, symbol, decimals - b"\x73\x43\x17\x81\x7b\xcf\x72\x54\xe6\x72\x8b\x5a\x44\x8a\x98\x1d\x57\xd0\xa4\xfa", - "usWBTC2x", - 18, - ) - yield ( # address, symbol, decimals - b"\xf7\xf5\x9e\x42\xee\xa2\xf2\xf4\xdb\x6d\x54\xca\x87\xd5\xa1\x71\x11\xae\x1a\x7f", - "usWBTC3x", - 18, - ) - yield ( # address, symbol, decimals - b"\x31\x9a\xcb\xdb\x59\x58\x67\xc1\xdc\x6a\xb9\xc5\x27\x8e\xa9\x37\xac\xdb\xec\x58", - "usWBTC4x", - 18, - ) - yield ( # address, symbol, decimals - b"\x43\xba\xf2\xec\x0c\x42\x36\xb6\x61\xa8\x4f\xd4\x0e\xc0\x76\x54\x6e\x3b\xb9\xfd", - "usZRX", - 18, - ) - yield ( # address, symbol, decimals - b"\xce\xdf\x54\x0d\x15\x8e\xb6\x2d\xfd\xcd\xe8\x39\x8c\x30\x37\xb5\x47\x05\xbc\xeb", - "usZRX2x", - 18, - ) - yield ( # address, symbol, decimals - b"\x90\x32\x14\xd3\xd3\x61\x6d\x8d\xc5\xcc\xb3\xd4\x0a\x43\x5d\xca\x08\xf0\x80\x10", - "usZRX3x", - 18, - ) - yield ( # address, symbol, decimals - b"\xde\x37\xdb\x42\x69\xc6\xdf\xd4\xc8\x1b\x9a\x11\x40\x0d\x1b\xcb\xee\xc0\x65\x15", - "usZRX4x", - 18, - ) - yield ( # address, symbol, decimals - b"\xdc\x9a\xc3\xc2\x0d\x1e\xd0\xb5\x40\xdf\x9b\x1f\xed\xc1\x00\x39\xdf\x13\xf9\x9c", - "UTK", - 18, - ) - yield ( # address, symbol, decimals - b"\x70\xa7\x28\x33\xd6\xbf\x7f\x50\x8c\x82\x24\xce\x59\xea\x1e\xf3\xd0\xea\x3a\x38", - "[deprecated] UTK", - 18, - ) - yield ( # address, symbol, decimals - b"\x9e\x33\x19\x63\x6e\x21\x26\xe3\xc0\xbc\x9e\x31\x34\xae\xc5\xe1\x50\x8a\x46\xc7", - "UTNP", - 18, - ) - yield ( # address, symbol, decimals - b"\x16\xf8\x12\xbe\x7f\xff\x02\xca\xf6\x62\xb8\x5d\x5d\x58\xa5\xda\x65\x72\xd4\xdf", - "UTT", - 8, - ) - yield ( # address, symbol, decimals - b"\x35\x43\x63\x8e\xd4\xa9\x00\x6e\x48\x40\xb1\x05\x94\x42\x71\xbc\xea\x15\x60\x5d", - "UUU", - 18, - ) - yield ( # address, symbol, decimals - b"\x29\x7e\x4e\x5e\x59\xad\x72\xb1\xb0\xa2\xfd\x44\x69\x29\xe7\x61\x17\xbe\x0e\x0a", - "VALOR", - 18, - ) - yield ( # address, symbol, decimals - b"\x6d\xcc\xf9\xc0\xab\x71\xda\xc2\x6b\x7f\x78\x86\xe4\x3a\x2b\x43\x38\x06\xc5\x90", - "VBX", - 18, - ) - yield ( # address, symbol, decimals - b"\x9a\x9b\xb9\xb4\xb1\x1b\xf8\xec\xcf\xf8\x4b\x58\xa6\xcc\xcc\xd4\x05\x8a\x7f\x0d", - "VD", - 8, - ) - yield ( # address, symbol, decimals - b"\x57\xc7\x5e\xcc\xc8\x55\x71\x36\xd3\x26\x19\xa1\x91\xfb\xcd\xc8\x85\x60\xd7\x11", - "VDG", - 0, - ) - yield ( # address, symbol, decimals - b"\x82\xbd\x52\x6b\xdb\x71\x8c\x6d\x4d\xd2\x29\x1e\xd0\x13\xa5\x18\x6c\xae\x2d\xca", - "VDOC", - 18, - ) - yield ( # address, symbol, decimals - b"\x34\x0d\x2b\xde\x5e\xb2\x8c\x1e\xed\x91\xb2\xf7\x90\x72\x3e\x3b\x16\x06\x13\xb7", - "VEE", - 18, - ) - yield ( # address, symbol, decimals - b"\xcb\x84\xd7\x2e\x61\xe3\x83\x76\x7c\x4d\xfe\xb2\xd8\xff\x7f\x4f\xb8\x9a\xbc\x6e", - "VEGA", - 18, - ) - yield ( # address, symbol, decimals - b"\xfa\xde\x17\xa0\x7b\xa3\xb4\x80\xaa\x17\x14\xc3\x72\x4a\x52\xd4\xc5\x7d\x41\x0e", - "VEGAN", - 8, - ) - yield ( # address, symbol, decimals - b"\xeb\xed\x4f\xf9\xfe\x34\x41\x3d\xb8\xfc\x82\x94\x55\x6b\xbd\x15\x28\xa4\xda\xca", - "VENUS", - 3, - ) - yield ( # address, symbol, decimals - b"\x0c\x45\x76\xca\x1c\x36\x58\x68\xe1\x62\x55\x4a\xf8\xe3\x85\xdc\x3e\x7c\x66\xd9", - "veOGV", - 18, - ) - yield ( # address, symbol, decimals - b"\x8f\x34\x70\xa7\x38\x8c\x05\xee\x4e\x7a\xf3\xd0\x1d\x8c\x72\x2b\x0f\xf5\x23\x74", - "VERI", - 18, - ) - yield ( # address, symbol, decimals - b"\x1b\x87\x9d\x38\x12\xf2\xad\xe1\x21\x42\x64\x65\x5b\x47\x39\x10\xe0\xca\xf1\xe6", - "VERSI", - 18, - ) - yield ( # address, symbol, decimals - b"\x2c\x97\x4b\x2d\x0b\xa1\x71\x6e\x64\x4c\x1f\xc5\x99\x82\xa8\x9d\xdd\x2f\xf7\x24", - "VIB", - 18, - ) - yield ( # address, symbol, decimals - b"\xe8\xff\x5c\x9c\x75\xde\xb3\x46\xac\xac\x49\x3c\x46\x3c\x89\x50\xbe\x03\xdf\xba", - "VIBE", - 18, - ) - yield ( # address, symbol, decimals - b"\x88\x24\x48\xf8\x3d\x90\xb2\xbf\x47\x7a\xf2\xea\x79\x32\x7f\xde\xa1\x33\x5d\x93", - "VIBEX", - 18, - ) - yield ( # address, symbol, decimals - b"\x2c\x90\x23\xbb\xc5\x72\xff\x8d\xc1\x22\x8c\x78\x58\xa2\x80\x04\x6e\xa8\xc9\xe5", - "VID", - 18, - ) - yield ( # address, symbol, decimals - b"\x44\x5f\x51\x29\x9e\xf3\x30\x7d\xbd\x75\x03\x6d\xd8\x96\x56\x5f\x5b\x4b\xf7\xa5", - "VIDT", - 18, - ) - yield ( # address, symbol, decimals - b"\xf0\x3f\x8d\x65\xba\xfa\x59\x86\x11\xc3\x49\x51\x24\x09\x3c\x56\xe8\xf6\x38\xf0", - "VIEW", - 18, - ) - yield ( # address, symbol, decimals - b"\xd2\x94\x6b\xe7\x86\xf3\x5c\x3c\xc4\x02\xc2\x9b\x32\x36\x47\xab\xda\x79\x90\x71", - "VIKKY", - 8, - ) - yield ( # address, symbol, decimals - b"\xf3\xe0\x14\xfe\x81\x26\x78\x70\x62\x41\x32\xef\x3a\x64\x6b\x8e\x83\x85\x3a\x96", - "VIN", - 18, - ) - yield ( # address, symbol, decimals - b"\x23\xb7\x5b\xc7\xaa\xf2\x8e\x2d\x66\x28\xc3\xf4\x24\xb3\x88\x2f\x8f\x07\x2a\x3c", - "VIT", - 18, - ) - yield ( # address, symbol, decimals - b"\x1b\x79\x3e\x49\x23\x77\x58\xdb\xd8\xb7\x52\xaf\xc9\xeb\x4b\x32\x9d\x5d\xa0\x16", - "VITE", - 18, - ) - yield ( # address, symbol, decimals - b"\x51\x94\x75\xb3\x16\x53\xe4\x6d\x20\xcd\x09\xf9\xfd\xcf\x3b\x12\xbd\xac\xb4\xf5", - "VIU", - 18, - ) - yield ( # address, symbol, decimals - b"\xff\x2c\xf2\xa7\x44\x45\xa1\x15\x46\x8e\x84\xfb\x42\xed\xfe\x1d\x9d\x73\xcf\x2b", - "Viz", - 8, - ) - yield ( # address, symbol, decimals - b"\x92\x2a\xc4\x73\xa3\xcc\x24\x1f\xd3\xa0\x04\x9e\xd1\x45\x36\x45\x2d\x58\xd7\x3c", - "VLD", - 18, - ) - yield ( # address, symbol, decimals - b"\xd8\x11\x25\x0b\x7f\xe8\x31\x50\xcb\xb3\xd7\x0a\x89\x2f\xce\x61\x89\xfb\x3e\x08", - "VMC", - 18, - ) - yield ( # address, symbol, decimals - b"\x00\xea\x6f\x91\xb0\x0e\x08\x0e\x81\x6f\x1b\xb2\xfa\xd7\x1b\x0f\xe1\x52\x89\x83", - "VN", - 18, - ) - yield ( # address, symbol, decimals - b"\xc6\x50\xf5\x51\x4a\xe1\xa3\xa2\x79\x30\x92\x21\x45\xce\x49\xe8\xa9\x1b\x91\xab", - "VNTY", - 18, - ) - yield ( # address, symbol, decimals - b"\x00\xfc\x27\x0c\x9c\xc1\x3e\x87\x8a\xb5\x36\x3d\x00\x35\x4b\xeb\xf6\xf0\x5c\x15", - "VNXLU", - 18, - ) - yield ( # address, symbol, decimals - b"\xc3\xbc\x9e\xb7\x1f\x75\xec\x43\x9a\x6b\x6c\x8e\x8b\x74\x6f\xcf\x5b\x62\xf7\x03", - "VOC", - 18, - ) - yield ( # address, symbol, decimals - b"\x83\xee\xa0\x0d\x83\x8f\x92\xde\xc4\xd1\x47\x56\x97\xb9\xf4\xd3\x53\x7b\x56\xe3", - "VOISE", - 8, - ) - yield ( # address, symbol, decimals - b"\x7d\x51\x21\x50\x51\x49\x06\x5b\x56\x2c\x78\x9a\x01\x45\xed\x75\x0e\x6e\x8c\xdd", - "VR", - 18, - ) - yield ( # address, symbol, decimals - b"\xf7\x22\xb0\x19\x10\xf9\x3b\x84\xed\xa9\xca\x12\x8b\x9f\x05\x82\x1a\x41\xea\xe1", - "VRE", - 18, - ) - yield ( # address, symbol, decimals - b"\x10\xbc\x51\x8c\x32\xfb\xae\x5e\x38\xec\xb5\x0a\x61\x21\x60\x57\x1b\xd8\x1e\x44", - "VRO", - 8, - ) - yield ( # address, symbol, decimals - b"\xba\x3a\x79\xd7\x58\xf1\x9e\xfe\x58\x82\x47\x38\x87\x54\xb8\xe4\xd6\xed\xda\x81", - "VSF", - 18, - ) - yield ( # address, symbol, decimals - b"\x5c\x54\x3e\x7a\xe0\xa1\x10\x4f\x78\x40\x6c\x34\x0e\x9c\x64\xfd\x9f\xce\x51\x70", - "VSL", - 18, - ) - yield ( # address, symbol, decimals - b"\x4b\x96\xbf\x1f\xef\x93\xa2\x16\x91\x4f\xc8\x43\xd8\x12\x07\xa0\x27\xce\x52\xb3", - "VUU", - 18, - ) - yield ( # address, symbol, decimals - b"\x97\x20\xb4\x67\xa7\x10\x38\x2a\x23\x2a\x32\xf5\x40\xbd\xce\xd7\xd6\x62\xa1\x0b", - "VZT", - 18, - ) - yield ( # address, symbol, decimals - b"\x4b\xbb\xc5\x7a\xf2\x70\x13\x8e\xf2\xff\x2c\x50\xdb\xfa\xd6\x84\xe9\xe0\xe6\x04", - "WAB", - 18, - ) - yield ( # address, symbol, decimals - b"\x28\x6b\xda\x14\x13\xa2\xdf\x81\x73\x1d\x49\x30\xce\x2f\x86\x2a\x35\xa6\x09\xfe", - "WABI", - 18, - ) - yield ( # address, symbol, decimals - b"\x9f\x65\x13\xed\x2b\x0d\xe8\x92\x18\xe9\x7d\xb4\xa5\x11\x5b\xa0\x4b\xe4\x49\xf1", - "WAK", - 18, - ) - yield ( # address, symbol, decimals - b"\x82\x9a\x4c\xa1\x30\x33\x83\xf1\x08\x2b\x6b\x1f\xb9\x37\x11\x6e\x4b\x3b\x56\x05", - "WATT", - 18, - ) - yield ( # address, symbol, decimals - b"\x39\xbb\x25\x9f\x66\xe1\xc5\x9d\x5a\xbe\xf8\x83\x75\x97\x9b\x4d\x20\xd9\x80\x22", - "WAX", - 8, - ) - yield ( # address, symbol, decimals - b"\x21\x7f\x96\x73\x7b\x39\xf9\xb9\x21\x17\x67\xcb\x6a\xef\x5d\xba\xe2\xfe\x94\x02", - "WAY", - 8, - ) - yield ( # address, symbol, decimals - b"\x74\x95\x1b\x67\x7d\xe3\x2d\x59\x6e\xe8\x51\xa2\x33\x33\x69\x26\xe6\xa2\xcd\x09", - "WBA", - 7, - ) - yield ( # address, symbol, decimals - b"\x22\x60\xfa\xc5\xe5\x54\x2a\x77\x3a\xa4\x4f\xbc\xfe\xdf\x7c\x19\x3b\xc2\xc5\x99", - "WBTC", - 8, - ) - yield ( # address, symbol, decimals - b"\xbb\x97\xe3\x81\xf1\xd1\xe9\x4f\xfa\x2a\x58\x44\xf6\x87\x5e\x61\x46\x98\x10\x09", - "WBX", - 18, - ) - yield ( # address, symbol, decimals - b"\x09\xfe\x5f\x02\x36\xf0\xea\x5d\x93\x01\x97\xdc\xe2\x54\xd7\x7b\x04\x12\x80\x75", - "WCK", - 18, - ) - yield ( # address, symbol, decimals - b"\x8f\x93\x6f\xe0\xfa\xf0\x60\x4c\x9c\x0e\xf2\x40\x6b\xde\x0a\x65\x36\x55\x15\xd6", - "WCN", - 18, - ) - yield ( # address, symbol, decimals - b"\x6a\x0a\x97\xe4\x7d\x15\xaa\xd1\xd1\x32\xa1\xac\x79\xa4\x80\xe3\xf2\x07\x90\x63", - "WCT", - 18, - ) - yield ( # address, symbol, decimals - b"\x8a\xa9\x38\x1b\x25\x44\xb4\x8c\x26\xf3\xb8\x50\xf6\xe0\x7e\x2c\x51\x61\xeb\x3e", - "WDOGE", - 8, - ) - yield ( # address, symbol, decimals - b"\x84\x0f\xe7\x5a\xbf\xad\xc0\xf2\xd5\x40\x37\x82\x95\x71\xb2\x78\x2e\x91\x9c\xe4", - "WEB", - 18, - ) - yield ( # address, symbol, decimals - b"\xc0\x2a\xaa\x39\xb2\x23\xfe\x8d\x0a\x0e\x5c\x4f\x27\xea\xd9\x08\x3c\x75\x6c\xc2", - "WETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xf4\xfe\x95\x60\x38\x81\xd0\xe0\x79\x54\xfd\x76\x05\xe0\xe9\xa9\x16\xe4\x2c\x44", - "WHEN", - 18, - ) - yield ( # address, symbol, decimals - b"\x3f\x17\xdd\x47\x6f\xaf\x0a\x48\x55\x57\x2f\x0b\x6e\xd5\x11\x5d\x9b\xba\x22\xad", - "WIB", - 18, - ) - yield ( # address, symbol, decimals - b"\xc9\x8a\x91\x0e\xde\x52\xe7\xd5\x30\x85\x25\x84\x5f\x19\xe1\x74\x70\xdb\xcc\xf7", - "WILC", - 8, - ) - yield ( # address, symbol, decimals - b"\xd3\xc0\x07\x72\xb2\x4d\x99\x7a\x81\x22\x49\xca\x63\x7a\x92\x1e\x81\x35\x77\x01", - "WILD", - 18, - ) - yield ( # address, symbol, decimals - b"\x89\x93\x38\xb8\x4d\x25\xac\x50\x5a\x33\x2a\xdc\xe7\x40\x2d\x69\x7d\x94\x74\x94", - "WIN", - 8, - ) - yield ( # address, symbol, decimals - b"\x66\x70\x88\xb2\x12\xce\x3d\x06\xa1\xb5\x53\xa7\x22\x1e\x1f\xd1\x90\x00\xd9\xaf", - "WINGS", - 18, - ) - yield ( # address, symbol, decimals - b"\x1b\x22\xc3\x2c\xd9\x36\xcb\x97\xc2\x8c\x56\x90\xa0\x69\x5a\x82\xab\xf6\x88\xe6", - "WISH", - 18, - ) - yield ( # address, symbol, decimals - b"\xd6\x4d\xee\xa5\xf2\x49\x34\xe3\xa1\xaa\x75\x29\x12\xae\xe8\xff\xd8\x30\x0c\x3f", - "WLKR", - 18, - ) - yield ( # address, symbol, decimals - b"\xc9\x02\x06\xab\x21\xbd\xbf\x5e\x92\xaf\xf4\xe6\xb5\xf0\x97\xb6\x5b\x0e\xcc\x06", - "WLKRR", - 18, - ) - yield ( # address, symbol, decimals - b"\x68\x5e\xd3\x90\xb1\x6a\xc9\xdf\x9a\xb9\x70\x72\x94\xa4\x2a\x10\x7c\xfb\x62\xaf", - "WMA", - 18, - ) - yield ( # address, symbol, decimals - b"\xbf\xbe\x53\x32\xf1\x72\xd7\x78\x11\xbc\x6c\x27\x28\x44\xf3\xe5\x4a\x7b\x23\xbb", - "WMK", - 18, - ) - yield ( # address, symbol, decimals - b"\xd7\x3a\x66\xb8\xfb\x26\xbe\x8b\x0a\xcd\x7c\x52\xbd\x32\x50\x54\xac\x7d\x46\x8b", - "WNK", - 18, - ) - yield ( # address, symbol, decimals - b"\xf9\xd9\x70\x2d\x03\x14\x07\xf4\x25\xa4\x41\x26\x82\xfd\xc5\x6b\x07\xd0\x52\x62", - "WOC", - 0, - ) - yield ( # address, symbol, decimals - b"\xd2\xaf\x83\x0e\x8c\xbd\xfe\xd6\xcc\x11\xba\xb6\x97\xbb\x25\x49\x6e\xd6\xfa\x62", - "WOUSD", - 18, - ) - yield ( # address, symbol, decimals - b"\x62\x08\x72\x45\x08\x71\x25\xd3\xdb\x5b\x9a\x3d\x71\x3d\x78\xe7\xbb\xc3\x1e\x54", - "WPC", - 18, - ) - yield ( # address, symbol, decimals - b"\x4c\xf4\x88\x38\x7f\x03\x5f\xf0\x8c\x37\x15\x15\x56\x2c\xba\x71\x2f\x90\x15\xd4", - "WPR", - 18, - ) - yield ( # address, symbol, decimals - b"\x72\xad\xad\xb4\x47\x78\x4d\xd7\xab\x1f\x47\x24\x67\x75\x0f\xc4\x85\xe4\xcb\x2d", - "WRC", - 6, - ) - yield ( # address, symbol, decimals - b"\x71\xe8\xd7\x4f\xf1\xc9\x23\xe3\x69\xd0\xe7\x0d\xfb\x09\x86\x66\x29\xc4\xdd\x35", - "WRK", - 18, - ) - yield ( # address, symbol, decimals - b"\x1d\x9a\x3c\xef\x66\xb0\x1d\x44\x00\x3b\x9d\xb0\xe0\x0e\xc3\xfd\x44\x74\x69\x88", - "WSS", - 18, - ) - yield ( # address, symbol, decimals - b"\x84\x11\x9c\xb3\x3e\x8f\x59\x0d\x75\xc2\xd6\xea\x4e\x6b\x07\x41\xa7\x49\x4e\xda", - "WTT", - 0, - ) - yield ( # address, symbol, decimals - b"\x8a\x91\xee\xcd\x3f\x6b\x6b\x78\x33\xfd\x69\x61\xe7\xf6\x54\xc3\xd0\x16\xa0\x68", - "WWX", - 18, - ) - yield ( # address, symbol, decimals - b"\xd8\x95\x0f\xde\xaa\x10\x30\x4b\x7a\x7f\xd0\x3a\x2f\xc6\x6b\xc3\x9f\x3c\x71\x1a", - "WYS", - 18, - ) - yield ( # address, symbol, decimals - b"\x05\x60\x17\xc5\x5a\xe7\xae\x32\xd1\x2a\xef\x7c\x67\x9d\xf8\x3a\x85\xca\x75\xff", - "WYV", - 18, - ) - yield ( # address, symbol, decimals - b"\x91\x0d\xfc\x18\xd6\xea\x3d\x6a\x71\x24\xa6\xf8\xb5\x45\x8f\x28\x10\x60\xfa\x4c", - "X8X", - 18, - ) - yield ( # address, symbol, decimals - b"\xf9\x11\xa7\xec\x46\xa2\xc6\xfa\x49\x19\x32\x12\xfe\x4a\x2a\x9b\x95\x85\x1c\x27", - "XAMP", - 9, - ) - yield ( # address, symbol, decimals - b"\x4d\xf8\x12\xf6\x06\x4d\xef\x1e\x5e\x02\x9f\x1c\xa8\x58\x77\x7c\xc9\x8d\x2d\x81", - "XAUR", - 8, - ) - yield ( # address, symbol, decimals - b"\x49\xae\xc0\x75\x2e\x68\xd0\x28\x2d\xb5\x44\xc6\x77\xf6\xba\x40\x7b\xa1\x7e\xd7", - "XBL", - 18, - ) - yield ( # address, symbol, decimals - b"\x28\xde\xe0\x1d\x53\xfe\xd0\xed\xf5\xf6\xe3\x10\xbf\x8e\xf9\x31\x15\x13\xae\x40", - "XBP", - 18, - ) - yield ( # address, symbol, decimals - b"\x4d\x82\x9f\x8c\x92\xa6\x69\x1c\x56\x30\x0d\x02\x0c\x9e\x0d\xb9\x84\xcf\xe2\xba", - "XCC", - 18, - ) - yield ( # address, symbol, decimals - b"\xb4\x27\x20\x71\xec\xad\xd6\x9d\x93\x3a\xdc\xd1\x9c\xa9\x9f\xe8\x06\x64\xfc\x08", - "XCHF", - 18, - ) - yield ( # address, symbol, decimals - b"\x08\x43\x97\x1b\x4a\xc6\xe8\x42\xa5\x18\xaa\x18\x4e\x02\x71\xd8\x8b\x5c\xb7\x4f", - "XCL", - 8, - ) - yield ( # address, symbol, decimals - b"\x1e\x26\xb3\xd0\x7e\x57\xf4\x53\xca\xe3\x0f\x7d\xdd\x2f\x94\x5f\x5b\xf3\xef\x33", - "XCLR", - 8, - ) - yield ( # address, symbol, decimals - b"\x0c\xf0\xee\x63\x78\x8a\x08\x49\xfe\x52\x97\xf3\x40\x7f\x70\x1e\x12\x2c\xc0\x23", - "XDATA", - 18, - ) - yield ( # address, symbol, decimals - b"\x41\xab\x1b\x6f\xcb\xb2\xfa\x9d\xce\xd8\x1a\xcb\xde\xc1\x3e\xa6\x31\x5f\x2b\xf2", - "XDCE", - 18, - ) - yield ( # address, symbol, decimals - b"\x7c\x5c\xf2\xf6\x24\x18\x2d\x6b\x01\x94\x70\xc7\xcf\xff\x8a\xd2\x7a\xab\x51\xa8", - "xDOT", - 18, - ) - yield ( # address, symbol, decimals - b"\xf7\x5a\xac\xb3\xc9\xab\x1b\x14\xc0\x1c\x88\x40\x37\x0a\xc2\xf2\xb3\x47\x79\xd3", - "xEDG", - 18, - ) - yield ( # address, symbol, decimals - b"\xa0\x17\xac\x5f\xac\x59\x41\xf9\x50\x10\xb1\x25\x70\xb8\x12\xc9\x74\x46\x9c\x2c", - "XES", - 18, - ) - yield ( # address, symbol, decimals - b"\x05\x4c\x64\x74\x1d\xba\xfd\xc1\x97\x84\x50\x54\x94\x02\x98\x23\xd8\x9c\x3b\x13", - "XET", - 8, - ) - yield ( # address, symbol, decimals - b"\x16\xaf\x5b\xfb\x4a\xe7\xe4\x75\xb9\xad\xc3\xbf\x5c\xb2\xf1\xe6\xa5\x0d\x79\x40", - "XFS", - 8, - ) - yield ( # address, symbol, decimals - b"\xf6\xb6\xaa\x0e\xf0\xf5\xed\xc2\xc1\xc5\xd9\x25\x47\x7f\x97\xea\xf6\x63\x03\xe7", - "XGG", - 8, - ) - yield ( # address, symbol, decimals - b"\x53\x3e\xf0\x98\x4b\x2f\xaa\x22\x7a\xcc\x62\x0c\x67\xcc\xe1\x2a\xa3\x9c\xd8\xcd", - "XGM", - 8, - ) - yield ( # address, symbol, decimals - b"\xd8\x5d\xaf\x0c\x8b\x54\xd8\xbc\xec\x96\xcf\xb9\x07\x31\xb8\x85\x1f\x98\x57\x2e", - "xGRAM", - 18, - ) - yield ( # address, symbol, decimals - b"\x30\xf4\xa3\xe0\xab\x7a\x76\x73\x3d\x8b\x60\xb8\x9d\xd9\x3c\x3d\x0b\x4c\x9e\x2f", - "XGT", - 18, - ) - yield ( # address, symbol, decimals - b"\x14\x7c\x91\x30\xc5\x80\x93\x67\xc5\xf2\xda\x7b\xe0\xd6\x35\x5d\x27\x95\xb0\x81", - "xHNS", - 18, - ) - yield ( # address, symbol, decimals - b"\xd3\xc6\x25\xf5\x4d\xec\x64\x7d\xb8\x78\x0d\xbb\xe0\xe8\x80\xef\x21\xba\x43\x29", - "XHT", - 18, - ) - yield ( # address, symbol, decimals - b"\xb1\x10\xec\x7b\x1d\xcb\x8f\xab\x8d\xed\xbf\x28\xf5\x3b\xc6\x3e\xa5\xbe\xdd\x84", - "XID", - 8, - ) - yield ( # address, symbol, decimals - b"\x0f\x7f\x96\x16\x48\xae\x6d\xb4\x3c\x75\x66\x3a\xc7\xe5\x41\x4e\xb7\x9b\x57\x04", - "XIO", - 18, - ) - yield ( # address, symbol, decimals - b"\xfb\x96\xa8\xd7\xf1\xd7\xe1\xd7\xbc\xe0\x39\x03\xe4\x9f\x45\xb1\x23\x50\x1e\x26", - "xKDA", - 18, - ) - yield ( # address, symbol, decimals - b"\x2d\xdf\x7e\x8f\x8e\x40\x6a\xcc\x99\x9c\x88\x27\x09\x2d\x15\x4b\x67\xcd\x41\xfa", - "xKLAY", - 18, - ) - yield ( # address, symbol, decimals - b"\x1d\x08\x6b\x86\x8d\x78\x04\x06\x35\xcb\x86\x00\xba\x73\x3f\x12\xdb\x48\xcb\x42", - "XLX", - 18, - ) - yield ( # address, symbol, decimals - b"\x44\x44\x9f\xa4\xd6\x07\xf8\x07\xd1\xed\x4a\x69\xad\x94\x29\x71\x72\x83\x91\xc8", - "XMCT", - 18, - ) - yield ( # address, symbol, decimals - b"\xbd\x7d\x6a\x21\x83\x33\x5e\xa2\x5a\xf2\xaf\x22\xc1\xf1\x69\xfb\x0f\x63\x95\xf7", - "xMOBILECOIN", - 18, - ) - yield ( # address, symbol, decimals - b"\x0f\x8c\x45\xb8\x96\x78\x4a\x1e\x40\x85\x26\xb9\x30\x05\x19\xef\x86\x60\x20\x9c", - "XMX", - 8, - ) - yield ( # address, symbol, decimals - b"\xbc\x86\x72\x7e\x77\x0d\xe6\x8b\x10\x60\xc9\x1f\x6b\xb6\x94\x5c\x73\xe1\x03\x88", - "XNK", - 18, - ) - yield ( # address, symbol, decimals - b"\xab\x95\xe9\x15\xc1\x23\xfd\xed\x5b\xdf\xb6\x32\x5e\x35\xef\x55\x15\xf1\xea\x69", - "XNN", - 18, - ) - yield ( # address, symbol, decimals - b"\x57\x2e\x6f\x31\x80\x56\xba\x0c\x5d\x47\xa4\x22\x65\x31\x13\x84\x3d\x25\x06\x91", - "XNT", - 0, - ) - yield ( # address, symbol, decimals - b"\x46\xf6\xdf\x27\xe4\x72\xec\x0c\x94\x9b\x8d\x33\x59\xa2\x81\x4e\x89\xe2\x90\xa6", - "xNU", - 18, - ) - yield ( # address, symbol, decimals - b"\x15\x3e\xd9\xcc\x1b\x79\x29\x79\xd2\xbd\xe0\xbb\xf4\x5c\xc2\xa7\xe4\x36\xa5\xf9", - "XOV", - 18, - ) - yield ( # address, symbol, decimals - b"\x74\x4e\xc1\xd4\x55\x45\xdc\xeb\xb4\x5f\xaa\x14\x2f\xa9\xe1\xb9\xd8\x6d\x45\x27", - "xOXT", - 18, - ) - yield ( # address, symbol, decimals - b"\x90\x52\x8a\xeb\x3a\x2b\x73\x6b\x78\x0f\xd1\xb6\xc4\x78\xbb\x7e\x1d\x64\x31\x70", - "XPA", - 18, - ) - yield ( # address, symbol, decimals - b"\xbb\x1f\xa4\xfd\xeb\x34\x59\x73\x3b\xf6\x7e\xbc\x6f\x89\x30\x03\xfa\x97\x6a\x82", - "XPAT", - 18, - ) - yield ( # address, symbol, decimals - b"\xbc\x7e\xd0\xc8\xcf\x98\x6a\xe6\x23\x37\xfc\x8d\xf3\xb0\x2c\x6e\xc8\x73\x10\xed", - "XPAY", - 18, - ) - yield ( # address, symbol, decimals - b"\xd7\xef\xb0\x0d\x12\xc2\xc1\x31\x31\xfd\x31\x93\x36\xfd\xf9\x52\x52\x5d\xa2\xaf", - "XPR", - 4, - ) - yield ( # address, symbol, decimals - b"\x08\xaa\x0e\xd0\x04\x07\x36\xdd\x28\xd4\xc8\xb1\x6a\xb4\x53\xb3\x68\x24\x8d\x19", - "XPT", - 18, - ) - yield ( # address, symbol, decimals - b"\xb2\x47\x54\xbe\x79\x28\x15\x53\xdc\x1a\xdc\x16\x0d\xdf\x5c\xd9\xb7\x43\x61\xa4", - "XRL", - 9, - ) - yield ( # address, symbol, decimals - b"\x0f\x51\x3f\xfb\x49\x26\xff\x82\xd7\xf6\x0a\x05\x06\x90\x47\xac\xa2\x95\xc4\x13", - "XSC", - 18, - ) - yield ( # address, symbol, decimals - b"\x70\xe8\xde\x73\xce\x53\x8d\xa2\xbe\xed\x35\xd1\x41\x87\xf6\x95\x9a\x8e\xca\x96", - "XSGD", - 6, - ) - yield ( # address, symbol, decimals - b"\x22\xc4\x21\xba\x47\x17\xed\xaf\x6b\x6b\xda\x42\x42\x07\xa7\x33\x5e\x8f\x0e\x52", - "xSOL", - 18, - ) - yield ( # address, symbol, decimals - b"\x55\x29\x6f\x69\xf4\x0e\xa6\xd2\x0e\x47\x85\x33\xc1\x5a\x6b\x08\xb6\x54\xe7\x58", - "XYO", - 18, - ) - yield ( # address, symbol, decimals - b"\x0e\x22\x98\xe3\xb3\x39\x0e\x3b\x94\x5a\x54\x56\xfb\xf5\x9e\xcc\x3f\x55\xda\x16", - "YAM", - 18, - ) - yield ( # address, symbol, decimals - b"\xab\xa8\xca\xc6\x86\x6b\x83\xae\x4e\xec\x97\xdd\x07\xed\x25\x42\x82\xf6\xad\x8a", - "YAMv2", - 24, - ) - yield ( # address, symbol, decimals - b"\x92\x21\x05\xfa\xd8\x15\x3f\x51\x6b\xcf\xb8\x29\xf5\x6d\xc0\x97\xa0\xe1\xd7\x05", - "YEE", - 18, - ) - yield ( # address, symbol, decimals - b"\x0b\xc5\x29\xc0\x0c\x64\x01\xae\xf6\xd2\x20\xbe\x8c\x6e\xa1\x66\x7f\x6a\xd9\x3e", - "YFI", - 18, - ) - yield ( # address, symbol, decimals - b"\xa1\xd0\xe2\x15\xa2\x3d\x70\x30\x84\x2f\xc6\x7c\xe5\x82\xa6\xaf\xa3\xcc\xab\x83", - "YFII", - 18, - ) - yield ( # address, symbol, decimals - b"\x45\xf2\x4b\xae\xef\x26\x8b\xb6\xd6\x3a\xee\x51\x29\x01\x5d\x69\x70\x2b\xcd\xfa", - "YFV", - 18, - ) - yield ( # address, symbol, decimals - b"\x1b\xc7\xc1\xde\x0a\xc6\xef\x4f\xde\xc3\x5c\x05\x30\x30\xd9\x0c\xf5\x4c\x7e\x9a", - "YNN", - 18, - ) - yield ( # address, symbol, decimals - b"\x3d\x37\x14\x13\xdd\x54\x89\xf3\xa0\x4c\x07\xc0\xc2\xce\x36\x9c\x20\x98\x6c\xeb", - "YOUC", - 10, - ) - yield ( # address, symbol, decimals - b"\xcb\xea\xec\x69\x94\x31\x85\x7f\xdb\x4d\x37\xad\xdb\xbd\xc2\x0e\x13\x2d\x49\x03", - "YOYOW", - 18, - ) - yield ( # address, symbol, decimals - b"\x53\x45\x46\xc4\x90\xa4\xed\x2a\x9d\x0c\x35\x55\x44\x7b\xb9\xb4\xb0\x1b\xcb\x9e", - "YTRO", - 17, - ) - yield ( # address, symbol, decimals - b"\x67\x81\xa0\xf8\x4c\x7e\x9e\x84\x6d\xcb\x84\xa9\xa5\xbd\x49\x33\x30\x67\xb1\x04", - "ZAP", - 18, - ) - yield ( # address, symbol, decimals - b"\xb9\xef\x77\x0b\x6a\x5e\x12\xe4\x59\x83\xc5\xd8\x05\x45\x25\x8a\xa3\x8f\x3b\x78", - "ZCN", - 10, - ) - yield ( # address, symbol, decimals - b"\x20\x08\xe3\x05\x7b\xd7\x34\xe1\x0a\xd1\x3c\x9e\xae\x45\xff\x13\x2a\xbc\x17\x22", - "ZCO", - 8, - ) - yield ( # address, symbol, decimals - b"\x7a\x41\xe0\x51\x7a\x5e\xca\x4f\xdb\xc7\xfb\xeb\xa4\xd4\xc4\x7b\x9f\xf6\xdc\x63", - "ZCS", - 18, - ) - yield ( # address, symbol, decimals - b"\x7a\x28\x10\xd3\xd8\x59\xed\x03\xed\xe5\x23\xeb\x80\x1a\x3b\x43\xb5\xe8\x97\x9c", - "ZDC", - 18, - ) - yield ( # address, symbol, decimals - b"\x2e\x59\xd1\x47\x96\x2e\x2b\xb3\xfb\xdc\x52\xdc\x18\xcf\xba\x26\x53\xc0\x6c\xcc", - "ZENI", - 18, - ) - yield ( # address, symbol, decimals - b"\x81\x88\xe5\x1b\xc6\x78\xf0\x07\x05\x31\xf0\xe7\x82\x71\x8d\xf0\x02\x74\x52\xde", - "ZERA", - 8, - ) - yield ( # address, symbol, decimals - b"\xe7\xe4\x27\x9b\x80\xd3\x19\xed\xe2\x88\x98\x55\x13\x5a\x22\x02\x1b\xaf\x09\x07", - "ZEUS", - 18, - ) - yield ( # address, symbol, decimals - b"\x4a\xac\x46\x1c\x86\xab\xfa\x71\xe9\xd0\x0d\x9a\x2c\xde\x8d\x74\xe4\xe1\xae\xea", - "ZINC", - 18, - ) - yield ( # address, symbol, decimals - b"\xa9\xd2\x92\x7d\x3a\x04\x30\x9e\x00\x8b\x6a\xf6\xe2\xe2\x82\xae\x29\x52\xe7\xfd", - "ZIP", - 18, - ) - yield ( # address, symbol, decimals - b"\xed\xd7\xc9\x4f\xd7\xb4\x97\x1b\x91\x6d\x15\x06\x7b\xc4\x54\xb9\xe1\xba\xd9\x80", - "ZIPT", - 18, - ) - yield ( # address, symbol, decimals - b"\xf3\xc0\x92\xca\x8c\xd6\xd3\xd4\xca\x00\x4d\xc1\xd0\xf1\xfe\x8c\xca\xb5\x35\x99", - "ZIX", - 18, - ) - yield ( # address, symbol, decimals - b"\xfd\x89\x71\xd5\xe8\xe1\x74\x0c\xe2\xd0\xa8\x40\x95\xfc\xa4\xde\x72\x9d\x0c\x16", - "ZLA", - 18, - ) - yield ( # address, symbol, decimals - b"\xe2\x5f\xaa\xb5\x82\x1c\xe7\x0b\xa4\x17\x9a\x70\xc1\xd4\x81\xba\x45\xb9\xd0\xc9", - "ZMAN", - 8, - ) - yield ( # address, symbol, decimals - b"\x55\x4f\xfc\x77\xf4\x25\x1a\x9f\xb3\xc0\xe3\x59\x0a\x6a\x20\x5f\x8d\x4e\x06\x7d", - "ZMN", - 18, - ) - yield ( # address, symbol, decimals - b"\xb5\xb8\xf5\x61\x6f\xe4\x2d\x5c\xec\xa3\xe8\x7f\x3f\xdd\xbd\xd8\xf4\x96\xd7\x60", - "ZPR", - 18, - ) - yield ( # address, symbol, decimals - b"\xe4\x1d\x24\x89\x57\x1d\x32\x21\x89\x24\x6d\xaf\xa5\xeb\xde\x1f\x46\x99\xf4\x98", - "ZRX", - 18, - ) - yield ( # address, symbol, decimals - b"\xe3\x86\xb1\x39\xed\x37\x15\xca\x4b\x18\xfd\x52\x67\x1b\xdc\xea\x1c\xdf\xe4\xb1", - "ZST", - 8, - ) - yield ( # address, symbol, decimals - b"\xe8\xf9\xfa\x97\x7e\xa5\x85\x59\x1d\x9f\x39\x46\x81\x31\x8c\x16\x55\x25\x77\xfb", - "ZTX", - 18, - ) - yield ( # address, symbol, decimals - b"\x83\xe2\xbe\x8d\x11\x4f\x96\x61\x22\x13\x84\xb3\xa5\x0d\x24\xb9\x6a\x56\x53\xf5", - "ZXC", - 18, - ) - if chain_id == 3: - yield ( # address, symbol, decimals - b"\x95\xd7\x32\x1e\xdc\xe5\x19\x41\x9b\xa1\xdb\xc6\x0a\x89\xba\xfb\xf5\x5e\xac\x0d", - "*PLASMA", - 6, - ) - yield ( # address, symbol, decimals - b"\xa1\xba\xcc\xa0\xe1\x2d\x40\x91\xec\x1f\x92\xe7\xca\xe3\x39\x4c\xc9\x85\x4d\x3d", - "dqr30", - 18, - ) - yield ( # address, symbol, decimals - b"\x6f\x95\xa3\xb6\x82\xf8\xe9\xaa\xcc\x86\xd0\x57\xa6\xdf\x88\xa0\xe6\x81\x45\xa8", - "ILSC", - 2, - ) - yield ( # address, symbol, decimals - b"\x4c\x57\x2f\xbc\x03\xd4\xa2\xb6\x83\xcf\x4f\x10\xff\xdc\xaf\xd0\x08\x85\xe1\x08", - "MEWV5", - 9, - ) - yield ( # address, symbol, decimals - b"\xfd\x5a\x69\xa1\x30\x95\x95\xff\x51\x21\x55\x3f\x52\xc8\xa5\xb2\xb1\xb3\x10\x31", - "NONE", - 0, - ) - yield ( # address, symbol, decimals - b"\xaa\x1d\x9d\x07\x88\xda\xca\x9a\x30\x11\x1d\x12\xaa\x0d\x98\x09\x0f\x02\xea\x30", - "RCL", - 18, - ) - yield ( # address, symbol, decimals - b"\x73\x14\xdc\x4d\x77\x94\xb5\xe7\x89\x42\x12\xca\x15\x56\xae\x8e\x3d\xe5\x86\x21", - "RLC", - 9, - ) - if chain_id == 4: - yield ( # address, symbol, decimals - b"\x39\x8a\x7a\x69\xf3\xc5\x91\x81\xa1\xff\xe3\x4b\xed\x11\xdc\xb5\xdf\x86\x3a\x8a", - "AETH", - 18, - ) - yield ( # address, symbol, decimals - b"\xe2\x78\x26\xee\x77\x8b\x6f\x78\xa4\x9a\x68\x6d\xa7\xd6\x4f\x6e\x7b\x08\x4a\x4f", - "BHNT", - 0, - ) - yield ( # address, symbol, decimals - b"\x8b\x65\xd4\xb7\xee\x3f\xff\xa9\x86\xc5\x77\xf0\xf4\xb7\x0a\x21\xba\xe3\xdd\x54", - "CTGA", - 18, - ) - yield ( # address, symbol, decimals - b"\x27\x5a\x5b\x34\x65\x99\xb5\x69\x17\xe7\xb1\xc9\xde\x01\x9d\xcf\x9e\xad\x86\x1a", - "KC", - 18, - ) - yield ( # address, symbol, decimals - b"\x64\x75\xa7\xfa\x6e\xd2\xd5\x18\x0f\x0e\x0a\x07\xc2\xd9\x51\xd1\x2c\x0e\xdb\x91", - "NONE", - 0, - ) - yield ( # address, symbol, decimals - b"\x12\xfe\x17\x4c\x09\x7f\x6b\x3e\x87\x6b\x3b\x06\x0c\x90\x61\xf4\xb9\xde\xbb\x80", - "PPD", - 18, - ) - yield ( # address, symbol, decimals - b"\x2d\x42\x7d\x9e\x53\x5e\x43\x82\x60\x6b\x93\x29\x0d\xcc\x13\xa5\xe9\xa6\x94\xbe", - "qwe", - 18, - ) - yield ( # address, symbol, decimals - b"\x36\x15\x75\x70\x11\x11\x25\x60\x52\x15\x36\x25\x8c\x1e\x73\x25\xae\x3b\x48\xae", - "RDN", - 18, - ) - yield ( # address, symbol, decimals - b"\xf1\xe6\xad\x3a\x7e\xf0\xc8\x6c\x91\x5f\x0f\xed\xf8\x0e\xd8\x51\x80\x9b\xea\x90", - "RLC", - 9, - ) - yield ( # address, symbol, decimals - b"\x0a\x05\x7a\x87\xce\x9c\x56\xd7\xe3\x36\xb4\x17\xc7\x9c\xf3\x0e\x8d\x27\x86\x0b", - "WALL", - 15, - ) - if chain_id == 8: - yield ( # address, symbol, decimals - b"\xff\x3b\xf0\x57\xad\xf3\xb0\xe0\x15\xb6\x46\x53\x31\xa6\x23\x6e\x55\x68\x82\x74", - "BEER", - 0, - ) - yield ( # address, symbol, decimals - b"\x08\x53\x3d\x6a\x06\xce\x36\x52\x98\xb1\x2e\xf9\x2e\xb4\x07\xcb\xa8\xaa\x82\x73", - "CEFS", - 8, - ) - yield ( # address, symbol, decimals - b"\x94\xad\x7e\x41\xc1\xd4\x40\x22\xc4\xf4\x7c\xb1\xba\x01\x9f\xd1\xa0\x22\xc5\x36", - "DOT", - 8, - ) - yield ( # address, symbol, decimals - b"\xcf\x32\x22\xb7\xfd\xa7\xa7\x56\x3b\x9e\x1e\x6c\x96\x6b\xea\xd0\x4a\xc2\x3c\x36", - "ESCH", - 18, - ) - yield ( # address, symbol, decimals - b"\x50\x06\x84\xce\x0d\x4f\x04\xab\xed\xff\x3e\x54\xfc\xf8\xac\xc5\xe6\xcf\xc4\xbd", - "GEO", - 8, - ) - yield ( # address, symbol, decimals - b"\x08\x26\x18\x0a\x4c\x98\x1d\x50\x95\xcb\x5c\x48\xbb\x2a\x09\x8a\x44\xcf\x6f\x73", - "GRANS", - 18, - ) - yield ( # address, symbol, decimals - b"\x78\x45\xfc\xbe\x28\xac\x19\xab\x7e\xc1\xc1\xd9\x67\x4e\x34\xfd\xcb\x49\x17\xdb", - "INK", - 18, - ) - yield ( # address, symbol, decimals - b"\x4b\x48\x99\xa1\x0f\x3e\x50\x7d\xb2\x07\xb0\xee\x24\x26\x02\x9e\xfa\x16\x8a\x67", - "QWARK", - 8, - ) - yield ( # address, symbol, decimals - b"\x5e\x17\x15\xbb\x79\x80\x5b\xd6\x72\x72\x97\x60\xb3\xf7\xf3\x4d\x6f\x48\x50\x98", - "RICKS", - 8, - ) - yield ( # address, symbol, decimals - b"\x49\x7e\x20\x58\x6f\x86\xc3\x55\x92\xff\x8f\x65\xcd\xe9\x4f\x29\x65\x14\xc3\x87", - "SNARG", - 0, - ) - yield ( # address, symbol, decimals - b"\x20\xe3\xdd\x74\x6d\xdf\x51\x9b\x23\xff\xbb\xb6\xda\x7a\x5d\x33\xea\x63\x49\xd6", - "SPHR", - 8, - ) - yield ( # address, symbol, decimals - b"\x40\x2c\x2c\x3a\xce\xeb\x52\xb8\x65\x4a\x06\x31\x01\x2c\xed\x49\xcb\xc9\xbd\xc4", - "SPHRC", - 18, - ) - yield ( # address, symbol, decimals - b"\xcf\x82\x3e\xb6\xf6\x2a\x30\xed\xb0\x05\xb9\x13\x83\xe2\xfa\x36\x4d\xd7\x53\xdc", - "TGE1", - 18, - ) - if chain_id == 30: - yield ( # address, symbol, decimals - b"\xd5\x2d\xa6\x36\x89\x54\x39\x24\xdc\xa6\x6b\xcb\xe2\xe2\xea\x59\x9c\x45\xd5\x75", - "ARSCB", - 18, - ) - yield ( # address, symbol, decimals - b"\x44\x0c\xd8\x3c\x16\x0d\xe5\xc9\x6d\xdb\x20\x24\x68\x15\xea\x44\xc7\xab\xbc\xa8", - "BITP", - 18, - ) - yield ( # address, symbol, decimals - b"\x97\x76\x75\xb8\x63\xb3\xb1\xcf\x46\xa9\x27\xfd\xdc\xbe\x0c\x83\x1b\xf5\x01\x35", - "BOBCB", - 18, - ) - yield ( # address, symbol, decimals - b"\x3e\x04\x00\x20\x64\x8a\x2f\x2c\x87\x2c\xe0\xc7\x16\x5b\xa5\xad\x78\x41\xc9\x72", - "BRLCB", - 18, - ) - yield ( # address, symbol, decimals - b"\xe3\x55\xc2\x80\x13\x1d\xfa\xf1\x8b\xf1\xc3\x64\x8a\xee\x3c\x39\x6d\xb6\xb5\xfd", - "BRZ", - 4, - ) - yield ( # address, symbol, decimals - b"\xab\x2d\x29\x0b\x7a\x60\x0f\x5e\xa8\xd5\xb9\x33\xf6\xf1\x5c\x86\x7f\xd7\xe6\x0e", - "BTCCB", - 18, - ) - yield ( # address, symbol, decimals - b"\x61\xb5\x0d\x8f\xb4\x3c\xc2\x8b\x56\xee\x7f\x9d\xa3\x2a\xe4\x6c\x3c\x1c\x68\xa3", - "CNYCB", - 18, - ) - yield ( # address, symbol, decimals - b"\x7c\x45\x9c\x5b\x11\xe2\x81\x5d\xb0\x85\xdd\xa9\xec\x31\x4a\x9c\xde\x00\xa0\x82", - "COPCB", - 18, - ) - yield ( # address, symbol, decimals - b"\x87\x26\x64\xa8\x85\xa1\x99\x5d\x75\x4e\x36\x66\xa2\x3f\xad\x5c\x80\x14\x01\xc4", - "cRBTC", - 8, - ) - yield ( # address, symbol, decimals - b"\xb7\xff\x2c\x56\xc8\x97\x56\x2c\x0a\xa6\x74\x7d\x26\x79\xd3\x5f\x5e\x93\x74\x92", - "cRIF", - 8, - ) - yield ( # address, symbol, decimals - b"\xd2\x56\xc1\x21\xa5\x07\xca\xdd\x26\x87\x59\x9e\x27\xfa\x45\xe3\x1b\x7c\x31\x99", - "crUSDT", - 8, - ) - yield ( # address, symbol, decimals - b"\xe7\x00\x69\x1d\xa7\xb9\x85\x1f\x2f\x35\xf8\xb8\x18\x2c\x69\xc5\x3c\xca\xd9\xdb", - "DOC", - 18, - ) - yield ( # address, symbol, decimals - b"\x84\xc0\xcb\x1d\x66\x23\xcf\xb3\x54\x6a\x79\xc6\x6e\xb9\x6b\x87\x4c\xe6\x65\x9d", - "ETHCB", - 18, - ) - yield ( # address, symbol, decimals - b"\xae\x2c\xeb\x4b\x57\xad\xe2\x26\x43\xbe\x29\x09\x42\x51\x05\xd5\x11\x4b\x1d\xbc", - "EURCB", - 18, - ) - yield ( # address, symbol, decimals - b"\x05\x5a\x90\x23\x03\x74\x63\x82\xfb\xb7\xd1\x8f\x6a\xe0\xdf\x56\xef\xdc\x52\x13", - "FISH", - 18, - ) - yield ( # address, symbol, decimals - b"\x3d\x9f\x9e\x1f\x81\x51\x41\x0b\xed\xa3\x06\xfd\xf8\x62\x6a\x02\xe0\x3e\xa8\xaa", - "IDRCB", - 18, - ) - yield ( # address, symbol, decimals - b"\x20\x58\xba\x95\x77\xc4\xf9\x02\x46\xbe\xa9\xd7\x4a\xe2\xe4\xcd\x01\x67\xa1\x23", - "MXNCB", - 18, - ) - yield ( # address, symbol, decimals - b"\x99\xaf\x5d\xeb\x8d\xae\xbc\xd3\x6f\xcc\xd1\x6f\xa4\x6d\xc9\x5d\x92\x2c\xde\x5b", - "PABCB", - 18, - ) - yield ( # address, symbol, decimals - b"\x0f\x68\x95\xfa\x26\x79\x45\x3d\x2c\x32\xc5\xf6\xe2\xf0\x0e\x46\x21\xc5\x7c\xa2", - "PENCB", - 18, - ) - yield ( # address, symbol, decimals - b"\xa0\x5f\xd8\x08\x2e\x19\x92\x3a\xa4\x86\x8f\xf3\xc2\xae\x48\x85\x0b\x73\x47\x36", - "PYGCB", - 18, - ) - yield ( # address, symbol, decimals - b"\xff\x9e\xa3\x41\xd9\xea\x91\xcb\x7c\x54\x34\x23\x54\x37\x7f\x51\x04\xfd\x40\x3f", - "rAMLT", - 18, - ) - yield ( # address, symbol, decimals - b"\x49\x91\x51\x6d\xf6\x05\x31\x21\x12\x12\x74\x39\x7a\x8c\x1d\xad\x60\x8b\xc9\x5b", - "rBUND", - 18, - ) - yield ( # address, symbol, decimals - b"\x6b\x1a\x73\xd5\x47\xf4\x00\x9a\x26\xb8\x48\x5b\x63\xd7\x01\x5d\x24\x8a\xd4\x06", - "rDAI", - 18, - ) - yield ( # address, symbol, decimals - b"\x2d\x91\x9f\x19\xd4\x89\x23\x81\xd5\x8e\xde\xbe\xca\x66\xd5\x64\x2c\xef\x1a\x1f", - "RDOC", - 18, - ) - yield ( # address, symbol, decimals - b"\x73\xc0\x84\x67\xe2\x3f\x7d\xcb\x7d\xdb\xbc\x8d\x05\x04\x1b\x74\x46\x7a\x49\x8a", - "rFLIXX", - 18, - ) - yield ( # address, symbol, decimals - b"\x2a\xcc\x95\x75\x8f\x8b\x5f\x58\x34\x70\xba\x26\x5e\xb6\x85\xa8\xf4\x5f\xc9\xd5", - "RIF", - 18, - ) - yield ( # address, symbol, decimals - b"\xf4\xd2\x7c\x56\x59\x5e\xd5\x9b\x66\xcc\x7f\x03\xcf\xf5\x19\x3e\x4b\xd7\x4a\x61", - "RIFP", - 18, - ) - yield ( # address, symbol, decimals - b"\x14\xad\xae\x34\xbe\xf7\xca\x95\x7c\xe2\xdd\xe5\xad\xd9\x7e\xa0\x50\x12\x38\x27", - "rLINK", - 18, - ) - yield ( # address, symbol, decimals - b"\x9c\x3a\x5f\x8d\x68\x6f\xad\xe2\x93\xc0\xce\x98\x9a\x62\xa3\x44\x08\xc4\xe3\x07", - "rRFOX", - 18, - ) - yield ( # address, symbol, decimals - b"\x70\x56\x6d\x85\x41\xbe\xab\xe9\x84\xc8\xba\xbf\x8a\x81\x6e\xd9\x08\x51\x4b\xa8", - "rUBI", - 18, - ) - yield ( # address, symbol, decimals - b"\x1b\xda\x44\xfd\xa0\x23\xf2\xaf\x82\x80\xa1\x6f\xd1\xb0\x1d\x1a\x49\x3b\xa6\xc4", - "rUSDC", - 18, - ) - yield ( # address, symbol, decimals - b"\xef\x21\x34\x41\xa8\x5d\xf4\xd7\xac\xbd\xae\x0c\xf7\x80\x04\xe1\xe4\x86\xbb\x96", - "rUSDT", - 18, - ) - yield ( # address, symbol, decimals - b"\xef\xc7\x8f\xc7\xd4\x8b\x64\x95\x83\x15\x94\x92\x79\xba\x18\x1c\x21\x14\xab\xbd", - "SOV", - 18, - ) - yield ( # address, symbol, decimals - b"\xaa\x5d\xc2\xea\x0e\x05\x6f\xc9\x62\xf4\x8a\xb2\x55\x47\xd6\x6d\x35\x86\xee\x8a", - "USDCB", - 18, - ) - yield ( # address, symbol, decimals - b"\xd8\x13\x26\x25\xb1\x0b\x39\x62\x23\x9f\x68\x42\x98\x1d\xce\x02\xf1\xa1\x63\xd2", - "UYUCB", - 18, - ) - yield ( # address, symbol, decimals - b"\xe9\xf7\x8e\x50\x7f\x24\x53\x7f\x3f\x78\xc2\x12\xcf\x93\xf6\x5e\xec\x90\x54\xc2", - "VESCB", - 18, - ) - yield ( # address, symbol, decimals - b"\x96\x7f\x87\x99\xaf\x07\xdf\x15\x34\xd4\x8a\x95\xa5\xc9\xfe\xbe\x92\xc5\x3a\xe0", - "WRBTC", - 18, - ) - yield ( # address, symbol, decimals - b"\xb5\x99\x97\x95\xbe\x0e\xbb\x5b\xab\x23\x14\x4a\xa5\xfd\x6a\x02\xd0\x80\x29\x9f", - "XUSD", - 18, - ) - if chain_id == 42: - yield ( # address, symbol, decimals - b"\x86\x67\x55\x92\x54\x24\x1d\xde\xd4\xd1\x13\x92\xf8\x68\xd7\x20\x92\x76\x53\x67", - "Aeternity", - 18, - ) - yield ( # address, symbol, decimals - b"\xc4\x37\x5b\x7d\xe8\xaf\x5a\x38\xa9\x35\x48\xeb\x84\x53\xa4\x98\x22\x2c\x4f\xf2", - "DAI", - 18, - ) - yield ( # address, symbol, decimals - b"\xee\xe3\x87\x06\x57\xe4\x71\x66\x70\xf1\x85\xdf\x08\x65\x2d\xd8\x48\xfe\x8f\x7e", - "DGD", - 18, - ) - yield ( # address, symbol, decimals - b"\x47\x33\x65\x9a\x5c\xb7\x89\x6a\x65\xc9\x18\xad\xd6\xf5\x9c\x51\x48\xfb\x5f\xfa", - "GAV", - 6, - ) - yield ( # address, symbol, decimals - b"\xef\x7f\xff\x64\x38\x9b\x81\x4a\x94\x6f\x3e\x92\x10\x55\x13\x70\x5c\xa6\xb9\x90", - "GNT", - 18, - ) - yield ( # address, symbol, decimals - b"\x3c\x67\xf7\xd4\xde\xcf\x77\x95\x22\x5f\x51\xb5\x41\x34\xf8\x11\x37\x38\x5f\x83", - "GUP", - 3, - ) - yield ( # address, symbol, decimals - b"\x1d\xad\x47\x83\xcf\x3f\xe3\x08\x5c\x14\x26\x15\x7a\xb1\x75\xa6\x11\x9a\x04\xba", - "MKR", - 18, - ) - yield ( # address, symbol, decimals - b"\xaa\xf6\x4b\xfc\xc3\x2d\x0f\x15\x87\x3a\x02\x16\x3e\x7e\x50\x06\x71\xa4\xff\xcd", - "MKR", - 18, - ) - yield ( # address, symbol, decimals - b"\x32\x3b\x5d\x4c\x32\x34\x5c\xed\x77\x39\x3b\x35\x30\xb1\xee\xd0\xf3\x46\x42\x9d", - "MLN", - 18, - ) - yield ( # address, symbol, decimals - b"\xb1\x88\x45\xc2\x60\xf6\x80\xd5\xb9\xd8\x46\x49\x63\x88\x13\xe3\x42\xe4\xf8\xc9", - "REP", - 18, - ) - yield ( # address, symbol, decimals - b"\xc5\x75\x38\x84\x6e\xc4\x05\xea\x25\xde\xb0\x0e\x0f\x9b\x29\xa4\x32\xd5\x35\x07", - "RLC", - 9, - ) - yield ( # address, symbol, decimals - b"\x4a\x6e\x6c\x38\x68\xa2\x79\xe1\xd9\x04\x7b\x42\xc3\xfb\x35\x6f\xf4\x68\x00\x03", - "TIB", - 18, - ) - yield ( # address, symbol, decimals - b"\x6f\xf6\xc0\xff\x1d\x68\xb9\x64\x90\x1f\x98\x6d\x4c\x9f\xa3\xac\x68\x34\x65\x70", - "ZRX", - 18, - ) - if chain_id == 61: - yield ( # address, symbol, decimals - b"\x08\x5f\xb4\xf2\x40\x31\xea\xed\xbc\x2b\x61\x1a\xa5\x28\xf2\x23\x43\xeb\x52\xdb", - "BEC", - 8, - ) - yield ( # address, symbol, decimals - b"\x6a\xda\x6f\x48\xc8\x15\x68\x95\x02\xc4\x3e\xc1\xa5\x9f\x1b\x5d\xd3\xc0\x4e\x1f", - "UNV", - 18, - ) - yield ( # address, symbol, decimals - b"\x76\xd0\x18\x4c\xf5\x11\x78\x80\x32\xa7\x4a\x1f\xb9\x11\x46\xe6\x3f\x43\xdd\x53", - "UVC", - 5, - ) - yield ( # address, symbol, decimals - b"\xd6\xdf\x0c\x57\x9f\x2a\x65\x04\x9a\x89\x3f\xda\xec\x9f\xce\x09\x8c\xc1\x9f\x87", - "UVCX", - 18, - ) - if chain_id == 31102: - yield ( # address, symbol, decimals - b"\x72\xea\x35\x08\xd9\xd8\x17\xa9\x14\x65\xab\xb5\x9b\xe1\x0f\xef\x98\x57\xa0\x55", - "DGT", - 0, - ) - yield ( # address, symbol, decimals - b"\x01\x46\xb9\xdc\xd9\xfb\x2a\xbc\x1b\x5b\x13\x6c\x28\xd2\x0d\x00\x37\x52\x69\x61", - "TOPM", - 18, - ) - if chain_id == 43114: - yield ( # address, symbol, decimals - b"\xde\x3a\x24\x02\x85\x80\x88\x44\x48\xa5\x39\x78\x72\x04\x6a\x01\x96\x49\xb0\x84", - "USDT", - 6, - ) - yield ( # address, symbol, decimals - b"\xb3\x1f\x66\xaa\x3c\x1e\x78\x53\x63\xf0\x87\x5a\x1b\x74\xe2\x7b\x85\xfd\x66\xc7", - "WAVAX", + if chain_id == 137: # MATIC + yield ( # address, symbol, decimals, name + b"\x2c\x89\xbb\xc9\x2b\xd8\x6f\x80\x75\xd1\xde\xcc\x58\xc7\xf4\xe0\x10\x7f\x28\x6b", + "AVAX", 18, + "Avalanche", ) diff --git a/core/src/apps/ethereum/tokens.py.mako b/core/src/apps/ethereum/tokens.py.mako index bf1455deb..7ec886965 100644 --- a/core/src/apps/ethereum/tokens.py.mako +++ b/core/src/apps/ethereum/tokens.py.mako @@ -16,6 +16,7 @@ from typing import Iterator +from trezor.messages import EthereumTokenInfo <% from collections import defaultdict @@ -26,30 +27,37 @@ def group_tokens(tokens): return r %>\ -class TokenInfo: - def __init__(self, symbol: str, decimals: int) -> None: - self.symbol = symbol - self.decimals = decimals +UNKNOWN_TOKEN = EthereumTokenInfo( + symbol="Wei UNKN", + decimals=0, + address=b"", + chain_id=0, + name="Unknown token", +) -UNKNOWN_TOKEN = TokenInfo("Wei UNKN", 0) - - -def token_by_chain_address(chain_id: int, address: bytes) -> TokenInfo: - for addr, symbol, decimal in _token_iterator(chain_id): +def token_by_chain_address(chain_id: int, address: bytes) -> EthereumTokenInfo | None: + for addr, symbol, decimal, name in _token_iterator(chain_id): if address == addr: - return TokenInfo(symbol, decimal) - return UNKNOWN_TOKEN + return EthereumTokenInfo( + symbol=symbol, + decimals=decimal, + address=address, + chain_id=chain_id, + name=name, + ) + return None -def _token_iterator(chain_id: int) -> Iterator[tuple[bytes, str, int]]: +def _token_iterator(chain_id: int) -> Iterator[tuple[bytes, str, int, str]]: % for token_chain_id, tokens in group_tokens(supported_on("trezor2", erc20)).items(): - if chain_id == ${token_chain_id}: + if chain_id == ${token_chain_id}: # ${tokens[0].chain} % for t in tokens: - yield ( # address, symbol, decimals + yield ( # address, symbol, decimals, name ${black_repr(t.address_bytes)}, ${black_repr(t.symbol)}, ${t.decimals}, + ${black_repr(t.name.strip())}, ) % endfor % endfor diff --git a/core/src/trezor/enums/EthereumDefinitionType.py b/core/src/trezor/enums/EthereumDefinitionType.py new file mode 100644 index 000000000..3876e0872 --- /dev/null +++ b/core/src/trezor/enums/EthereumDefinitionType.py @@ -0,0 +1,6 @@ +# Automatically generated by pb2py +# fmt: off +# isort:skip_file + +NETWORK = 0 +TOKEN = 1 diff --git a/core/src/trezor/enums/__init__.py b/core/src/trezor/enums/__init__.py index 9b418e082..eead516c8 100644 --- a/core/src/trezor/enums/__init__.py +++ b/core/src/trezor/enums/__init__.py @@ -455,6 +455,10 @@ if TYPE_CHECKING: YES = 1 INFO = 2 + class EthereumDefinitionType(IntEnum): + NETWORK = 0 + TOKEN = 1 + class EthereumDataType(IntEnum): UINT = 1 INT = 2 diff --git a/core/src/trezor/messages.py b/core/src/trezor/messages.py index 943a032ff..814292c92 100644 --- a/core/src/trezor/messages.py +++ b/core/src/trezor/messages.py @@ -38,6 +38,7 @@ if TYPE_CHECKING: from trezor.enums import DebugSwipeDirection # noqa: F401 from trezor.enums import DecredStakingSpendType # noqa: F401 from trezor.enums import EthereumDataType # noqa: F401 + from trezor.enums import EthereumDefinitionType # noqa: F401 from trezor.enums import FailureType # noqa: F401 from trezor.enums import HomescreenFormat # noqa: F401 from trezor.enums import InputScriptType # noqa: F401 @@ -3372,10 +3373,69 @@ if TYPE_CHECKING: def is_type_of(cls, msg: Any) -> TypeGuard["EosActionUnknown"]: return isinstance(msg, cls) + class EthereumNetworkInfo(protobuf.MessageType): + chain_id: "int" + symbol: "str" + slip44: "int" + name: "str" + + def __init__( + self, + *, + chain_id: "int", + symbol: "str", + slip44: "int", + name: "str", + ) -> None: + pass + + @classmethod + def is_type_of(cls, msg: Any) -> TypeGuard["EthereumNetworkInfo"]: + return isinstance(msg, cls) + + class EthereumTokenInfo(protobuf.MessageType): + address: "bytes" + chain_id: "int" + symbol: "str" + decimals: "int" + name: "str" + + def __init__( + self, + *, + address: "bytes", + chain_id: "int", + symbol: "str", + decimals: "int", + name: "str", + ) -> None: + pass + + @classmethod + def is_type_of(cls, msg: Any) -> TypeGuard["EthereumTokenInfo"]: + return isinstance(msg, cls) + + class EthereumDefinitions(protobuf.MessageType): + encoded_network: "bytes | None" + encoded_token: "bytes | None" + + def __init__( + self, + *, + encoded_network: "bytes | None" = None, + encoded_token: "bytes | None" = None, + ) -> None: + pass + + @classmethod + def is_type_of(cls, msg: Any) -> TypeGuard["EthereumDefinitions"]: + return isinstance(msg, cls) + class EthereumSignTypedData(protobuf.MessageType): address_n: "list[int]" primary_type: "str" metamask_v4_compat: "bool" + definitions: "EthereumDefinitions | None" def __init__( self, @@ -3383,6 +3443,7 @@ if TYPE_CHECKING: primary_type: "str", address_n: "list[int] | None" = None, metamask_v4_compat: "bool | None" = None, + definitions: "EthereumDefinitions | None" = None, ) -> None: pass @@ -3517,12 +3578,14 @@ if TYPE_CHECKING: class EthereumGetAddress(protobuf.MessageType): address_n: "list[int]" show_display: "bool | None" + encoded_network: "bytes | None" def __init__( self, *, address_n: "list[int] | None" = None, show_display: "bool | None" = None, + encoded_network: "bytes | None" = None, ) -> None: pass @@ -3555,6 +3618,7 @@ if TYPE_CHECKING: data_length: "int" chain_id: "int" tx_type: "int | None" + definitions: "EthereumDefinitions | None" def __init__( self, @@ -3569,6 +3633,7 @@ if TYPE_CHECKING: data_initial_chunk: "bytes | None" = None, data_length: "int | None" = None, tx_type: "int | None" = None, + definitions: "EthereumDefinitions | None" = None, ) -> None: pass @@ -3588,6 +3653,7 @@ if TYPE_CHECKING: data_length: "int" chain_id: "int" access_list: "list[EthereumAccessList]" + definitions: "EthereumDefinitions | None" def __init__( self, @@ -3603,6 +3669,7 @@ if TYPE_CHECKING: access_list: "list[EthereumAccessList] | None" = None, to: "str | None" = None, data_initial_chunk: "bytes | None" = None, + definitions: "EthereumDefinitions | None" = None, ) -> None: pass @@ -3647,12 +3714,14 @@ if TYPE_CHECKING: class EthereumSignMessage(protobuf.MessageType): address_n: "list[int]" message: "bytes" + encoded_network: "bytes | None" def __init__( self, *, message: "bytes", address_n: "list[int] | None" = None, + encoded_network: "bytes | None" = None, ) -> None: pass @@ -3698,6 +3767,7 @@ if TYPE_CHECKING: address_n: "list[int]" domain_separator_hash: "bytes" message_hash: "bytes | None" + encoded_network: "bytes | None" def __init__( self, @@ -3705,6 +3775,7 @@ if TYPE_CHECKING: domain_separator_hash: "bytes", address_n: "list[int] | None" = None, message_hash: "bytes | None" = None, + encoded_network: "bytes | None" = None, ) -> None: pass diff --git a/core/tests/common.py b/core/tests/common.py index 44512d3eb..539f625cf 100644 --- a/core/tests/common.py +++ b/core/tests/common.py @@ -5,15 +5,25 @@ sys.path.append("../src") from ubinascii import hexlify, unhexlify # noqa: F401 import unittest # noqa: F401 +from typing import Any, Awaitable from trezor import utils # noqa: F401 from apps.common.paths import HARDENED - def H_(x: int) -> int: + """ + Shortcut function that "hardens" a number in a BIP44 path. + """ return x | HARDENED +def UH_(x: int) -> int: + """ + Shortcut function that "un-hardens" a number in a BIP44 path. + """ + return x & ~(HARDENED) + + def await_result(task: Awaitable) -> Any: value = None while True: diff --git a/core/tests/ethereum_common.py b/core/tests/ethereum_common.py new file mode 100644 index 000000000..6d8ee5a29 --- /dev/null +++ b/core/tests/ethereum_common.py @@ -0,0 +1,102 @@ +from ubinascii import unhexlify # noqa: F401 + +from trezor import messages, protobuf +from trezor.enums import EthereumDefinitionType +from trezor.crypto.curve import ed25519 +from trezor.crypto.hashlib import sha256 + +DEFINITIONS_DEV_PRIVATE_KEY = unhexlify( + "4141414141414141414141414141414141414141414141414141414141414141" +) + + +def make_network( + chain_id: int = 0, + slip44: int = 0, + symbol: str = "FAKE", + name: str = "Fake network", +) -> messages.EthereumNetworkInfo: + return messages.EthereumNetworkInfo( + chain_id=chain_id, + slip44=slip44, + symbol=symbol, + name=name, + ) + + +def make_token( + symbol: str = "FAKE", + decimals: int = 18, + address: bytes = b"", + chain_id: int = 0, + name: str = "Fake token", +) -> messages.EthereumTokenInfo: + return messages.EthereumTokenInfo( + symbol=symbol, + decimals=decimals, + address=address, + chain_id=chain_id, + name=name, + ) + + +def make_payload( + prefix: bytes = b"trzd1", + data_type: EthereumDefinitionType = EthereumDefinitionType.NETWORK, + timestamp: int = 0xFFFF_FFFF, + message: messages.EthereumNetworkInfo + | messages.EthereumTokenInfo + | bytes = make_network(), +) -> bytes: + payload = prefix + payload += data_type.to_bytes(1, "little") + payload += timestamp.to_bytes(4, "little") + if isinstance(message, bytes): + message_bytes = message + else: + message_bytes = protobuf.dump_message_buffer(message) + payload += len(message_bytes).to_bytes(2, "little") + payload += message_bytes + return payload + + +def sign_payload(payload: bytes, merkle_neighbors: list[bytes]) -> tuple[bytes, bytes]: + digest = sha256(b"\x00" + payload).digest() + merkle_proof = [] + for item in merkle_neighbors: + left, right = min(digest, item), max(digest, item) + digest = sha256(b"\x01" + left + right).digest() + merkle_proof.append(digest) + + merkle_proof = len(merkle_proof).to_bytes(1, "little") + b"".join(merkle_proof) + signature = ed25519.sign(DEFINITIONS_DEV_PRIVATE_KEY, digest) + return merkle_proof, signature + + +def encode_network( + network: messages.EthereumNetworkInfo | None = None, + chain_id: int = 0, + slip44: int = 0, + symbol: str = "FAKE", + name: str = "Fake network", +) -> bytes: + if network is None: + network = make_network(chain_id, slip44, symbol, name) + payload = make_payload(data_type=EthereumDefinitionType.NETWORK, message=network) + proof, signature = sign_payload(payload, []) + return payload + proof + signature + + +def encode_token( + token: messages.EthereumTokenInfo | None = None, + symbol: str = "FAKE", + decimals: int = 18, + address: bytes = b"", + chain_id: int = 0, + name: str = "Fake token", +) -> bytes: + if token is None: + token = make_token(symbol, decimals, address, chain_id, name) + payload = make_payload(data_type=EthereumDefinitionType.TOKEN, message=token) + proof, signature = sign_payload(payload, []) + return payload + proof + signature diff --git a/core/tests/test_apps.ethereum.definitions.py b/core/tests/test_apps.ethereum.definitions.py new file mode 100644 index 000000000..85a6395ba --- /dev/null +++ b/core/tests/test_apps.ethereum.definitions.py @@ -0,0 +1,250 @@ +from common import * +import unittest +import typing as t +from trezor import utils, wire +from ubinascii import hexlify # noqa: F401 + +if not utils.BITCOIN_ONLY: + + from apps.ethereum import networks, tokens + from apps.ethereum.definitions import decode_definition, Definitions + from ethereum_common import * + from trezor import protobuf + from trezor.enums import EthereumDefinitionType + from trezor.messages import ( + EthereumDefinitions, + EthereumNetworkInfo, + EthereumTokenInfo, + EthereumSignTx, + EthereumSignTxEIP1559, + EthereumSignTypedData, + ) + + TETHER_ADDRESS = b"\xda\xc1\x7f\x95\x8d\x2e\xe5\x23\xa2\x20\x62\x06\x99\x45\x97\xc1\x3d\x83\x1e\xc7" + + +@unittest.skipUnless(not utils.BITCOIN_ONLY, "altcoin") +class TestDecodeDefinition(unittest.TestCase): + def test_short_message(self): + with self.assertRaises(wire.DataError): + decode_definition(b"\x00", EthereumNetworkInfo) + with self.assertRaises(wire.DataError): + decode_definition(b"\x00", EthereumTokenInfo) + + # successful decode network + def test_network_definition(self): + network = make_network(chain_id=42, slip44=69, symbol="FAKE", name="Fakenet") + encoded = encode_network(network) + try: + self.assertEqual(decode_definition(encoded, EthereumNetworkInfo), network) + except Exception as e: + print(e.message) + + # successful decode token + def test_token_definition(self): + token = make_token("FAKE", decimals=33, address=b"abcd" * 5, chain_id=42) + encoded = encode_token(token) + self.assertEqual(decode_definition(encoded, EthereumTokenInfo), token) + + def assertFailed(self, data: bytes) -> None: + with self.assertRaises(wire.DataError): + decode_definition(data, EthereumNetworkInfo) + + def test_mangled_signature(self): + payload = make_payload() + proof, signature = sign_payload(payload, []) + bad_signature = signature[:-1] + b"\xff" + self.assertFailed(payload + proof + bad_signature) + + def test_missing_signature(self): + payload = make_payload() + proof, signature = sign_payload(payload, []) + self.assertFailed(payload + proof) + + def test_mangled_payload(self): + payload = make_payload() + proof, signature = sign_payload(payload, []) + bad_payload = payload[:-1] + b"\xff" + self.assertFailed(bad_payload + proof + signature) + + def test_proof_length_mismatch(self): + payload = make_payload() + proof, signature = sign_payload(payload, []) + bad_proof = b"\x01" + self.assertFailed(payload + bad_proof + signature) + + def test_bad_proof(self): + payload = make_payload() + proof, signature = sign_payload(payload, [sha256(b"x").digest()]) + bad_proof = proof[:-1] + b"\xff" + self.assertFailed(payload + bad_proof + signature) + + def test_trimmed_proof(self): + payload = make_payload() + proof, signature = sign_payload(payload, []) + bad_proof = proof[:-1] + self.assertFailed(payload + bad_proof + signature) + + def test_bad_prefix(self): + payload = make_payload(prefix=b"trzd2") + proof, signature = sign_payload(payload, []) + self.assertFailed(payload + proof + signature) + + def test_bad_type(self): + payload = make_payload( + data_type=EthereumDefinitionType.TOKEN, message=make_token() + ) + proof, signature = sign_payload(payload, []) + self.assertFailed(payload + proof + signature) + + def test_outdated(self): + payload = make_payload(timestamp=0) + proof, signature = sign_payload(payload, []) + self.assertFailed(payload + proof + signature) + + def test_malformed_protobuf(self): + payload = make_payload(message=b"\x00") + proof, signature = sign_payload(payload, []) + self.assertFailed(payload + proof + signature) + + def test_protobuf_mismatch(self): + payload = make_payload( + data_type=EthereumDefinitionType.NETWORK, message=make_token() + ) + proof, signature = sign_payload(payload, []) + self.assertFailed(payload + proof + signature) + + payload = make_payload( + data_type=EthereumDefinitionType.TOKEN, message=make_network() + ) + proof, signature = sign_payload(payload, []) + self.assertFailed(payload + proof + signature) + + def test_trailing_garbage(self): + payload = make_payload() + proof, signature = sign_payload(payload, []) + self.assertFailed(payload + proof + signature + b"\x00") + + +@unittest.skipUnless(not utils.BITCOIN_ONLY, "altcoin") +class TestEthereumDefinitions(unittest.TestCase): + def assertUnknown(self, what: t.Any) -> None: + if what is networks.UNKNOWN_NETWORK: + return + if what is tokens.UNKNOWN_TOKEN: + return + self.fail("Expected UNKNOWN_*, got %r" % what) + + def assertKnown(self, what: t.Any) -> None: + if not EthereumNetworkInfo.is_type_of( + what + ) and not EthereumTokenInfo.is_type_of(what): + self.fail("Expected network / token info, got %r" % what) + if what is networks.UNKNOWN_NETWORK: + self.fail("Expected known network, got UNKNOWN_NETWORK") + if what is tokens.UNKNOWN_TOKEN: + self.fail("Expected known token, got UNKNOWN_TOKEN") + + def test_empty(self) -> None: + # no slip44 nor chain_id -- should short-circuit and always be unknown + defs = Definitions.from_encoded(None, None) + self.assertUnknown(defs.network) + self.assertFalse(defs._tokens) + self.assertUnknown(defs.get_token(TETHER_ADDRESS)) + + # chain_id provided, no definition + defs = Definitions.from_encoded(None, None, chain_id=100_000) + self.assertUnknown(defs.network) + self.assertFalse(defs._tokens) + self.assertUnknown(defs.get_token(TETHER_ADDRESS)) + + def test_builtin(self) -> None: + defs = Definitions.from_encoded(None, None, chain_id=1) + self.assertKnown(defs.network) + self.assertFalse(defs._tokens) + self.assertKnown(defs.get_token(TETHER_ADDRESS)) + self.assertUnknown(defs.get_token(b"\x00" * 20)) + + defs = Definitions.from_encoded(None, None, slip44=60) + self.assertKnown(defs.network) + self.assertFalse(defs._tokens) + self.assertKnown(defs.get_token(TETHER_ADDRESS)) + self.assertUnknown(defs.get_token(b"\x00" * 20)) + + def test_external(self) -> None: + network = make_network(chain_id=42) + defs = Definitions.from_encoded(encode_network(network), None, chain_id=42) + self.assertEqual(defs.network, network) + self.assertUnknown(defs.get_token(b"\x00" * 20)) + + token = make_token(chain_id=42, address=b"\x00" * 20) + defs = Definitions.from_encoded( + encode_network(network), encode_token(token), chain_id=42 + ) + self.assertEqual(defs.network, network) + self.assertEqual(defs.get_token(b"\x00" * 20), token) + + token = make_token(chain_id=1, address=b"\x00" * 20) + defs = Definitions.from_encoded(None, encode_token(token), chain_id=1) + self.assertKnown(defs.network) + self.assertEqual(defs.get_token(b"\x00" * 20), token) + + def test_external_token_mismatch(self) -> None: + network = make_network(chain_id=42) + token = make_token(chain_id=43, address=b"\x00" * 20) + defs = Definitions.from_encoded(encode_network(network), encode_token(token)) + self.assertUnknown(defs.get_token(b"\x00" * 20)) + + def test_external_chain_match(self) -> None: + network = make_network(chain_id=42) + token = make_token(chain_id=42, address=b"\x00" * 20) + defs = Definitions.from_encoded( + encode_network(network), encode_token(token), chain_id=42 + ) + self.assertEqual(defs.network, network) + self.assertEqual(defs.get_token(b"\x00" * 20), token) + + with self.assertRaises(wire.DataError): + Definitions.from_encoded( + encode_network(network), encode_token(token), chain_id=333 + ) + + def test_external_slip44_mismatch(self) -> None: + network = make_network(chain_id=42, slip44=1999) + token = make_token(chain_id=42, address=b"\x00" * 20) + defs = Definitions.from_encoded( + encode_network(network), encode_token(token), slip44=1999 + ) + self.assertEqual(defs.network, network) + self.assertEqual(defs.get_token(b"\x00" * 20), token) + + with self.assertRaises(wire.DataError): + Definitions.from_encoded( + encode_network(network), encode_token(token), slip44=333 + ) + + def test_ignore_encoded_network(self) -> None: + # when network is builtin, ignore the encoded one + network = encode_network(chain_id=1, symbol="BAD") + defs = Definitions.from_encoded(network, None, chain_id=1) + self.assertNotEqual(defs.network, network) + + def test_ignore_encoded_token(self) -> None: + # when token is builtin, ignore the encoded one + token = encode_token(chain_id=1, address=TETHER_ADDRESS, symbol="BAD") + defs = Definitions.from_encoded(None, token, chain_id=1) + self.assertNotEqual(defs.get_token(TETHER_ADDRESS), token) + + def test_ignore_with_no_match(self) -> None: + network = encode_network(chain_id=100_000, symbol="BAD") + # smoke test: definition is accepted + defs = Definitions.from_encoded(network, None, chain_id=100_000) + self.assertKnown(defs.network) + + # same definition but nothing to match it to + defs = Definitions.from_encoded(network, None) + self.assertUnknown(defs.network) + + +if __name__ == "__main__": + unittest.main() diff --git a/core/tests/test_apps.ethereum.helpers.py b/core/tests/test_apps.ethereum.helpers.py index a8cdf995d..2beccdd61 100644 --- a/core/tests/test_apps.ethereum.helpers.py +++ b/core/tests/test_apps.ethereum.helpers.py @@ -3,23 +3,22 @@ from apps.common.paths import HARDENED if not utils.BITCOIN_ONLY: from apps.ethereum.helpers import address_from_bytes - from apps.ethereum.networks import NetworkInfo + from ethereum_common import make_network @unittest.skipUnless(not utils.BITCOIN_ONLY, "altcoin") class TestEthereumGetAddress(unittest.TestCase): - def test_address_from_bytes_eip55(self): # https://github.com/ethereum/EIPs/blob/master/EIPS/eip-55.md eip55 = [ - '0x52908400098527886E0F7030069857D2E4169EE7', - '0x8617E340B3D01FA5F11F306F4090FD50E238070D', - '0xde709f2102306220921060314715629080e2fb77', - '0x27b1fdb04752bbc536007a920d24acb045561c26', - '0x5aAeb6053F3E94C9b9A09f33669435E7Ef1BeAed', - '0xfB6916095ca1df60bB79Ce92cE3Ea74c37c5d359', - '0xdbF03B407c01E7cD3CBea99509d93f8DDDC8C6FB', - '0xD1220A0cf47c7B9Be7A2E6BA89F429762e7b9aDb', + "0x52908400098527886E0F7030069857D2E4169EE7", + "0x8617E340B3D01FA5F11F306F4090FD50E238070D", + "0xde709f2102306220921060314715629080e2fb77", + "0x27b1fdb04752bbc536007a920d24acb045561c26", + "0x5aAeb6053F3E94C9b9A09f33669435E7Ef1BeAed", + "0xfB6916095ca1df60bB79Ce92cE3Ea74c37c5d359", + "0xdbF03B407c01E7cD3CBea99509d93f8DDDC8C6FB", + "0xD1220A0cf47c7B9Be7A2E6BA89F429762e7b9aDb", ] for s in eip55: b = unhexlify(s[2:]) @@ -29,28 +28,30 @@ class TestEthereumGetAddress(unittest.TestCase): def test_address_from_bytes_rskip60(self): # https://github.com/rsksmart/RSKIPs/blob/master/IPs/RSKIP60.md rskip60_chain_30 = [ - '0x5aaEB6053f3e94c9b9a09f33669435E7ef1bEAeD', - '0xFb6916095cA1Df60bb79ce92cE3EA74c37c5d359', - '0xDBF03B407c01E7CD3cBea99509D93F8Dddc8C6FB', - '0xD1220A0Cf47c7B9BE7a2e6ba89F429762E7B9adB' + "0x5aaEB6053f3e94c9b9a09f33669435E7ef1bEAeD", + "0xFb6916095cA1Df60bb79ce92cE3EA74c37c5d359", + "0xDBF03B407c01E7CD3cBea99509D93F8Dddc8C6FB", + "0xD1220A0Cf47c7B9BE7a2e6ba89F429762E7B9adB", ] rskip60_chain_31 = [ - '0x5aAeb6053F3e94c9b9A09F33669435E7EF1BEaEd', - '0xFb6916095CA1dF60bb79CE92ce3Ea74C37c5D359', - '0xdbF03B407C01E7cd3cbEa99509D93f8dDDc8C6fB', - '0xd1220a0CF47c7B9Be7A2E6Ba89f429762E7b9adB' + "0x5aAeb6053F3e94c9b9A09F33669435E7EF1BEaEd", + "0xFb6916095CA1dF60bb79CE92ce3Ea74C37c5D359", + "0xdbF03B407C01E7cd3cbEa99509D93f8dDDc8C6fB", + "0xd1220a0CF47c7B9Be7A2E6Ba89f429762E7b9adB", ] - n = NetworkInfo(chain_id=30, slip44=1, shortcut='T', name='T', rskip60=True) + + n = make_network(chain_id=30) for s in rskip60_chain_30: b = unhexlify(s[2:]) h = address_from_bytes(b, n) self.assertEqual(h, s) - n.chain_id = 31 + + n = make_network(chain_id=31) for s in rskip60_chain_31: b = unhexlify(s[2:]) h = address_from_bytes(b, n) self.assertEqual(h, s) -if __name__ == '__main__': +if __name__ == "__main__": unittest.main() diff --git a/core/tests/test_apps.ethereum.keychain.py b/core/tests/test_apps.ethereum.keychain.py index f1cc2c0b0..e970a388d 100644 --- a/core/tests/test_apps.ethereum.keychain.py +++ b/core/tests/test_apps.ethereum.keychain.py @@ -1,22 +1,35 @@ from common import * + +import unittest + from storage import cache -from trezor import wire +from trezor import wire, utils from trezor.crypto import bip39 from apps.common.keychain import get_keychain from apps.common.paths import HARDENED if not utils.BITCOIN_ONLY: from apps.ethereum import CURVE + from apps.ethereum.networks import UNKNOWN_NETWORK from apps.ethereum.keychain import ( PATTERNS_ADDRESS, - _schemas_from_address_n, + _schemas_from_network, + _defs_from_message, + _slip44_from_address_n, with_keychain_from_path, with_keychain_from_chain_id, ) - from apps.ethereum.networks import by_chain_id, by_slip44 - from trezor.messages import EthereumGetAddress - from trezor.messages import EthereumSignTx + from trezor.messages import ( + EthereumGetAddress, + EthereumSignTx, + EthereumDefinitions, + EthereumSignMessage, + EthereumSignTypedData, + EthereumSignTxEIP1559, + ) + + from ethereum_common import make_network, encode_network @unittest.skipUnless(not utils.BITCOIN_ONLY, "altcoin") @@ -43,11 +56,19 @@ class TestEthereumKeychain(unittest.TestCase): [44 | HARDENED, 0 | HARDENED, 0 | HARDENED, 0], [44 | HARDENED, slip44_id | HARDENED, 1 | HARDENED, 0], [44 | HARDENED, slip44_id | HARDENED, 0 | HARDENED, 0 | HARDENED, 0], - [44 | HARDENED, slip44_id | HARDENED, 0 | HARDENED, 0 | HARDENED, 0 | HARDENED], + [ + 44 | HARDENED, + slip44_id | HARDENED, + 0 | HARDENED, + 0 | HARDENED, + 0 | HARDENED, + ], ) for addr in invalid_addresses: self.assertRaises( - wire.DataError, keychain.derive, addr, + wire.DataError, + keychain.derive, + addr, ) def setUp(self): @@ -56,7 +77,9 @@ class TestEthereumKeychain(unittest.TestCase): cache.set(cache.APP_COMMON_SEED, seed) def from_address_n(self, address_n): - schemas = _schemas_from_address_n(PATTERNS_ADDRESS, address_n) + slip44 = _slip44_from_address_n(address_n) + network = make_network(slip44=slip44) + schemas = _schemas_from_network(PATTERNS_ADDRESS, network) return await_result(get_keychain(wire.DUMMY_CONTEXT, CURVE, schemas)) def test_from_address_n(self): @@ -69,116 +92,140 @@ class TestEthereumKeychain(unittest.TestCase): keychain = self.from_address_n([44 | HARDENED, 60 | HARDENED, 0 | HARDENED, 0]) self._check_keychain(keychain, 60) - def test_from_address_n_unknown(self): - # try Bitcoin slip44 id m/44'/0'/0' - schemas = tuple(_schemas_from_address_n(PATTERNS_ADDRESS, [44 | HARDENED, 0 | HARDENED, 0 | HARDENED])) - self.assertEqual(schemas, ()) + def test_from_address_n_casa45(self): + # valid keychain m/45'/60/0 + keychain = self.from_address_n([45 | HARDENED, 60, 0, 0, 0]) + keychain.derive([45 | HARDENED, 60, 0, 0, 0]) + with self.assertRaises(wire.DataError): + keychain.derive([45 | HARDENED, 60 | HARDENED, 0, 0, 0]) - def test_bad_address_n(self): - # keychain generated from valid slip44 id but invalid address m/0'/60'/0' - keychain = self.from_address_n([0 | HARDENED, 60 | HARDENED, 0 | HARDENED]) - self._check_keychain(keychain, 60) + def test_with_keychain_from_path_short(self): + # check that the keychain will not die when the address_n is too short + @with_keychain_from_path(*PATTERNS_ADDRESS) + async def handler(ctx, msg, keychain, defs): + # in this case the network is unknown so the keychain should allow access + # to Ethereum and testnet paths + self._check_keychain(keychain, 60) + self._check_keychain(keychain, 1) + self.assertIs(defs.network, UNKNOWN_NETWORK) - def test_with_keychain_from_path(self): + await_result(handler(wire.DUMMY_CONTEXT, EthereumGetAddress(address_n=[]))) + await_result(handler(wire.DUMMY_CONTEXT, EthereumGetAddress(address_n=[0]))) + + def test_with_keychain_from_path_builtins(self): @with_keychain_from_path(*PATTERNS_ADDRESS) - async def handler(ctx, msg, keychain): - self._check_keychain(keychain, msg.address_n[1] & ~HARDENED) - - await_result( - handler( - wire.DUMMY_CONTEXT, - EthereumGetAddress( - address_n=[44 | HARDENED, 60 | HARDENED, 0 | HARDENED] - ), - ) + async def handler(ctx, msg, keychain, defs): + slip44 = msg.address_n[1] & ~HARDENED + self._check_keychain(keychain, slip44) + self.assertEqual(defs.network.slip44, slip44) + + vectors = ( + # Ethereum + [44 | HARDENED, 60 | HARDENED, 0 | HARDENED], + # Ethereum from Ledger Live legacy path + [44 | HARDENED, 60 | HARDENED, 0 | HARDENED, 0], + # Ethereum Classic + [44 | HARDENED, 61 | HARDENED, 0 | HARDENED], ) - await_result( # Ethereum from Ledger Live legacy path - handler( - wire.DUMMY_CONTEXT, - EthereumGetAddress( - address_n=[44 | HARDENED, 60 | HARDENED, 0 | HARDENED, 0] - ), + for address_n in vectors: + await_result( + handler(wire.DUMMY_CONTEXT, EthereumGetAddress(address_n=address_n)) ) - ) - await_result( - handler( - wire.DUMMY_CONTEXT, - EthereumGetAddress( - address_n=[44 | HARDENED, 108 | HARDENED, 0 | HARDENED] - ), + with self.assertRaises(wire.DataError): + await_result( + handler( # unknown network + wire.DUMMY_CONTEXT, + EthereumGetAddress( + address_n=[44 | HARDENED, 0 | HARDENED, 0 | HARDENED] + ), + ) ) + + def test_with_keychain_from_path_external(self): + FORBIDDEN_SYMBOL = "forbidden name" + + @with_keychain_from_path(*PATTERNS_ADDRESS) + async def handler(ctx, msg, keychain, defs): + slip44 = msg.address_n[1] & ~HARDENED + self._check_keychain(keychain, slip44) + self.assertEqual(defs.network.slip44, slip44) + self.assertNotEqual(defs.network.name, FORBIDDEN_SYMBOL) + + vectors_valid = ( # slip44, network_def + # invalid network is ignored when there is a builtin + (60, b"hello"), + # valid network is ignored when there is a builtin + (60, encode_network(slip44=60, symbol=FORBIDDEN_SYMBOL)), + # valid network is accepted for unknown slip44 ids + (33333, encode_network(slip44=33333)), ) - with self.assertRaises(wire.DataError): + for slip44, encoded_network in vectors_valid: await_result( handler( wire.DUMMY_CONTEXT, EthereumGetAddress( - address_n=[44 | HARDENED, 0 | HARDENED, 0 | HARDENED] + address_n=[44 | HARDENED, slip44 | HARDENED, 0 | HARDENED], + encoded_network=encoded_network, ), ) ) - def test_with_keychain_from_chain_id(self): + vectors_invalid = ( # slip44, network_def + # invalid network is rejected + (30000, b"hello"), + # invalid network does not prove mismatched slip44 id + (30000, encode_network(slip44=666)), + ) + + for slip44, encoded_network in vectors_invalid: + with self.assertRaises(wire.DataError): + await_result( + handler( + wire.DUMMY_CONTEXT, + EthereumGetAddress( + address_n=[44 | HARDENED, slip44 | HARDENED, 0 | HARDENED], + encoded_network=encoded_network, + ), + ) + ) + + def test_with_keychain_from_chain_id_builtin(self): @with_keychain_from_chain_id - async def handler_chain_id(ctx, msg, keychain): + async def handler_chain_id(ctx, msg, keychain, defs): slip44_id = msg.address_n[1] & ~HARDENED # standard tests self._check_keychain(keychain, slip44_id) # provided address should succeed too keychain.derive(msg.address_n) + self.assertEqual(defs.network.chain_id, msg.chain_id) - await_result( # Ethereum - handler_chain_id( - wire.DUMMY_CONTEXT, - EthereumSignTx( - address_n=[44 | HARDENED, 60 | HARDENED, 0 | HARDENED], - chain_id=1, - gas_price=b"", - gas_limit=b"", - ), - ) - ) - - await_result( # Ethereum from Ledger Live legacy path - handler_chain_id( - wire.DUMMY_CONTEXT, - EthereumSignTx( - address_n=[44 | HARDENED, 60 | HARDENED, 0 | HARDENED, 0], - chain_id=1, - gas_price=b"", - gas_limit=b"", - ), - ) - ) - - await_result( # Ethereum Classic - handler_chain_id( - wire.DUMMY_CONTEXT, - EthereumSignTx( - address_n=[44 | HARDENED, 61 | HARDENED, 0 | HARDENED], - chain_id=61, - gas_price=b"", - gas_limit=b"", - ), - ) + vectors = ( # chain_id, address_n + # Ethereum + (1, [44 | HARDENED, 60 | HARDENED, 0 | HARDENED]), + # Ethereum from Ledger Live legacy path + (1, [44 | HARDENED, 60 | HARDENED, 0 | HARDENED, 0]), + # Ethereum Classic + (61, [44 | HARDENED, 61 | HARDENED, 0 | HARDENED]), + # ETH slip44, ETC chain_id + # (known networks are allowed to use eth slip44 for cross-signing) + (61, [44 | HARDENED, 60 | HARDENED, 0 | HARDENED]), ) - # Known chain-ids are allowed to use Ethereum derivation paths too, as there is - # no risk of replaying the transaction on the Ethereum chain - await_result( # ETH slip44 with ETC chain-id - handler_chain_id( - wire.DUMMY_CONTEXT, - EthereumSignTx( - address_n=[44 | HARDENED, 60 | HARDENED, 0 | HARDENED], - chain_id=61, - gas_price=b"", - gas_limit=b"", - ), + for chain_id, address_n in vectors: + await_result( # Ethereum + handler_chain_id( + wire.DUMMY_CONTEXT, + EthereumSignTx( + address_n=address_n, + chain_id=chain_id, + gas_price=b"", + gas_limit=b"", + ), + ) ) - ) with self.assertRaises(wire.DataError): await_result( # chain_id and network mismatch @@ -193,6 +240,136 @@ class TestEthereumKeychain(unittest.TestCase): ) ) + def test_with_keychain_from_chain_id_external(self): + FORBIDDEN_SYMBOL = "forbidden name" + + @with_keychain_from_chain_id + async def handler_chain_id(ctx, msg, keychain, defs): + slip44_id = msg.address_n[1] & ~HARDENED + # standard tests + self._check_keychain(keychain, slip44_id) + # provided address should succeed too + keychain.derive(msg.address_n) + self.assertEqual(defs.network.chain_id, msg.chain_id) + self.assertNotEqual(defs.network.name, FORBIDDEN_SYMBOL) + + vectors_valid = ( # chain_id, address_n, encoded_network + # invalid network is ignored when there is a builtin + (1, [44 | HARDENED, 60 | HARDENED, 0 | HARDENED], b"hello"), + # valid network is ignored when there is a builtin + ( + 1, + [44 | HARDENED, 60 | HARDENED, 0 | HARDENED], + encode_network(slip44=60, symbol=FORBIDDEN_SYMBOL), + ), + # valid network is accepted for unknown chain ids + ( + 33333, + [44 | HARDENED, 33333 | HARDENED, 0 | HARDENED], + encode_network(slip44=33333, chain_id=33333), + ), + # valid network is allowed to cross-sign for Ethereum slip44 + ( + 33333, + [44 | HARDENED, 60 | HARDENED, 0 | HARDENED], + encode_network(slip44=33333, chain_id=33333), + ), + # valid network where slip44 and chain_id are different + ( + 44444, + [44 | HARDENED, 33333 | HARDENED, 0 | HARDENED], + encode_network(slip44=33333, chain_id=44444), + ), + ) + + for chain_id, address_n, encoded_network in vectors_valid: + await_result( + handler_chain_id( + wire.DUMMY_CONTEXT, + EthereumSignTx( + address_n=address_n, + chain_id=chain_id, + gas_price=b"", + gas_limit=b"", + definitions=EthereumDefinitions( + encoded_network=encoded_network + ), + ), + ) + ) + + vectors_invalid = ( # chain_id, address_n, encoded_network + # invalid network is rejected + (30000, [44 | HARDENED, 30000 | HARDENED, 0 | HARDENED], b"hello"), + # invalid network does not prove mismatched slip44 id + ( + 30000, + [44 | HARDENED, 30000 | HARDENED, 0 | HARDENED], + encode_network(chain_id=30000, slip44=666), + ), + # invalid network does not prove mismatched chain_id + ( + 30000, + [44 | HARDENED, 30000 | HARDENED, 0 | HARDENED], + encode_network(chain_id=666, slip44=30000), + ), + ) + + for chain_id, address_n, encoded_network in vectors_invalid: + with self.assertRaises(wire.DataError): + await_result( + handler_chain_id( + wire.DUMMY_CONTEXT, + EthereumSignTx( + address_n=address_n, + chain_id=chain_id, + gas_price=b"", + gas_limit=b"", + definitions=EthereumDefinitions( + encoded_network=encoded_network + ), + ), + ) + ) + + def test_message_types(self) -> None: + network = make_network(symbol="Testing Network") + encoded_network = encode_network(network) + + messages = ( + EthereumSignTx( + gas_price=b"", + gas_limit=b"", + chain_id=0, + definitions=EthereumDefinitions(encoded_network=encoded_network), + ), + EthereumSignMessage( + message=b"", + encoded_network=encoded_network, + ), + EthereumSignTxEIP1559( + chain_id=0, + gas_limit=b"", + max_gas_fee=b"", + max_priority_fee=b"", + nonce=b"", + value=b"", + data_length=0, + definitions=EthereumDefinitions(encoded_network=encoded_network), + ), + EthereumSignTypedData( + primary_type="", + definitions=EthereumDefinitions(encoded_network=encoded_network), + ), + EthereumGetAddress( + encoded_network=encoded_network, + ), + ) + + for message in messages: + defs = _defs_from_message(message, chain_id=0) + self.assertEqual(defs.network, network) + if __name__ == "__main__": unittest.main() diff --git a/core/tests/test_apps.ethereum.layout.py b/core/tests/test_apps.ethereum.layout.py index e811056e1..324dfac79 100644 --- a/core/tests/test_apps.ethereum.layout.py +++ b/core/tests/test_apps.ethereum.layout.py @@ -1,104 +1,109 @@ from common import * if not utils.BITCOIN_ONLY: + from apps.ethereum import networks from apps.ethereum.layout import format_ethereum_amount - from apps.ethereum.tokens import token_by_chain_address + from apps.ethereum.tokens import UNKNOWN_TOKEN + + from ethereum_common import make_network, make_token + + ETH = networks.by_chain_id(1) @unittest.skipUnless(not utils.BITCOIN_ONLY, "altcoin") class TestFormatEthereumAmount(unittest.TestCase): + def test_denominations(self): + text = format_ethereum_amount(1, None, ETH) + self.assertEqual(text, "1 Wei ETH") + text = format_ethereum_amount(1000, None, ETH) + self.assertEqual(text, "1,000 Wei ETH") + text = format_ethereum_amount(1000000, None, ETH) + self.assertEqual(text, "1,000,000 Wei ETH") + text = format_ethereum_amount(10000000, None, ETH) + self.assertEqual(text, "10,000,000 Wei ETH") + text = format_ethereum_amount(100000000, None, ETH) + self.assertEqual(text, "100,000,000 Wei ETH") + text = format_ethereum_amount(1000000000, None, ETH) + self.assertEqual(text, "0.000000001 ETH") + text = format_ethereum_amount(10000000000, None, ETH) + self.assertEqual(text, "0.00000001 ETH") + text = format_ethereum_amount(100000000000, None, ETH) + self.assertEqual(text, "0.0000001 ETH") + text = format_ethereum_amount(1000000000000, None, ETH) + self.assertEqual(text, "0.000001 ETH") + text = format_ethereum_amount(10000000000000, None, ETH) + self.assertEqual(text, "0.00001 ETH") + text = format_ethereum_amount(100000000000000, None, ETH) + self.assertEqual(text, "0.0001 ETH") + text = format_ethereum_amount(1000000000000000, None, ETH) + self.assertEqual(text, "0.001 ETH") + text = format_ethereum_amount(10000000000000000, None, ETH) + self.assertEqual(text, "0.01 ETH") + text = format_ethereum_amount(100000000000000000, None, ETH) + self.assertEqual(text, "0.1 ETH") + text = format_ethereum_amount(1000000000000000000, None, ETH) + self.assertEqual(text, "1 ETH") + text = format_ethereum_amount(10000000000000000000, None, ETH) + self.assertEqual(text, "10 ETH") + text = format_ethereum_amount(100000000000000000000, None, ETH) + self.assertEqual(text, "100 ETH") + text = format_ethereum_amount(1000000000000000000000, None, ETH) + self.assertEqual(text, "1,000 ETH") - def test_format(self): - text = format_ethereum_amount(1, None, 1) - self.assertEqual(text, '1 Wei ETH') - text = format_ethereum_amount(1000, None, 1) - self.assertEqual(text, '1,000 Wei ETH') - text = format_ethereum_amount(1000000, None, 1) - self.assertEqual(text, '1,000,000 Wei ETH') - text = format_ethereum_amount(10000000, None, 1) - self.assertEqual(text, '10,000,000 Wei ETH') - text = format_ethereum_amount(100000000, None, 1) - self.assertEqual(text, '100,000,000 Wei ETH') - text = format_ethereum_amount(1000000000, None, 1) - self.assertEqual(text, '0.000000001 ETH') - text = format_ethereum_amount(10000000000, None, 1) - self.assertEqual(text, '0.00000001 ETH') - text = format_ethereum_amount(100000000000, None, 1) - self.assertEqual(text, '0.0000001 ETH') - text = format_ethereum_amount(1000000000000, None, 1) - self.assertEqual(text, '0.000001 ETH') - text = format_ethereum_amount(10000000000000, None, 1) - self.assertEqual(text, '0.00001 ETH') - text = format_ethereum_amount(100000000000000, None, 1) - self.assertEqual(text, '0.0001 ETH') - text = format_ethereum_amount(1000000000000000, None, 1) - self.assertEqual(text, '0.001 ETH') - text = format_ethereum_amount(10000000000000000, None, 1) - self.assertEqual(text, '0.01 ETH') - text = format_ethereum_amount(100000000000000000, None, 1) - self.assertEqual(text, '0.1 ETH') - text = format_ethereum_amount(1000000000000000000, None, 1) - self.assertEqual(text, '1 ETH') - text = format_ethereum_amount(10000000000000000000, None, 1) - self.assertEqual(text, '10 ETH') - text = format_ethereum_amount(100000000000000000000, None, 1) - self.assertEqual(text, '100 ETH') - text = format_ethereum_amount(1000000000000000000000, None, 1) - self.assertEqual(text, '1,000 ETH') - - text = format_ethereum_amount(1000000000000000000, None, 61) - self.assertEqual(text, '1 ETC') - text = format_ethereum_amount(1000000000000000000, None, 31) - self.assertEqual(text, '1 tRBTC') + def test_precision(self): + text = format_ethereum_amount(1000000000000000001, None, ETH) + self.assertEqual(text, "1.000000000000000001 ETH") + text = format_ethereum_amount(10000000000000000001, None, ETH) + self.assertEqual(text, "10.000000000000000001 ETH") - text = format_ethereum_amount(1000000000000000001, None, 1) - self.assertEqual(text, '1.000000000000000001 ETH') - text = format_ethereum_amount(10000000000000000001, None, 1) - self.assertEqual(text, '10.000000000000000001 ETH') - text = format_ethereum_amount(10000000000000000001, None, 61) - self.assertEqual(text, '10.000000000000000001 ETC') - text = format_ethereum_amount(1000000000000000001, None, 31) - self.assertEqual(text, '1.000000000000000001 tRBTC') + def test_symbols(self): + fake_network = make_network(symbol="FAKE") + text = format_ethereum_amount(1, None, fake_network) + self.assertEqual(text, "1 Wei FAKE") + text = format_ethereum_amount(1000000000000000000, None, fake_network) + self.assertEqual(text, "1 FAKE") + text = format_ethereum_amount(1000000000000000001, None, fake_network) + self.assertEqual(text, "1.000000000000000001 FAKE") def test_unknown_chain(self): # unknown chain - text = format_ethereum_amount(1, None, 9999) - self.assertEqual(text, '1 Wei UNKN') - text = format_ethereum_amount(10000000000000000001, None, 9999) - self.assertEqual(text, '10.000000000000000001 UNKN') + text = format_ethereum_amount(1, None, networks.UNKNOWN_NETWORK) + self.assertEqual(text, "1 Wei UNKN") + text = format_ethereum_amount( + 10000000000000000001, None, networks.UNKNOWN_NETWORK + ) + self.assertEqual(text, "10.000000000000000001 UNKN") def test_tokens(self): # tokens with low decimal values # USDC has 6 decimals - usdc_token = token_by_chain_address(1, unhexlify("a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48")) - # ICO has 10 decimals - ico_token = token_by_chain_address(1, unhexlify("a33e729bf4fdeb868b534e1f20523463d9c46bee")) - + usdc_token = make_token(symbol="USDC", decimals=6) # when decimals < 10, should never display 'Wei' format - text = format_ethereum_amount(1, usdc_token, 1) - self.assertEqual(text, '0.000001 USDC') - text = format_ethereum_amount(0, usdc_token, 1) - self.assertEqual(text, '0 USDC') + text = format_ethereum_amount(1, usdc_token, ETH) + self.assertEqual(text, "0.000001 USDC") + text = format_ethereum_amount(0, usdc_token, ETH) + self.assertEqual(text, "0 USDC") - text = format_ethereum_amount(1, ico_token, 1) - self.assertEqual(text, '1 Wei ICO') - text = format_ethereum_amount(9, ico_token, 1) - self.assertEqual(text, '9 Wei ICO') - text = format_ethereum_amount(10, ico_token, 1) - self.assertEqual(text, '0.000000001 ICO') - text = format_ethereum_amount(11, ico_token, 1) - self.assertEqual(text, '0.0000000011 ICO') + # ICO has 10 decimals + ico_token = make_token(symbol="ICO", decimals=10) + text = format_ethereum_amount(1, ico_token, ETH) + self.assertEqual(text, "1 Wei ICO") + text = format_ethereum_amount(9, ico_token, ETH) + self.assertEqual(text, "9 Wei ICO") + text = format_ethereum_amount(10, ico_token, ETH) + self.assertEqual(text, "0.000000001 ICO") + text = format_ethereum_amount(11, ico_token, ETH) + self.assertEqual(text, "0.0000000011 ICO") def test_unknown_token(self): - unknown_token = token_by_chain_address(1, b"hello") - text = format_ethereum_amount(1, unknown_token, 1) - self.assertEqual(text, '1 Wei UNKN') - text = format_ethereum_amount(0, unknown_token, 1) - self.assertEqual(text, '0 Wei UNKN') + text = format_ethereum_amount(1, UNKNOWN_TOKEN, ETH) + self.assertEqual(text, "1 Wei UNKN") + text = format_ethereum_amount(0, UNKNOWN_TOKEN, ETH) + self.assertEqual(text, "0 Wei UNKN") # unknown token has 0 decimals so is always wei - text = format_ethereum_amount(1000000000000000000, unknown_token, 1) - self.assertEqual(text, '1,000,000,000,000,000,000 Wei UNKN') + text = format_ethereum_amount(1000000000000000000, UNKNOWN_TOKEN, ETH) + self.assertEqual(text, "1,000,000,000,000,000,000 Wei UNKN") -if __name__ == '__main__': +if __name__ == "__main__": unittest.main() diff --git a/core/tests/test_apps.ethereum.tokens.py b/core/tests/test_apps.ethereum.tokens.py index 6c8eba7e3..464cc1416 100644 --- a/core/tests/test_apps.ethereum.tokens.py +++ b/core/tests/test_apps.ethereum.tokens.py @@ -6,28 +6,17 @@ if not utils.BITCOIN_ONLY: @unittest.skipUnless(not utils.BITCOIN_ONLY, "altcoin") class TestEthereumTokens(unittest.TestCase): - def test_token_by_chain_address(self): - token = tokens.token_by_chain_address(1, b'\x7d\xd7\xf5\x6d\x69\x7c\xc0\xf2\xb5\x2b\xd5\x5c\x05\x7f\x37\x8f\x1f\xe6\xab\x4b') - self.assertEqual(token.symbol, '$TEAK') - - token = tokens.token_by_chain_address(1, b'\x59\x41\x6a\x25\x62\x8a\x76\xb4\x73\x0e\xc5\x14\x86\x11\x4c\x32\xe0\xb5\x82\xa1') - self.assertEqual(token.symbol, 'PLASMA') - self.assertEqual(token.decimals, 6) - - token = tokens.token_by_chain_address(4, b'\x0a\x05\x7a\x87\xce\x9c\x56\xd7\xe3\x36\xb4\x17\xc7\x9c\xf3\x0e\x8d\x27\x86\x0b') - self.assertEqual(token.symbol, 'WALL') - self.assertEqual(token.decimals, 15) - - token = tokens.token_by_chain_address(8, b'\x4b\x48\x99\xa1\x0f\x3e\x50\x7d\xb2\x07\xb0\xee\x24\x26\x02\x9e\xfa\x16\x8a\x67') - self.assertEqual(token.symbol, 'QWARK') + token = tokens.token_by_chain_address(1, b"\x7f\xc6\x65\x00\xc8\x4a\x76\xad\x7e\x9c\x93\x43\x7b\xfc\x5a\xc3\x3e\x2d\xda\xe9") + self.assertEqual(token.symbol, 'AAVE') # invalid adress, invalid chain token = tokens.token_by_chain_address(999, b'\x00\xFF') - self.assertIs(token, tokens.UNKNOWN_TOKEN) - self.assertEqual(token.symbol, 'Wei UNKN') - self.assertEqual(token.decimals, 0) + self.assertIs(token, None) + + self.assertEqual(tokens.UNKNOWN_TOKEN.symbol, 'Wei UNKN') + self.assertEqual(tokens.UNKNOWN_TOKEN.decimals, 0) if __name__ == '__main__': diff --git a/core/tests/unittest.py b/core/tests/unittest.py index 368175fd6..20f7013cc 100644 --- a/core/tests/unittest.py +++ b/core/tests/unittest.py @@ -26,16 +26,24 @@ class AssertRaisesContext: class TestCase: + def __init__(self) -> None: + self.__equality_functions = {} def fail(self, msg=''): ensure(False, msg) + def addTypeEqualityFunc(self, typeobj, function): + ensure(callable(function)) + self.__equality_functions[typeobj.__name__] = function + def assertEqual(self, x, y, msg=''): if not msg: msg = f"{repr(x)} vs (expected) {repr(y)}" if x.__class__ == y.__class__ and x.__class__.__name__ == "Msg": self.assertMessageEqual(x, y) + elif x.__class__.__name__ in self.__equality_functions: + self.__equality_functions[x.__class__.__name__](x, y, msg) else: ensure(x == y, msg) @@ -156,21 +164,32 @@ class TestCase: self.assertIsInstance(a, b.__class__, msg) self.assertEqual(a.__dict__, b.__dict__, msg) + def assertDictEqual(self, x, y): + self.assertEqual( + len(x), + len(y), + f"Dict lengths not equal - {len(x)} vs {len(y)}" + ) + + for key in x: + self.assertIn( + key, + y, + f"Key {key} not found in second dict." + ) + self.assertEqual( + x[key], + y[key], + f"At key {key} expected {x[key]}, found {y[key]}" + ) + def assertMessageEqual(self, x, y): self.assertEqual( x.MESSAGE_NAME, y.MESSAGE_NAME, f"Expected {x.MESSAGE_NAME}, found {y.MESSAGE_NAME}" ) - xdict = x.__dict__ - ydict = y.__dict__ - for key in xdict: - self.assertTrue(key in ydict) - self.assertEqual( - xdict[key], - ydict[key], - f"At {x.MESSAGE_NAME}.{key} expected {xdict[key]}, found {ydict[key]}" - ) + self.assertDictEqual(x.__dict__, y.__dict__) def skip(msg):