repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | import type { Candle } from "./state.js"; |
| #2 | import type { Decision } from "./validate.js"; |
| #3 | export interface TickEntry { |
| #4 | tick: number; |
| #5 | now: string; |
| #6 | candles_last3: Candle[]; |
| #7 | whale_activity?: unknown; |
| #8 | book_snapshot: unknown; |
| #9 | decision: Decision; |
| #10 | outcome: "applied" | "rejected" | "killswitch"; |
| #11 | violation?: string; |
| #12 | pnl_lamports?: number; |
| #13 | total_pnl_lamports?: number; |
| #14 | consecutive_losses?: number; |
| #15 | event?: string; |
| #16 | molt_note?: string; |
| #17 | } |
| #18 | export declare function appendTick(entry: TickEntry): void; |
| #19 | export declare function readLastEntries(n?: number): TickEntry[]; |
| #20 | export declare function clearJournal(): void; |
| #21 | export declare function journalPath(): string; |
| #22 | //# sourceMappingURL=journal.d.ts.map |