UNPKG

@pump-fun/shared-contracts

Version:

Shared contracts for Pump.fun microservices.

15 lines (13 loc) 319 B
import { healthCheck } from "./health.contract"; import { checkPnlTrackingStatus, setupMobilePnlTracking } from "./pnl-tracking"; export const contract = { health: { check: healthCheck, }, mobile: { pnlTracking: { setup: setupMobilePnlTracking, status: checkPnlTrackingStatus, }, }, };