@orangecheck/agent-core / FederationVerifyResult
Type Alias: FederationVerifyResult
type FederationVerifyResult =
| {
canonicalMessage: string;
id: string;
ok: true;
}
| {
code: AgentErrorCode;
message: string;
ok: false;
};
Defined in: agent-core/src/federation.ts:90