Appearance
Block explorer
The KriptoNyx explorer indexes the chain and presents blocks, transactions, addresses, tokens and verified contracts.
| URL | explorer.testnet.kriptonyx.com |
| Data API | https://api.testnet.kriptonyx.com/api/v2 |
What it shows
- Blocks — height, timestamp, transaction count, gas used, validator, block reward and burnt fees.
- Transactions — hash, status, block, sender, recipient, value, gas, nonce, and decoded input where the contract is verified.
- Addresses — balance, transaction history, token balances, and for contracts, the verified source and ABI.
- Tokens — supply, holders, transfers.
- DeFi panel — pools with 24-hour volume and swap counts, derived from AMM
Swapevents.
Interface
The explorer is available in Portuguese, English and Spanish, with a currency selector for displayed fiat values.
If text appears in the wrong language
Browsers sometimes auto-translate a page whose declared language differs from the browser's. If the interface looks translated rather than switched, check your browser's translation prompt rather than the language selector.
Accounts
Creating an explorer account adds a watchlist — a set of addresses you follow. Accounts are email and password, with the password hashed using bcrypt; sessions are bearer tokens valid for 7 days, or 30 with "remember me".
The account API is documented in Explorer services API.
Programmatic access
Everything the explorer shows is available from its API, which is the fastest way to read historical chain data — see Chain data API.
Prefer the API over eth_getLogs for history
The node caps a log query at 10,000 blocks and the chain is past six million. Scanning history over JSON-RPC means thousands of calls; the indexer has already done that work.