// (c) 2019-2020, Ava Labs, Inc. All rights reserved.// See the file LICENSE for licensing terms.packageevmimport("github.com/ava-labs/gecko/ids")// ID this VM should be referenced byvar(ID=ids.NewID([32]byte{'e','v','m'}))// Factory ...typeFactorystruct{AVAXids.IDAVMids.IDFeeuint64}// New ...func(f*Factory)New()interface{}{return&VM{avaxAssetID:f.AVAX,avm:f.AVM,txFee:f.Fee,}}