Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@gitcoin/grants-stack-widget-react

Package Overview
Dependencies
Maintainers
0
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gitcoin/grants-stack-widget-react

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.

  • 0.0.6
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
7
increased by600%
Maintainers
0
Weekly downloads
 
Created
Source

Grants Stack Widget React Component

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.

🚀 Getting Started

Installation

First, install the widget using npm:

npm install @gitcoin/grants-stack-widget-react

Usage

Import the Widget component and use it in your application as shown below:

import Widget from "@gitcoin/grants-stack-widget-react";

<Widget
  projectId={
    "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
  }
/>;

📋 Props

The Widget component accepts the following props:

Required Props

  • projectId: string (Required): The project ID in bytes32 format (e.g., 0x1234...).

Optional Props

  • 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.

🔧 Customization

Scaling the Widget

You can adjust the scale of the widget using the scale prop:

<Widget
  projectId={
    "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
  }
  scale={1.5}
/>

Using Testnet

If you want to show testnet rounds as well, set the testnet prop to true:

<Widget
  projectId={
    "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
  }
  testnet={true}
/>

Custom Explorer URL

You can specify a custom Gitcoin Explorer URL using the explorerUrl prop:

<Widget
  projectId={
    "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
  }
  explorerUrl="https://mycustomexplorer.com"
/>

Custom Indexer Endpoint

If you have a custom indexer endpoint, you can set it using the indexerEndpoint prop:

<Widget
  projectId={
    "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
  }
  indexerEndpoint="https://myindexer.com"
/>

Chains Override

To override the list of chain IDs, use the chainsOverride prop:

<Widget
  projectId={
    "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
  }
  chainsOverride={[1, 3, 4]}
/>

📚 Full Example

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"));

🛠️ Development

To contribute or make changes, follow these steps:

  1. Clone the repository.
  2. Run npm install to install dependencies.
  3. Run npm build to build the package.
  4. Make your changes and submit a pull request.

For any questions or issues, please open an issue on GitHub or contact the maintainers.

Happy coding! 🚀

FAQs

Package last updated on 13 Jul 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc