# Blockchain Reputation Scoring

**Implementation Details**

**Class Names**

| Model Name                  | Parameters Class                | Data Class               |
| --------------------------- | ------------------------------- | ------------------------ |
| BlockchainReputationScoring | BlockchainReputationQueryParams | BlockchainReputationData |

**Import Statement**

```python
pythonCopyEditfrom satoshi_terminal.models.blockchain_reputation_scoring import (
    BlockchainReputationScoring,
    BlockchainReputationQueryParams,
    BlockchainReputationData,
)
```

***

**Parameters**

| Name              | Type                    | Description                                                               | Default | Optional |
| ----------------- | ----------------------- | ------------------------------------------------------------------------- | ------- | -------- |
| blockchain\_name  | Union\[str, List\[str]] | Blockchain(s) to evaluate for reputation scoring.                         | None    | False    |
| scoring\_criteria | List\[str]              | Criteria for scoring (e.g., "Transaction Throughput," "Security Events"). | None    | True     |
| time\_horizon     | int                     | Time window (in days) for analyzing reputation metrics.                   | 30      | True     |

***

**Data**

| Name               | Type       | Description                                                                   |
| ------------------ | ---------- | ----------------------------------------------------------------------------- |
| blockchain\_name   | str        | Name of the blockchain analyzed.                                              |
| reputation\_score  | float      | Overall reputation score (0-100).                                             |
| scoring\_breakdown | dict       | Breakdown of scores by criteria (e.g., decentralization, security incidents). |
| flagged\_events    | List\[str] | Significant events that negatively impacted reputation.                       |
| timestamp          | datetime   | Timestamp of the analysis.                                                    |

***

**Key Features**

* **Multi-Criteria Scoring:** Evaluates blockchains across multiple dimensions such as decentralization, security, and performance.
* **Event-Based Reputation Impact:** Highlights how specific events (e.g., downtime, hacks) affect reputation.
* **Trend Monitoring:** Tracks reputation changes over time to identify improvement or decline.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.satoshiterminal.io/resources/copy-of-defi-analytics/risk-management-and-security-analytics/blockchain-reputation-scoring.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
