From 2454732f1bfc7d215eaf88f838e0bbf12b74719c Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Thu, 21 Jun 2018 14:22:53 +0200 Subject: [PATCH] docs: fix example BIP84 path --- docs/EXAMPLES.rst | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/docs/EXAMPLES.rst b/docs/EXAMPLES.rst index be85b237f..70b268f3c 100644 --- a/docs/EXAMPLES.rst +++ b/docs/EXAMPLES.rst @@ -24,20 +24,17 @@ Get first receiving address of first account for Bitcoin (Legacy / non-SegWit): trezorctl get_address --coin Bitcoin --script-type address --address "m/44'/0'/0'/0/0" - -Get first receiving address of first account for Bitcoin (Bech32 native SegWit P2WPKH): +Get first receiving address of first account for Bitcoin (SegWit-in-P2SH): .. code:: - trezorctl get_address --coin Bitcoin --script-type segwit --address "m/49'/0'/0'/0/0" - + trezorctl get_address --coin Bitcoin --script-type p2shsegwit --address "m/49'/0'/0'/0/0" -Get first receiving address of first account for Bitcoin (SegWit-in-P2SH): +Get first receiving address of first account for Bitcoin (Bech32 native SegWit P2WPKH): .. code:: - trezorctl get_address --coin Bitcoin --script-type p2shsegwit --address "m/49'/0'/0'/0/0" - + trezorctl get_address --coin Bitcoin --script-type segwit --address "m/84'/0'/0'/0/0" Get Legacy Bitcoin ``xpub`` (can be used to create a watch-only wallet): @@ -100,19 +97,17 @@ The final broadcast and mined transaction can be seen here: https://blockchain.i Litecoin examples ----------------- -Get first receiving address of first account for Litecoin (Bech32 native SegWit P2WPKH): +Get first receiving address of first account for Litecoin (SegWit-in-P2SH): .. code:: - trezorctl get_address --coin Litecoin --script-type segwit --address "m/49'/2'/0'/0/0" - + trezorctl get_address --coin Litecoin --script-type p2shsegwit --address "m/49'/2'/0'/0/0" -Get first receiving address of first account for Litecoin (SegWit-in-P2SH): +Get first receiving address of first account for Litecoin (Bech32 native SegWit P2WPKH): .. code:: - trezorctl get_address --coin Litecoin --script-type p2shsegwit --address "m/49'/2'/0'/0/0" - + trezorctl get_address --coin Litecoin --script-type segwit --address "m/84'/2'/0'/0/0" Notes -----