MergeCoinsInterface
type MergeCoinsInterface
Command to merge multiple coins of the same type into a single coin
BCS
The BCS serialized form for this type is defined by the following ABNF:
```text merge-coins = argument (vector argument) ```
type MergeCoinsInterface interface {
// Coin to merge coins into
Coin() *Argument
// Set of coins to merge into `coin`
//
// All listed coins must be of the same type and be the same type as `coin`
CoinsToMerge() []*Argument
}