2018-02-03 21:14:56 +05:00
|
|
|
extends layout
|
|
|
|
|
|
|
|
block content
|
|
|
|
h3 Transaction
|
|
|
|
|
|
|
|
table
|
|
|
|
tr
|
|
|
|
td Hash
|
|
|
|
td #{transaction.txid}
|
|
|
|
tr
|
|
|
|
td Block
|
|
|
|
td
|
|
|
|
a(href='/block/#{transaction.Block.hash}/') #{transaction.Block.hash}
|
2018-02-04 22:47:36 +05:00
|
|
|
tr
|
|
|
|
td Block time
|
|
|
|
td #{transaction.blockTime}
|
2018-02-05 10:34:16 +05:00
|
|
|
tr
|
|
|
|
td Confirmations
|
|
|
|
td #{confirmations}
|
2018-02-03 21:14:56 +05:00
|
|
|
|
|
|
|
h3 In
|
|
|
|
if transaction.txtx.length
|
|
|
|
table
|
|
|
|
each val in transaction.txtx
|
|
|
|
tr
|
|
|
|
td
|
|
|
|
a(href='/transaction/#{val.txid}/') #{val.txid}
|
|
|
|
else
|
|
|
|
div Mined
|
|
|
|
|
|
|
|
h3 Out
|
|
|
|
table
|
|
|
|
each val in vouts
|
|
|
|
tr
|
|
|
|
td
|
|
|
|
a(href='/address/#{val.address}/') #{val.address}
|
|
|
|
td #{val.value}
|