mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-19 14:08:11 +00:00
49 lines
1.8 KiB
Python
49 lines
1.8 KiB
Python
from common import *
|
|
|
|
from apps.wallet.sign_tx.signing import *
|
|
from apps.common import coins
|
|
from trezor.crypto import bip32, bip39
|
|
|
|
|
|
class TestSegwitAddress(unittest.TestCase):
|
|
# pylint: disable=C0301
|
|
|
|
def test_p2wpkh_in_p2sh_address(self):
|
|
coin = coins.by_name('Testnet')
|
|
|
|
address = address_p2wpkh_in_p2sh(
|
|
unhexlify('03a1af804ac108a8a51782198c2d034b28bf90c8803f5a53f76276fa69a4eae77f'),
|
|
coin.address_type_p2sh
|
|
)
|
|
self.assertEqual(address, '2Mww8dCYPUpKHofjgcXcBCEGmniw9CoaiD2')
|
|
|
|
def test_p2wpkh_in_p2sh_raw_address(self):
|
|
raw = address_p2wpkh_in_p2sh_raw(
|
|
unhexlify('03a1af804ac108a8a51782198c2d034b28bf90c8803f5a53f76276fa69a4eae77f')
|
|
)
|
|
self.assertEqual(raw, unhexlify('336caa13e08b96080a32b5d818d59b4ab3b36742'))
|
|
|
|
def test_p2wpkh_in_p2sh_node_derive_address(self):
|
|
coin = coins.by_name('Testnet')
|
|
seed = bip39.seed(' '.join(['all'] * 12), '')
|
|
root = bip32.from_seed(seed, 'secp256k1')
|
|
|
|
node = node_derive(root, [49 | 0x80000000, 1 | 0x80000000, 0 | 0x80000000, 1, 0])
|
|
address = address_p2wpkh_in_p2sh(node.public_key(), coin.address_type_p2sh)
|
|
|
|
self.assertEqual(address, '2N1LGaGg836mqSQqiuUBLfcyGBhyZbremDX')
|
|
|
|
node = node_derive(root, [49 | 0x80000000, 1 | 0x80000000, 0 | 0x80000000, 1, 1])
|
|
address = address_p2wpkh_in_p2sh(node.public_key(), coin.address_type_p2sh)
|
|
|
|
self.assertEqual(address, '2NFWLCJQBSpz1oUJwwLpX8ECifFWGznBVqs')
|
|
|
|
node = node_derive(root, [49 | 0x80000000, 1 | 0x80000000, 0 | 0x80000000, 0, 0])
|
|
address = address_p2wpkh_in_p2sh(node.public_key(), coin.address_type_p2sh)
|
|
|
|
self.assertEqual(address, '2N4Q5FhU2497BryFfUgbqkAJE87aKHUhXMp')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|