Introducing Galxe Starboard — a real-time dashboard that highlights your contributions, ranks your impact, and helps you earn rewards through active community engagement

Ethereum Transactor

Curated by

Galxe

ID Type

EVM ADDRESS

Cred Type

REST

Last Update Time

06/20/2025, 04:37:06

Method

POST

Endpoint

https://eth.llamarpc.com/***

Body

{
  "id": 1,
  "jsonrpc": "2.0",
  "method": "eth_getTransactionCount",
  "params": [
    "$address",
    "latest"
  ]
}

Expression

function (resp) {
    if (resp.result == "") {
        return 0
    }
    const result = resp.result
    const count = parseInt(result, 16); 
    if (count > 0) {
        return 1
    }
    return 0
}