diff --git a/core/src/apps/ethereum/networks.py b/core/src/apps/ethereum/networks.py index e8b5ecad37..26730b04b5 100644 --- a/core/src/apps/ethereum/networks.py +++ b/core/src/apps/ethereum/networks.py @@ -1046,7 +1046,7 @@ def _networks_iterator() -> Iterator[NetworkInfoTuple]: 1246, # chain_id 60, # slip44 "OM", # shortcut - "OM Chain", # name + "OM Platform", # name False, # rskip60 ) yield ( @@ -1819,6 +1819,13 @@ def _networks_iterator() -> Iterator[NetworkInfoTuple]: "OpenChain", # name False, # rskip60 ) + yield ( + 846000, # chain_id + 60, # slip44 + "APTA", # shortcut + "4GoodNetwork", # name + False, # rskip60 + ) yield ( 888888, # chain_id 60, # slip44 diff --git a/core/src/apps/ethereum/tokens.py b/core/src/apps/ethereum/tokens.py index 2c19620ab9..b0f66afb43 100644 --- a/core/src/apps/ethereum/tokens.py +++ b/core/src/apps/ethereum/tokens.py @@ -45,6 +45,11 @@ def _token_iterator(chain_id: int) -> Iterator[tuple[bytes, str, int]]: "$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", @@ -4755,6 +4760,11 @@ def _token_iterator(chain_id: int) -> Iterator[tuple[bytes, str, int]]: "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", @@ -8315,6 +8325,11 @@ def _token_iterator(chain_id: int) -> Iterator[tuple[bytes, str, int]]: "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", @@ -8590,6 +8605,11 @@ def _token_iterator(chain_id: int) -> Iterator[tuple[bytes, str, int]]: "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",