decred.org/dcrdex@v1.0.3/dex/networks/btc/params.go (about)

     1  // This code is available on the terms of the project LICENSE.md file,
     2  // also available online at https://blueoakcouncil.org/license/1.0.0.
     3  
     4  package btc
     5  
     6  import "decred.org/dcrdex/dex"
     7  
     8  var UnitInfo = dex.UnitInfo{
     9  	AtomicUnit: "Sats",
    10  	Conventional: dex.Denomination{
    11  		Unit:             "BTC",
    12  		ConversionFactor: 1e8,
    13  	},
    14  	Alternatives: []dex.Denomination{
    15  		{
    16  			Unit:             "mBTC",
    17  			ConversionFactor: 1e5,
    18  		},
    19  		{
    20  			Unit:             "µBTC",
    21  			ConversionFactor: 1e2,
    22  		},
    23  	},
    24  	FeeRateDenom: "vB",
    25  }