mirror of
https://github.com/luxfi/node.git
synced 2026-07-27 03:39:39 +00:00
* feat(platformvm): CreateSovereignL1Tx — single-tx sovereign L1 launch
Adds a new platformvm tx type that atomically registers a sovereign L1
in one P-chain commit. Replaces what is today the four-step flow:
CreateNetworkTx + AddChainValidatorTx ×N + CreateChainTx ×K + ConvertNetworkToL1Tx
with one signed tx. After commit, the primary network has a permanent
record of the L1's network ID + initial validator set + chain manifest
+ on-chain validator-manager contract — but it does NOT track-chains
or validate the L1's blocks. The L1 runs its own consensus from
genesis. L2/L3/L4 follow the same pattern recursively.
Type shape:
type CreateSovereignL1Tx struct {
BaseTx
Owner fx.Owner // CreateNetworkTx parity
Validators []*ConvertNetworkToL1Validator // genesis validator set
Chains []*SovereignL1Chain // VM ID + genesis blob per chain
ManagerChainIdx uint32 // index into Chains[]
ManagerAddress types.JSONByteSlice // validator-manager contract
}
type SovereignL1Chain struct {
BlockchainName string
VMID ids.ID
FxIDs []ids.ID
GenesisData []byte
}
SyntacticVerify enforces:
- at least one validator (sorted, unique)
- at least one chain, ≤ MaxSovereignL1Chains (16)
- ManagerChainIdx is in range of Chains[]
- ManagerAddress ≤ MaxChainAddressLength
- per-chain name + VMID + FxIDs + genesis bounds
- BaseTx + Owner + each Validator each verify
Wired into:
- Visitor interface
- codec (registered as the next tx type after ConvertNetworkToL1Tx)
- signer + complexity + metrics + executor stubs across all visitor
implementations
Executor body is stubbed with a TODO. The atomic state transition
(mint new networkID from tx hash, seed validator-manager state,
register each Chain, charge fee) lands in a follow-up PR. This PR is
the type definition + interface plumbing so downstream tools (wallet,
CLI, fee calc, metrics) can target the tx type while the executor is
implemented.
* chore(node): kill subnet — chain/network vocabulary across node
Zero remaining `subnet|Subnet|SUBNET` in node Go source. Per canonical
no-subnet rule.
## Wire types (Go fields only; byte-level wire encoding unchanged)
message/wire/types.go TrackedSubnets → TrackedChains
message/wire/zap.go same on Read/Write
proto/p2p/p2p_zap.go SubnetUptime alias → ChainUptime
(consumes luxfi/proto rename in companion PR)
## Comment scrub
message/wire/types.go "(chain, subnet) pair" → "(chain, network) pair"
network/peer/handshake.go "primary-network or subnet" → "primary-network or per-chain"
node/node.go "per-subnet" → "per-chain"
"P→subnet warp" → "P→chain warp"
genesis/builder/builder.go "their own subnets" → "their own chains"
vms/platformvm/client.go dropped "subnet jargon" reference
vms/platformvm/service.go dropped "net / subnet jargon" reference
vms/platformvm/config/internal.go "subnet-spawned blockchain" → "per-chain blockchain"
## ICPSubnet (Internet Computer adapter)
ICPSubnet → ICPNet (type rename — unrelated to platform subnet,
but still a subnet word; killed for consistency)
map field `subnets` → `nets`
## Examples
wallet/network/primary/examples/bootstrap-hanzo/main.go:
--subnet-id → --network-id (CLI flag)
existingSubnetID local var → existingNetID
"subnet ID" log lines → "network ID"
"SUBNET_ID=" output → "NETWORK_ID="
"subnet-evm VM ID" → "EVM VM ID"
All comments rephrased.
wallet/network/primary/examples/heartbeat-tx/main.go: one comment
rephrase.
go.work workspace cleanup:
- Removed ./operator/go entry (placeholder; lux/operator polyglot
layout pending the cross-repo migration)
- Removed ./operator entry (mid-migration; nothing to build)
Build clean. Zero `grep -rIn "subnet|Subnet" --include="*.go"` matches.
535 lines
15 KiB
Go
535 lines
15 KiB
Go
// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
package txs
|
|
|
|
import (
|
|
"bytes"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/luxfi/codec/linearcodec"
|
|
"github.com/luxfi/crypto/secp256k1"
|
|
"github.com/luxfi/ids"
|
|
lux "github.com/luxfi/utxo"
|
|
"github.com/luxfi/node/vms/components/verify"
|
|
"github.com/luxfi/codec/wrappers"
|
|
"github.com/luxfi/utxo/secp256k1fx"
|
|
)
|
|
|
|
// FuzzTransactionParsing tests transaction parsing with random data
|
|
func FuzzTransactionParsing(f *testing.F) {
|
|
// Seed corpus with various transaction-like structures
|
|
f.Add([]byte{})
|
|
f.Add([]byte{0x00, 0x00, 0x00, 0x00}) // Codec version
|
|
f.Add([]byte{0x00, 0x00, 0x00, 0x01}) // Type ID
|
|
|
|
// Add a more structured transaction-like data
|
|
txData := make([]byte, 100)
|
|
copy(txData[:4], []byte{0x00, 0x00, 0x00, 0x00}) // Version
|
|
copy(txData[4:8], []byte{0x00, 0x00, 0x00, 0x0c}) // Type ID
|
|
f.Add(txData)
|
|
|
|
// Add data with IDs
|
|
testID := ids.GenerateTestID()
|
|
withID := append([]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01}, testID[:]...)
|
|
f.Add(withID)
|
|
|
|
// Parser is not available in this package, using Codec instead
|
|
codec := Codec
|
|
|
|
f.Fuzz(func(t *testing.T, data []byte) {
|
|
// Try to parse as transaction
|
|
var tx Tx
|
|
_, err := codec.Unmarshal(data, &tx)
|
|
if err != nil {
|
|
// Expected for invalid transaction data
|
|
return
|
|
}
|
|
|
|
// If parsing succeeded, test that methods don't panic
|
|
unsigned := tx.Unsigned
|
|
if unsigned != nil {
|
|
_ = unsigned.Visit(&visitor{})
|
|
}
|
|
|
|
// Initialize the transaction to populate bytes and ID
|
|
if err := tx.Initialize(codec); err != nil {
|
|
// Some parsed transactions may fail to re-marshal
|
|
return
|
|
}
|
|
|
|
// Try to serialize back
|
|
txBytes := tx.Bytes()
|
|
if len(txBytes) == 0 {
|
|
t.Error("Initialized transaction has empty bytes")
|
|
return
|
|
}
|
|
|
|
// Parse again and verify consistency
|
|
var tx2 Tx
|
|
_, err = codec.Unmarshal(txBytes, &tx2)
|
|
if err != nil {
|
|
t.Errorf("Failed to re-parse serialized transaction: %v", err)
|
|
return
|
|
}
|
|
|
|
if err := tx2.Initialize(codec); err != nil {
|
|
t.Errorf("Failed to initialize re-parsed transaction: %v", err)
|
|
return
|
|
}
|
|
|
|
if tx.ID() != tx2.ID() {
|
|
t.Errorf("Transaction ID changed after re-parsing")
|
|
}
|
|
})
|
|
}
|
|
|
|
// FuzzBaseTx tests BaseTx parsing and serialization
|
|
func FuzzBaseTx(f *testing.F) {
|
|
// Seed corpus
|
|
f.Add(uint64(1), uint32(1), []byte{})
|
|
f.Add(uint64(1000000), uint32(42), bytes.Repeat([]byte{0xff}, 32))
|
|
testID := ids.GenerateTestID()
|
|
f.Add(uint64(0), uint32(0), testID[:])
|
|
|
|
c := linearcodec.NewDefault()
|
|
|
|
f.Fuzz(func(t *testing.T, networkID uint64, blockchainID uint32, assetData []byte) {
|
|
// Create asset ID
|
|
var assetID ids.ID
|
|
if len(assetData) >= 32 {
|
|
copy(assetID[:], assetData[:32])
|
|
}
|
|
|
|
// Create a base transaction
|
|
baseTx := &BaseTx{
|
|
BaseTx: lux.BaseTx{
|
|
NetworkID: uint32(networkID & 0xFFFFFFFF), // Limit to uint32
|
|
BlockchainID: ids.GenerateTestID(),
|
|
Outs: []*lux.TransferableOutput{
|
|
{
|
|
Asset: lux.Asset{ID: assetID},
|
|
Out: &secp256k1fx.TransferOutput{
|
|
Amt: 1000,
|
|
OutputOwners: secp256k1fx.OutputOwners{
|
|
Threshold: 1,
|
|
Addrs: []ids.ShortID{ids.GenerateTestShortID()},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Ins: []*lux.TransferableInput{},
|
|
},
|
|
}
|
|
|
|
// Try to serialize
|
|
p := wrappers.Packer{MaxSize: 1024 * 1024}
|
|
err := c.MarshalInto(baseTx, &p)
|
|
if err != nil {
|
|
// Some combinations might be invalid
|
|
return
|
|
}
|
|
|
|
// Try to deserialize
|
|
var parsed BaseTx
|
|
p2 := wrappers.Packer{Bytes: p.Bytes, MaxSize: 1024 * 1024}
|
|
err = c.UnmarshalFrom(&p2, &parsed)
|
|
if err != nil {
|
|
t.Errorf("Failed to unmarshal BaseTx: %v", err)
|
|
return
|
|
}
|
|
|
|
// Verify fields match
|
|
if parsed.NetworkID != baseTx.NetworkID {
|
|
t.Errorf("NetworkID mismatch: got %v, want %v", parsed.NetworkID, baseTx.NetworkID)
|
|
}
|
|
|
|
if parsed.BlockchainID != baseTx.BlockchainID {
|
|
t.Errorf("BlockchainID mismatch")
|
|
}
|
|
})
|
|
}
|
|
|
|
// FuzzCreateChainTx tests CreateChainTx parsing
|
|
func FuzzCreateChainTx(f *testing.F) {
|
|
// Seed corpus
|
|
f.Add([]byte("chainName"), []byte{}, []byte("vmID"))
|
|
f.Add([]byte("test"), bytes.Repeat([]byte{0x01}, 100), []byte("customvm"))
|
|
f.Add([]byte{}, []byte{}, []byte{})
|
|
|
|
c := linearcodec.NewDefault()
|
|
|
|
f.Fuzz(func(t *testing.T, chainName []byte, genesisData []byte, vmIDData []byte) {
|
|
// Limit sizes
|
|
if len(chainName) > 128 {
|
|
chainName = chainName[:128]
|
|
}
|
|
if len(genesisData) > 10000 {
|
|
genesisData = genesisData[:10000]
|
|
}
|
|
|
|
// Create VM ID
|
|
var vmID ids.ID
|
|
if len(vmIDData) >= 32 {
|
|
copy(vmID[:], vmIDData[:32])
|
|
} else {
|
|
vmID = ids.GenerateTestID()
|
|
}
|
|
|
|
// Create transaction
|
|
tx := &CreateChainTx{
|
|
BaseTx: BaseTx{
|
|
BaseTx: lux.BaseTx{
|
|
NetworkID: 1,
|
|
BlockchainID: ids.GenerateTestID(),
|
|
Outs: []*lux.TransferableOutput{},
|
|
Ins: []*lux.TransferableInput{},
|
|
},
|
|
},
|
|
ChainID: ids.GenerateTestID(),
|
|
BlockchainName: string(chainName),
|
|
VMID: vmID,
|
|
FxIDs: []ids.ID{},
|
|
GenesisData: genesisData,
|
|
ChainAuth: &secp256k1fx.Input{},
|
|
}
|
|
|
|
// Try to serialize
|
|
p := wrappers.Packer{MaxSize: 10 * 1024 * 1024}
|
|
err := c.MarshalInto(tx, &p)
|
|
if err != nil {
|
|
// Some combinations might be invalid
|
|
return
|
|
}
|
|
|
|
// Try to deserialize
|
|
var parsed CreateChainTx
|
|
p2 := wrappers.Packer{Bytes: p.Bytes, MaxSize: 10 * 1024 * 1024}
|
|
err = c.UnmarshalFrom(&p2, &parsed)
|
|
if err != nil {
|
|
t.Errorf("Failed to unmarshal CreateChainTx: %v", err)
|
|
return
|
|
}
|
|
|
|
// Verify key fields
|
|
if parsed.BlockchainName != tx.BlockchainName {
|
|
t.Errorf("ChainName mismatch: got %q, want %q", parsed.BlockchainName, tx.BlockchainName)
|
|
}
|
|
|
|
if parsed.VMID != tx.VMID {
|
|
t.Errorf("VMID mismatch")
|
|
}
|
|
|
|
if !bytes.Equal(parsed.GenesisData, tx.GenesisData) {
|
|
t.Errorf("GenesisData mismatch")
|
|
}
|
|
})
|
|
}
|
|
|
|
// FuzzAddValidatorTx tests validator transaction parsing
|
|
func FuzzAddValidatorTx(f *testing.F) {
|
|
// Seed corpus
|
|
f.Add(uint64(1), uint64(100), uint64(1000), uint32(100000))
|
|
f.Add(uint64(0), uint64(0), uint64(0), uint32(0))
|
|
f.Add(uint64(time.Now().Unix()), uint64(time.Now().Add(time.Hour).Unix()), uint64(1000000), uint32(20000))
|
|
|
|
c := linearcodec.NewDefault()
|
|
|
|
f.Fuzz(func(t *testing.T, startTime, endTime, weight uint64, shares uint32) {
|
|
// Create validator transaction
|
|
tx := &AddValidatorTx{
|
|
BaseTx: BaseTx{
|
|
BaseTx: lux.BaseTx{
|
|
NetworkID: 1,
|
|
BlockchainID: ids.GenerateTestID(),
|
|
Outs: []*lux.TransferableOutput{},
|
|
Ins: []*lux.TransferableInput{},
|
|
},
|
|
},
|
|
Validator: Validator{
|
|
NodeID: ids.GenerateTestNodeID(),
|
|
Start: startTime,
|
|
End: endTime,
|
|
Wght: weight,
|
|
},
|
|
StakeOuts: []*lux.TransferableOutput{
|
|
{
|
|
Asset: lux.Asset{ID: ids.GenerateTestID()},
|
|
Out: &secp256k1fx.TransferOutput{
|
|
Amt: weight,
|
|
OutputOwners: secp256k1fx.OutputOwners{
|
|
Threshold: 1,
|
|
Addrs: []ids.ShortID{ids.GenerateTestShortID()},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
RewardsOwner: &secp256k1fx.OutputOwners{
|
|
Threshold: 1,
|
|
Addrs: []ids.ShortID{ids.GenerateTestShortID()},
|
|
},
|
|
DelegationShares: shares,
|
|
}
|
|
|
|
// Try to serialize
|
|
p := wrappers.Packer{MaxSize: 1024 * 1024}
|
|
err := c.MarshalInto(tx, &p)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
// Try to deserialize
|
|
var parsed AddValidatorTx
|
|
p2 := wrappers.Packer{Bytes: p.Bytes, MaxSize: 1024 * 1024}
|
|
err = c.UnmarshalFrom(&p2, &parsed)
|
|
if err != nil {
|
|
t.Errorf("Failed to unmarshal AddValidatorTx: %v", err)
|
|
return
|
|
}
|
|
|
|
// Verify fields
|
|
if parsed.Start != tx.Start {
|
|
t.Errorf("Start time mismatch: got %v, want %v", parsed.Start, tx.Start)
|
|
}
|
|
|
|
if parsed.End != tx.End {
|
|
t.Errorf("End time mismatch: got %v, want %v", parsed.End, tx.End)
|
|
}
|
|
|
|
if parsed.Wght != tx.Wght {
|
|
t.Errorf("Weight mismatch: got %v, want %v", parsed.Wght, tx.Wght)
|
|
}
|
|
|
|
if parsed.DelegationShares != tx.DelegationShares {
|
|
t.Errorf("DelegationShares mismatch: got %v, want %v", parsed.DelegationShares, tx.DelegationShares)
|
|
}
|
|
})
|
|
}
|
|
|
|
// FuzzImportExportTx tests import/export transaction parsing
|
|
func FuzzImportExportTx(f *testing.F) {
|
|
// Seed corpus
|
|
f.Add([]byte{}, []byte{})
|
|
testID1 := ids.GenerateTestID()
|
|
testID2 := ids.GenerateTestID()
|
|
f.Add(testID1[:], testID2[:])
|
|
f.Add(bytes.Repeat([]byte{0xff}, 32), bytes.Repeat([]byte{0xaa}, 32))
|
|
|
|
c := linearcodec.NewDefault()
|
|
|
|
f.Fuzz(func(t *testing.T, sourceChainData, destChainData []byte) {
|
|
// Create chain IDs
|
|
var sourceChain, destChain ids.ID
|
|
if len(sourceChainData) >= 32 {
|
|
copy(sourceChain[:], sourceChainData[:32])
|
|
} else {
|
|
sourceChain = ids.GenerateTestID()
|
|
}
|
|
|
|
if len(destChainData) >= 32 {
|
|
copy(destChain[:], destChainData[:32])
|
|
} else {
|
|
destChain = ids.GenerateTestID()
|
|
}
|
|
|
|
// Create ImportTx
|
|
importTx := &ImportTx{
|
|
BaseTx: BaseTx{
|
|
BaseTx: lux.BaseTx{
|
|
NetworkID: 1,
|
|
BlockchainID: destChain,
|
|
Outs: []*lux.TransferableOutput{},
|
|
Ins: []*lux.TransferableInput{},
|
|
},
|
|
},
|
|
SourceChain: sourceChain,
|
|
ImportedInputs: []*lux.TransferableInput{
|
|
{
|
|
UTXOID: lux.UTXOID{
|
|
TxID: ids.GenerateTestID(),
|
|
OutputIndex: 0,
|
|
},
|
|
Asset: lux.Asset{ID: ids.GenerateTestID()},
|
|
In: &secp256k1fx.TransferInput{
|
|
Amt: 1000,
|
|
Input: secp256k1fx.Input{
|
|
SigIndices: []uint32{0},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
// Try to serialize ImportTx
|
|
p := wrappers.Packer{MaxSize: 1024 * 1024}
|
|
err := c.MarshalInto(importTx, &p)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
// Try to deserialize
|
|
var parsedImport ImportTx
|
|
p2 := wrappers.Packer{Bytes: p.Bytes, MaxSize: 1024 * 1024}
|
|
err = c.UnmarshalFrom(&p2, &parsedImport)
|
|
if err != nil {
|
|
t.Errorf("Failed to unmarshal ImportTx: %v", err)
|
|
return
|
|
}
|
|
|
|
// Verify fields
|
|
if parsedImport.SourceChain != importTx.SourceChain {
|
|
t.Errorf("SourceChain mismatch")
|
|
}
|
|
|
|
// Create ExportTx
|
|
exportTx := &ExportTx{
|
|
BaseTx: BaseTx{
|
|
BaseTx: lux.BaseTx{
|
|
NetworkID: 1,
|
|
BlockchainID: sourceChain,
|
|
Outs: []*lux.TransferableOutput{},
|
|
Ins: []*lux.TransferableInput{},
|
|
},
|
|
},
|
|
DestinationChain: destChain,
|
|
ExportedOutputs: []*lux.TransferableOutput{
|
|
{
|
|
Asset: lux.Asset{ID: ids.GenerateTestID()},
|
|
Out: &secp256k1fx.TransferOutput{
|
|
Amt: 1000,
|
|
OutputOwners: secp256k1fx.OutputOwners{
|
|
Threshold: 1,
|
|
Addrs: []ids.ShortID{ids.GenerateTestShortID()},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
// Try to serialize ExportTx
|
|
p3 := wrappers.Packer{MaxSize: 1024 * 1024}
|
|
err = c.MarshalInto(exportTx, &p3)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
// Try to deserialize
|
|
var parsedExport ExportTx
|
|
p4 := wrappers.Packer{Bytes: p3.Bytes, MaxSize: 1024 * 1024}
|
|
err = c.UnmarshalFrom(&p4, &parsedExport)
|
|
if err != nil {
|
|
t.Errorf("Failed to unmarshal ExportTx: %v", err)
|
|
return
|
|
}
|
|
|
|
// Verify fields
|
|
if parsedExport.DestinationChain != exportTx.DestinationChain {
|
|
t.Errorf("DestinationChain mismatch")
|
|
}
|
|
})
|
|
}
|
|
|
|
// FuzzTransactionSignatures tests transaction signature handling
|
|
func FuzzTransactionSignatures(f *testing.F) {
|
|
// Seed corpus
|
|
f.Add([]byte{}, []byte{})
|
|
f.Add(bytes.Repeat([]byte{0x01}, 65), bytes.Repeat([]byte{0x02}, 32))
|
|
|
|
// Parser is not available in this package, using Codec instead
|
|
codec := Codec
|
|
|
|
f.Fuzz(func(t *testing.T, sigData []byte, txData []byte) {
|
|
// Create a basic transaction
|
|
baseTx := &Tx{
|
|
Unsigned: &BaseTx{
|
|
BaseTx: lux.BaseTx{
|
|
NetworkID: 1,
|
|
BlockchainID: ids.GenerateTestID(),
|
|
Outs: []*lux.TransferableOutput{},
|
|
Ins: []*lux.TransferableInput{},
|
|
},
|
|
},
|
|
Creds: []verify.Verifiable{},
|
|
}
|
|
|
|
// Add credentials based on signature data
|
|
if len(sigData) >= 65 {
|
|
cred := secp256k1fx.Credential{
|
|
Sigs: [][secp256k1.SignatureLen]byte{},
|
|
}
|
|
|
|
// Add signatures (65 bytes each)
|
|
for i := 0; i+65 <= len(sigData); i += 65 {
|
|
var sig [65]byte
|
|
copy(sig[:], sigData[i:i+65])
|
|
cred.Sigs = append(cred.Sigs, sig)
|
|
|
|
if len(cred.Sigs) >= 10 { // Limit number of signatures
|
|
break
|
|
}
|
|
}
|
|
|
|
baseTx.Creds = append(baseTx.Creds, &cred)
|
|
}
|
|
|
|
// Initialize the transaction
|
|
if err := baseTx.Initialize(codec); err != nil {
|
|
// Some combinations might be invalid
|
|
return
|
|
}
|
|
|
|
// Get transaction bytes
|
|
bytes := baseTx.Bytes()
|
|
|
|
// Try to parse back
|
|
var parsed Tx
|
|
_, err := codec.Unmarshal(bytes, &parsed)
|
|
if err != nil {
|
|
// Should not fail for a transaction we created
|
|
t.Errorf("Failed to parse transaction we created: %v", err)
|
|
return
|
|
}
|
|
|
|
// Initialize the parsed transaction to compute its ID
|
|
if err := parsed.Initialize(codec); err != nil {
|
|
// Should not fail for a valid parsed transaction
|
|
t.Errorf("Failed to initialize parsed transaction: %v", err)
|
|
return
|
|
}
|
|
|
|
// Verify ID matches
|
|
if baseTx.ID() != parsed.ID() {
|
|
t.Errorf("Transaction ID mismatch after parsing")
|
|
}
|
|
})
|
|
}
|
|
|
|
// visitor implements the Visitor interface for testing
|
|
type visitor struct{}
|
|
|
|
func (v *visitor) AddDelegatorTx(*AddDelegatorTx) error { return nil }
|
|
func (v *visitor) AddChainValidatorTx(*AddChainValidatorTx) error { return nil }
|
|
func (v *visitor) AddPermissionlessDelegatorTx(*AddPermissionlessDelegatorTx) error { return nil }
|
|
func (v *visitor) AddPermissionlessValidatorTx(*AddPermissionlessValidatorTx) error { return nil }
|
|
func (v *visitor) AddValidatorTx(*AddValidatorTx) error { return nil }
|
|
func (v *visitor) AdvanceTimeTx(*AdvanceTimeTx) error { return nil }
|
|
func (v *visitor) BaseTx(*BaseTx) error { return nil }
|
|
func (v *visitor) CreateChainTx(*CreateChainTx) error { return nil }
|
|
func (v *visitor) CreateNetworkTx(*CreateNetworkTx) error { return nil }
|
|
func (v *visitor) ExportTx(*ExportTx) error { return nil }
|
|
func (v *visitor) ImportTx(*ImportTx) error { return nil }
|
|
func (v *visitor) RemoveChainValidatorTx(*RemoveChainValidatorTx) error { return nil }
|
|
func (v *visitor) RewardValidatorTx(*RewardValidatorTx) error { return nil }
|
|
func (v *visitor) TransferChainOwnershipTx(*TransferChainOwnershipTx) error { return nil }
|
|
func (v *visitor) TransformChainTx(*TransformChainTx) error { return nil }
|
|
func (v *visitor) ConvertNetworkToL1Tx(*ConvertNetworkToL1Tx) error { return nil }
|
|
func (v *visitor) CreateSovereignL1Tx(*CreateSovereignL1Tx) error { return nil }
|
|
func (v *visitor) RegisterL1ValidatorTx(*RegisterL1ValidatorTx) error { return nil }
|
|
func (v *visitor) SetL1ValidatorWeightTx(*SetL1ValidatorWeightTx) error { return nil }
|
|
func (v *visitor) DisableL1ValidatorTx(*DisableL1ValidatorTx) error { return nil }
|
|
func (v *visitor) IncreaseL1ValidatorBalanceTx(*IncreaseL1ValidatorBalanceTx) error { return nil }
|
|
func (v *visitor) SlashValidatorTx(*SlashValidatorTx) error { return nil }
|
|
func (v *visitor) CreateAssetTx(*CreateAssetTx) error { return nil }
|
|
func (v *visitor) OperationTx(*OperationTx) error { return nil }
|