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.

11 lines (10 loc) 250 B
interface IdlType { kind: string; [key: string]: any; } interface IdlArg { name: string; type: IdlType | string; } export declare function serializeArguments(args: any[], instructionArgs: IdlArg[], idlTypes: any[]): any[]; export {};