mirror of
https://github.com/aljazceru/ark.git
synced 2025-12-18 20:54:20 +01:00
* [common] rework address encoding * new address encoding * replace offchain address by vtxo output key in DB * merge migrations files into init one * fix txbuilder fixtures * fix transaction events * OOR scheme * fix conflicts * [sdk] OOR * update WASM wrappers * revert renaming * revert API changes * update parser.go * fix vtxosToTxsCovenantless * add settled and spent in Utxo and Transaction * Fixes (#5) * Revert unneeded changes and rename claim to settle * Revert changes to wasm and rename claim to settle --------- Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com>
137 lines
2.8 KiB
Go
137 lines
2.8 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
package models
|
|
|
|
// This file was generated by the swagger tool.
|
|
// Editing this file might prove futile when you re-run the swagger generate command
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/go-openapi/errors"
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
)
|
|
|
|
// V1Vtxo v1 vtxo
|
|
//
|
|
// swagger:model v1Vtxo
|
|
type V1Vtxo struct {
|
|
|
|
// amount
|
|
Amount string `json:"amount,omitempty"`
|
|
|
|
// expire at
|
|
ExpireAt string `json:"expireAt,omitempty"`
|
|
|
|
// is oor
|
|
IsOor bool `json:"isOor,omitempty"`
|
|
|
|
// outpoint
|
|
Outpoint *V1Outpoint `json:"outpoint,omitempty"`
|
|
|
|
// pubkey
|
|
Pubkey string `json:"pubkey,omitempty"`
|
|
|
|
// redeem tx
|
|
RedeemTx string `json:"redeemTx,omitempty"`
|
|
|
|
// round txid
|
|
RoundTxid string `json:"roundTxid,omitempty"`
|
|
|
|
// spent
|
|
Spent bool `json:"spent,omitempty"`
|
|
|
|
// spent by
|
|
SpentBy string `json:"spentBy,omitempty"`
|
|
|
|
// swept
|
|
Swept bool `json:"swept,omitempty"`
|
|
}
|
|
|
|
// Validate validates this v1 vtxo
|
|
func (m *V1Vtxo) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateOutpoint(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *V1Vtxo) validateOutpoint(formats strfmt.Registry) error {
|
|
if swag.IsZero(m.Outpoint) { // not required
|
|
return nil
|
|
}
|
|
|
|
if m.Outpoint != nil {
|
|
if err := m.Outpoint.Validate(formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("outpoint")
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("outpoint")
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validate this v1 vtxo based on the context it is used
|
|
func (m *V1Vtxo) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.contextValidateOutpoint(ctx, formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *V1Vtxo) contextValidateOutpoint(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
if m.Outpoint != nil {
|
|
|
|
if swag.IsZero(m.Outpoint) { // not required
|
|
return nil
|
|
}
|
|
|
|
if err := m.Outpoint.ContextValidate(ctx, formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("outpoint")
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("outpoint")
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *V1Vtxo) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *V1Vtxo) UnmarshalBinary(b []byte) error {
|
|
var res V1Vtxo
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|