2018-03-04 13:56:49 +00:00
|
|
|
package transaction
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/binary"
|
2019-02-20 17:39:32 +00:00
|
|
|
"encoding/json"
|
2018-03-04 13:56:49 +00:00
|
|
|
"io"
|
|
|
|
|
2019-02-20 17:39:32 +00:00
|
|
|
"github.com/CityOfZion/neo-go/pkg/crypto"
|
2018-03-04 13:56:49 +00:00
|
|
|
"github.com/CityOfZion/neo-go/pkg/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Output represents a Transaction output.
|
|
|
|
type Output struct {
|
|
|
|
// The NEO asset id used in the transaction.
|
|
|
|
AssetID util.Uint256
|
|
|
|
|
|
|
|
// Amount of AssetType send or received.
|
|
|
|
Amount util.Fixed8
|
|
|
|
|
2019-02-13 18:01:10 +00:00
|
|
|
// The address of the recipient.
|
2018-03-04 13:56:49 +00:00
|
|
|
ScriptHash util.Uint160
|
2019-02-20 17:39:32 +00:00
|
|
|
|
|
|
|
// The position of the Output in slice []Output. This is actually set in NewTransactionOutputRaw
|
|
|
|
// and used for diplaying purposes.
|
|
|
|
Position int
|
2018-03-04 13:56:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewOutput returns a new transaction output.
|
|
|
|
func NewOutput(assetID util.Uint256, amount util.Fixed8, scriptHash util.Uint160) *Output {
|
|
|
|
return &Output{
|
|
|
|
AssetID: assetID,
|
|
|
|
Amount: amount,
|
|
|
|
ScriptHash: scriptHash,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// DecodeBinary implements the Payload interface.
|
|
|
|
func (out *Output) DecodeBinary(r io.Reader) error {
|
|
|
|
if err := binary.Read(r, binary.LittleEndian, &out.AssetID); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := binary.Read(r, binary.LittleEndian, &out.Amount); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return binary.Read(r, binary.LittleEndian, &out.ScriptHash)
|
|
|
|
}
|
|
|
|
|
|
|
|
// EncodeBinary implements the Payload interface.
|
|
|
|
func (out *Output) EncodeBinary(w io.Writer) error {
|
|
|
|
if err := binary.Write(w, binary.LittleEndian, out.AssetID); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := binary.Write(w, binary.LittleEndian, out.Amount); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return binary.Write(w, binary.LittleEndian, out.ScriptHash)
|
|
|
|
}
|
2019-02-20 17:39:32 +00:00
|
|
|
|
|
|
|
// Size returns the size in bytes of the Output
|
|
|
|
func (out *Output) Size() int {
|
|
|
|
return out.AssetID.Size() + out.Amount.Size() + out.ScriptHash.Size()
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarshalJSON implements the Marshaler interface
|
|
|
|
func (out *Output) MarshalJSON() ([]byte, error) {
|
|
|
|
return json.Marshal(map[string]interface{}{
|
|
|
|
"asset": out.AssetID,
|
|
|
|
"value": out.Amount,
|
|
|
|
"address": crypto.AddressFromUint160(out.ScriptHash),
|
|
|
|
"n": out.Position,
|
|
|
|
})
|
|
|
|
}
|