
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@golem-sdk/react
Advanced tools
A collection of React hooks for interacting with the Golem Network.
Get started by installing the core package and it's peer dependencies:
npm install @golem-sdk/react @golem-sdk/task-executor@2 @golem-sdk/golem-js@3
Then make sure to wrap your app with the YagnaProvider component:
<YagnaProvider>
<App />
</YagnaProvider>
For the SDK to work properly you need to have a running Yagna instance on your local machine. Please follow the Yagna installation guide to install and configure Yagna.
Yagna blocks all requests from external origins by default. To allow the SDK to communicate with it you need start Yagna with --api-allow-origin='<your-domain>' flag. For example:
yagna service run --api-allow-origin='http://localhost:3000'
Sometimes it's easier to learn by example. That's why we've created a demo application that uses all the hooks from the SDK. You can find it in the examples/react-with-vite directory. To run it locally, first clone the repository, install it's dependencies and build the react package:
git clone https://github.com/golemfactory/golem-sdk-react.git
cd golem-sdk-react/
npm install
npm run build
Then run the following command to start the demo application:
npm run example:vite
If you just want to see how the demo application looks like, you can check out the live version here.
useYagna - check if you're connected to Yagna and manage the app-keyfunction MyComponent() {
const { isConnected, appKey, setYagnaOptions } = useYagna();
const inputRef = useRef(null);
return (
<div>
<div>Connected to Yagna: {isConnected ? "yes" : "no"}</div>
<input ref={inputRef} />
<button
onClick={() => setYagnaOptions({ apiKey: inputRef.current.value })}
>
Set app key
</button>
</div>
);
}
useExecutor + useTask - run a task on the Golem Networkfunction MyTask({ executor }) {
const { isRunning, error, result, run } = useTask(executor);
const onClick = () =>
run(async (exe) => {
return (await exe.run("echo", ["Hello world!"])).stdout;
});
return (
<div>
<button onClick={onClick} disabled={isRunning}>
Run task
</button>
{isRunning && <div>Task is running...</div>}
{error && <div>Task failed due to {error.toString()}</div>}
{result && <div>Task result: {result}</div>}
</div>
);
}
function MyComponent() {
const {
executor,
initialize,
isInitialized,
isInitializing,
terminate,
error,
} = useExecutor({
demand: {
workload: { imageTag: "golem/alpine:latest" },
},
market: {
rentHours: 0.5,
pricing: {
model: "linear",
maxStartPrice: 0.5,
maxCpuPerHourPrice: 1.0,
maxEnvPerHourPrice: 0.5,
},
},
});
if (isInitializing) {
return <div>Initializing executor...</div>;
}
if (error) {
return <div>Error: {error.toString()}</div>;
}
if (!isInitialized) {
return (
<div>
<button onClick={initialize}>Initialize executor</button>
</div>
);
}
return (
<div>
<MyTask executor={executor} />
<button onClick={terminate}>Terminate executor</button>
</div>
);
}
useInvoices + useHandleInvoice - list and handle invoicesfunction Invoice({ invoiceId }) {
const { acceptInvoice } = useHandleInvoice(invoiceId);
return (
<li key={invoice.invoiceId}>
{invoice.invoiceId} - {invoice.status}
<button onClick={acceptInvoice} disabled={invoice.status !== "RECEIVED"}>
Accept
</button>
</li>
);
}
function MyComponent() {
const { invoices, isLoading, error, refetch } = useInvoices({
limit: 10,
statuses: ["RECEIVED"],
after: new Date("2021-01-01"),
});
if (isLoading) {
return <div>Loading...</div>;
}
if (error) {
return <div>Error: {error.toString()}</div>;
}
return (
<div>
<ul>
{invoices.map((invoice) => (
<Invoice key={invoice.invoiceId} invoiceId={invoice.invoiceId} />
))}
</ul>
<button onClick={refetch}> Refresh </button>
</div>
);
}
If you want to contribute to the SDK, you can clone the repository and install the dependencies:
git clone https://github.com/golemfactory/golem-sdk-react.git
cd golem-sdk-react/
npm install
The code in this project is licensed under GPL-3.0 license.
FAQs
React hooks for working with the Golem Network
We found that @golem-sdk/react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.