Deployed Newton Protocol contract addresses across all supported networks
This page lists all deployed Newton Protocol contract addresses. Use these when configuring the SDK, interacting with contracts directly, or verifying deployments.
The SDK exports these addresses as constants. You typically do not need to hardcode them — the SDK resolves the correct address based on the chain your client is connected to.
Copy
Ask AI
import { NEWTON_PROVER_TASK_MANAGER, ATTESTATION_VALIDATOR, GATEWAY_API_URLS,} from '@magicnewton/newton-protocol-sdk/networks';// Access by chain ID (uses viem chain IDs as keys)const taskManager = NEWTON_PROVER_TASK_MANAGER[11155111]; // Sepoliaconst validator = ATTESTATION_VALIDATOR[11155111];const gatewayUrl = GATEWAY_API_URLS[11155111];