mirror of
https://github.com/luxfi/node.git
synced 2026-07-27 03:39:39 +00:00
- SlashValidatorTx ripped (unwired stub; Avalanche has no slashing; consensus only detects, never enforces). Type+executor+tests+Visitor surface removed. - CreateAssetTx + OperationTx ripped from P-CHAIN (X-chain/AVM types; LP-0130: asset creation + fx ops are X-chain money-rail, not P staking-rail; no P producer). xvm/avm untouched. - Staker interfaces (StakerTx/ValidatorTx/DelegatorTx/ScheduledStaker) restored on the 5 validator types via pure accessors + FxID-on-stake preserved. - Remaining real complex types: ConvertNetworkToL1Tx + CreateSovereignL1Tx.
153 lines
3.2 KiB
Go
153 lines
3.2 KiB
Go
// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
package executor
|
|
|
|
import (
|
|
"context"
|
|
|
|
validators "github.com/luxfi/validators"
|
|
"github.com/luxfi/node/vms/platformvm/txs"
|
|
"github.com/luxfi/node/vms/platformvm/warp"
|
|
)
|
|
|
|
const (
|
|
WarpQuorumNumerator = 67
|
|
WarpQuorumDenominator = 100
|
|
)
|
|
|
|
var _ txs.Visitor = (*warpVerifier)(nil)
|
|
|
|
// VerifyWarpMessages verifies all warp messages in the tx. If any of the warp
|
|
// messages are invalid, an error is returned.
|
|
func VerifyWarpMessages(
|
|
ctx context.Context,
|
|
networkID uint32,
|
|
validatorState validators.State,
|
|
pChainHeight uint64,
|
|
tx txs.UnsignedTx,
|
|
) error {
|
|
return tx.Visit(&warpVerifier{
|
|
context: ctx,
|
|
networkID: networkID,
|
|
validatorState: validatorState,
|
|
pChainHeight: pChainHeight,
|
|
})
|
|
}
|
|
|
|
type warpVerifier struct {
|
|
context context.Context
|
|
networkID uint32
|
|
validatorState validators.State
|
|
pChainHeight uint64
|
|
}
|
|
|
|
func (*warpVerifier) AddValidatorTx(*txs.AddValidatorTx) error {
|
|
return nil
|
|
}
|
|
|
|
func (*warpVerifier) AddChainValidatorTx(*txs.AddChainValidatorTx) error {
|
|
return nil
|
|
}
|
|
|
|
func (*warpVerifier) AddDelegatorTx(*txs.AddDelegatorTx) error {
|
|
return nil
|
|
}
|
|
|
|
func (*warpVerifier) CreateChainTx(*txs.CreateChainTx) error {
|
|
return nil
|
|
}
|
|
|
|
func (*warpVerifier) CreateNetworkTx(*txs.CreateNetworkTx) error {
|
|
return nil
|
|
}
|
|
|
|
func (*warpVerifier) ImportTx(*txs.ImportTx) error {
|
|
return nil
|
|
}
|
|
|
|
func (*warpVerifier) ExportTx(*txs.ExportTx) error {
|
|
return nil
|
|
}
|
|
|
|
func (*warpVerifier) AdvanceTimeTx(*txs.AdvanceTimeTx) error {
|
|
return nil
|
|
}
|
|
|
|
func (*warpVerifier) RewardValidatorTx(*txs.RewardValidatorTx) error {
|
|
return nil
|
|
}
|
|
|
|
func (*warpVerifier) RemoveChainValidatorTx(*txs.RemoveChainValidatorTx) error {
|
|
return nil
|
|
}
|
|
|
|
func (*warpVerifier) TransformChainTx(*txs.TransformChainTx) error {
|
|
return nil
|
|
}
|
|
|
|
func (*warpVerifier) AddPermissionlessValidatorTx(*txs.AddPermissionlessValidatorTx) error {
|
|
return nil
|
|
}
|
|
|
|
func (*warpVerifier) AddPermissionlessDelegatorTx(*txs.AddPermissionlessDelegatorTx) error {
|
|
return nil
|
|
}
|
|
|
|
func (*warpVerifier) TransferChainOwnershipTx(*txs.TransferChainOwnershipTx) error {
|
|
return nil
|
|
}
|
|
|
|
func (*warpVerifier) BaseTx(*txs.BaseTx) error {
|
|
return nil
|
|
}
|
|
|
|
func (*warpVerifier) ConvertNetworkToL1Tx(*txs.ConvertNetworkToL1Tx) error {
|
|
return nil
|
|
}
|
|
|
|
func (*warpVerifier) CreateSovereignL1Tx(*txs.CreateSovereignL1Tx) error {
|
|
return nil
|
|
}
|
|
|
|
func (*warpVerifier) IncreaseL1ValidatorBalanceTx(*txs.IncreaseL1ValidatorBalanceTx) error {
|
|
return nil
|
|
}
|
|
|
|
func (*warpVerifier) DisableL1ValidatorTx(*txs.DisableL1ValidatorTx) error {
|
|
return nil
|
|
}
|
|
|
|
func (w *warpVerifier) RegisterL1ValidatorTx(tx *txs.RegisterL1ValidatorTx) error {
|
|
return w.verify(tx.Message)
|
|
}
|
|
|
|
func (w *warpVerifier) SetL1ValidatorWeightTx(tx *txs.SetL1ValidatorWeightTx) error {
|
|
return w.verify(tx.Message)
|
|
}
|
|
|
|
func (w *warpVerifier) verify(message []byte) error {
|
|
msg, err := warp.ParseMessage(message)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
validators, err := warp.GetCanonicalValidatorSetFromChainID(
|
|
w.context,
|
|
w.validatorState,
|
|
w.pChainHeight,
|
|
msg.SourceChainID,
|
|
)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return msg.Signature.Verify(
|
|
&msg.UnsignedMessage,
|
|
w.networkID,
|
|
validators,
|
|
WarpQuorumNumerator,
|
|
WarpQuorumDenominator,
|
|
)
|
|
}
|