2018-06-21 14:28:34 +00:00
|
|
|
# This file is part of the Trezor project.
|
2017-12-19 18:24:18 +00:00
|
|
|
#
|
2019-05-29 16:44:09 +00:00
|
|
|
# Copyright (C) 2012-2019 SatoshiLabs and contributors
|
2017-12-19 18:24:18 +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-12-19 18:24:18 +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-12-19 18:24:18 +00:00
|
|
|
|
2018-08-13 16:21:24 +00:00
|
|
|
from trezorlib import btc, messages as proto
|
2018-04-18 13:53:40 +00:00
|
|
|
from trezorlib.tools import parse_path
|
2017-06-23 19:31:42 +00:00
|
|
|
|
2018-08-13 16:21:24 +00:00
|
|
|
from .common import TrezorTest
|
2017-05-12 22:59:39 +00:00
|
|
|
|
|
|
|
|
2018-08-13 16:21:24 +00:00
|
|
|
class TestMsgGetaddressSegwitNative(TrezorTest):
|
2017-05-12 22:59:39 +00:00
|
|
|
def test_show_segwit(self):
|
|
|
|
self.setup_mnemonic_allallall()
|
2018-08-13 16:21:24 +00:00
|
|
|
assert (
|
|
|
|
btc.get_address(
|
|
|
|
self.client,
|
|
|
|
"Testnet",
|
|
|
|
parse_path("49'/1'/0'/0/0"),
|
|
|
|
True,
|
|
|
|
None,
|
|
|
|
script_type=proto.InputScriptType.SPENDWITNESS,
|
|
|
|
)
|
|
|
|
== "tb1qqzv60m9ajw8drqulta4ld4gfx0rdh82un5s65s"
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
btc.get_address(
|
|
|
|
self.client,
|
|
|
|
"Testnet",
|
|
|
|
parse_path("49'/1'/0'/1/0"),
|
|
|
|
False,
|
|
|
|
None,
|
|
|
|
script_type=proto.InputScriptType.SPENDWITNESS,
|
|
|
|
)
|
|
|
|
== "tb1q694ccp5qcc0udmfwgp692u2s2hjpq5h407urtu"
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
btc.get_address(
|
|
|
|
self.client,
|
|
|
|
"Testnet",
|
|
|
|
parse_path("44'/1'/0'/0/0"),
|
|
|
|
False,
|
|
|
|
None,
|
|
|
|
script_type=proto.InputScriptType.SPENDWITNESS,
|
|
|
|
)
|
|
|
|
== "tb1q54un3q39sf7e7tlfq99d6ezys7qgc62a6rxllc"
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
btc.get_address(
|
|
|
|
self.client,
|
|
|
|
"Testnet",
|
|
|
|
parse_path("44'/1'/0'/0/0"),
|
|
|
|
False,
|
|
|
|
None,
|
|
|
|
script_type=proto.InputScriptType.SPENDADDRESS,
|
|
|
|
)
|
|
|
|
== "mvbu1Gdy8SUjTenqerxUaZyYjmveZvt33q"
|
|
|
|
)
|
2019-03-15 13:44:06 +00:00
|
|
|
assert (
|
|
|
|
btc.get_address(
|
|
|
|
self.client,
|
|
|
|
"Groestlcoin",
|
|
|
|
parse_path("84'/17'/0'/0/0"),
|
|
|
|
False,
|
|
|
|
None,
|
|
|
|
script_type=proto.InputScriptType.SPENDWITNESS,
|
|
|
|
)
|
|
|
|
== "grs1qw4teyraux2s77nhjdwh9ar8rl9dt7zww8r6lne"
|
|
|
|
)
|
2017-05-12 22:59:39 +00:00
|
|
|
|
|
|
|
def test_show_multisig_3(self):
|
|
|
|
self.setup_mnemonic_allallall()
|
2018-08-13 16:21:24 +00:00
|
|
|
nodes = [
|
2019-08-06 13:08:48 +00:00
|
|
|
btc.get_public_node(self.client, parse_path("999'/1'/%d'" % index)).node
|
2018-08-13 16:21:24 +00:00
|
|
|
for index in range(1, 4)
|
|
|
|
]
|
2017-12-12 15:40:11 +00:00
|
|
|
multisig1 = proto.MultisigRedeemScriptType(
|
2019-08-06 13:08:48 +00:00
|
|
|
nodes=nodes, address_n=[2, 0], signatures=[b"", b"", b""], m=2
|
2017-05-12 22:59:39 +00:00
|
|
|
)
|
2017-12-12 15:40:11 +00:00
|
|
|
multisig2 = proto.MultisigRedeemScriptType(
|
2019-08-06 13:08:48 +00:00
|
|
|
nodes=nodes, address_n=[2, 1], signatures=[b"", b"", b""], m=2
|
2017-05-12 22:59:39 +00:00
|
|
|
)
|
|
|
|
for i in [1, 2, 3]:
|
2018-08-13 16:21:24 +00:00
|
|
|
assert (
|
|
|
|
btc.get_address(
|
|
|
|
self.client,
|
|
|
|
"Testnet",
|
|
|
|
parse_path("999'/1'/%d'/2/1" % i),
|
|
|
|
False,
|
|
|
|
multisig2,
|
|
|
|
script_type=proto.InputScriptType.SPENDWITNESS,
|
|
|
|
)
|
|
|
|
== "tb1qch62pf820spe9mlq49ns5uexfnl6jzcezp7d328fw58lj0rhlhasge9hzy"
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
btc.get_address(
|
|
|
|
self.client,
|
|
|
|
"Testnet",
|
|
|
|
parse_path("999'/1'/%d'/2/0" % i),
|
|
|
|
False,
|
|
|
|
multisig1,
|
|
|
|
script_type=proto.InputScriptType.SPENDWITNESS,
|
|
|
|
)
|
|
|
|
== "tb1qr6xa5v60zyt3ry9nmfew2fk5g9y3gerkjeu6xxdz7qga5kknz2ssld9z2z"
|
|
|
|
)
|