Trust & Risk Providers
Conto integrates with external providers to enrich trust scores, screen for sanctions, and assess wallet reputation. These providers feed into the trust score calculation (via the Verification factor, weighted at 20%) and the policy rule engine. Reputation providers (like Fairscale) follow a fail-open design: if unavailable, Conto logs a warning and continues without blocking transactions. Sanctions screening providers follow a fail-closed design: if Chainalysis or TRM Labs is unavailable, the address is treated as sanctioned to prevent compliance gaps.Fairscale (Solana Reputation)
Fairscale provides composable reputation scoring for Solana wallets. It analyzes onchain behavioral signals — token holdings, transaction patterns, staking activity, and social connections — to produce a 0-100 reputation score.What it provides
| Signal | Description |
|---|---|
| Score (0-100) | Composite reputation score |
| Tier | bronze, silver, or gold |
| Pillars | Six scored dimensions: verification, reliability, social, track record, economic stake, ecosystem |
| Badges | Behavioral badges (e.g. “LST Staker”, “No Instant Dumps”) |
How Conto uses it
- Trust score enrichment: For Solana counterparties with no existing network data, Fairscale scores are normalized (0-100 to 0.0-1.0) and used as the network trust score
- Cold-start enrichment: Unknown Solana addresses get real trust scores instead of blank
UNKNOWNdefaults - Policy rules: Use
FAIRSCALE_MIN_SCOREto require a minimum Fairscale score before allowing payments
Policy rule
Block payments to Solana wallets below a Fairscale score threshold:Availability
Fairscale is supported when the Conto deployment is configured with aFAIRSCALE_API_KEY. If Fairscale is not configured, Conto skips reputation enrichment and continues without blocking the request.
Fairscale is Solana-only. It is automatically skipped for EVM addresses, and Conto also skips
it when the provider is unavailable.
SDK API response
When querying trust data for a Solana address via the SDK, Fairscale data is included:Sanctions Screening
Conto screens wallet addresses against sanctions lists to support compliance requirements. Screening checks known sanctioned addresses (Tornado Cash, Lazarus Group, Garantex, etc.) and can be extended with enterprise providers for deeper risk analysis.Providers
| Provider | Description |
|---|---|
| Local OFAC (default) | Built-in OFAC SDN list — screens against known sanctioned wallet addresses. No API key needed. |
| Chainalysis | Enterprise-grade blockchain risk scoring via the Chainalysis KYT API. Identifies sanctions exposure through cluster analysis. |
| TRM Labs | Blockchain intelligence and compliance via the TRM Labs Screening API. Screens addresses for sanctions risk indicators. |
Availability
Local OFAC screening is built into Conto — no configuration needed. All organizations on conto.finance automatically get OFAC sanctions screening against known sanctioned addresses. For enterprise compliance needs, Chainalysis and TRM Labs provide deeper risk analysis. Contact support to enable enterprise sanctions screening for your organization.Sanctions screening is fail-closed for enterprise providers: if Chainalysis or TRM Labs is
unavailable, the address is treated as sanctioned to prevent compliance gaps. Local OFAC screening
is always available since it uses a built-in address list.
Policy rules
Block transactions to sanctioned countries usingGEOGRAPHIC_RESTRICTION:
Network Intelligence
In addition to external providers, Conto’s built-in Network Intelligence aggregates anonymized trust signals across all organizations on the platform:- Cross-organization address flagging
- Collective fraud detection
- Automatic trust score adjustments based on network-wide behavior
Network Intelligence data is anonymized. Organizations share aggregate trust signals, not
transaction details.
Provider priority
When multiple sources have data for an address, Conto applies them in this order:- Conto Network Intelligence — on-platform transaction history and cross-org signals
- Fairscale (Solana only) — external reputation scoring
- Sanctions screening — compliance blocklists (always enforced regardless of trust score)