2018-09-10 14:40:31 +00:00
|
|
|
# This file is part of the Trezor project.
|
|
|
|
#
|
2019-05-29 16:44:09 +00:00
|
|
|
# Copyright (C) 2012-2019 SatoshiLabs and contributors
|
2018-09-10 14:40:31 +00:00
|
|
|
#
|
|
|
|
# This library is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
# as published by the Free Software Foundation.
|
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the License along with this library.
|
|
|
|
# If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
2022-01-31 12:25:30 +00:00
|
|
|
from trezorlib.debuglink import TrezorClientDebugLink as Client
|
2018-09-10 14:40:31 +00:00
|
|
|
from trezorlib.tezos import get_public_key
|
|
|
|
from trezorlib.tools import parse_path
|
|
|
|
|
|
|
|
|
2019-08-22 16:47:01 +00:00
|
|
|
@pytest.mark.altcoin
|
2018-09-10 14:40:31 +00:00
|
|
|
@pytest.mark.tezos
|
2024-03-11 15:20:08 +00:00
|
|
|
@pytest.mark.skip_t1b1
|
2022-01-31 12:25:30 +00:00
|
|
|
def test_tezos_get_public_key(client: Client):
|
|
|
|
path = parse_path("m/44h/1729h/0h")
|
2021-11-10 21:19:53 +00:00
|
|
|
pk = get_public_key(client, path)
|
|
|
|
assert pk == "edpkttLhEbVfMC3DhyVVFzdwh8ncRnEWiLD1x8TAuPU7vSJak7RtBX"
|
2018-09-10 14:40:31 +00:00
|
|
|
|
2022-01-31 12:25:30 +00:00
|
|
|
path = parse_path("m/44h/1729h/1h")
|
2021-11-10 21:19:53 +00:00
|
|
|
pk = get_public_key(client, path)
|
|
|
|
assert pk == "edpkuTPqWjcApwyD3VdJhviKM5C13zGk8c4m87crgFarQboF3Mp56f"
|