[go: nahoru, domu]

Skip to content

Normalizex/bsc-explorer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bsc-Explorer

  • Detailed Blockchain Data for Binance Smart Chain (BSC) including the most recently mined blocks, transactions, and addresses.

Page Site: HERE


Stack

  • Frontend:
    • Languages:
    • Libraries:

About Project:

Why is there no backend and such a simple stack? The answer is quite simple, through this site you connect to an existing binance node. And all information is directly requested directly from the node. Not every average user can run a server with their 1-2TB+ full node for full block processing.

Pros and cons:

+ The advantage is that you directly request data from the node.

Which, in turn, is faster than the same bscscan, which stores full information about blocks in its databases and gives the user information from the database. What does it mean? That the delay with the last block from the blockchain is approximately ~5 blocks. And this is a lot!

  • Only tx and block pages used web3 connection, address page used bscscan api.

- It is not possible to directly request a "transaction list of an address" through the blockchain.

Blockchain only stores a chain of blocks, where some address moves coins or makes other interactions.

To achieve the "list of transactions of the address" you need to save all transactions of the address in the database, as the same bscscan does, on this site it is used only for this purpose.