forked from trustwallet/wallet-core
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add BTG hashType definition into enum TWBitcoinSigHashType
- Loading branch information
Showing
3 changed files
with
214 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
// Copyright © 2017-2020 Trust Wallet. | ||
// | ||
// This file is part of Trust. The full Trust copyright notice, including | ||
// terms governing use, modification, and redistribution, is contained in the | ||
// file LICENSE at the root of the source code distribution tree. | ||
|
||
#include <TrustWalletCore/TWAnyAddress.h> | ||
#include <TrustWalletCore/TWAnySigner.h> | ||
#include <TrustWalletCore/TWBitcoinSigHashType.h> | ||
#include <TrustWalletCore/TWBitcoinScript.h> | ||
#include <TrustWalletCore/TWHDWallet.h> | ||
#include <gtest/gtest.h> | ||
|
||
#include "Bitcoin/SegwitAddress.h" | ||
#include "proto/Bitcoin.pb.h" | ||
#include "Bitcoin/OutPoint.h" | ||
#include "Bitcoin/Script.h" | ||
#include "Bitcoin/Transaction.h" | ||
#include "Bitcoin/TransactionBuilder.h" | ||
#include "Bitcoin/TransactionSigner.h" | ||
#include "HexCoding.h" | ||
#include "../interface/TWTestUtilities.h" | ||
|
||
using namespace TW; | ||
using namespace TW::Bitcoin; | ||
|
||
TEST(TWBitcoinGoldScript, LockScriptTest) { | ||
auto script = WRAP(TWBitcoinScript, TWBitcoinScriptBuildForAddress(STRING("btg1q6572ulr0kmywle8a30lvagm9xsg9k9n5cmzfdj").get(), TWCoinTypeBitcoinGold)); | ||
auto scriptData = WRAPD(TWBitcoinScriptData(script.get())); | ||
assertHexEqual(scriptData, "0014d53cae7c6fb6c8efe4fd8bfecea36534105b1674"); | ||
|
||
auto script2 = WRAP(TWBitcoinScript, TWBitcoinScriptBuildForAddress(STRING("btg1qawhpp9gv3g662phqufjmj2ps2ge7sq4thy5g07").get(), TWCoinTypeBitcoinGold)); | ||
auto scriptData2 = WRAPD(TWBitcoinScriptData(script2.get())); | ||
assertHexEqual(scriptData2, "0014ebae10950c8a35a506e0e265b928305233e802ab"); | ||
} | ||
|
||
TEST(BitcoinGoldKey, ExtendedKeys) { | ||
auto wallet = WRAP(TWHDWallet, TWHDWalletCreateWithMnemonic( | ||
STRING("shoot island position soft burden budget tooth cruel issue economy destroy above").get(), | ||
STRING("TREZOR").get() | ||
)); | ||
|
||
// .bip84 | ||
auto zprv = WRAPS(TWHDWalletGetExtendedPrivateKey(wallet.get(), TWPurposeBIP84, TWCoinTypeBitcoinGold, TWHDVersionZPRV)); | ||
auto zpub = WRAPS(TWHDWalletGetExtendedPublicKey(wallet.get(), TWPurposeBIP84, TWCoinTypeBitcoinGold, TWHDVersionZPUB)); | ||
|
||
assertStringsEqual(zprv, "zprvAdB7dYnT955ubXEkdBWhDqFSyeDfVpKQmVJPbRXGiAg4mnGT7dCBsZZFeik1mNt6bS4zkdZSNtZm8dqu1Lrp1brQ16NgYgeEoiz6ftUfVAW"); | ||
assertStringsEqual(zpub, "zpub6rAU34KLySeCp1KDjD3hayCBXg49uH3G8iDzPovtGWD3eabbfAWSRMsjVyfuRfCCquiKTD6YV42nHUBtwh2TbVPvWqxrGuyEvHN17c3XUXw"); | ||
} | ||
|
||
TEST(BitcoinGoldKey, DeriveFromZPub) { | ||
auto zpub = STRING("zpub6rAU34KLySeCp1KDjD3hayCBXg49uH3G8iDzPovtGWD3eabbfAWSRMsjVyfuRfCCquiKTD6YV42nHUBtwh2TbVPvWqxrGuyEvHN17c3XUXw"); | ||
auto pubKey2 = TWHDWalletGetPublicKeyFromExtended(zpub.get(), STRING("m/84'/156'/0'/0/2").get()); | ||
auto pubKey9 = TWHDWalletGetPublicKeyFromExtended(zpub.get(), STRING("m/84'/156'/0'/0/9").get()); | ||
|
||
auto address2 = WRAP(TWAnyAddress, TWAnyAddressCreateWithPublicKey(pubKey2, TWCoinTypeBitcoinGold)); | ||
auto address2String = WRAPS(TWAnyAddressDescription(address2.get())); | ||
|
||
auto address9 = WRAP(TWAnyAddress, TWAnyAddressCreateWithPublicKey(pubKey9, TWCoinTypeBitcoinGold)); | ||
auto address9String = WRAPS(TWAnyAddressDescription(address9.get())); | ||
|
||
assertStringsEqual(address2String, "btg1qkdgxykht6nww9l9rn0xhslf78nl605gwka9zak"); | ||
assertStringsEqual(address9String, "btg1qzw2ptuyaw023gm7te2r5e3xkufn9wrm3kzrg8t"); | ||
} | ||
|
||
/// | ||
/// Explore this signed transaction in BitcoinGold Mainnet: | ||
/// https://btg2.trezor.io/tx/3e818ad25d73123b6c1c8099ed462aa5413a4ef57d66d9d260306c012753ba43 | ||
/// | ||
TEST(TWBitcoinGoldTxGeneration, TxGeneration) { | ||
const int64_t amount = 5000; | ||
|
||
// Setup input | ||
Proto::SigningInput input; | ||
input.set_coin_type(TWCoinTypeBitcoinGold); | ||
input.set_hash_type(TWBitcoinSigHashTypeAll | TWBitcoinSigHashTypeForkBTG); | ||
input.set_amount(amount); | ||
input.set_byte_fee(1); | ||
input.set_to_address("btg1qmd6x5awe4t5fjhgntv0pngzdwajjg250wxdcs0"); | ||
input.set_change_address("btg1qawhpp9gv3g662phqufjmj2ps2ge7sq4thy5g07"); | ||
|
||
auto utxoKey0 = parse_hex("cbe13a79b82ec7f8871b336a64fd8d531f598e7c9022e29c67e824cfd54af57f"); | ||
input.add_private_key(utxoKey0.data(), utxoKey0.size()); | ||
|
||
|
||
auto scriptPub1 = Script(parse_hex("0014db746a75d9aae8995d135b1e19a04d7765242a8f")); | ||
auto scriptHash = std::vector<uint8_t>(); | ||
scriptPub1.matchPayToWitnessPublicKeyHash(scriptHash); | ||
auto scriptHashHex = hex(scriptHash.begin(), scriptHash.end()); | ||
|
||
auto redeemScript = Script::buildPayToPublicKeyHash(scriptHash); | ||
auto scriptString = std::string(redeemScript.bytes.begin(), redeemScript.bytes.end()); | ||
(*input.mutable_scripts())[scriptHashHex] = scriptString; | ||
|
||
auto utxo0 = input.add_utxo(); | ||
auto utxo0Script = parse_hex("0014d53cae7c6fb6c8efe4fd8bfecea36534105b1674"); | ||
utxo0->set_script(utxo0Script.data(), utxo0Script.size()); | ||
utxo0->set_amount(10000); | ||
|
||
auto hash0 = parse_hex("5727794fa2b94aa22a226e206130524201ede9b50e032526e713c848493a890f"); | ||
utxo0->mutable_out_point()->set_hash(hash0.data(), hash0.size()); | ||
utxo0->mutable_out_point()->set_index(0); | ||
utxo0->mutable_out_point()->set_sequence(0xfffffffd); | ||
|
||
// Sign | ||
auto txSinger = TransactionSigner<Transaction, TransactionBuilder>(std::move(input)); | ||
txSinger.transaction.lockTime = 0x00098971; | ||
auto result = txSinger.sign(); | ||
|
||
ASSERT_TRUE(result) << result.error();; | ||
auto signedTx = result.payload(); | ||
|
||
Data serialized; | ||
signedTx.encode(true, serialized); | ||
ASSERT_EQ(hex(serialized), | ||
"01000000" | ||
"0001" | ||
"01" | ||
"5727794fa2b94aa22a226e206130524201ede9b50e032526e713c848493a890f" "00000000" "00" "fdffffff" | ||
"02" | ||
"8813000000000000" "160014db746a75d9aae8995d135b1e19a04d7765242a8f" | ||
"a612000000000000" "160014ebae10950c8a35a506e0e265b928305233e802ab" | ||
"02" | ||
"483045022100bf1dcc37c2d3794e216b0b1cfcb04c7f49ef360ae941e46dc9b168f54f5447fe02205a0912bf3a3c0ac0e490c665bcde5239f553c013b2447a6fb5df6387ac029c8c41" | ||
"2103e00b5dec8078d526fba090247bd92db6b67a4dd1953b788cea9b52de9471b8cf" | ||
"71890900" | ||
); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
// Copyright © 2017-2020 Trust Wallet. | ||
// | ||
// This file is part of Trust. The full Trust copyright notice, including | ||
// terms governing use, modification, and redistribution, is contained in the | ||
// file LICENSE at the root of the source code distribution tree. | ||
|
||
#include <TrustWalletCore/TWAnyAddress.h> | ||
#include <TrustWalletCore/TWAnySigner.h> | ||
#include <TrustWalletCore/TWBitcoinSigHashType.h> | ||
#include <gtest/gtest.h> | ||
|
||
#include "Bitcoin/SegwitAddress.h" | ||
#include "proto/Bitcoin.pb.h" | ||
#include "Bitcoin/OutPoint.h" | ||
#include "Bitcoin/Script.h" | ||
#include "Bitcoin/Transaction.h" | ||
#include "Bitcoin/TransactionBuilder.h" | ||
#include "Bitcoin/TransactionSigner.h" | ||
#include "HexCoding.h" | ||
#include "../interface/TWTestUtilities.h" | ||
|
||
using namespace TW; | ||
using namespace TW::Bitcoin; | ||
|
||
TEST(TWBitcoinGoldSigner, SignTransaction) { | ||
const int64_t amount = 10000; | ||
|
||
// Setup input | ||
Proto::SigningInput input; | ||
input.set_coin_type(TWCoinTypeBitcoinGold); | ||
input.set_hash_type(TWBitcoinSigHashTypeAll | TWBitcoinSigHashTypeForkBTG); | ||
input.set_amount(amount); | ||
input.set_byte_fee(1); | ||
input.set_to_address("btg1qmd6x5awe4t5fjhgntv0pngzdwajjg250wxdcs0"); | ||
input.set_change_address("btg1qawhpp9gv3g662phqufjmj2ps2ge7sq4thy5g07"); | ||
|
||
auto utxoKey0 = parse_hex("cbe13a79b82ec7f8871b336a64fd8d531f598e7c9022e29c67e824cfd54af57f"); | ||
input.add_private_key(utxoKey0.data(), utxoKey0.size()); | ||
|
||
|
||
auto scriptPub1 = Script(parse_hex("0014db746a75d9aae8995d135b1e19a04d7765242a8f")); | ||
auto scriptHash = std::vector<uint8_t>(); | ||
scriptPub1.matchPayToWitnessPublicKeyHash(scriptHash); | ||
auto scriptHashHex = hex(scriptHash.begin(), scriptHash.end()); | ||
|
||
auto redeemScript = Script::buildPayToPublicKeyHash(scriptHash); | ||
auto scriptString = std::string(redeemScript.bytes.begin(), redeemScript.bytes.end()); | ||
(*input.mutable_scripts())[scriptHashHex] = scriptString; | ||
|
||
auto utxo0 = input.add_utxo(); | ||
auto utxo0Script = parse_hex("0014d53cae7c6fb6c8efe4fd8bfecea36534105b1674"); | ||
utxo0->set_script(utxo0Script.data(), utxo0Script.size()); | ||
utxo0->set_amount(99000); | ||
|
||
auto hash0 = parse_hex("1d4653041a1915b3a52d47aeaa119c8f79ed7634a93692a6e811173067464f03"); | ||
utxo0->mutable_out_point()->set_hash(hash0.data(), hash0.size()); | ||
utxo0->mutable_out_point()->set_index(1); | ||
utxo0->mutable_out_point()->set_sequence(0xfffffffd); | ||
|
||
// Sign | ||
auto txSinger = TransactionSigner<Transaction, TransactionBuilder>(std::move(input)); | ||
txSinger.transaction.lockTime = 0x00098971; | ||
auto result = txSinger.sign(); | ||
|
||
ASSERT_TRUE(result) << result.error();; | ||
auto signedTx = result.payload(); | ||
|
||
Data serialized; | ||
signedTx.encode(true, serialized); | ||
ASSERT_EQ(hex(serialized), | ||
"01000000" | ||
"0001" | ||
"01" | ||
"1d4653041a1915b3a52d47aeaa119c8f79ed7634a93692a6e811173067464f03" "01000000" "00" "fdffffff" | ||
"02" | ||
"1027000000000000" "160014db746a75d9aae8995d135b1e19a04d7765242a8f" | ||
"c65a010000000000" "160014ebae10950c8a35a506e0e265b928305233e802ab" | ||
"02" | ||
"473044022029b81a6b8f57f76aaf510d8a222ca835bd806936e329aead433f120007d6847002203afa611ff7823ec2a6770359901b0cacf56527cbf947b226ed86b61811545e2b41" | ||
"2103e00b5dec8078d526fba090247bd92db6b67a4dd1953b788cea9b52de9471b8cf" | ||
"71890900" | ||
); | ||
} | ||
|