UNPKG

@coinbase/agentkit

Version:

Coinbase AgentKit core primitives

13 lines (12 loc) 354 B
import { Chain } from "opensea-js"; /** * Supported Opensea chains */ export declare const supportedChains: Record<string, Chain>; /** * Maps EVM chain IDs to Opensea chain * * @param chainId - The EVM chain ID to map * @returns The corresponding OpenSea Chain enum value */ export declare const chainIdToOpenseaChain: (chainId: string) => Chain;