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

     1  // Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
     2  // See the file LICENSE for licensing terms.
     3  
     4  package propertyfx
     5  
     6  import (
     7  	"github.com/ava-labs/avalanchego/vms/components/verify"
     8  	"github.com/ava-labs/avalanchego/vms/secp256k1fx"
     9  )
    10  
    11  var _ verify.State = (*OwnedOutput)(nil)
    12  
    13  type OwnedOutput struct {
    14  	verify.IsState `json:"-"`
    15  
    16  	secp256k1fx.OutputOwners `serialize:"true"`
    17  }