SplitCoinsInterface
type SplitCoinsInterface
Command to split a single coin object into multiple coins
BCS
The BCS serialized form for this type is defined by the following ABNF:
```text split-coins = argument (vector argument) ```
type SplitCoinsInterface interface {
// The amounts to split off
Amounts() []*Argument
// The coin to split
Coin() *Argument
}