github.com/MetalBlockchain/metalgo@v1.11.9/utils/units/bytes.go (about)

     1  // Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
     2  // See the file LICENSE for licensing terms.
     3  
     4  package units
     5  
     6  const (
     7  	KiB = 1024       // 1 kibibyte
     8  	MiB = 1024 * KiB // 1 mebibyte
     9  	GiB = 1024 * MiB // 1 gibibyte
    10  )