Skip to content

ReserveBlock Snapshot Block 754494

Compare
Choose a tag to compare
@mathis1337 mathis1337 released this 11 Mar 18:45
adb1799

Snapshot Taken at March11th, 2023 @ 18:39 UTC
Block Height: 754494
Block Hash: 8608fbab079714e3db1f3e0ec3e7963648ce1c18b5569c1d6dfb4ff88ebe3dc5
File Size: ~416 MB

MD5 Checksum:

rbx_snapshot_3_11_2023_18_39_UTC.zip

  • d6687ae076c186650a44e0f9b87bba18

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();
		}
	}
}