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 | export interface TwammAutomationStatus { |
| #2 | root: string; |
| #3 | exists: boolean; |
| #4 | anchorToml: boolean; |
| #5 | cargoToml: boolean; |
| #6 | appPackage: boolean; |
| #7 | crankScript: boolean; |
| #8 | programIdl: boolean; |
| #9 | defaultRpcUrl: string; |
| #10 | tokenAMint: string; |
| #11 | tokenBMint: string; |
| #12 | liveEnabled: boolean; |
| #13 | operatorConfirmed: boolean; |
| #14 | warnings: string[]; |
| #15 | } |
| #16 | export interface TwammAutomationPlan { |
| #17 | mode: "build" | "test" | "crank"; |
| #18 | command: string; |
| #19 | cwd: string; |
| #20 | args: string[]; |
| #21 | env: Record<string, string>; |
| #22 | warnings: string[]; |
| #23 | } |
| #24 | type BuildOptions = { |
| #25 | skipAppInstall?: boolean; |
| #26 | }; |
| #27 | type TestOptions = { |
| #28 | anchor?: boolean; |
| #29 | cargo?: boolean; |
| #30 | }; |
| #31 | type CrankOptions = { |
| #32 | rpcUrl?: string; |
| #33 | tokenAMint?: string; |
| #34 | tokenBMint?: string; |
| #35 | walletPath?: string; |
| #36 | once?: boolean; |
| #37 | yes?: boolean; |
| #38 | }; |
| #39 | export declare function resolveTwammRoot(): string; |
| #40 | export declare function getTwammAutomationStatus(): TwammAutomationStatus; |
| #41 | export declare function buildTwammBuildPlan(options?: BuildOptions): TwammAutomationPlan; |
| #42 | export declare function buildTwammTestPlan(options?: TestOptions): TwammAutomationPlan; |
| #43 | export declare function buildTwammCrankPlan(options?: CrankOptions): TwammAutomationPlan; |
| #44 | export declare function buildTwammAutomation(options?: BuildOptions): { |
| #45 | ok: boolean; |
| #46 | status: TwammAutomationStatus; |
| #47 | error: string; |
| #48 | step?: undefined; |
| #49 | stdout?: undefined; |
| #50 | stderr?: undefined; |
| #51 | } | { |
| #52 | ok: boolean; |
| #53 | status: TwammAutomationStatus; |
| #54 | step: string; |
| #55 | stdout: string; |
| #56 | stderr: string; |
| #57 | error: string | undefined; |
| #58 | } | { |
| #59 | ok: boolean; |
| #60 | status: TwammAutomationStatus; |
| #61 | stdout: string; |
| #62 | stderr: string; |
| #63 | error: string | undefined; |
| #64 | step?: undefined; |
| #65 | }; |
| #66 | export declare function runTwammCrank(options?: CrankOptions): never; |
| #67 | export {}; |
| #68 |