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.

15 lines (14 loc) 261 B
export interface INetwork { id: number; name: string; logo: string; decimals: number; symbol: NetworkSymbols; } export declare enum NetworkSymbols { eth = "eth", sol = "sol", ton = "ton", sui = "sui", social = "social" }