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.

10 lines (9 loc) 381 B
import { Schema, Model } from 'mongoose'; export interface ISubBoardFee extends Document { chainId: number; subBoardCreationFee: Schema.Types.Decimal128; listingFeePerForOwner: Schema.Types.Decimal128; tradingFeePerForOwner: Schema.Types.Decimal128; finalizeFeePerForOwner: Schema.Types.Decimal128; } export declare const SubBoardFeeModel: Model<ISubBoardFee>;