Skip to content

ReserveBlock Snapshot Block 1649720

Compare
Choose a tag to compare
@mathis1337 mathis1337 released this 25 Nov 20:00
adb1799

Snapshot Taken at November 25th, 2023
Block Height: 1649720
Block Hash: e3d51c2c4db4ca1153349be4f5294f3261c5b300c203e47706a7d615a827610a
File Size: ~ 1.14 GB

MD5 Checksum:

rbx_snapshot_11_25_2023.zip

  • 143e1ff8aba8df0afd7836938047385e

C# Algo Used to Calc


public static string ToMD5(string filePath)
{
	using (var md5 = MD5.Create())
	{
		using (var stream = File.OpenRead(filePath))
		{
			var hash = md5.ComputeHash(stream);
			return BitConverter.ToString(hash).Replace("-", "").ToLowerInvariant();
		}
	}
}