@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
7 lines (6 loc) • 644 B
TypeScript
import { TokenGatingSkill, TokenGatingConfig } from '../TokenGatingSkill';
export declare const ethereumConfig: TokenGatingConfig;
export declare const polygonConfig: TokenGatingConfig;
export declare function createChainConfig(chainId: number, network: string, rpcUrl: string, tokenAddress: string, tokenSymbol: string, tokenDecimals: number, minDeposit: number, agentAddress: string, safeFactoryAddress?: string, explorer?: string): TokenGatingConfig;
export declare function createChainAgnosticTokenGating(chainConfig: TokenGatingConfig): Promise<TokenGatingSkill>;
export declare function demonstrateMultiChainTokenGating(): Promise<void>;