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) • 452 B
TypeScript
import { Schema } from 'mongoose';
export interface IOwnerFee extends Document {
_id: string;
chainId: number;
packageIndex: number;
listingFee: Schema.Types.Decimal128;
listingReferralFee: Schema.Types.Decimal128;
buyFeePer: Schema.Types.Decimal128;
sellFeePer: Schema.Types.Decimal128;
finalizeFeePer: Schema.Types.Decimal128;
}
export declare const OwnerFeeModel: import('mongoose').Model<any, {}, {}, {}, any, any>;