Metadium Tech (KOR)
  • Navigation
    • Metadium Overview
    • Metadium Tech (ENG)
    • Metadium Tech (KOR)
  • METADIUM Info
    • Architecture
    • Network Structure
    • Consensus
    • Smart Contract
    • DID
    • EIP-1559
    • Fee Delegation
    • Roadmap
  • Developer
    • Node Start
      • gmet Binary
      • gmet Guide
      • Connect Node
      • Account
    • Install Node
      • End Node
        • Requirements
        • Install Gmet
      • BP Node
        • Requirements
        • Install Gmet
  • Smart Contract
    • Solidity
    • Precompiled Contracts
    • Sample Contracts
  • API Reference
    • API Info
    • Json-RPC
    • Explorer API
      • Accounts
      • Blocks
      • Contracts
      • Transactions
      • Event logs
      • Tokens
  • Wallet
    • Wallet Info
    • Fee
  • FAQ
  • Articles of Foundation
Powered by GitBook
On this page
  1. API Reference
  2. Explorer API

Blocks

Get Block and Uncle Rewards by Block Number

Returns block and uncle block rewards by block number.

GET https://testnetapi.metadium.com/v1/blocks/{block_number}
api-key: Your API Key

Query Parameters

Parameter

Description

block_number

type: Long

value: Block number

required: true

//Response Sample Result
{
    "status": "200",
    "message": "success",
    "results": {
        "data": {
            "timestamp": "2023-05-24T23:54:45Z",
            "miner": "0xcfff678cafa652227c7a98ec6bcbfba0e3d1da19",
            "reward": "0",
            "fees": "0",
            "block_number": "42315230",
            "mining_reward": "0"
        }
    }
}
PreviousAccountsNextContracts

Last updated 1 year ago