mirror of
https://github.com/luxfi/utxo.git
synced 2026-07-27 03:39:23 +00:00
59 lines
1.3 KiB
Go
59 lines
1.3 KiB
Go
// Copyright (C) 2019-2025, Lux Industries, Inc. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
package utxo
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/luxfi/crypto/hash"
|
|
"github.com/luxfi/ids"
|
|
"github.com/luxfi/vm/components/verify"
|
|
)
|
|
|
|
var (
|
|
errNilMetadata = errors.New("nil metadata is not valid")
|
|
errMetadataNotInitialize = errors.New("metadata was never initialized and is not valid")
|
|
|
|
_ verify.Verifiable = (*Metadata)(nil)
|
|
)
|
|
|
|
type Metadata struct {
|
|
id ids.ID // The ID of this data
|
|
unsignedBytes []byte // Unsigned byte representation of this data
|
|
bytes []byte // Byte representation of this data
|
|
}
|
|
|
|
// Initialize set the bytes and ID
|
|
func (md *Metadata) Initialize(unsignedBytes, bytes []byte) {
|
|
md.id = hash.ComputeHash256Array(bytes)
|
|
md.unsignedBytes = unsignedBytes
|
|
md.bytes = bytes
|
|
}
|
|
|
|
// ID returns the unique ID of this data
|
|
func (md *Metadata) ID() ids.ID {
|
|
return md.id
|
|
}
|
|
|
|
// UnsignedBytes returns the unsigned binary representation of this data
|
|
func (md *Metadata) Bytes() []byte {
|
|
return md.unsignedBytes
|
|
}
|
|
|
|
// Bytes returns the binary representation of this data
|
|
func (md *Metadata) SignedBytes() []byte {
|
|
return md.bytes
|
|
}
|
|
|
|
func (md *Metadata) Verify() error {
|
|
switch {
|
|
case md == nil:
|
|
return errNilMetadata
|
|
case md.id == ids.Empty:
|
|
return errMetadataNotInitialize
|
|
default:
|
|
return nil
|
|
}
|
|
}
|