github.com/ava-labs/avalanchego@v1.11.11/vms/platformvm/warp/constants.go (about)

     1  // Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
     2  // See the file LICENSE for licensing terms.
     3  
     4  package warp
     5  
     6  import "github.com/ava-labs/avalanchego/ids"
     7  
     8  // AnycastID is a special DestinationChainID that is used to indicate that the
     9  // message is intended to be able to be received by any chain.
    10  var AnycastID = ids.ID{
    11  	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
    12  	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
    13  	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
    14  	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
    15  }