UNPKG

based-auth

Version:

A Next.js/Node.js authentication and wallet API kit for Ethereum and Solana, with utilities for serialization and contract interaction, designed for serverless and API route usage.

9 lines (8 loc) 217 B
import { Model } from 'mongoose'; export interface INativePrice { chainId: number; value: string; time: Date; } export declare const NativePriceModel: Model<INativePrice>; export default NativePriceModel;