> For the complete documentation index, see [llms.txt](https://developer.1moneynetwork.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.1moneynetwork.com/integrations/evm-compatible-rpcs-wip/eth_blocknumber.md).

# eth\_blockNumber

Returns the current latest block number.

### Parameters

None

***

### Returns

A hexadecimal of an integer representing the current block number the client is on.

***

### Example

#### Request

```sh
curl -X POST https://testnet.1money.network \
-H "Content-Type: application/json" \
-d '{"jsonrpc": "2.0", "method": "eth_blockNumber", "params": [], "id": 1}'
```

#### Response

```sh
{
  "jsonrpc": "2.0",
  "result": "0x1b4",
  "id": 1
}
```
