> ## Documentation Index
> Fetch the complete documentation index at: https://docs.teqoin.io/llms.txt
> Use this file to discover all available pages before exploring further.

# ETH methods

> Core Ethereum JSON-RPC methods used with TeQoin

# ETH methods

TeQoin is EVM-compatible, so standard Ethereum JSON-RPC methods are the main integration surface.

## Common methods

* `eth_chainId`
* `eth_blockNumber`
* `eth_getBalance`
* `eth_call`
* `eth_sendRawTransaction`
* `eth_getTransactionReceipt`

## Example

```bash theme={null}
curl https://rpc.teqoin.io ^
  -H "Content-Type: application/json" ^
  -d "{\"jsonrpc\":\"2.0\",\"method\":\"eth_blockNumber\",\"params\":[],\"id\":1}"
```
