Settings

Blockchain
Network
Unit
Language
Theme
Sound New Block

Transaction

46b7312f8d2b90d586165b6abfde911796ee90caa6da1556a136068ee12e70cd
Timestamp (utc)
2021-05-08 22:32:58
Fee Paid
0.00007013 BSV
(
0.00998975 BSV
-
0.00991962 BSV
)
Fee Rate
505.3 sat/KB
Version
1
Confirmations
301,180
Size Stats
13,877 B

3 Outputs

Total Output:
0.00991962 BSV
  • jrunfyxM95{"in":0,"ref":[],"out":["2492c1dd18a061cb321052ba4efe26046cd5185439f392af38b48b79ad549f40"],"del":[],"cre":["mvRVAvD9PafWVegCaPh4SUCLUuBay6QUz4"],"exec":[{"op":"DEPLOY","data":["class Sha256 {\n constructor() {\n this.HEX_CHARS = '0123456789abcdef'.split('');\n this.EXTRA = [-2147483648, 8388608, 32768, 128];\n this.SHIFT = [24, 16, 8, 0];\n this.K = [\n 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,\n 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3, 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,\n 0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,\n 0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7, 0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967,\n 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13, 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85,\n 0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3, 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,\n 0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,\n 0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208, 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2\n ]\n this.blocks = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];\n\n this.h0 = 0x6a09e667;\n this.h1 = 0xbb67ae85;\n this.h2 = 0x3c6ef372;\n this.h3 = 0xa54ff53a;\n this.h4 = 0x510e527f;\n this.h5 = 0x9b05688c;\n this.h6 = 0x1f83d9ab;\n this.h7 = 0x5be0cd19;\n\n this.block = this.start = this.bytes = this.hBytes = 0;\n this.finalized = this.hashed = false;\n this.first = true;\n }\n\n static hashMessage(message, outputType) {\n return new Sha256().update(message)[outputType]();\n\n }\n static hashToHex(message) {\n return new Sha256().update(message).hex();\n }\n\n static hashToArrayBuffer(message) {\n return new Sha256().update(message).arrayBuffer();\n }\n\n update(message) {\n if (this.finalized) {\n return;\n }\n var notString, type = typeof message;\n if (type !== 'string') {\n if (type === 'object') {\n if (message === null) {\n throw new Error();\n } else if (message.constructor === ArrayBuffer) {\n message = new Uint8Array(message);\n }\n } else {\n throw new Error();\n }\n notString = true;\n }\n var code, index = 0, i, length = message.length, blocks = this.blocks;\n\n while (index < length) {\n if (this.hashed) {\n this.hashed = false;\n blocks[0] = this.block;\n blocks[16] = blocks[1] = blocks[2] = blocks[3] =\n blocks[4] = blocks[5] = blocks[6] = blocks[7] =\n blocks[8] = blocks[9] = blocks[10] = blocks[11] =\n blocks[12] = blocks[13] = blocks[14] = blocks[15] = 0;\n }\n\n if (notString) {\n for (i = this.start; index < length && i < 64; ++index) {\n blocks[i >> 2] |= message[index] << this.SHIFT[i++ & 3];\n }\n } else {\n for (i = this.start; index < length && i < 64; ++index) {\n code = message.charCodeAt(index);\n if (code < 0x80) {\n blocks[i >> 2] |= code << this.SHIFT[i++ & 3];\n } else if (code < 0x800) {\n blocks[i >> 2] |= (0xc0 | (code >> 6)) << this.SHIFT[i++ & 3];\n blocks[i >> 2] |= (0x80 | (code & 0x3f)) << this.SHIFT[i++ & 3];\n } else if (code < 0xd800 || code >= 0xe000) {\n blocks[i >> 2] |= (0xe0 | (code >> 12)) << this.SHIFT[i++ & 3];\n blocks[i >> 2] |= (0x80 | ((code >> 6) & 0x3f)) << this.SHIFT[i++ & 3];\n blocks[i >> 2] |= (0x80 | (code & 0x3f)) << this.SHIFT[i++ & 3];\n } else {\n code = 0x10000 + (((code & 0x3ff) << 10) | (message.charCodeAt(++index) & 0x3ff));\n blocks[i >> 2] |= (0xf0 | (code >> 18)) << this.SHIFT[i++ & 3];\n blocks[i >> 2] |= (0x80 | ((code >> 12) & 0x3f)) << this.SHIFT[i++ & 3];\n blocks[i >> 2] |= (0x80 | ((code >> 6) & 0x3f)) << this.SHIFT[i++ & 3];\n blocks[i >> 2] |= (0x80 | (code & 0x3f)) << this.SHIFT[i++ & 3];\n }\n }\n }\n\n this.lastByteIndex = i;\n this.bytes += i - this.start;\n if (i >= 64) {\n this.block = blocks[16];\n this.start = i - 64;\n this.hash();\n this.hashed = true;\n } else {\n this.start = i;\n }\n }\n if (this.bytes > 4294967295) {\n this.hBytes += this.bytes / 4294967296 << 0;\n this.bytes = this.bytes % 4294967296;\n }\n return this;\n }\n\n finalize() {\n if (this.finalized) {\n return;\n }\n this.finalized = true;\n var blocks = this.blocks, i = this.lastByteIndex;\n blocks[16] = this.block;\n blocks[i >> 2] |= this.EXTRA[i & 3];\n this.block = blocks[16];\n if (i >= 56) {\n if (!this.hashed) {\n this.hash();\n }\n blocks[0] = this.block;\n blocks[16] = blocks[1] = blocks[2] = blocks[3] =\n blocks[4] = blocks[5] = blocks[6] = blocks[7] =\n blocks[8] = blocks[9] = blocks[10] = blocks[11] =\n blocks[12] = blocks[13] = blocks[14] = blocks[15] = 0;\n }\n blocks[14] = this.hBytes << 3 | this.bytes >>> 29;\n blocks[15] = this.bytes << 3;\n this.hash();\n }\n\n hash() {\n var a = this.h0, b = this.h1, c = this.h2, d = this.h3, e = this.h4, f = this.h5, g = this.h6,\n h = this.h7, blocks = this.blocks, j, s0, s1, maj, t1, t2, ch, ab, da, cd, bc;\n\n for (j = 16; j < 64; ++j) {\n // rightrotate\n t1 = blocks[j - 15];\n s0 = ((t1 >>> 7) | (t1 << 25)) ^ ((t1 >>> 18) | (t1 << 14)) ^ (t1 >>> 3);\n t1 = blocks[j - 2];\n s1 = ((t1 >>> 17) | (t1 << 15)) ^ ((t1 >>> 19) | (t1 << 13)) ^ (t1 >>> 10);\n blocks[j] = blocks[j - 16] + s0 + blocks[j - 7] + s1 << 0;\n }\n\n bc = b & c;\n for (j = 0; j < 64; j += 4) {\n if (this.first) {\n\n ab = 704751109;\n t1 = blocks[0] - 210244248;\n h = t1 - 1521486534 << 0;\n d = t1 + 143694565 << 0;\n this.first = false;\n } else {\n s0 = ((a >>> 2) | (a << 30)) ^ ((a >>> 13) | (a << 19)) ^ ((a >>> 22) | (a << 10));\n s1 = ((e >>> 6) | (e << 26)) ^ ((e >>> 11) | (e << 21)) ^ ((e >>> 25) | (e << 7));\n ab = a & b;\n maj = ab ^ (a & c) ^ bc;\n ch = (e & f) ^ (~e & g);\n t1 = h + s1 + ch + this.K[j] + blocks[j];\n t2 = s0 + maj;\n h = d + t1 << 0;\n d = t1 + t2 << 0;\n }\n s0 = ((d >>> 2) | (d << 30)) ^ ((d >>> 13) | (d << 19)) ^ ((d >>> 22) | (d << 10));\n s1 = ((h >>> 6) | (h << 26)) ^ ((h >>> 11) | (h << 21)) ^ ((h >>> 25) | (h << 7));\n da = d & a;\n maj = da ^ (d & b) ^ ab;\n ch = (h & e) ^ (~h & f);\n t1 = g + s1 + ch + this.K[j + 1] + blocks[j + 1];\n t2 = s0 + maj;\n g = c + t1 << 0;\n c = t1 + t2 << 0;\n s0 = ((c >>> 2) | (c << 30)) ^ ((c >>> 13) | (c << 19)) ^ ((c >>> 22) | (c << 10));\n s1 = ((g >>> 6) | (g << 26)) ^ ((g >>> 11) | (g << 21)) ^ ((g >>> 25) | (g << 7));\n cd = c & d;\n maj = cd ^ (c & a) ^ da;\n ch = (g & h) ^ (~g & e);\n t1 = f + s1 + ch + this.K[j + 2] + blocks[j + 2];\n t2 = s0 + maj;\n f = b + t1 << 0;\n b = t1 + t2 << 0;\n s0 = ((b >>> 2) | (b << 30)) ^ ((b >>> 13) | (b << 19)) ^ ((b >>> 22) | (b << 10));\n s1 = ((f >>> 6) | (f << 26)) ^ ((f >>> 11) | (f << 21)) ^ ((f >>> 25) | (f << 7));\n bc = b & c;\n maj = bc ^ (b & d) ^ cd;\n ch = (f & g) ^ (~f & h);\n t1 = e + s1 + ch + this.K[j + 3] + blocks[j + 3];\n t2 = s0 + maj;\n e = a + t1 << 0;\n a = t1 + t2 << 0;\n }\n\n this.h0 = this.h0 + a << 0;\n this.h1 = this.h1 + b << 0;\n this.h2 = this.h2 + c << 0;\n this.h3 = this.h3 + d << 0;\n this.h4 = this.h4 + e << 0;\n this.h5 = this.h5 + f << 0;\n this.h6 = this.h6 + g << 0;\n this.h7 = this.h7 + h << 0;\n }\n\n hex() {\n this.finalize();\n\n var h0 = this.h0, h1 = this.h1, h2 = this.h2, h3 = this.h3, h4 = this.h4, h5 = this.h5,\n h6 = this.h6, h7 = this.h7;\n\n var hex = this.HEX_CHARS[(h0 >> 28) & 0x0F] + this.HEX_CHARS[(h0 >> 24) & 0x0F] +\n this.HEX_CHARS[(h0 >> 20) & 0x0F] + this.HEX_CHARS[(h0 >> 16) & 0x0F] +\n this.HEX_CHARS[(h0 >> 12) & 0x0F] + this.HEX_CHARS[(h0 >> 8) & 0x0F] +\n this.HEX_CHARS[(h0 >> 4) & 0x0F] + this.HEX_CHARS[h0 & 0x0F] +\n this.HEX_CHARS[(h1 >> 28) & 0x0F] + this.HEX_CHARS[(h1 >> 24) & 0x0F] +\n this.HEX_CHARS[(h1 >> 20) & 0x0F] + this.HEX_CHARS[(h1 >> 16) & 0x0F] +\n this.HEX_CHARS[(h1 >> 12) & 0x0F] + this.HEX_CHARS[(h1 >> 8) & 0x0F] +\n this.HEX_CHARS[(h1 >> 4) & 0x0F] + this.HEX_CHARS[h1 & 0x0F] +\n this.HEX_CHARS[(h2 >> 28) & 0x0F] + this.HEX_CHARS[(h2 >> 24) & 0x0F] +\n this.HEX_CHARS[(h2 >> 20) & 0x0F] + this.HEX_CHARS[(h2 >> 16) & 0x0F] +\n this.HEX_CHARS[(h2 >> 12) & 0x0F] + this.HEX_CHARS[(h2 >> 8) & 0x0F] +\n this.HEX_CHARS[(h2 >> 4) & 0x0F] + this.HEX_CHARS[h2 & 0x0F] +\n this.HEX_CHARS[(h3 >> 28) & 0x0F] + this.HEX_CHARS[(h3 >> 24) & 0x0F] +\n this.HEX_CHARS[(h3 >> 20) & 0x0F] + this.HEX_CHARS[(h3 >> 16) & 0x0F] +\n this.HEX_CHARS[(h3 >> 12) & 0x0F] + this.HEX_CHARS[(h3 >> 8) & 0x0F] +\n this.HEX_CHARS[(h3 >> 4) & 0x0F] + this.HEX_CHARS[h3 & 0x0F] +\n this.HEX_CHARS[(h4 >> 28) & 0x0F] + this.HEX_CHARS[(h4 >> 24) & 0x0F] +\n this.HEX_CHARS[(h4 >> 20) & 0x0F] + this.HEX_CHARS[(h4 >> 16) & 0x0F] +\n this.HEX_CHARS[(h4 >> 12) & 0x0F] + this.HEX_CHARS[(h4 >> 8) & 0x0F] +\n this.HEX_CHARS[(h4 >> 4) & 0x0F] + this.HEX_CHARS[h4 & 0x0F] +\n this.HEX_CHARS[(h5 >> 28) & 0x0F] + this.HEX_CHARS[(h5 >> 24) & 0x0F] +\n this.HEX_CHARS[(h5 >> 20) & 0x0F] + this.HEX_CHARS[(h5 >> 16) & 0x0F] +\n this.HEX_CHARS[(h5 >> 12) & 0x0F] + this.HEX_CHARS[(h5 >> 8) & 0x0F] +\n this.HEX_CHARS[(h5 >> 4) & 0x0F] + this.HEX_CHARS[h5 & 0x0F] +\n this.HEX_CHARS[(h6 >> 28) & 0x0F] + this.HEX_CHARS[(h6 >> 24) & 0x0F] +\n this.HEX_CHARS[(h6 >> 20) & 0x0F] + this.HEX_CHARS[(h6 >> 16) & 0x0F] +\n this.HEX_CHARS[(h6 >> 12) & 0x0F] + this.HEX_CHARS[(h6 >> 8) & 0x0F] +\n this.HEX_CHARS[(h6 >> 4) & 0x0F] + this.HEX_CHARS[h6 & 0x0F];\n\n hex += this.HEX_CHARS[(h7 >> 28) & 0x0F] + this.HEX_CHARS[(h7 >> 24) & 0x0F] +\n this.HEX_CHARS[(h7 >> 20) & 0x0F] + this.HEX_CHARS[(h7 >> 16) & 0x0F] +\n this.HEX_CHARS[(h7 >> 12) & 0x0F] + this.HEX_CHARS[(h7 >> 8) & 0x0F] +\n this.HEX_CHARS[(h7 >> 4) & 0x0F] + this.HEX_CHARS[h7 & 0x0F];\n return hex;\n }\n\n toString() {\n return this.hex();\n }\n\n digest() {\n this.finalize();\n\n var h0 = this.h0, h1 = this.h1, h2 = this.h2, h3 = this.h3, h4 = this.h4, h5 = this.h5,\n h6 = this.h6, h7 = this.h7;\n\n var arr = [\n (h0 >> 24) & 0xFF, (h0 >> 16) & 0xFF, (h0 >> 8) & 0xFF, h0 & 0xFF,\n (h1 >> 24) & 0xFF, (h1 >> 16) & 0xFF, (h1 >> 8) & 0xFF, h1 & 0xFF,\n (h2 >> 24) & 0xFF, (h2 >> 16) & 0xFF, (h2 >> 8) & 0xFF, h2 & 0xFF,\n (h3 >> 24) & 0xFF, (h3 >> 16) & 0xFF, (h3 >> 8) & 0xFF, h3 & 0xFF,\n (h4 >> 24) & 0xFF, (h4 >> 16) & 0xFF, (h4 >> 8) & 0xFF, h4 & 0xFF,\n (h5 >> 24) & 0xFF, (h5 >> 16) & 0xFF, (h5 >> 8) & 0xFF, h5 & 0xFF,\n (h6 >> 24) & 0xFF, (h6 >> 16) & 0xFF, (h6 >> 8) & 0xFF, h6 & 0xFF\n ];\n\n arr.push((h7 >> 24) & 0xFF, (h7 >> 16) & 0xFF, (h7 >> 8) & 0xFF, h7 & 0xFF);\n return arr;\n }\n\n array() {\n return this.digest();\n }\n\n arrayBuffer() {\n this.finalize();\n\n var buffer = new ArrayBuffer(32);\n var dataView = new DataView(buffer);\n dataView.setUint32(0, this.h0);\n dataView.setUint32(4, this.h1);\n dataView.setUint32(8, this.h2);\n dataView.setUint32(12, this.h3);\n dataView.setUint32(16, this.h4);\n dataView.setUint32(20, this.h5);\n dataView.setUint32(24, this.h6);\n dataView.setUint32(28, this.h7);\n\n return buffer;\n }\n}",{"deps":{},"hash":"f096b4bce270d77e9f9e755267b21f786f9feec46fe805cbda8c3a7a614ccafd"}]}]}
    https://whatsonchain.com/tx/46b7312f8d2b90d586165b6abfde911796ee90caa6da1556a136068ee12e70cd