如何看懂区块浏览器?How to Read a Block Explorer?
区块浏览器(Polygon 用 PolygonScan,Anubis 用它自己的浏览器)是链上数据的公开查询入口。三类东西最常查:交易(Tx)、地址(Address)、合约(Contract)。A block explorer (Polygon uses PolygonScan, Anubis uses its own explorer) is the public lookup portal for on-chain data. Three things are looked up most often: transactions (Tx), addresses (Address), and contracts (Contract).
看一笔交易抓这些:发起方 From、接收方 To、调用了哪个合约的哪个函数、转了多少什么币、是否成功(Success/Fail)、在哪个区块、手续费多少。一笔交易「实际做了什么」,这里一目了然。For a transaction, grab these: the From (sender), the To (receiver), which function of which contract was called, how much of what token was moved, whether it succeeded (Success/Fail), which block it's in, and the fee. What a transaction "actually did" is laid out clearly here.
看一个地址抓这些:余额、代币持仓、转账记录(tokentx)、交易记录、首次活跃时间。由此能大致判断它是普通用户、合约、还是某个项目方钱包。For an address, grab these: balance, token holdings, transfer records (tokentx), transaction history, and first-active time. From these you can roughly tell whether it's an ordinary user, a contract, or some project-team wallet.
实用技巧:Practical tips:
- 金额要按代币精度换算(LGNS 是 9 位,很多币是 18 位)。Amounts must be converted by the token's decimals (LGNS has 9, many tokens have 18).
- 时间戳注意是 UTC,换算成本地时间。Note that timestamps are in UTC — convert them to your local time.
- 顺着 From/To 可以一层层追踪资金流向(下一课细讲)。Following From/To you can trace the fund flow layer by layer (covered in detail in the next lesson).
📝 本节测验📝 Quiz
1. 区块浏览器最常查的三类对象是?1. What are the three kinds of objects most often looked up on a block explorer?
2. 看一笔交易「实际做了什么」,要看?2. To see what a transaction "actually did", you look at?
3. 看金额时最容易出错的是?3. What is the most common mistake when reading amounts?
4. 别人发来一张「大户买入」截图,最稳的核实方式是?4. Someone sends you a "whale buying in" screenshot. The most reliable way to verify it is?
5. 顺着交易的 From/To 可以做什么?5. What can you do by following a transaction's From/To?
❓ 常见问题❓ FAQ
区块浏览器能查到什么?What can a block explorer look up?
链上几乎一切公开数据:任意一笔交易的来龙去脉、任意地址的余额与历史、任意合约的源码与权限。它是核实链上信息的起点。Almost all public on-chain data: the full story of any transaction, the balance and history of any address, and the source code and permissions of any contract. It's the starting point for verifying on-chain information.
起源两条链分别用哪个浏览器?Which explorer does each of ORIGIN's two chains use?
Polygon 用 PolygonScan,Anubis 用 Anubis 自己的区块浏览器。金额记得按代币精度换算(LGNS 是 9 位)。Polygon uses PolygonScan; Anubis uses its own block explorer. Remember to convert amounts by the token's decimals (LGNS is 9).