Settings

Blockchain
Network
Unit
Language
Theme
Sound New Block

Transaction

6cfc1390891494ad2820feaa779ef816a5ce5bd2edb0b6efb471cdd036b3d3c8
Timestamp (utc)
2021-01-14 17:55:46
Fee Paid
0.00003499 BSV
(
0.00198624 BSV
-
0.00195125 BSV
)
Fee Rate
500.1 sat/KB
Version
1
Confirmations
321,850
Size Stats
6,996 B

9 Outputs

Total Output:
0.00195125 BSV
  • jrunbitSaGaMˆ{"in":0,"ref":["native://Jig"],"out":["59498e41e87ac64d45f7756e56f4a260d9c748dd8727a932affdddb9a8ebfc02","191a97172f1d4b5082df320b1ca3e7d134cff1144d3d020813a140e1a2689b9a","c964cab97c63f9736c4072db703fb9707ce8ab8c320b2d3a6b3b2ca94b6c5761","94b567e17e4b2fcc0b771cb89e7992c1b21037a0b6670482f4ca5c8833280393","2e4f8d894967cb8c2049bd5cab537ac23c05d569ba0c2b7cefee4e05f34a878d","6f61343015e0a24be366d3e1f699786dcc336c3bde0edd333eb500f3ba122ca4","dc0a5f8112300c7fb9f9ae7715962481d2ce0271776e3c19ef92c9fc8eda14d9"],"del":[],"cre":["mvdAs68exjV4o93ZRUpwHtVHdDZY9H4E8N","mvdAs68exjV4o93ZRUpwHtVHdDZY9H4E8N","mvdAs68exjV4o93ZRUpwHtVHdDZY9H4E8N","mvdAs68exjV4o93ZRUpwHtVHdDZY9H4E8N","mvdAs68exjV4o93ZRUpwHtVHdDZY9H4E8N","mvdAs68exjV4o93ZRUpwHtVHdDZY9H4E8N","mvdAs68exjV4o93ZRUpwHtVHdDZY9H4E8N"],"exec":[{"op":"DEPLOY","data":["class Player extends Jig {\r\n\tinit(name, cls, hand, avatar, pic) {\r\n this.name = name;\r\n this.cls = cls;\r\n this.hand = hand;\r\n this.avatar = avatar;\r\n this.pic = pic;\r\n this.HP = 80;\r\n this.MaxHP = this.HP;\r\n this.MP = 1;\r\n this.MaxMP = this.MP;\r\n this.Str = 5;\r\n this.Vit = 5;\r\n this.Agl = 5;\r\n this.Mag = 1;\r\n this.Luc = 5;\r\n this.lHand = '';\r\n this.rHand = '';\r\n this.armor = '';\r\n this.accessory = '';\r\n this.spells = '';\r\n this.techs = '';\r\n }\r\n grow(stats) {\r\n this.MaxHP += stats[0];\r\n this.HP += stats[0];\r\n this.MaxMP += stats[1];\r\n this.MP += stats[1];\r\n this.Str += stats[2];\r\n this.Vit += stats[3];\r\n\t\tthis.Agl += stats[4];\r\n this.Mag += stats[5];\r\n this.Luc += stats[6];\r\n }\r\n reduce(stats) {\r\n this.MaxHP -= stats[0];\r\n this.HP -= stats[0];\r\n this.MaxMP -= stats[1];\r\n this.MP -= stats[1];\r\n this.Str -= stats[2];\r\n this.Vit -= stats[3];\r\n\t\tthis.Agl -= stats[4];\r\n this.Mag -= stats[5];\r\n this.Luc -= stats[6];\r\n }\r\n equip(lHand, rHand, armor, accessory) {\r\n if (lHand && lHand.owner === this.owner) {this.lHand = lHand}\r\n if (rHand && rHand.owner === this.owner) {this.rHand = rHand}\r\n if (armor && armor.owner === this.owner) {this.armor = armor}\r\n if (accessory && accessory.owner === this.owner) {this.accessory = accessory}\r\n }\r\n remove(lHand, rHand, armor, accessory) {\r\n if (lHand) {this.lHand = ''}\r\n if (rHand) {this.rHand = ''}\r\n if (armor) {this.armor = ''}\r\n if (accessory) {this.accessory = ''}\r\n }\r\n learn(spell) {\r\n this.spells = [];\r\n let splIndex = this.spells.findIndex(spl => spl.origin == spell.origin);\r\n if (splIndex >= 0) {\r\n this.spells[splIndex].lv = spell.lv;\r\n this.spells[splIndex].MP = spell.MP;\r\n } else {\r\n this.spells.push(spell);\r\n }\r\n }\r\n send(pubkey) {this.owner = pubkey}\r\n}",{"deps":{"Jig":{"$jig":0}},"metadata":{"emoji":"🤺","name":"Player"}}]},{"op":"DEPLOY","data":["class Spell extends Jig {\r\n init(name, power, acc, effect, infChance, MPcost) {\r\n this.name = name;\r\n this.power = power;\r\n this.acc = acc;\r\n this.effect = effect;\r\n this.infChance = infChance;\r\n this.MPcost = MPcost;\r\n }\r\n}",{"deps":{"Jig":{"$jig":0}}}]},{"op":"DEPLOY","data":["class Tech extends Jig {\r\n init(name, power, acc, effect, inflict, HPcost, scale) {\r\n this.name = name;\r\n this.power = power;\r\n this.acc = acc;\r\n this.effect = effect;\r\n this.inflict = inflict;\r\n this.HPcost = HPcost;\r\n this.scale = scale;\r\n }\r\n}",{"deps":{"Jig":{"$jig":0}}}]},{"op":"DEPLOY","data":["class Weapon extends Jig {\r\n init(name, type, atk, acc, wgt, evd, mgcPnt, eff, tech, stats, price) {\r\n this.name = name;\r\n this.type = type;\r\n this.lvl = 1;\r\n this.exp = 0;\r\n this.atk = atk;\r\n this.acc = acc;\r\n this.wgt = wgt;\r\n this.evd = evd;\r\n this.mgcPnt = mgcPnt;\r\n this.eff = eff;\r\n this.tech = tech;\r\n this.stats = stats;\r\n this.price = price;\r\n }\r\n lvlup(exp) {\r\n this.exp += exp;\r\n if (this.exp >= 100) {\r\n this.lvl++; this.exp = 0;\r\n }\r\n }\r\n send(pubkey) {this.owner = pubkey}\r\n}",{"deps":{"Jig":{"$jig":0}},"metadata":{"emoji":"🗡️","name":"Weapon"}}]},{"op":"DEPLOY","data":["class Armor extends Jig {\r\n init(name, type, def, wgt, evd, mgcPnt, eff, mgDef, stats, price) {\r\n this.name = name;\r\n this.type = type;\r\n this.def = def;\r\n this.wgt = wgt;\r\n this.evd = evd;\r\n this.mgcPnt = mgcPnt;\r\n this.eff = eff;\r\n this.mgDef = mgDef;\r\n this.stats = stats;\r\n this.price = price;\r\n }\r\n send(pubkey) {this.owner = pubkey}\r\n}",{"deps":{"Jig":{"$jig":0}},"metadata":{"emoji":"🛡️","name":"Armor"}}]},{"op":"DEPLOY","data":["class Accessory extends Jig {\r\n init(name, HP, MP, Str, Vit, Agl, Mag, Luc, price) {\r\n this.name = name;\r\n this.HP = HP;\r\n this.MP = MP;\r\n this.Str = Str;\r\n this.Vit = Vit;\r\n this.Agl = Agl;\r\n this.Mag = Mag;\r\n this.Luc = Luc;\r\n this.price = price;\r\n }\r\n send(pubkey) {this.owner = pubkey}\r\n}",{"deps":{"Jig":{"$jig":0}},"metadata":{"emoji":"💍","name":"Accessory"}}]},{"op":"DEPLOY","data":["class Battle extends Jig {\r\n initialize(orig) {\r\n this.orig = orig; this.atks = 0; this.defs = 0; this.hits = 0; this.evds = 0;\r\n this.spls = 0; this.tecs = 0; this.crits= 0; this.inflicts = 0;\r\n }\r\n setStats(stats, atks, defs, hits, evds, spls, tecs, crits, inflicts) {\r\n if (stats.length == 8) {\r\n atks = stats[0], defs = stats[1], hits = stats[2], evds = stats[3], \r\n spls = stats[4], tecs = stats[5], crits = stats[6], inflicts = stats[7];\r\n }\r\n this.atks += atks; this.defs += defs; this.hits += hits; this.evds += evds; \r\n this.spls += spls; this.tecs += tecs; this.crits+= crits; this.inflicts += inflicts;\r\n }\r\n}",{"deps":{"Jig":{"$jig":0}},"metadata":{"emoji":"⚔️","name":"Battle"}}]}]}
    https://whatsonchain.com/tx/6cfc1390891494ad2820feaa779ef816a5ce5bd2edb0b6efb471cdd036b3d3c8
Total Output:
0.00195125 BSV