
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@gitcoin/grants-stack-widget-react
Advanced tools
This widget displays active donation rounds and offers a direct link for contributions to your project. Follow this guide for a quick and easy setup.
This widget displays active donation rounds and offers a direct link for contributions to your project. Follow this guide for a quick and easy setup.
First, install the widget using npm:
npm install @gitcoin/grants-stack-widget-react
Import the Widget
component and use it in your application as shown below:
import Widget from "@gitcoin/grants-stack-widget-react";
<Widget
projectId={
"0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
}
/>;
The Widget
component accepts the following props:
projectId: string
(Required): The project ID in bytes32 format (e.g., 0x1234...
).scale: number
(Optional, default: 1
): Adjust the scale of the widget.testnet: boolean
(Optional, default: false
): Use testnet configurations.explorerUrl: string
(Optional): Custom explorer URL.indexerEndpoint: string
(Optional): Custom indexer endpoint URL.chainsOverride: number[]
(Optional): Override the list of chain IDs.You can adjust the scale of the widget using the scale
prop:
<Widget
projectId={
"0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
}
scale={1.5}
/>
If you want to show testnet rounds as well, set the testnet
prop to true
:
<Widget
projectId={
"0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
}
testnet={true}
/>
You can specify a custom Gitcoin Explorer URL using the explorerUrl
prop:
<Widget
projectId={
"0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
}
explorerUrl="https://mycustomexplorer.com"
/>
If you have a custom indexer endpoint, you can set it using the indexerEndpoint
prop:
<Widget
projectId={
"0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
}
indexerEndpoint="https://myindexer.com"
/>
To override the list of chain IDs, use the chainsOverride
prop:
<Widget
projectId={
"0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
}
chainsOverride={[1, 3, 4]}
/>
Here's a complete example with all props:
import React from "react";
import ReactDOM from "react-dom";
import Widget from "@gitcoin/grants-stack-widget-react";
const App = () => (
<div>
<Widget
projectId={
"0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
}
scale={1.2}
testnet={true}
explorerUrl="https://mycustomexplorer.com"
indexerEndpoint="https://myindexer.com"
chainsOverride={[1, 42, 100]}
/>
</div>
);
ReactDOM.render(<App />, document.getElementById("root"));
To contribute or make changes, follow these steps:
npm install
to install dependencies.npm build
to build the package.For any questions or issues, please open an issue on GitHub or contact the maintainers.
Happy coding! 🚀
FAQs
This widget displays active donation rounds and offers a direct link for contributions to your project. Follow this guide for a quick and easy setup.
We found that @gitcoin/grants-stack-widget-react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.