> ## Documentation Index
> Fetch the complete documentation index at: https://docs.range.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Smart Contract Risk (Solana)

> Risk assessment for smart contracts on the Solana blockchain.


<Info>
  **Coming soon.** This endpoint is under development. [Request early access →](https://www.range.org/get-in-touch)
</Info>

The Smart Contract Risk endpoint will provide security vulnerability assessment for Solana smart contracts, including analysis of upgrade authority, verified source code, and known vulnerability patterns.

***

## Expected Endpoint

```
GET /risk/contract/{contractAddress}
```

## Expected Parameters

| Parameter         | Type   | Required | Description                             |
| ----------------- | ------ | -------- | --------------------------------------- |
| `contractAddress` | string | Yes      | Solana smart contract address to assess |

## Expected Response

```json theme={null}
{
  "contractAddress": "...",
  "riskScore": 85,
  "riskLevel": "High",
  "vulnerabilities": ["Upgradeable contract", "No verified source code"],
  "metadata": {
    "name": "ExampleContract"
  }
}
```

***

## In the Meantime

Use the [Address Risk Score](/risk-api/risk/get-address-risk-score) endpoint to check if a contract address is connected to known malicious actors, and the [Transaction Simulator](/risk-api/simulator/simulate-solana-transaction) to analyze contract interactions before executing them.

[Contact us](https://www.range.org/get-in-touch) for early access or updates on availability.
