Transactions and Wallets Flashcards

1
Q

Common transaction: inputs/outputs pattern?

A

1 input → 2 outputs (payment + change).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Aggregating transaction: pattern & purpose?

A

Many inputs → 1 output; consolidate small UTXOs into one larger coin.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Distributing transaction: pattern & purpose?

A

1 input → many outputs; split funds to multiple recipients.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

First check in Bitcoin txn validation?

A

Confirm each input references an unspent output (UTXO).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Opcode sequence proving ownership in a P2PKH script?

A

OP_DUP OP_HASH160 OP_EQUALVERIFY OP_CHECKSIG.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Fast mnemonic for validation pipeline steps?

A

“UTXO → Sig → Fee” (unspent, signed, fee-valid).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Main downside of nondeterministic wallets (JBOK)?

A

Backup hassle; losing a key loses funds; can run out of fresh addresses.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Main upside of hierarchical deterministic (HD) wallets?

A

Infinite addresses from one seed; single mnemonic backup; branch structuring.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Why mnemonic seed words instead of raw hex?

A

12–24 words are human-readable and recreate the same root seed for recovery.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Public vs private child key derivation?

A

Public: create receive-only addresses without spending keys; Private: needed to sign/spend coins.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly