github.com/MetalBlockchain/metalgo@v1.11.9/vms/example/xsvm/tx/visitor.go (about)

     1  // Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
     2  // See the file LICENSE for licensing terms.
     3  
     4  package tx
     5  
     6  type Visitor interface {
     7  	Transfer(*Transfer) error
     8  	Export(*Export) error
     9  	Import(*Import) error
    10  }