Class SpendBundle
This is a list of coins being spent along with their solution programs, and a single aggregated signature. This is the object that most closely corresponds to a bitcoin transaction (although because of non-interactive signature aggregation, the boundaries between transactions are more flexible than in bitcoin).
public record SpendBundle : IEquatable<SpendBundle>
- Inheritance
-
SpendBundle
- Implements
- Inherited Members
- Extension Methods
Properties
AggregatedSignature
public string AggregatedSignature { get; init; }
Property Value
- string
- This is a list of coins being spent along with their solution programs, and a single aggregated signature. This is the object that most closely corresponds to a bitcoin transaction (although because of non-interactive signature aggregation, the boundaries between transactions are more flexible than in bitcoin).
CoinSpends
public IEnumerable<CoinSpend> CoinSpends { get; init; }
Property Value
- IEnumerable<CoinSpend>
- This is a list of coins being spent along with their solution programs, and a single aggregated signature. This is the object that most closely corresponds to a bitcoin transaction (although because of non-interactive signature aggregation, the boundaries between transactions are more flexible than in bitcoin).