2018-03-04 13:56:49 +00:00
|
|
|
package transaction
|
|
|
|
|
|
|
|
import (
|
2019-02-20 17:39:32 +00:00
|
|
|
"encoding/json"
|
2018-03-04 13:56:49 +00:00
|
|
|
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/encoding/address"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/io"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
2018-03-04 13:56:49 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Output represents a Transaction output.
|
|
|
|
type Output struct {
|
|
|
|
// The NEO asset id used in the transaction.
|
2020-02-13 16:06:54 +00:00
|
|
|
AssetID util.Uint256 `json:"asset"`
|
2018-03-04 13:56:49 +00:00
|
|
|
|
|
|
|
// Amount of AssetType send or received.
|
2020-02-13 16:06:54 +00:00
|
|
|
Amount util.Fixed8 `json:"value"`
|
2018-03-04 13:56:49 +00:00
|
|
|
|
2019-02-13 18:01:10 +00:00
|
|
|
// The address of the recipient.
|
2020-02-13 16:06:54 +00:00
|
|
|
ScriptHash util.Uint160 `json:"address"`
|
2019-02-20 17:39:32 +00:00
|
|
|
|
|
|
|
// The position of the Output in slice []Output. This is actually set in NewTransactionOutputRaw
|
2019-10-22 14:56:03 +00:00
|
|
|
// and used for displaying purposes.
|
2020-02-13 16:06:54 +00:00
|
|
|
Position int `json:"n"`
|
2018-03-04 13:56:49 +00:00
|
|
|
}
|
|
|
|
|
2020-03-03 08:25:00 +00:00
|
|
|
type outputAux struct {
|
|
|
|
AssetID util.Uint256 `json:"asset"`
|
|
|
|
Amount util.Fixed8 `json:"value"`
|
|
|
|
ScriptHash string `json:"address"`
|
|
|
|
Position int `json:"n"`
|
|
|
|
}
|
|
|
|
|
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,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-16 16:31:49 +00:00
|
|
|
// DecodeBinary implements Serializable interface.
|
|
|
|
func (out *Output) DecodeBinary(br *io.BinReader) {
|
2019-12-06 15:37:46 +00:00
|
|
|
br.ReadBytes(out.AssetID[:])
|
2019-12-12 15:52:23 +00:00
|
|
|
out.Amount.DecodeBinary(br)
|
2019-12-06 15:37:46 +00:00
|
|
|
br.ReadBytes(out.ScriptHash[:])
|
2018-03-04 13:56:49 +00:00
|
|
|
}
|
|
|
|
|
2019-09-16 16:31:49 +00:00
|
|
|
// EncodeBinary implements Serializable interface.
|
|
|
|
func (out *Output) EncodeBinary(bw *io.BinWriter) {
|
2019-12-06 15:22:21 +00:00
|
|
|
bw.WriteBytes(out.AssetID[:])
|
2019-12-12 15:52:23 +00:00
|
|
|
out.Amount.EncodeBinary(bw)
|
2019-12-06 15:22:21 +00:00
|
|
|
bw.WriteBytes(out.ScriptHash[:])
|
2018-03-04 13:56:49 +00:00
|
|
|
}
|
2019-02-20 17:39:32 +00:00
|
|
|
|
2019-10-22 14:56:03 +00:00
|
|
|
// MarshalJSON implements the Marshaler interface.
|
2019-02-20 17:39:32 +00:00
|
|
|
func (out *Output) MarshalJSON() ([]byte, error) {
|
|
|
|
return json.Marshal(map[string]interface{}{
|
|
|
|
"asset": out.AssetID,
|
|
|
|
"value": out.Amount,
|
2019-12-25 14:34:18 +00:00
|
|
|
"address": address.Uint160ToString(out.ScriptHash),
|
2019-02-20 17:39:32 +00:00
|
|
|
"n": out.Position,
|
|
|
|
})
|
|
|
|
}
|
2020-03-03 08:25:00 +00:00
|
|
|
|
|
|
|
// UnmarshalJSON implements json.Unmarshaler interface.
|
|
|
|
func (out *Output) UnmarshalJSON(data []byte) error {
|
|
|
|
var outAux outputAux
|
|
|
|
err := json.Unmarshal(data, &outAux)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
out.ScriptHash, err = address.StringToUint160(outAux.ScriptHash)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
out.Amount = outAux.Amount
|
|
|
|
out.AssetID = outAux.AssetID
|
|
|
|
out.Position = outAux.Position
|
|
|
|
return nil
|
|
|
|
}
|