courtmitra / packages /domain /src /index.ts
Hetansh Waghela
module 1,2,3
8c87335
Raw
History Blame
861 Bytes
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";