mirror of
https://github.com/luxfi/node.git
synced 2026-07-27 03:39:39 +00:00
One place, one way to define UTXO primitives. Delete the in-tree duplicate at node/vms/components/lux/ and import the standalone luxfi/utxo package with a 'lux' alias so existing call-sites (lux.UTXO, lux.TransferableInput, etc.) remain unchanged in consumers. Files changed: 167 imports rewritten, 2 directories deleted. Build still green on the whole tree except pre-existing examples/multi-network QChainMainnetID issue (unrelated). Next: rename luxfi/utxo/luxmock → utxomock for full brand-neutrality; that is a separate PR since it requires touching all consumer alias names.
150 lines
4.3 KiB
Go
150 lines
4.3 KiB
Go
// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
package txs
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/luxfi/runtime"
|
|
"github.com/luxfi/constants"
|
|
"github.com/luxfi/crypto/bls"
|
|
"github.com/luxfi/ids"
|
|
safemath "github.com/luxfi/math"
|
|
lux "github.com/luxfi/utxo"
|
|
"github.com/luxfi/node/vms/components/verify"
|
|
"github.com/luxfi/node/vms/platformvm/fx"
|
|
"github.com/luxfi/node/vms/platformvm/reward"
|
|
"github.com/luxfi/utxo/secp256k1fx"
|
|
)
|
|
|
|
var (
|
|
_ ValidatorTx = (*AddValidatorTx)(nil)
|
|
_ ScheduledStaker = (*AddValidatorTx)(nil)
|
|
|
|
errTooManyShares = fmt.Errorf("a staker can only require at most %d shares from delegators", reward.PercentDenominator)
|
|
)
|
|
|
|
// AddValidatorTx is an unsigned addValidatorTx
|
|
type AddValidatorTx struct {
|
|
// Metadata, inputs and outputs
|
|
BaseTx `serialize:"true"`
|
|
// Describes the delegatee
|
|
Validator `serialize:"true" json:"validator"`
|
|
// Where to send staked tokens when done validating
|
|
StakeOuts []*lux.TransferableOutput `serialize:"true" json:"stake"`
|
|
// Where to send staking rewards when done validating
|
|
RewardsOwner fx.Owner `serialize:"true" json:"rewardsOwner"`
|
|
// Fee this validator charges delegators as a percentage, times 10,000
|
|
// For example, if this validator has DelegationShares=300,000 then they
|
|
// take 30% of rewards from delegators
|
|
DelegationShares uint32 `serialize:"true" json:"shares"`
|
|
}
|
|
|
|
// InitRuntime sets the FxID fields in the inputs and outputs of this
|
|
// [AddValidatorTx]. Also sets the [rt] to the given [vm.rt] so that
|
|
// the addresses can be json marshalled into human readable format
|
|
func (tx *AddValidatorTx) InitRuntime(rt *runtime.Runtime) {
|
|
tx.BaseTx.InitRuntime(rt)
|
|
for _, out := range tx.StakeOuts {
|
|
out.FxID = secp256k1fx.ID
|
|
out.InitRuntime(rt)
|
|
}
|
|
// Owner doesn't have InitRuntime method
|
|
}
|
|
|
|
func (*AddValidatorTx) ChainID() ids.ID {
|
|
return constants.PrimaryNetworkID
|
|
}
|
|
|
|
func (tx *AddValidatorTx) NodeID() ids.NodeID {
|
|
return tx.Validator.NodeID
|
|
}
|
|
|
|
func (*AddValidatorTx) PublicKey() (*bls.PublicKey, bool, error) {
|
|
return nil, false, nil
|
|
}
|
|
|
|
func (*AddValidatorTx) PendingPriority() Priority {
|
|
return PrimaryNetworkValidatorPendingPriority
|
|
}
|
|
|
|
func (*AddValidatorTx) CurrentPriority() Priority {
|
|
return PrimaryNetworkValidatorCurrentPriority
|
|
}
|
|
|
|
func (tx *AddValidatorTx) Stake() []*lux.TransferableOutput {
|
|
return tx.StakeOuts
|
|
}
|
|
|
|
func (tx *AddValidatorTx) ValidationRewardsOwner() fx.Owner {
|
|
return tx.RewardsOwner
|
|
}
|
|
|
|
func (tx *AddValidatorTx) DelegationRewardsOwner() fx.Owner {
|
|
return tx.RewardsOwner
|
|
}
|
|
|
|
func (tx *AddValidatorTx) Shares() uint32 {
|
|
return tx.DelegationShares
|
|
}
|
|
|
|
// SyntacticVerify returns nil iff [tx] is valid
|
|
func (tx *AddValidatorTx) SyntacticVerify(rt *runtime.Runtime) error {
|
|
switch {
|
|
case tx == nil:
|
|
return ErrNilTx
|
|
case tx.SyntacticallyVerified: // already passed syntactic verification
|
|
return nil
|
|
case tx.DelegationShares > reward.PercentDenominator: // Ensure delegators shares are in the allowed amount
|
|
return errTooManyShares
|
|
}
|
|
|
|
if err := tx.BaseTx.SyntacticVerify(rt); err != nil {
|
|
return fmt.Errorf("failed to verify BaseTx: %w", err)
|
|
}
|
|
if err := verify.All(&tx.Validator, tx.RewardsOwner); err != nil {
|
|
return fmt.Errorf("failed to verify validator or rewards owner: %w", err)
|
|
}
|
|
|
|
totalStakeWeight := uint64(0)
|
|
for _, out := range tx.StakeOuts {
|
|
if err := out.Verify(); err != nil {
|
|
return fmt.Errorf("failed to verify output: %w", err)
|
|
}
|
|
newWeight, err := safemath.Add64(totalStakeWeight, out.Output().Amount())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
totalStakeWeight = newWeight
|
|
|
|
assetID := out.AssetID()
|
|
xAssetID := rt.XAssetID
|
|
if assetID != xAssetID {
|
|
return fmt.Errorf("%w but is %q", errStakeMustBeLUX, assetID)
|
|
}
|
|
}
|
|
|
|
switch {
|
|
case !lux.IsSortedTransferableOutputs(tx.StakeOuts, Codec):
|
|
return errOutputsNotSorted
|
|
case totalStakeWeight != tx.Wght:
|
|
return fmt.Errorf("%w: weight %d != stake %d", errValidatorWeightMismatch, tx.Wght, totalStakeWeight)
|
|
}
|
|
|
|
// cache that this is valid
|
|
tx.SyntacticallyVerified = true
|
|
return nil
|
|
}
|
|
|
|
func (tx *AddValidatorTx) Visit(visitor Visitor) error {
|
|
return visitor.AddValidatorTx(tx)
|
|
}
|
|
|
|
// InitializeWithRuntime initializes the transaction with Runtime
|
|
func (tx *AddValidatorTx) Initialize(ctx context.Context) error {
|
|
// Initialize any context-dependent fields here
|
|
return nil
|
|
}
|