File size: 861 Bytes
170b9b6
 
 
 
 
 
1b87b65
 
 
4f7cbb5
 
 
 
 
 
 
 
8c87335
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
export {
  computeConsentHash,
  consentHashMatches,
  canonicalConsentJson,
  canonicalizeConsentPreview,
} from "./policies/consent-hash.js";

export { canExecute } from "./policies/action-execution-policy.js";
export type { CanExecuteResult, ExecutionRefusal, ExecutionAllowance } from "./policies/action-execution-policy.js";

export { checkDefamation } from "./policies/defamation-gate.js";
export type { DefamationCheck } from "./policies/defamation-gate.js";

export { parseReplyAddress, verifyReplyToken, generateReplyToken, tokensMatch } from "./policies/reply-token.js";

export { canResolve } from "./policies/resolution-policy.js";
export type { CanResolveResult } from "./policies/resolution-policy.js";

export { canOptIn, computeContribution } from "./policies/swarm-policy.js";
export type { SwarmOptInCheck } from "./policies/swarm-policy.js";