@agentdao/core
Version:
Core functionality, skills, and ready-made UI components for AgentDAO - Web3 subscriptions, content generation, social media, help support, live chat, RSS fetching, web search, and agent pricing integration
24 lines (23 loc) • 876 B
TypeScript
export declare function basicPricingIntegration(): Promise<void>;
export declare function accessControlExample(): Promise<boolean>;
export declare function dynamicPricingDisplay(): Promise<{
id: string;
name: any;
price: any;
features: any;
acceptedTokens: string[];
}[]>;
export declare function enforceUsageLimits(userId: string): Promise<boolean>;
export declare function featureBasedAccess(): Promise<{
analytics: boolean;
prioritySupport: boolean;
customIntegrations: boolean;
}>;
export declare function paymentProcessing(userPlan: string, userToken: string): Promise<{
success: boolean;
transactionId: string;
}>;
export declare function createAccessControlMiddleware(agentId: number): (req: any, res: any, next: any) => Promise<any>;
export declare function PricingDisplayComponent({ agentId }: {
agentId: number;
}): null;