github.com/MetalBlockchain/metalgo@v1.11.9/vms/components/avax/state.go (about) 1 // Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved. 2 // See the file LICENSE for licensing terms. 3 4 package avax 5 6 const ( 7 codecVersion = 0 8 ) 9 10 // Addressable is the interface a feature extension must provide to be able to 11 // be tracked as a part of the utxo set for a set of addresses 12 type Addressable interface { 13 Addresses() [][]byte 14 }