public AMSMain() { NetworkType = NetworkType.Mainnet; DefaultConfigFilename = AMSSetup.ConfigFileName; // The default name used for the AMS configuration file. Name = AMSSetup.Main.Name; CoinTicker = AMSSetup.Main.CoinTicker; Magic = ConversionTools.ConvertToUInt32(AMSSetup.Magic); RootFolderName = AMSSetup.Main.RootFolderName; DefaultPort = AMSSetup.Main.DefaultPort; DefaultRPCPort = AMSSetup.Main.DefaultRPCPort; DefaultAPIPort = AMSSetup.Main.DefaultAPIPort; DefaultMaxOutboundConnections = 16; DefaultMaxInboundConnections = 109; MaxTipAge = 2 * 60 * 60; MinTxFee = 50000; FallbackFee = 50000; MinRelayTxFee = 50000; MaxTimeOffsetSeconds = 25 * 60; DefaultBanTimeSeconds = 16000; // 500 (MaxReorg) * 64 (TargetSpacing) / 2 = 4 hours, 26 minutes and 40 seconds var consensusFactory = new PosConsensusFactory(); Block genesisBlock = CreateGenesisBlock(consensusFactory, AMSSetup.Main.GenesisTime, AMSSetup.Main.GenesisNonce, AMSSetup.Main.GenesisBits, AMSSetup.Main.GenesisVersion, AMSSetup.Main.GenesisReward, AMSSetup.GenesisText); Genesis = genesisBlock; // Taken from StratisX. var consensusOptions = new PosConsensusOptions { MaxBlockBaseSize = 1_000_000, MaxStandardVersion = 2, MaxStandardTxWeight = 100_000, MaxBlockSigopsCost = 20_000, MaxStandardTxSigopsCost = 20_000 / 5, WitnessScaleFactor = 4 }; var buriedDeployments = new BuriedDeploymentsArray { [BuriedDeployments.BIP34] = 0, [BuriedDeployments.BIP65] = 0, [BuriedDeployments.BIP66] = 0 }; Consensus = new Consensus( consensusFactory: consensusFactory, consensusOptions: consensusOptions, coinType: AMSSetup.CoinType, hashGenesisBlock: genesisBlock.GetHash(), subsidyHalvingInterval: 250000, majorityEnforceBlockUpgrade: 750, majorityRejectBlockOutdated: 950, majorityWindow: 1000, buriedDeployments: buriedDeployments, bip9Deployments: new NoBIP9Deployments(), bip34Hash: null, minerConfirmationWindow: 2016, // nPowTargetTimespan / nPowTargetSpacing maxReorgLength: 500, defaultAssumeValid: null, maxMoney: long.MaxValue, coinbaseMaturity: 50, premineHeight: 2, premineReward: Money.Coins(AMSSetup.PremineReward), proofOfWorkReward: Money.Coins(AMSSetup.PoWBlockReward), targetTimespan: TimeSpan.FromSeconds(14 * 24 * 60 * 60), // two weeks targetSpacing: AMSSetup.TargetSpacing, powAllowMinDifficultyBlocks: false, posNoRetargeting: false, powNoRetargeting: false, powLimit: new Target(new uint256("00000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")), minimumChainWork: null, isProofOfStake: true, lastPowBlock: AMSSetup.LastPowBlock, proofOfStakeLimit: new BigInteger(uint256.Parse("00000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff").ToBytes(false)), proofOfStakeLimitV2: new BigInteger(uint256.Parse("000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffff").ToBytes(false)), proofOfStakeReward: Money.Coins(AMSSetup.PoSBlockReward), proofOfStakeTimestampMask: AMSSetup.ProofOfStakeTimestampMask ); Consensus.PosEmptyCoinbase = AMSSetup.IsPoSv3(); Consensus.PosUseTimeFieldInKernalHash = AMSSetup.IsPoSv3(); // TODO: Set your Base58Prefixes Base58Prefixes = new byte[12][]; Base58Prefixes[(int)Base58Type.PUBKEY_ADDRESS] = new byte[] { (AMSSetup.Main.PubKeyAddress) }; Base58Prefixes[(int)Base58Type.SCRIPT_ADDRESS] = new byte[] { (AMSSetup.Main.ScriptAddress) }; Base58Prefixes[(int)Base58Type.SECRET_KEY] = new byte[] { (AMSSetup.Main.SecretAddress) }; Base58Prefixes[(int)Base58Type.ENCRYPTED_SECRET_KEY_NO_EC] = new byte[] { 0x01, 0x42 }; Base58Prefixes[(int)Base58Type.ENCRYPTED_SECRET_KEY_EC] = new byte[] { 0x01, 0x43 }; Base58Prefixes[(int)Base58Type.EXT_PUBLIC_KEY] = new byte[] { (0x04), (0x88), (0xB2), (0x1E) }; Base58Prefixes[(int)Base58Type.EXT_SECRET_KEY] = new byte[] { (0x04), (0x88), (0xAD), (0xE4) }; Base58Prefixes[(int)Base58Type.PASSPHRASE_CODE] = new byte[] { 0x2C, 0xE9, 0xB3, 0xE1, 0xFF, 0x39, 0xE2 }; Base58Prefixes[(int)Base58Type.CONFIRMATION_CODE] = new byte[] { 0x64, 0x3B, 0xF6, 0xA8, 0x9A }; // Base58Prefixes[(int)Base58Type.STEALTH_ADDRESS] = new byte[] { 0x2a }; Base58Prefixes[(int)Base58Type.ASSET_ID] = new byte[] { 23 }; // Base58Prefixes[(int)Base58Type.COLORED_ADDRESS] = new byte[] { 0x13 }; Bech32Encoders = new Bech32Encoder[2]; var encoder = new Bech32Encoder(AMSSetup.Main.CoinTicker.ToLowerInvariant()); Bech32Encoders[(int)Bech32Type.WITNESS_PUBKEY_ADDRESS] = encoder; Bech32Encoders[(int)Bech32Type.WITNESS_SCRIPT_ADDRESS] = encoder; Checkpoints = AMSSetup.Main.Checkpoints; DNSSeeds = AMSSetup.Main.DNS; SeedNodes = AMSSetup.Main.Nodes; StandardScriptsRegistry = new AMSStandardScriptsRegistry(); // 64 below should be changed to TargetSpacingSeconds when we move that field. Assert(DefaultBanTimeSeconds <= Consensus.MaxReorgLength * 64 / 2); Assert(Consensus.HashGenesisBlock == uint256.Parse(AMSSetup.Main.HashGenesisBlock)); Assert(Genesis.Header.HashMerkleRoot == uint256.Parse(AMSSetup.Main.HashMerkleRoot)); RegisterRules(Consensus); RegisterMempoolRules(Consensus); }
public AMSTest() { NetworkType = NetworkType.Testnet; Name = AMSSetup.Test.Name; CoinTicker = AMSSetup.Test.CoinTicker; Magic = ConversionTools.ConvertToUInt32(AMSSetup.Magic, true); RootFolderName = AMSSetup.Test.RootFolderName; DefaultPort = AMSSetup.Test.DefaultPort; DefaultRPCPort = AMSSetup.Test.DefaultRPCPort; DefaultAPIPort = AMSSetup.Test.DefaultAPIPort; var consensusFactory = new PosConsensusFactory(); Block genesisBlock = CreateGenesisBlock(consensusFactory, AMSSetup.Test.GenesisTime, AMSSetup.Test.GenesisNonce, AMSSetup.Test.GenesisBits, AMSSetup.Test.GenesisVersion, AMSSetup.Test.GenesisReward, AMSSetup.GenesisText); Genesis = genesisBlock; // Taken from StratisX. var consensusOptions = new PosConsensusOptions { MaxBlockBaseSize = 1_000_000, MaxStandardVersion = 2, MaxStandardTxWeight = 100_000, MaxBlockSigopsCost = 20_000, MaxStandardTxSigopsCost = 20_000 / 5, WitnessScaleFactor = 4 }; var buriedDeployments = new BuriedDeploymentsArray { [BuriedDeployments.BIP34] = 0, [BuriedDeployments.BIP65] = 0, [BuriedDeployments.BIP66] = 0 }; Consensus = new Consensus( consensusFactory: consensusFactory, consensusOptions: consensusOptions, coinType: AMSSetup.CoinType, hashGenesisBlock: genesisBlock.GetHash(), subsidyHalvingInterval: 250000, majorityEnforceBlockUpgrade: 750, majorityRejectBlockOutdated: 950, majorityWindow: 1000, buriedDeployments: buriedDeployments, bip9Deployments: new NoBIP9Deployments(), bip34Hash: null, minerConfirmationWindow: 2016, // nPowTargetTimespan / nPowTargetSpacing maxReorgLength: 500, defaultAssumeValid: null, maxMoney: long.MaxValue, coinbaseMaturity: 10, premineHeight: 2, premineReward: Money.Coins(AMSSetup.PremineReward), proofOfWorkReward: Money.Coins(AMSSetup.PoWBlockReward), targetTimespan: TimeSpan.FromSeconds(14 * 24 * 60 * 60), // two weeks targetSpacing: AMSSetup.TargetSpacing, powAllowMinDifficultyBlocks: false, posNoRetargeting: false, powNoRetargeting: false, powLimit: new Target(new uint256("000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")), minimumChainWork: null, isProofOfStake: true, lastPowBlock: AMSSetup.LastPowBlock, proofOfStakeLimit: new BigInteger(uint256.Parse("00000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff").ToBytes(false)), proofOfStakeLimitV2: new BigInteger(uint256.Parse("000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffff").ToBytes(false)), proofOfStakeReward: Money.Coins(AMSSetup.PoSBlockReward), proofOfStakeTimestampMask: AMSSetup.ProofOfStakeTimestampMask ); Base58Prefixes[(int)Base58Type.PUBKEY_ADDRESS] = new byte[] { (AMSSetup.RegTest.PubKeyAddress) }; Base58Prefixes[(int)Base58Type.SCRIPT_ADDRESS] = new byte[] { (AMSSetup.RegTest.ScriptAddress) }; Base58Prefixes[(int)Base58Type.SECRET_KEY] = new byte[] { (239) }; Base58Prefixes[(int)Base58Type.EXT_PUBLIC_KEY] = new byte[] { (0x04), (0x35), (0x87), (0xCF) }; Base58Prefixes[(int)Base58Type.EXT_SECRET_KEY] = new byte[] { (0x04), (0x35), (0x83), (0x94) }; // Base58Prefixes[(int)Base58Type.STEALTH_ADDRESS] = new byte[] { 0x2b }; Base58Prefixes[(int)Base58Type.ASSET_ID] = new byte[] { 115 }; Bech32Encoders = new Bech32Encoder[2]; var encoder = new Bech32Encoder(AMSSetup.RegTest.CoinTicker.ToLowerInvariant()); Bech32Encoders[(int)Bech32Type.WITNESS_PUBKEY_ADDRESS] = encoder; Bech32Encoders[(int)Bech32Type.WITNESS_SCRIPT_ADDRESS] = encoder; Checkpoints = AMSSetup.Test.Checkpoints; DNSSeeds = AMSSetup.Test.DNS; SeedNodes = AMSSetup.Test.Nodes; StandardScriptsRegistry = new AMSStandardScriptsRegistry(); // 64 below should be changed to TargetSpacingSeconds when we move that field. Assert(DefaultBanTimeSeconds <= Consensus.MaxReorgLength * 64 / 2); Assert(Consensus.HashGenesisBlock == uint256.Parse(AMSSetup.Test.HashGenesisBlock)); Assert(Genesis.Header.HashMerkleRoot == uint256.Parse(AMSSetup.Test.HashMerkleRoot)); RegisterRules(Consensus); RegisterMempoolRules(Consensus); } }