2014-03-16 22:02:46 +01:00
|
|
|
coinset
|
|
|
|
=======
|
|
|
|
|
2017-05-25 19:56:27 +02:00
|
|
|
[![Build Status](http://img.shields.io/travis/btcsuite/btcutil.svg)](https://travis-ci.org/btcsuite/btcutil)
|
|
|
|
[![ISC License](http://img.shields.io/badge/license-ISC-blue.svg)](http://copyfree.org)
|
|
|
|
[![GoDoc](http://img.shields.io/badge/godoc-reference-blue.svg)](http://godoc.org/github.com/btcsuite/btcutil/coinset)
|
2014-07-10 03:47:04 +02:00
|
|
|
|
2014-03-25 03:04:02 +01:00
|
|
|
Package coinset provides bitcoin-specific convenience functions for selecting
|
2014-03-16 22:02:46 +01:00
|
|
|
from and managing sets of unspent transaction outpoints (UTXOs).
|
|
|
|
|
|
|
|
A comprehensive suite of tests is provided to ensure proper functionality. See
|
|
|
|
`test_coverage.txt` for the gocov coverage report. Alternatively, if you are
|
|
|
|
running a POSIX OS, you can run the `cov_report.sh` script for a real-time
|
2015-10-24 00:10:35 +02:00
|
|
|
report.
|
2014-03-16 22:02:46 +01:00
|
|
|
|
2015-10-24 00:10:35 +02:00
|
|
|
## Installation and Updating
|
2014-03-16 22:02:46 +01:00
|
|
|
|
|
|
|
```bash
|
2015-10-24 00:10:35 +02:00
|
|
|
$ go get -u github.com/btcsuite/btcutil/coinset
|
2014-03-16 22:02:46 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
2014-03-25 03:04:02 +01:00
|
|
|
Each unspent transaction outpoint is represented by the Coin interface. An
|
2014-03-16 22:02:46 +01:00
|
|
|
example of a concrete type that implements Coin is coinset.SimpleCoin.
|
|
|
|
|
|
|
|
The typical use case for this library is for creating raw bitcoin transactions
|
|
|
|
given a set of Coins that may be spent by the user, for example as below:
|
|
|
|
|
|
|
|
```Go
|
|
|
|
var unspentCoins = []coinset.Coin{ ... }
|
|
|
|
```
|
|
|
|
|
2014-03-25 03:04:02 +01:00
|
|
|
When the user needs to spend a certain amount, they will need to select a
|
|
|
|
subset of these coins which contain at least that value. CoinSelector is
|
2014-03-16 22:02:46 +01:00
|
|
|
an interface that represents types that implement coin selection algos,
|
|
|
|
subject to various criteria. There are a few examples of CoinSelector's:
|
|
|
|
|
|
|
|
- MinIndexCoinSelector
|
|
|
|
|
|
|
|
- MinNumberCoinSelector
|
|
|
|
|
|
|
|
- MaxValueAgeCoinSelector
|
|
|
|
|
|
|
|
- MinPriorityCoinSelector
|
|
|
|
|
2014-03-25 03:04:02 +01:00
|
|
|
For example, if the user wishes to maximize the probability that their
|
2014-03-16 22:02:46 +01:00
|
|
|
transaction is mined quickly, they could use the MaxValueAgeCoinSelector to
|
|
|
|
select high priority coins, then also attach a relatively high fee.
|
|
|
|
|
|
|
|
```Go
|
|
|
|
selector := &coinset.MaxValueAgeCoinSelector{
|
2014-03-25 03:04:02 +01:00
|
|
|
MaxInputs: 10,
|
2014-03-16 22:02:46 +01:00
|
|
|
MinAmountChange: 10000,
|
|
|
|
}
|
|
|
|
selectedCoins, err := selector.CoinSelect(targetAmount + bigFee, unspentCoins)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
msgTx := coinset.NewMsgTxWithInputCoins(selectedCoins)
|
|
|
|
...
|
|
|
|
|
|
|
|
```
|
|
|
|
|
2014-03-25 03:04:02 +01:00
|
|
|
The user can then create the msgTx.TxOut's as required, then sign the
|
2014-03-16 22:02:46 +01:00
|
|
|
transaction and transmit it to the network.
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
2014-07-10 03:38:23 +02:00
|
|
|
Package coinset is licensed under the [copyfree](http://copyfree.org) ISC
|
|
|
|
License.
|