0

In the transaction data of bitcoin can we have more than one address element in adresses attribute of inputs and outputs of a transaction.

  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Feb 18 '23 at 11:17

1 Answers1

1

Despite what blockchain explorers might show you, The network format for Bitcoin transactions contains no addresses.

Transactions can have multiple inputs and multiple outputs. Each output has a locking script. An address is a convenient abstraction of a script. Thus a transaction can have at least two and sometimes thousands of associated addresses.

Each input and each output for common types of transaction are only associated with one address.

A multi-signature transaction can be more complex. This might be what you are thinking of.


Related

RedGrittyBrick
  • 26,841
  • 3
  • 25
  • 51