UNPKG
@pump-fun/shared-contracts
Version:
latest (0.2.2)
0.2.2
Shared contracts for Pump.fun microservices.
@pump-fun/shared-contracts
/
src
/
events
/
livestream.types.ts
15 lines
(14 loc)
•
281 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** * Payload for the livestream.created event. */
export
interface
LivestreamCreatedPayload
{
mintId
:
string
;
creatorAddress
:
string
;
livestreamId
:
number
;
creatorUsername
:
string
;
// Coin Symbol
symbol
:
string
;
// Coin Name
name
:
string
;
marketCap
:
number
; }