forked from trezor/blockbook
-
Notifications
You must be signed in to change notification settings - Fork 1
Notes
Sai Raj edited this page Jun 25, 2023
·
5 revisions
Installation directory: /opt/coins/blockbook/flo
Backend Data directory (flod - backend conf files and db files): /opt/coins/data/flo/backend
Blockbook Data directory (RocksDB): /opt/coins/data/flo/blockbook/
File to edit static/templates/tx.html
Add a row in existing table with element id="flodata"
<tr>
<td>floData</td>
<td id="flodata"></td>
</tr>
Edit the following js script in the file
<script type="text/javascript">
var raw = {{$tx.CoinSpecificData}};
document.getElementById('raw').innerHTML = syntaxHighlight(raw);
document.getElementById('flodata').innerHTML = raw.floData;
</script>