github.com/ava-labs/avalanchego@v1.11.11/vms/avm/config/config.go (about)

     1  // Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
     2  // See the file LICENSE for licensing terms.
     3  
     4  package config
     5  
     6  import "github.com/ava-labs/avalanchego/upgrade"
     7  
     8  // Struct collecting all the foundational parameters of the AVM
     9  type Config struct {
    10  	Upgrades upgrade.Config
    11  
    12  	// Fee that is burned by every non-asset creating transaction
    13  	TxFee uint64
    14  
    15  	// Fee that must be burned by every asset creating transaction
    16  	CreateAssetTxFee uint64
    17  }