added particles and some code for recent block listing

This commit is contained in:
Kevin 2020-06-20 05:31:51 -05:00
parent c9a6769be7
commit c81df9093d
9 changed files with 1789 additions and 30 deletions

View file

@ -0,0 +1,10 @@
var recentSource = new EventSourcePolyfill('/recentblocks', {
headers: {
"token": webpass
}
})
recentSource.onmessage = function(e){
console.debug(e)
}