UNPKG
@pump-fun/shared-contracts
Version:
latest (0.2.2)
0.2.2
Shared contracts for Pump.fun microservices.
@pump-fun/shared-contracts
/
src
/
api-contracts
/
schemas
/
pnl.schema.ts
10 lines
(8 loc)
•
207 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import z
from
"zod"
; export
const
TrackPnlTSchema
= z.
object
({ expiresAt: z.
string
().
optional
(), isTracking: z.
boolean
(), message: z.
string
(), success: z.
boolean
(), walletAddress: z.
string
(), });