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.

13 lines (12 loc) 221 B
export interface INetwork { id: number; name: string; logo: string; decimals: number; symbol: NetworkSymbols; } export declare enum NetworkSymbols { eth = "eth", sol = "sol", sui = "sui" }