104 lines
2.6 KiB
Plaintext
104 lines
2.6 KiB
Plaintext
---
|
|
sidebar_position: 40
|
|
slug: /publisher/custom-feeds
|
|
title: Custom Feeds
|
|
---
|
|
|
|
import MarkdownImage from "/src/components/MarkdownImage";
|
|
import { Box, Typography, Grid } from "@mui/material";
|
|
import Link from "@docusaurus/Link";
|
|
|
|
## Feed Definition
|
|
|
|
<Grid container spacing={3}>
|
|
<Grid item md={6}>
|
|
<Typography>
|
|
The <i>Custom Feed</i> button lets you build a custom feed from a JSON
|
|
definition:
|
|
</Typography>
|
|
<MarkdownImage
|
|
img="/img/publisher/Custom_Feed_Button.png"
|
|
sx={{
|
|
width: "70%",
|
|
textAlign: "center",
|
|
mx: 2,
|
|
display: "flex",
|
|
borderRadius: 3,
|
|
overflow: "hidden",
|
|
}}
|
|
/>
|
|
<br />
|
|
<Typography>
|
|
You should see the <i>Custom Feed Modal</i> to the right. Give your feed a
|
|
name, then for each job you require, select <i>Add Job +</i>.
|
|
</Typography>
|
|
<br />
|
|
<Typography>A data feed must have at least one job.</Typography>
|
|
</Grid>
|
|
<Grid item md={6}>
|
|
<MarkdownImage
|
|
img="/img/publisher/Custom_Feed_Modal.png"
|
|
sx={{ borderWidth: "thin", border: "1px solid #D3D3D3", borderRadius: 3 }}
|
|
/>
|
|
</Grid>
|
|
</Grid>
|
|
|
|
## Custom Jobs
|
|
|
|
<Grid container spacing={3}>
|
|
<Grid item md={6}>
|
|
<MarkdownImage
|
|
img="/img/publisher/Custom_Job_Modal.png"
|
|
sx={{ borderWidth: "thin", border: "1px solid #D3D3D3", borderRadius: 3 }}
|
|
/>
|
|
</Grid>
|
|
<Grid item md={6}>
|
|
<Typography>
|
|
The <i>Custom Job</i> modal lets you build a custom job from a JSON
|
|
definition or Public Key.
|
|
</Typography>
|
|
<br />
|
|
<b>
|
|
<u>JSON Definition</u>
|
|
</b>
|
|
<Typography>
|
|
You can find example job definitions at:
|
|
<ul>
|
|
<li>
|
|
<Link to="/api/tasks">/api/tasks</Link>
|
|
</li>
|
|
<li>
|
|
<Link to="/feed/directory">Job Directory</Link>
|
|
</li>
|
|
<li>
|
|
<Link to="https://switchboard.xyz/explorer">
|
|
Switchboard Explorer
|
|
</Link>
|
|
</li>
|
|
</ul>
|
|
</Typography>
|
|
<br />
|
|
<Typography>
|
|
Paste in your JSON definition, then select <i>Test</i> to simulate the job
|
|
and view the result.
|
|
</Typography>
|
|
<br />
|
|
<b>
|
|
<u>Public Key</u>
|
|
</b>
|
|
<Typography>
|
|
You can use an existing JobAccount public key to build your data feed.
|
|
This is useful if you are building multiple feeds that share job
|
|
definitions.
|
|
</Typography>
|
|
</Grid>
|
|
</Grid>
|
|
|
|
When done, select _Add Job_ to return to the _Custom Feed_ modal.
|
|
|
|
## Checkout
|
|
|
|
When you have added all of your jobs, select _Add Feed_ to add the custom feed to your basket.
|
|
|
|
Then continue to [checkout](/publisher#checkout).
|