UNPKG

tensaikit

Version:

An autonomous DeFi AI Agent Kit on Katana enabling AI agents to plan and execute on-chain financial operations.

19 lines (18 loc) 453 B
/** * Represents the blockchain network that the wallet is connected to. */ export interface Network { /** * The protocol family the network belongs to (e.g., 'evm'). */ protocolFamily: string; /** * The human-readable or internal network ID * (e.g., 'katana-network', 'polygon-mumbai'). */ networkId?: string; /** * The numeric chain ID of the network (EVM-specific). */ chainId?: string; }