Settings

Blockchain
Network
Unit
Language
Theme
Sound New Block

Transaction

2cb0d79ace3c3e92fbc6d6883085eb364eb3ff46b740aca8a9a7218d5ae4aea5
Timestamp (utc)
2021-05-19 06:51:56
Fee Paid
0.00002625 BSV
(
0.08959793 BSV
-
0.08957168 BSV
)
Fee Rate
500.2 sat/KB
Version
1
Confirmations
301,350
Size Stats
5,247 B

7 Outputs

Total Output:
0.08957168 BSV
  • jrunMÿ{"in":0,"ref":["native://Jig","f97d4ac2a3d6f5ed09fad4a4f341619dc5a3773d9844ff95c99c5d4f8388de2f_o1","b44a203acd6215d2d24b33a41f730e9acf2591c4ae27ecafc8d88ef83da9ddea_o1?berry=87c2c9d6ea7d9ea04e2b8dc3d547d5eb89b5a8fc4927b966e64a44fece99015e&hash=fd8bb16dcea1da0574a79518977b2b876275c517c5ceb418a57631ea0a5ce675&version=5","7d14c868fe39439edffe6982b669e7b4d3eb2729eee7c262ec2494ee3e310e99_o1","b44a203acd6215d2d24b33a41f730e9acf2591c4ae27ecafc8d88ef83da9ddea_o1?berry=be81d20cf2050998efb6cb9a60496e7a5a635c88ae5e9d2f0cc8794c35383234&hash=7f91885946800fb9ce162f3737a46badff3633494b27bfac84dc61699fc7e661&version=5"],"out":["abe7ac833bcb171b45fe73ddfb8d67110fc96f6a6d1e35df81b2bb00cb2d9274","5a93be72b55f57feee1dc2bbb2aa83c0608a64eb004e96e8cc59f744806a5a4d","a7e69c66453da337bdfe44e1c38d3e20a12708f8611c208568dc3af65c160ea0","0e9203094e2f7465bf1f209be3c7e22f1fc454d3e12f10120b71df9bac2b3f71","ceaee9b9047e8c45a897cf0e6b3210ec4f18ee032523026028ba9e3ec622731d"],"del":[],"cre":["n2zxyuPrwWijGuA7jqAwq5TKFbnj1yPJ5k","n2zxyuPrwWijGuA7jqAwq5TKFbnj1yPJ5k","n2zxyuPrwWijGuA7jqAwq5TKFbnj1yPJ5k","n2zxyuPrwWijGuA7jqAwq5TKFbnj1yPJ5k","n2zxyuPrwWijGuA7jqAwq5TKFbnj1yPJ5k"],"exec":[{"op":"DEPLOY","data":["class Beginning_Of_The_End extends Jig {\n init (name, author, description, emoji, image, txtid, assetIds, owner, amount, Yogurt) {\n expect(caller).toBe(FrogeJeti)\n this.metadata = {\n name,\n author,\n description,\n emoji,\n image,\n txtid,\n assetIds\n }\n this.name = name;\n this.owner = owner;\n this.satoshis = amount;\n this.Yogurt = Yogurt;\n }\n send(to) {\n this.owner = to;\n }\n withdraw (to) {\n this.satoshis = 0;\n }\n }",{"backingbank":"NetWork-Effect","deps":{"FrogeJeti":{"$jig":6},"Jig":{"$jig":0},"expect":{"$jig":1}},"friends":[{"$jig":7}],"metadata":{"image":{"$jig":2}}},"class FrogeJeti extends Jig {\n static createNft(name, author, description, emoji, image, txtid, assetIds, owner, amount, Yogurt) {\n this.nftCount++;\n // Control the amount ever created of this item\n if (this.nftCount > 218 ) throw new Error('Art is in the Mind not in the Gif, Move on ... !')\n\n return new Beginning_Of_The_End(name, author, description, emoji, image, txtid, assetIds, owner, amount, Yogurt)\n console.log({Beginning_Of_The_End});\n }\n}",{"deps":{"Beginning_Of_The_End":{"$jig":5},"Jig":{"$dup":["1","deps","Jig"]}},"metadata":{"emoji":"🧙"},"nftCount":0},"class OrderLock { constructor(address, satoshis) { if (typeof address !== \"string\" || address.length < 27) { throw new TypeError(\"Invalid address\"); } if (typeof satoshis !== \"number\" || !Number.isInteger(satoshis)) { throw new Error(\"Invalid satoshis\"); } if (satoshis > Number.MAX_SAFE_INTEGER) { throw new Error(\"Invalid. Max: \" + Number.MAX_SAFE_INTEGER); } if (satoshis < 546) { throw new Error(\"Dust\"); } this.address = address; this.satoshis = satoshis; } script() { const output = this.serializeOutput(this.address, this.satoshis); const hashOutput = this.sha256sha256(output); return ( OrderLock.scriptTemplate.slice(0, 2) + hashOutput + OrderLock.scriptTemplate.slice(66) ); } serializeOutput(address, satoshis) { const satoshisHex = this.serializeSatoshis(satoshis); const satoshisHexBytes = Hex.stringToBytes(satoshisHex); const outputScriptBytes = Hex.stringToBytes(this.getP2PKHScript(address)); const lengthBytes = [25]; return satoshisHexBytes.concat(lengthBytes, outputScriptBytes); } serializeSatoshis(satoshis) { let numberHex = (\"0000000000000000\" + satoshis.toString(16)).slice(-16); return numberHex .match(/[a-fA-F0-9]{2}/g) .reverse() .join(\"\"); } getP2PKHScript(address) { const decoded = Base58.decode(address); const hex = Hex.bytesToString(decoded); return asm(`OP_DUP OP_HASH160 ${hex} OP_EQUALVERIFY OP_CHECKSIG`); } sha256sha256(output) { return Hex.bytesToString(sha256(sha256(output))); } domain() { return 0; } }",{"deps":{}}]},{"op":"DEPLOY","data":["class May_The_Froge_Be_With_You extends Token { \n init(owner, amount, Yogurt) {\n this.owner = owner;\n this.amount = amount;\n this.Yogurt = Yogurt;\n }\n static setFriends(friends) {\n this.friends = friends;\n }\n mint (to, amount, Yogurt) {\n this.owner = to;\n this.amount = amount;\n this.Yogurt = Yogurt;\n }\n send (to) {\n this.owner = to;\n\n } \n}",{"backingbank":"NetWork-Effect","decimals":0,"deps":{"Token":{"$jig":3}},"friends":[{"$jig":7}],"interactivity":false,"metadata":{"emoji":"🎩"},"supply":218,"symbol":"Froge_NfT","txt":"87c2c9d6ea7d9ea04e2b8dc3d547d5eb89b5a8fc4927b966e64a44fece99015e"}]},{"op":"DEPLOY","data":["class Schwartz_Ring extends May_The_Froge_Be_With_You {}",{"deps":{"May_The_Froge_Be_With_You":{"$jig":8}},"metadata":{"emoji":"💍","image2":{"$jig":4}}}]}]}
    https://whatsonchain.com/tx/2cb0d79ace3c3e92fbc6d6883085eb364eb3ff46b740aca8a9a7218d5ae4aea5
Total Output:
0.08957168 BSV