Contract addresses
| Contract | Account id | Description |
|---|---|---|
| NEAR Auth | fast-auth.near | The entry-point contract. Verifies a JWT through a guard and requests an MPC signature. |
| JWT Guard Router | jwt.fast-auth.near | Registry that routes a guard_id to the guard contract responsible for verifying the JWT. |
| Auth0 Guard | auth0.jwt.fast-auth.near | Guard that RS256-verifies Auth0 JWTs and validates the iss, aud, and fatxn claims. |
| MPC signer | v1.signer | NEAR’s Multi-Party Computation network. Produces signatures from distributed key shares. |
On mainnet,
auth0.jwt.fast-auth.near is also the Auth0 signing audience — every JWT the guard verifies must list it in the aud claim. See the Auth0 concept for details.Network information
| Setting | Value |
|---|---|
| Network | NEAR Mainnet |
| Chain id | mainnet |
| RPC endpoint | https://rpc.mainnet.near.org |
| Explorer | nearblocks.io |
near-api-js at the mainnet RPC and pass the mainnet account ids:
main.ts
Next steps
Apply for mainnet access
Get whitelisted to authenticate real users in production.
Testnet contracts
The open deployment for building and testing without approval.
Network configuration
RPC URLs, chain ids, and explorers side by side.