Aurora Quickstart

How to get started building on Aurora.

You'll need to create a free All That Node account first!

What is Aurora?

Aurora is an Ethereum Virtual Machine created by the team at the NEAR Protocol, delivering a turn-key solution for developers to operate their apps on an Ethereum-compatible, high-throughput, scalable and future-safe platform, with low transaction costs for their users.

For more information on Aurora, please check out the official documentation.

Endpoints

🚧

Aurora is currently only provided as a dedicated node.

NetworkChain IDEndpoint
Mainnet0x4e454152(1313161554)https://aurora-mainnet-rpc.allthatnode.com/'YOUR-API-KEY'
Testnet0x4e454153(1313161555)https://aurora-testnet-rpc.allthatnode.com/'YOUR-API-KEY'

*Find 'YOUR-API-KEY' by going to the Dashboard menu (Dashboard > All Projects > Project Detail Page).

Sample

Request

curl https://aurora-mainnet-rpc.allthatnode.com/'YOUR-API-KEY' \
--request POST \
--header "Content-Type: application/json" \
--data '{ "jsonrpc":"2.0", "method":"eth_blockNumber","params":[],"id":1}'

Response

{
    "jsonrpc": "2.0",
    "result": "0x425fef3",
    "id": 1
}