Skip to content
anew
05 · Documentation

Onchain

What exists on Robinhood Chain today, what does not, and what launch day adds.

Anew has nothing deployed on Robinhood Chain (chain id 4663). A trip leaves one kind of record there: native ETH arriving at your address from a NEAR Intents payout, followed by whatever you do with that address.

What exists today

Item On Robinhood Chain today
Anew contract None. Anew deploys no hub, no vault and no pass contract.
Anew server wallet None. No Anew key receives or sends user funds, and Anew runs no relayer.
$ANEW token None. Launching soon; the site prints no address until one exists.
Your receiving address Yours. It receives native ETH from the NEAR Intents payout.
The payout One plain ETH transfer to your address. Its hash comes back in the order status.
The payout's sender In the payouts checked on 2026-09-22, 0x2CfF890f0378a11913B6129B2E97417a2c302680. It is the address the fills were paid from, not Anew's and not under Anew's control; read it as an observation of those payouts rather than a label NEAR Intents published.

The network

Field Value
Network name Robinhood Chain
Chain ID 4663 (hex 0x1237)
Currency ETH, native
RPC https://rpc.mainnet.chain.robinhood.com
Explorer https://robin.etherscan.io

The Hold page can ask a connected wallet to switch to Robinhood Chain, or to add it with these values. A plain ETH transfer uses 21,000 gas. At the gas price observed on 2026-09-22, about 0.05 gwei, that comes to about 0.000001 ETH.

The asset

The road delivers native ETH, the currency that pays for gas on the chain. You get no token contract to approve and no wrapped asset to redeem. In 1Click's registry this asset is nep141:hood.omft.near, and the deposit screen checks that NEAR Intents recorded this asset for your deposit address.

Your address

The live quote carries your address as recipient, and the solver pays that address. Anew adds nothing between the payout and your balance. For a fresh address, the private key exists in your browser and in the backup file you downloaded, and Anew keeps no copy.

To check a trip, open your address on the explorer. The incoming transaction should match the destination hash that the Start page shows at SUCCESS. In the payouts checked on 2026-09-22, the sender was the address above. That sender is public, so anyone reading your address can see that NEAR Intents funded it.

Reading it yourself

The pages read five things through the public RPC: balances (eth_getBalance), nonces (eth_getTransactionCount) and code (eth_getCode) for addresses, and the head block (eth_blockNumber) and gas price (eth_gasPrice) for the Stats page. The Hold page sends its signed transfers through the same RPC. You can make the same reads yourself:

curl -s https://rpc.mainnet.chain.robinhood.com \
  -H 'content-type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"eth_getBalance","params":["0x…","latest"]}'

The RPC operator sees your IP address and the address you ask about, whichever tool you use.

What launch day adds (planned)

  • The $ANEW token. The plan creates it on Robinhood Chain, and the launch buy will be public in the launch transaction. The site shows the address once the operator sets NEXT_PUBLIC_ANEW_TOKEN and redeploys. Until then each place that would show it reads Launching soon.
  • A buy from a fresh address. The Hold page shows a disabled Launching soon button today. After launch, the plan adds a buy of $ANEW with the ETH at a fresh address, signed with that address's key.
  • No fee contract. Anew's fee rides inside the 1Click quote as an app fee, so launch day adds nothing of Anew's to Robinhood Chain apart from the token.

Why no Anew contract sits in the path

The quote already ends at your address. A contract in the middle would hold your ETH for at least one transaction, would need an owner key, and would add code that someone has to audit. Anew has no job to do on chain between the deposit and the delivery, so it deploys nothing there. The fee travels inside the quote, and the token will live in the launch venue's own contracts.

The choice has a cost after launch. A contract could deliver ETH and buy $ANEW in one transaction. On Anew's road the buy is a second transaction from the fresh address, which you sign, and which joins the payout in the address's public history.