-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa19172
commit 0dfc01c
Showing
35 changed files
with
176 additions
and
292 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from "./multicall3Abi"; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
export * from "./client"; | ||
export * from "./enums"; | ||
export * from "./types"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from "./QRModal/QRModal"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
export * from "./SpawnDone/SpawnDone"; | ||
export * from "./Funding/Funding"; | ||
export * from "./SpawnAgentFunding/SpawnAgentFunding"; | ||
export * from "./SpawnDone/SpawnDone"; | ||
export * from "./SpawnError/SpawnError"; | ||
export * from "./SpawnHeader/SpawnHeader"; | ||
export * from "./SpawnRPC/SpawnRPC"; | ||
export * from "./SpawnStakingCheck/SpawnStakingCheck"; | ||
export * from "./SpawnError/SpawnError"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { Service } from "@/client"; | ||
import { Flex } from "antd"; | ||
import { ServiceCard } from "../ServiceCard/ServiceCard"; | ||
|
||
export const HasAgents = ({ | ||
services, | ||
}: { | ||
services: Service[]; | ||
}): JSX.Element => { | ||
return ( | ||
<Flex vertical gap={16}> | ||
{services.map((service: Service) => ( | ||
<ServiceCard key={service.hash} service={service} /> | ||
))} | ||
</Flex> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { Tab } from "@/enums"; | ||
import { useTabs } from "@/hooks"; | ||
import { Flex, Typography, Button } from "antd"; | ||
|
||
export const NoAgents = (): JSX.Element => { | ||
const { setActiveTab } = useTabs(); | ||
return ( | ||
<Flex vertical justify="center" align="center"> | ||
<Typography.Text>No agents running.</Typography.Text> | ||
<Button type="primary" onClick={() => setActiveTab(Tab.MARKETPLACE)}> | ||
Browse Agents | ||
</Button> | ||
</Flex> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.