Skip to content
Sai Raj edited this page Jun 25, 2023 · 5 revisions

FLO - Ubuntu

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/

Adding floData in tx UI

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>

Clone this wiki locally