relocate files and updates for blockbook

This commit is contained in:
sairajzero 2023-07-06 21:26:52 +05:30
parent 9a1fd7f89a
commit 71faf53275
11 changed files with 1 additions and 3719 deletions

File diff suppressed because one or more lines are too long

View File

View File

@ -153,7 +153,7 @@ const main = (ready) => {
r.transactions.forEach((t) => {
let amount = t.transaction.floData.match(/([0-9]+)/);
let num = Number(amount[0]);
let senderAddress = t.transaction.vin[0].addr;
let senderAddress = t.transaction.vin[0].addr; //NOTE: should be `t.transaction.vin[0].addresses[0]` if floBlockchainAPI data
let time = getDate(t.transaction.time);
let li = document.createElement("li");
li.style.margin = "1em 0em";