/** * Copyright 2025 The Lotusia Stewardship * Github: https://github.com/LotusiaStewardship * License: MIT */ import type { ScriptChunkPlatformUTF8 } from '../lib/rank/index.js'; /** * BIP44 constants */ export declare const BIP44_PURPOSE = 44; export declare const BIP44_COIN_TYPE = 10605; export declare const BIP44_ACCOUNT = 0; /** * Lotus constants */ /** Maximum relay size of an OP_RETURN payload, in bytes (OP_RETURN + OP_PUSHDATA1 + data) */ export declare const MAX_OP_RETURN_RELAY = 223; /** Maximum data size of the OP_RETURN payload, in bytes (OP_PUSHDATA1 + data) */ export declare const MAX_OP_RETURN_DATA = 220; /** Maximum number of OP_RETURN outputs allowed in a transaction by consensus */ export declare const MAX_OP_RETURN_OUTPUTS = 3; /** * RANK script configuration */ /** Minimum RANK burn value in sats */ export declare const RANK_OUTPUT_MIN_VALID_SATS = 1000000; /** Minimum RNKC burn value in sats */ export declare const RNKC_MIN_FEE_RATE = 10000000; /** Minimum RNKC comment length in bytes */ export declare const RNKC_MIN_DATA_LENGTH = 1; /** * Dashboard configuration */ /** Platform URL configuration */ export declare const PlatformURL: { [key in ScriptChunkPlatformUTF8]?: { /** Root URL for the platform */ root: string; /** URL for the profile */ profile(profileId: string): string; /** URL for the post */ post(profileId: string, postId: string): string; }; }; //# sourceMappingURL=constants.d.ts.map