Files
utxo/slhdsafx/transfer_input.go
Hanzo AI 2b30fa0048 feat: add ed25519fx, schnorrfx, secp256r1fx, slhdsafx + mldsafx updates
Adds four new Fx (feature-extension) packages for X-Chain UTXO signing
schemes beyond secp256k1:
  - ed25519fx    — Ed25519 (EdDSA on Curve25519)
  - schnorrfx    — Schnorr (classical)
  - secp256r1fx  — P-256 / NIST
  - slhdsafx     — SLH-DSA (FIPS 205 hash-based PQ)

Plus mldsafx updates to match (ML-DSA / FIPS 204 lattice PQ).

Each fx package exports Fx, Credential, Keychain, OutputOwners, Input
following the existing secp256k1fx pattern.

Gitignore .DS_Store.
2026-04-13 07:33:34 -07:00

37 lines
746 B
Go

// Copyright (C) 2019-2025, Lux Industries, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package slhdsafx
import (
"errors"
"github.com/luxfi/runtime"
)
var ErrNoValueInput = errors.New("input has no value")
type TransferInput struct {
Amt uint64 `serialize:"true" json:"amount"`
Input `serialize:"true"`
}
func (*TransferInput) InitRuntime(*runtime.Runtime) {}
// Amount returns the quantity of the asset this input produces
func (in *TransferInput) Amount() uint64 {
return in.Amt
}
// Verify this input is syntactically valid
func (in *TransferInput) Verify() error {
switch {
case in == nil:
return ErrNilInput
case in.Amt == 0:
return ErrNoValueInput
default:
return in.Input.Verify()
}
}