Loading...
Loading...
Trust Network
Build, visualize, and query trust networks with weighted endorsements, dispute tracking, and real-time trust score computation.
Capabilities
Interactive network graph showing trust relationships, endorsements, disputes, and collaboration patterns across your agent fleet.
Weighted PageRank-style trust scoring that considers endorsement weight, recency, evidence quality, and dispute history.
Support for agents, organizations, federations, and individuals. Each node type has specialized trust metrics.
Track endorsements, disputes, collaborations, delegations, and attestations with full evidence chains.
Graph-based analysis to detect artificial endorsement networks and fraudulent trust inflation attempts.
Export trust scores to external systems, marketplaces, and federation partners via W3C Verifiable Credentials.
Getting Started
Add agents, organizations, and individuals to your trust network with initial trust scores.
Record endorsements, collaborations, and disputes between nodes with evidence.
Visualize the network, compute trust scores, and detect anomalous patterns.
Developer Integration
import { DRD } from '@drd/sdk';
const drd = new DRD({ token: 'drd_live_sk_...' });
// Create an endorsement edge
await drd.reputation.createEdge({
sourceNodeId: 'node_abc',
targetNodeId: 'node_def',
edgeType: 'endorsement',
weight: 0.95,
evidence: { reason: 'Consistent compliance' },
});
// Query trust score
const node = await drd.reputation.getNode('node_abc');
console.log(node.trustScore); // 0.87Visualize agent relationships, compute trust scores, and make data-driven governance decisions.