package propertyfx import ( "github.com/ava-labs/gecko/vms/components/verify" "github.com/ava-labs/gecko/vms/secp256k1fx" ) // BurnOperation ... type BurnOperation struct { secp256k1fx.Input `serialize:"true"` } // Outs ... func (op *BurnOperation) Outs() []verify.Verifiable { return nil }