2018-06-21 14:28:34 +00:00
|
|
|
# This file is part of the Trezor project.
|
2017-01-03 18:40:05 +00:00
|
|
|
#
|
2019-05-29 16:44:09 +00:00
|
|
|
# Copyright (C) 2012-2019 SatoshiLabs and contributors
|
2017-01-03 18:40:05 +00:00
|
|
|
#
|
|
|
|
# This library is free software: you can redistribute it and/or modify
|
2018-06-21 14:28:34 +00:00
|
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
# as published by the Free Software Foundation.
|
2017-01-03 18:40:05 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
2018-06-21 14:28:34 +00:00
|
|
|
# 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>.
|
2017-01-03 18:40:05 +00:00
|
|
|
|
2019-08-27 14:58:59 +00:00
|
|
|
import pytest
|
|
|
|
|
2020-03-04 14:12:30 +00:00
|
|
|
from trezorlib import btc, messages, tools
|
2022-01-31 12:25:30 +00:00
|
|
|
from trezorlib.debuglink import TrezorClientDebugLink as Client
|
2023-02-14 22:47:20 +00:00
|
|
|
from trezorlib.exceptions import Cancelled, TrezorFailure
|
2018-08-13 16:21:24 +00:00
|
|
|
|
2020-05-13 09:36:03 +00:00
|
|
|
VECTORS = ( # path, script_type, address
|
|
|
|
(
|
|
|
|
"m/44h/0h/12h/0/0",
|
|
|
|
messages.InputScriptType.SPENDADDRESS,
|
|
|
|
"1FM6Kz3oT3GoGv65jNpU8AFFun8nHAXrPk",
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"m/49h/0h/12h/0/0",
|
|
|
|
messages.InputScriptType.SPENDP2SHWITNESS,
|
|
|
|
"3HfEUkuwmtZ87XzowkiD5nMp5Q3hqKXZ2i",
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"m/84h/0h/12h/0/0",
|
|
|
|
messages.InputScriptType.SPENDWITNESS,
|
|
|
|
"bc1qduvap743hcl7twn8u6f9l0u8y7x83965xy0raj",
|
|
|
|
),
|
2022-08-31 10:16:14 +00:00
|
|
|
(
|
|
|
|
"m/86h/0h/12h/0/0",
|
|
|
|
messages.InputScriptType.SPENDTAPROOT,
|
|
|
|
"bc1pnzsh9t0n0vjanwgkuf9cyrp6j6lhfe63xaekuu7qxkse93vkyvgqxn4hff",
|
|
|
|
),
|
2020-05-13 09:36:03 +00:00
|
|
|
)
|
|
|
|
|
2023-02-14 22:47:20 +00:00
|
|
|
CORNER_BUTTON = (215, 25)
|
2020-05-13 09:36:03 +00:00
|
|
|
|
2023-02-14 22:47:20 +00:00
|
|
|
|
|
|
|
@pytest.mark.skip_t2
|
2020-05-13 09:36:03 +00:00
|
|
|
@pytest.mark.parametrize("path, script_type, address", VECTORS)
|
2023-02-14 22:47:20 +00:00
|
|
|
def test_show_t1(
|
2022-10-25 13:08:19 +00:00
|
|
|
client: Client, path: str, script_type: messages.InputScriptType, address: str
|
|
|
|
):
|
2022-03-09 09:00:24 +00:00
|
|
|
def input_flow():
|
|
|
|
yield
|
|
|
|
client.debug.press_no()
|
|
|
|
yield
|
|
|
|
client.debug.press_yes()
|
|
|
|
|
|
|
|
with client:
|
|
|
|
client.set_input_flow(input_flow)
|
|
|
|
assert (
|
|
|
|
btc.get_address(
|
|
|
|
client,
|
|
|
|
"Bitcoin",
|
|
|
|
tools.parse_path(path),
|
|
|
|
script_type=script_type,
|
|
|
|
show_display=True,
|
|
|
|
)
|
|
|
|
== address
|
2018-08-13 16:21:24 +00:00
|
|
|
)
|
2020-05-13 09:36:03 +00:00
|
|
|
|
|
|
|
|
2023-02-14 22:47:20 +00:00
|
|
|
@pytest.mark.skip_t1
|
|
|
|
@pytest.mark.parametrize("path, script_type, address", VECTORS)
|
|
|
|
def test_show_tt(
|
|
|
|
client: Client, path: str, script_type: messages.InputScriptType, address: str
|
|
|
|
):
|
|
|
|
def input_flow():
|
|
|
|
yield
|
2023-03-20 14:23:27 +00:00
|
|
|
client.debug.click(CORNER_BUTTON)
|
2023-02-14 22:47:20 +00:00
|
|
|
yield
|
2023-03-21 09:44:50 +00:00
|
|
|
# synchronize; TODO get rid of this once we have single-global-layout
|
|
|
|
client.debug.synchronize_at("HorizontalPage")
|
|
|
|
|
2023-02-14 22:47:20 +00:00
|
|
|
client.debug.swipe_left(wait=True)
|
|
|
|
client.debug.swipe_right(wait=True)
|
|
|
|
client.debug.swipe_left(wait=True)
|
2023-03-20 14:23:27 +00:00
|
|
|
client.debug.click(CORNER_BUTTON)
|
2023-02-14 22:47:20 +00:00
|
|
|
yield
|
|
|
|
client.debug.press_no()
|
|
|
|
yield
|
|
|
|
client.debug.press_no()
|
|
|
|
yield
|
|
|
|
client.debug.press_yes()
|
|
|
|
|
|
|
|
with client:
|
|
|
|
client.set_input_flow(input_flow)
|
|
|
|
assert (
|
|
|
|
btc.get_address(
|
|
|
|
client,
|
|
|
|
"Bitcoin",
|
|
|
|
tools.parse_path(path),
|
|
|
|
script_type=script_type,
|
|
|
|
show_display=True,
|
|
|
|
)
|
|
|
|
== address
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.skip_t1
|
|
|
|
@pytest.mark.parametrize("path, script_type, address", VECTORS)
|
|
|
|
def test_show_cancel(
|
|
|
|
client: Client, path: str, script_type: messages.InputScriptType, address: str
|
|
|
|
):
|
|
|
|
def input_flow():
|
|
|
|
yield
|
2023-03-20 14:23:27 +00:00
|
|
|
client.debug.click(CORNER_BUTTON)
|
2023-02-14 22:47:20 +00:00
|
|
|
yield
|
2023-03-21 09:44:50 +00:00
|
|
|
# synchronize; TODO get rid of this once we have single-global-layout
|
|
|
|
client.debug.synchronize_at("HorizontalPage")
|
|
|
|
|
2023-02-14 22:47:20 +00:00
|
|
|
client.debug.swipe_left(wait=True)
|
2023-03-20 14:23:27 +00:00
|
|
|
client.debug.click(CORNER_BUTTON)
|
2023-02-14 22:47:20 +00:00
|
|
|
yield
|
|
|
|
client.debug.press_no()
|
|
|
|
yield
|
|
|
|
client.debug.press_yes()
|
|
|
|
|
|
|
|
with client, pytest.raises(Cancelled):
|
|
|
|
client.set_input_flow(input_flow)
|
|
|
|
btc.get_address(
|
|
|
|
client,
|
|
|
|
"Bitcoin",
|
|
|
|
tools.parse_path(path),
|
|
|
|
script_type=script_type,
|
|
|
|
show_display=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2022-01-31 12:25:30 +00:00
|
|
|
def test_show_unrecognized_path(client: Client):
|
2021-06-23 15:28:50 +00:00
|
|
|
with pytest.raises(TrezorFailure):
|
|
|
|
btc.get_address(
|
|
|
|
client,
|
|
|
|
"Bitcoin",
|
|
|
|
tools.parse_path("m/24684621h/516582h/5156h/21/856"),
|
|
|
|
script_type=messages.InputScriptType.SPENDWITNESS,
|
|
|
|
show_display=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2020-05-13 09:36:03 +00:00
|
|
|
@pytest.mark.multisig
|
2022-01-31 12:25:30 +00:00
|
|
|
def test_show_multisig_3(client: Client):
|
2020-05-13 09:36:03 +00:00
|
|
|
node = btc.get_public_node(
|
2022-01-31 12:25:30 +00:00
|
|
|
client, tools.parse_path("m/45h/0/0"), coin_name="Bitcoin"
|
2020-05-13 09:36:03 +00:00
|
|
|
).node
|
|
|
|
multisig = messages.MultisigRedeemScriptType(
|
|
|
|
pubkeys=[
|
|
|
|
messages.HDNodePathType(node=node, address_n=[1]),
|
|
|
|
messages.HDNodePathType(node=node, address_n=[2]),
|
|
|
|
messages.HDNodePathType(node=node, address_n=[3]),
|
|
|
|
],
|
|
|
|
signatures=[b"", b"", b""],
|
|
|
|
m=2,
|
|
|
|
)
|
|
|
|
|
|
|
|
for i in [1, 2, 3]:
|
2018-08-13 16:21:24 +00:00
|
|
|
assert (
|
2020-05-13 09:36:03 +00:00
|
|
|
btc.get_address(
|
|
|
|
client,
|
|
|
|
"Bitcoin",
|
2022-01-31 12:25:30 +00:00
|
|
|
tools.parse_path(f"m/45h/0/0/{i}"),
|
2020-05-13 09:36:03 +00:00
|
|
|
show_display=True,
|
|
|
|
multisig=multisig,
|
2021-05-21 18:05:19 +00:00
|
|
|
script_type=messages.InputScriptType.SPENDMULTISIG,
|
2020-05-13 09:36:03 +00:00
|
|
|
)
|
2020-10-26 12:32:03 +00:00
|
|
|
== "35Q3tgZZfr9GhVpaqz7fbDK8WXV1V1KxfD"
|
2018-08-13 16:21:24 +00:00
|
|
|
)
|
2014-12-10 14:42:38 +00:00
|
|
|
|
2014-12-10 17:03:54 +00:00
|
|
|
|
2021-07-30 15:39:14 +00:00
|
|
|
VECTORS_MULTISIG = ( # script_type, bip48_type, address, xpubs, ignore_xpub_magic
|
2021-01-14 16:37:39 +00:00
|
|
|
(
|
|
|
|
messages.InputScriptType.SPENDMULTISIG,
|
|
|
|
0,
|
|
|
|
"33TU5DyVi2kFSGQUfmZxNHgPDPqruwdesY",
|
|
|
|
[
|
|
|
|
"xpub6EgGHjcvovyMw8xyoJw9ZRUfjGLS1KUmbjVqMKSNfM6E8hq4EbQ3CpBxfGCPsdxzXtCFuKCxYarzY1TYCG1cmPwq9ep548cM9Ws9rB8V8E8",
|
|
|
|
"xpub6EexEtC6c2rN5QCpzrL2nUNGDfxizCi3kM1C2Mk5a6PfQs4H3F72C642M3XbnzycvvtD4U6vzn1nYPpH8VUmiREc2YuXP3EFgN1uLTrVEj4",
|
|
|
|
"xpub6F6Tq7sVLDrhuV3SpvsVKrKofF6Hx7oKxWLFkN6dbepuMhuYueKUnQo7E972GJyeRHqPKu44V1C9zBL6KW47GXjuprhbNrPQahWAFKoL2rN",
|
|
|
|
],
|
|
|
|
False,
|
|
|
|
),
|
|
|
|
(
|
|
|
|
messages.InputScriptType.SPENDMULTISIG,
|
|
|
|
0,
|
|
|
|
"33TU5DyVi2kFSGQUfmZxNHgPDPqruwdesY",
|
|
|
|
[
|
|
|
|
"xpub6EgGHjcvovyMw8xyoJw9ZRUfjGLS1KUmbjVqMKSNfM6E8hq4EbQ3CpBxfGCPsdxzXtCFuKCxYarzY1TYCG1cmPwq9ep548cM9Ws9rB8V8E8",
|
|
|
|
"xpub6EexEtC6c2rN5QCpzrL2nUNGDfxizCi3kM1C2Mk5a6PfQs4H3F72C642M3XbnzycvvtD4U6vzn1nYPpH8VUmiREc2YuXP3EFgN1uLTrVEj4",
|
|
|
|
"xpub6F6Tq7sVLDrhuV3SpvsVKrKofF6Hx7oKxWLFkN6dbepuMhuYueKUnQo7E972GJyeRHqPKu44V1C9zBL6KW47GXjuprhbNrPQahWAFKoL2rN",
|
|
|
|
],
|
|
|
|
True,
|
|
|
|
),
|
|
|
|
(
|
|
|
|
messages.InputScriptType.SPENDP2SHWITNESS,
|
|
|
|
1,
|
|
|
|
"3PwoNRb1v7HxofcH6xfiq52nFrDarsn1ap",
|
|
|
|
[
|
|
|
|
"Ypub6kQcie2HXa5DFqmgCmad1Lg18pn3UwtXXyTKJkW3bGbQJuTYn55s7x4SVCSTRkjDzawFYP2rL9VkS2YChaN47d2XFyWsbEPevN9n9NXc3T3",
|
|
|
|
"Ypub6kPJfnbTKfxDNwYqbNAijySLYe7ixrVZHn9QksvtwrqCbUoemq5x74A4bH33FWe8p8udC5F2B78JV4EfHYaMupWZhoQRXJ32Z2y7fhowkPA",
|
|
|
|
"Ypub6kppG2Gr3rxZChPFhkMdPdLChewkPwLybPirJGBcJW1mRXeWdWvXLRP7xUcjJgTiGEQcJPKu8PTQMTtLXeiEjP7N2KGpamQnGUvBikJZvvP",
|
|
|
|
],
|
|
|
|
False,
|
|
|
|
),
|
|
|
|
(
|
|
|
|
messages.InputScriptType.SPENDP2SHWITNESS,
|
|
|
|
1,
|
|
|
|
"3PwoNRb1v7HxofcH6xfiq52nFrDarsn1ap",
|
|
|
|
[
|
|
|
|
"xpub6EgGHjcvovyMyyRBRkL1yBEhF4bLKyDSJbHRc6LcqVP7dd5Qm1Y2QmYNfHXPsQrQMUkTvKSAzGkhRaJsgeo6AuEFZAi3bv7AkupGAt826Mt",
|
|
|
|
"xpub6EexEtC6c2rN75CLpLv7hp12esw1ospU4PyX4DmUC5cuvCRWkmY7PsdzmN7yhAmKB2iqa1eLqEPFUc1LGd1Py6iHzzbbXykYPadbh8xQonD",
|
|
|
|
"xpub6F6Tq7sVLDrhvq2kvj72MTttotm3ExftN1Yxbc2BYioUkFGNcTNgdEs48ZhfkLatd8DpgKjDnWiMM1f1Wj9GnfK6KWTzbT8J72afkGf7Y9T",
|
|
|
|
],
|
|
|
|
True,
|
|
|
|
),
|
|
|
|
(
|
|
|
|
messages.InputScriptType.SPENDWITNESS,
|
|
|
|
2,
|
|
|
|
"bc1qqn9s63wly66rhzyz36hwzsa83augj5lve3ucqk5cpt5yvvze5ctsdfcg88",
|
|
|
|
[
|
|
|
|
"Zpub75Et2JhCgFchAwrkdQ2PWeCiEnLmQ8R8a8aANPL5r9a6L4VC9amvLtbmnZaEnS7m3YHd1ZnSYjKp1rFTZLm2cQ2CAuiEyNYaYWyeWEFGEmP",
|
|
|
|
"Zpub75DZyTGNUMVhGRgG7GsoF2FrsAAM48dPMMfYSo9G7iRxUg9FyuG3nMUSeYMXSF2rHtDNpv8skZZyDNzBq5x5znFtsPSDoaAXk5zBUBfdhSh",
|
|
|
|
"Zpub75f5ZgwmCYW37REirFNaE8DBg9qKJznqD498DsTAbX89Lk6tA98huCGM29mHAhwYTo1PSbWLQHXvsmMhDB8W9dFt3Eb2o6hT7HLDrcPebM5",
|
|
|
|
],
|
|
|
|
False,
|
|
|
|
),
|
|
|
|
(
|
|
|
|
messages.InputScriptType.SPENDWITNESS,
|
|
|
|
2,
|
|
|
|
"bc1qqn9s63wly66rhzyz36hwzsa83augj5lve3ucqk5cpt5yvvze5ctsdfcg88",
|
|
|
|
[
|
|
|
|
"xpub6EgGHjcvovyN3nK921zAGPfuB41cJXkYRdt3tLGmiMyvbgHpss4X1eRZwShbEBb1znz2e2bCkCED87QZpin3sSYKbmCzQ9Sc7LaV98ngdeX",
|
|
|
|
"xpub6EexEtC6c2rN9G8eVtqZzmj3oRqBxXxoCryRxk5wyvqnkHwtiBYeT7JEoRUsszW7F8unTNwdx2UNKe9J6Ty7Fpn2JEvyEM4ZJub274iiT1V",
|
|
|
|
"xpub6F6Tq7sVLDrhzFh7EsLLysgNcRWADQ8F4ZT1jpPrTjXycMuWtRRJZx69B2tdcTQoR3ho54K6bkSKz2WoUZ9XQfn1U65nDsbUg6w4VZ5HWdA",
|
|
|
|
],
|
|
|
|
True,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2020-05-13 09:36:03 +00:00
|
|
|
@pytest.mark.skip_t1
|
|
|
|
@pytest.mark.multisig
|
2021-01-14 16:37:39 +00:00
|
|
|
@pytest.mark.parametrize(
|
2021-07-30 15:39:14 +00:00
|
|
|
"script_type, bip48_type, address, xpubs, ignore_xpub_magic", VECTORS_MULTISIG
|
2021-01-14 16:37:39 +00:00
|
|
|
)
|
|
|
|
def test_show_multisig_xpubs(
|
2022-10-25 13:08:19 +00:00
|
|
|
client: Client,
|
|
|
|
script_type: messages.InputScriptType,
|
|
|
|
bip48_type: int,
|
|
|
|
address: str,
|
|
|
|
xpubs: list[str],
|
|
|
|
ignore_xpub_magic: bool,
|
2021-01-14 16:37:39 +00:00
|
|
|
):
|
2020-05-13 09:36:03 +00:00
|
|
|
nodes = [
|
|
|
|
btc.get_public_node(
|
2021-01-14 16:37:39 +00:00
|
|
|
client,
|
2022-01-31 12:25:30 +00:00
|
|
|
tools.parse_path(f"m/48h/0h/{i}h/{bip48_type}h"),
|
2021-01-14 16:37:39 +00:00
|
|
|
coin_name="Bitcoin",
|
2020-05-13 09:36:03 +00:00
|
|
|
)
|
|
|
|
for i in range(3)
|
|
|
|
]
|
|
|
|
multisig = messages.MultisigRedeemScriptType(
|
|
|
|
nodes=[n.node for n in nodes],
|
|
|
|
signatures=[b"", b"", b""],
|
|
|
|
address_n=[0, 0],
|
|
|
|
m=2,
|
|
|
|
)
|
|
|
|
|
|
|
|
for i in range(3):
|
|
|
|
|
|
|
|
def input_flow():
|
|
|
|
yield # show address
|
2023-03-21 09:44:50 +00:00
|
|
|
layout = client.debug.wait_layout()
|
2023-03-06 17:54:23 +00:00
|
|
|
assert "RECEIVE ADDRESS (MULTISIG)" in layout.get_title()
|
2022-10-20 12:47:18 +00:00
|
|
|
assert layout.get_content().replace(" ", "") == address
|
2020-05-13 09:36:03 +00:00
|
|
|
|
2023-02-14 22:47:20 +00:00
|
|
|
client.debug.click(CORNER_BUTTON)
|
2020-05-13 09:36:03 +00:00
|
|
|
yield # show QR code
|
2023-02-14 22:47:20 +00:00
|
|
|
assert "Qr" in client.debug.wait_layout().text
|
|
|
|
|
2023-03-21 09:44:50 +00:00
|
|
|
layout = client.debug.swipe_left(wait=True)
|
2023-02-14 22:47:20 +00:00
|
|
|
# address details
|
|
|
|
assert "Multisig 2 of 3" in layout.text
|
2022-10-25 13:08:19 +00:00
|
|
|
|
|
|
|
# Three xpub pages with the same testing logic
|
|
|
|
for xpub_num in range(3):
|
2023-03-06 17:54:23 +00:00
|
|
|
expected_title = f"MULTISIG XPUB #{xpub_num + 1} " + (
|
2023-02-14 22:47:20 +00:00
|
|
|
"(YOURS)" if i == xpub_num else "(COSIGNER)"
|
2022-10-25 13:08:19 +00:00
|
|
|
)
|
2023-03-21 09:44:50 +00:00
|
|
|
layout = client.debug.swipe_left(wait=True)
|
2023-03-06 17:54:23 +00:00
|
|
|
assert expected_title in layout.get_title()
|
2023-02-14 22:47:20 +00:00
|
|
|
content = layout.get_content().replace(" ", "")
|
|
|
|
assert xpubs[xpub_num] in content
|
2020-05-13 09:36:03 +00:00
|
|
|
|
2023-02-14 22:47:20 +00:00
|
|
|
client.debug.click(CORNER_BUTTON)
|
|
|
|
yield # show address
|
|
|
|
client.debug.press_no()
|
|
|
|
yield # address mismatch
|
|
|
|
client.debug.press_no()
|
|
|
|
yield # show address
|
2020-05-13 09:36:03 +00:00
|
|
|
client.debug.press_yes()
|
|
|
|
|
|
|
|
with client:
|
|
|
|
client.set_input_flow(input_flow)
|
2023-03-21 09:44:50 +00:00
|
|
|
client.debug.synchronize_at("Homescreen")
|
|
|
|
client.watch_layout()
|
2020-05-13 09:36:03 +00:00
|
|
|
btc.get_address(
|
|
|
|
client,
|
|
|
|
"Bitcoin",
|
2022-01-31 12:25:30 +00:00
|
|
|
tools.parse_path(f"m/48h/0h/{i}h/{bip48_type}h/0/0"),
|
2020-05-13 09:36:03 +00:00
|
|
|
show_display=True,
|
|
|
|
multisig=multisig,
|
2021-01-14 16:37:39 +00:00
|
|
|
script_type=script_type,
|
|
|
|
ignore_xpub_magic=ignore_xpub_magic,
|
2018-08-13 16:21:24 +00:00
|
|
|
)
|
2014-12-10 18:53:24 +00:00
|
|
|
|
2020-02-20 11:47:29 +00:00
|
|
|
|
2020-05-13 09:36:03 +00:00
|
|
|
@pytest.mark.multisig
|
2022-01-31 12:25:30 +00:00
|
|
|
def test_show_multisig_15(client: Client):
|
2020-05-13 09:36:03 +00:00
|
|
|
node = btc.get_public_node(
|
2022-01-31 12:25:30 +00:00
|
|
|
client, tools.parse_path("m/45h/0/0"), coin_name="Bitcoin"
|
2020-05-13 09:36:03 +00:00
|
|
|
).node
|
2014-12-12 21:31:40 +00:00
|
|
|
|
2020-05-13 09:36:03 +00:00
|
|
|
pubs = [messages.HDNodePathType(node=node, address_n=[x]) for x in range(15)]
|
2014-12-12 21:31:40 +00:00
|
|
|
|
2020-05-13 09:36:03 +00:00
|
|
|
multisig = messages.MultisigRedeemScriptType(
|
|
|
|
pubkeys=pubs, signatures=[b""] * 15, m=15
|
|
|
|
)
|
2014-12-10 18:53:24 +00:00
|
|
|
|
2020-05-13 09:36:03 +00:00
|
|
|
for i in range(15):
|
|
|
|
assert (
|
|
|
|
btc.get_address(
|
|
|
|
client,
|
|
|
|
"Bitcoin",
|
2022-01-31 12:25:30 +00:00
|
|
|
tools.parse_path(f"m/45h/0/0/{i}"),
|
2020-05-13 09:36:03 +00:00
|
|
|
show_display=True,
|
|
|
|
multisig=multisig,
|
2021-05-21 18:05:19 +00:00
|
|
|
script_type=messages.InputScriptType.SPENDMULTISIG,
|
2018-08-13 16:21:24 +00:00
|
|
|
)
|
2020-10-26 12:32:03 +00:00
|
|
|
== "3GG78bp1hA3mu9xv1vZLXiENmeabmi7WKQ"
|
2020-05-13 09:36:03 +00:00
|
|
|
)
|