use of co.rsk.bitcoinj.core.TransactionInput in project rskj by rsksmart.
the class BridgeUtilsTest method scriptCorrectlySpends_fromGenesisFederation_ok.
@Test
public void scriptCorrectlySpends_fromGenesisFederation_ok() {
Federation genesisFederation = bridgeConstantsRegtest.getGenesisFederation();
Address destinationAddress = PegTestUtils.createRandomBtcAddress();
BtcTransaction tx = new BtcTransaction(networkParameters);
tx.addOutput(Coin.COIN, destinationAddress);
TransactionInput txIn = new TransactionInput(networkParameters, tx, new byte[] {}, new TransactionOutPoint(networkParameters, 0, Sha256Hash.ZERO_HASH));
tx.addInput(txIn);
signWithNecessaryKeys(genesisFederation, BridgeRegTestConstants.REGTEST_FEDERATION_PRIVATE_KEYS, txIn, tx);
assertTrue(BridgeUtils.scriptCorrectlySpendsTx(tx, 0, genesisFederation.getP2SHScript()));
}
use of co.rsk.bitcoinj.core.TransactionInput in project rskj by rsksmart.
the class BridgeUtilsTest method testIsValidPegInTx_hasChangeUtxoFromFastBridgeRetiredFederation_afterRskip201_notPegin.
@Test
public void testIsValidPegInTx_hasChangeUtxoFromFastBridgeRetiredFederation_afterRskip201_notPegin() {
Context btcContext = new Context(networkParameters);
Federation activeFederation = bridgeConstantsRegtest.getGenesisFederation();
when(activations.isActive(ConsensusRule.RSKIP201)).thenReturn(true);
List<BtcECKey> retiredFederationKeys = Arrays.asList(BtcECKey.fromPrivate(Hex.decode("fa01")), BtcECKey.fromPrivate(Hex.decode("fa02")));
retiredFederationKeys.sort(BtcECKey.PUBKEY_COMPARATOR);
Federation retiredFederation = new Federation(FederationTestUtils.getFederationMembersWithBtcKeys(retiredFederationKeys), Instant.ofEpochMilli(1000L), 0L, networkParameters);
// Create a tx from the retired fast bridge fed to the active fed
BtcTransaction tx = new BtcTransaction(networkParameters);
tx.addOutput(Coin.COIN, activeFederation.getAddress());
TransactionInput txInput = new TransactionInput(networkParameters, tx, new byte[0], new TransactionOutPoint(networkParameters, 0, Sha256Hash.ZERO_HASH));
tx.addInput(txInput);
Script fastBridgeRedeemScript = FastBridgeRedeemScriptParser.createMultiSigFastBridgeRedeemScript(retiredFederation.getRedeemScript(), PegTestUtils.createHash(2));
signWithNecessaryKeys(retiredFederation, fastBridgeRedeemScript, retiredFederationKeys, txInput, tx);
assertFalse(BridgeUtils.isValidPegInTx(tx, Collections.singletonList(activeFederation), retiredFederation.getP2SHScript(), btcContext, bridgeConstantsRegtest, activations));
}
use of co.rsk.bitcoinj.core.TransactionInput in project rskj by rsksmart.
the class BridgeUtilsTest method testIsPegOutTx_noRedeemScript.
@Test
public void testIsPegOutTx_noRedeemScript() {
Federation federation = bridgeConstantsRegtest.getGenesisFederation();
Address randomAddress = PegTestUtils.createRandomBtcAddress();
BtcTransaction pegOutTx1 = new BtcTransaction(networkParameters);
pegOutTx1.addOutput(Coin.COIN, randomAddress);
TransactionInput pegOutInput1 = new TransactionInput(networkParameters, pegOutTx1, new byte[] {}, new TransactionOutPoint(networkParameters, 0, Sha256Hash.ZERO_HASH));
pegOutTx1.addInput(pegOutInput1);
assertFalse(BridgeUtils.isPegOutTx(pegOutTx1, Collections.singletonList(federation), activations));
}
use of co.rsk.bitcoinj.core.TransactionInput in project rskj by rsksmart.
the class BridgeUtilsTest method testChangeBetweenFederations.
@Test
public void testChangeBetweenFederations() {
Address randomAddress = PegTestUtils.createRandomBtcAddress();
Context btcContext = new Context(networkParameters);
List<BtcECKey> federation1Keys = Stream.of("fa01", "fa02").map(Hex::decode).map(BtcECKey::fromPrivate).sorted(BtcECKey.PUBKEY_COMPARATOR).collect(Collectors.toList());
Federation federation1 = new Federation(FederationTestUtils.getFederationMembersWithBtcKeys(federation1Keys), Instant.ofEpochMilli(1000L), 0L, networkParameters);
List<BtcECKey> federation2Keys = Stream.of("fb01", "fb02", "fb03").map(Hex::decode).map(BtcECKey::fromPrivate).sorted(BtcECKey.PUBKEY_COMPARATOR).collect(Collectors.toList());
Federation federation2 = new Federation(FederationTestUtils.getFederationMembersWithBtcKeys(federation2Keys), Instant.ofEpochMilli(2000L), 0L, networkParameters);
Address federation2Address = federation2.getAddress();
List<Federation> federations = Arrays.asList(federation1, federation2);
BtcTransaction pegOutWithChange = new BtcTransaction(networkParameters);
pegOutWithChange.addOutput(Coin.COIN, randomAddress);
pegOutWithChange.addOutput(Coin.COIN, federation2Address);
TransactionInput pegOutFromFederation2 = new TransactionInput(networkParameters, pegOutWithChange, new byte[] {}, new TransactionOutPoint(networkParameters, 0, Sha256Hash.ZERO_HASH));
pegOutWithChange.addInput(pegOutFromFederation2);
signWithNecessaryKeys(federation2, federation2Keys, pegOutFromFederation2, pegOutWithChange);
assertFalse(BridgeUtils.isValidPegInTx(pegOutWithChange, federations, null, btcContext, bridgeConstantsRegtest, mock(ActivationConfig.ForBlock.class)));
assertTrue(BridgeUtils.isPegOutTx(pegOutWithChange, federations, activations));
}
use of co.rsk.bitcoinj.core.TransactionInput in project rskj by rsksmart.
the class BridgeUtilsTest method testIsValidPegInTx.
@Test
public void testIsValidPegInTx() {
// Peg-in is for the genesis federation ATM
Context btcContext = new Context(networkParameters);
Federation federation = bridgeConstantsRegtest.getGenesisFederation();
Wallet wallet = new BridgeBtcWallet(btcContext, Collections.singletonList(federation));
Address federationAddress = federation.getAddress();
wallet.addWatchedAddress(federationAddress, federation.getCreationTime().toEpochMilli());
when(activations.isActive(any(ConsensusRule.class))).thenReturn(false);
// Tx sending less than the minimum allowed, not a peg-in tx
Coin minimumLockValue = bridgeConstantsRegtest.getLegacyMinimumPeginTxValueInSatoshis();
BtcTransaction tx = new BtcTransaction(networkParameters);
tx.addOutput(minimumLockValue.subtract(Coin.CENT), federationAddress);
tx.addInput(Sha256Hash.ZERO_HASH, 0, new Script(new byte[] {}));
assertFalse(BridgeUtils.isValidPegInTx(tx, federation, btcContext, bridgeConstantsRegtest, activations));
// Tx sending 1 btc to the federation, but also spending from the federation address,
// the typical peg-out tx, not a peg-in tx.
BtcTransaction tx2 = new BtcTransaction(networkParameters);
tx2.addOutput(Coin.COIN, federationAddress);
TransactionInput txIn = new TransactionInput(networkParameters, tx2, new byte[] {}, new TransactionOutPoint(networkParameters, 0, Sha256Hash.ZERO_HASH));
tx2.addInput(txIn);
signWithNecessaryKeys(bridgeConstantsRegtest.getGenesisFederation(), BridgeRegTestConstants.REGTEST_FEDERATION_PRIVATE_KEYS, txIn, tx2);
assertFalse(BridgeUtils.isValidPegInTx(tx2, federation, btcContext, bridgeConstantsRegtest, activations));
// Tx sending 1 btc to the federation, is a peg-in tx
BtcTransaction tx3 = new BtcTransaction(networkParameters);
tx3.addOutput(Coin.COIN, federationAddress);
tx3.addInput(Sha256Hash.ZERO_HASH, 0, new Script(new byte[] {}));
assertTrue(BridgeUtils.isValidPegInTx(tx3, federation, btcContext, bridgeConstantsRegtest, activations));
// Tx sending 50 btc to the federation, is a peg-in tx
BtcTransaction tx4 = new BtcTransaction(networkParameters);
tx4.addOutput(Coin.FIFTY_COINS, federationAddress);
tx4.addInput(Sha256Hash.ZERO_HASH, 0, new Script(new byte[] {}));
assertTrue(BridgeUtils.isValidPegInTx(tx4, federation, btcContext, bridgeConstantsRegtest, activations));
}
Aggregations