lotus/build/params_shared.go

102 lines
2.1 KiB
Go
Raw Normal View History

2019-08-26 18:23:11 +00:00
package build
import (
"math/big"
2020-03-31 23:13:37 +00:00
"github.com/libp2p/go-libp2p-core/protocol"
"github.com/filecoin-project/lotus/node/modules/dtypes"
)
2019-08-26 18:23:11 +00:00
// Core network constants
2020-03-31 23:13:37 +00:00
func BlocksTopic(netName dtypes.NetworkName) string { return "/fil/blocks/" + string(netName) }
func MessagesTopic(netName dtypes.NetworkName) string { return "/fil/msgs/" + string(netName) }
func DhtProtocolName(netName dtypes.NetworkName) protocol.ID {
return protocol.ID("/fil/kad/" + string(netName))
}
2019-09-24 11:16:05 +00:00
// /////
// Storage
2019-08-26 18:23:11 +00:00
const UnixfsChunkSize uint64 = 1 << 20
2019-08-27 22:10:23 +00:00
const UnixfsLinksPerLevel = 1024
const SectorChallengeRatioDiv = 25
2019-09-24 11:16:05 +00:00
// /////
// Payments
2019-11-28 12:46:56 +00:00
// Epochs
2019-12-10 10:52:24 +00:00
const PaymentChannelClosingDelay = 6 * 60 * 60 / BlockDelay // six hours
2019-09-09 13:55:06 +00:00
2019-09-24 11:16:05 +00:00
// /////
// Consensus / Network
// Seconds
const AllowableClockDrift = 1
2019-09-24 11:16:05 +00:00
2019-11-28 12:46:56 +00:00
// Epochs
2019-11-15 00:20:39 +00:00
const ForkLengthThreshold = Finality
2019-09-19 16:17:49 +00:00
2019-10-13 01:18:59 +00:00
// Blocks (e)
const BlocksPerEpoch = 5
2019-10-13 01:18:59 +00:00
2019-11-28 12:46:56 +00:00
// Epochs
const Finality = 500
// constants for Weight calculation
// The ratio of weight contributed by short-term vs long-term factors in a given round
const WRatioNum = int64(1)
const WRatioDen = 2
2019-09-24 11:16:05 +00:00
// /////
// Proofs
2019-09-24 11:16:05 +00:00
// Epochs
const FallbackPoStConfidence = 6
2019-11-28 12:46:56 +00:00
// Epochs
const SealRandomnessLookback = Finality
2019-11-28 12:46:56 +00:00
// Epochs
const SealRandomnessLookbackLimit = SealRandomnessLookback + 2000 // TODO: Get from spec specs-actors
2019-11-05 16:15:52 +00:00
// Maximum lookback that randomness can be sourced from for a seal proof submission
const MaxSealLookback = SealRandomnessLookbackLimit + 2000 // TODO: Get from specs-actors
// /////
// Mining
2019-09-24 11:16:05 +00:00
2019-11-28 12:46:56 +00:00
// Epochs
const TicketRandomnessLookback = 1
2019-09-24 11:16:05 +00:00
// /////
// Devnet settings
2019-11-08 08:40:02 +00:00
const TotalFilecoin = 2_000_000_000
const MiningRewardTotal = 1_400_000_000
2019-11-08 08:40:02 +00:00
const FilecoinPrecision = 1_000_000_000_000_000_000
2019-09-12 04:12:35 +00:00
2020-03-07 01:33:24 +00:00
var InitialRewardBalance *big.Int
2019-08-26 18:23:11 +00:00
// TODO: Move other important consts here
func init() {
2020-03-07 01:33:24 +00:00
InitialRewardBalance = big.NewInt(MiningRewardTotal)
InitialRewardBalance = InitialRewardBalance.Mul(InitialRewardBalance, big.NewInt(FilecoinPrecision))
}
2019-10-09 12:55:27 +00:00
// Sync
const BadBlockCacheSize = 1 << 15
2019-11-28 12:46:56 +00:00
// assuming 4000 messages per round, this lets us not lose any messages across a
// 10 block reorg.
const BlsSignatureCacheSize = 40000
// ///////
// Limits
const BlockMessageLimit = 512