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

@getgreenspark/impacts

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

@getgreenspark/impacts

Greenspark Impacts API SDK

  • 1.4.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
68
increased by209.09%
Maintainers
0
Weekly downloads
 
Created
Source

Greenspark Impacts API SDK

The Greenspark Impacts SDK provides access to the Greenspark Impacts API from applications running on a server or in a browser.

Documentation

See the @greenspark/impacts API docs for details.

Requirements

Node 16 or higher.

Installation

Install the package with:

npm install @getgreenspark/impacts --save

Usage

Production Environment

The SDK use the production environment by default. You only need to provide your API key.

const impactApi = new ImpactsApi({apiKey: "<YOUR_API_KEY>"})

Sandbox Environment

The SDK use the production environment by default. You can use the sandbox environment for testing and development by providing the sandbox environment basePath and your API key.

const impactApi = new ImpactsApi({basePath: "https://sandbox.getgreenspark.com", apiKey: "<YOUR_API_KEY>"})

Sample API operation

The SDK needs to be configured with your Greenspark API key, which is available in the Greenspark Dashboard.

import {ImpactsApi, ImpactPurchaseTypeEnum} from "@greenspark/impacts";
import {AxiosResponse} from "axios";

const impactApi = new ImpactsApi({apiKey: "<YOUR_API_KEY>"})
const response: AxiosResponse<void> = await impactApi.createTailoredImpact({
    "impactPurchases": [
        {
            "amount": 1,
            "type": ImpactPurchaseTypeEnum.Trees
        }
    ],
    "metadata": [
        {
            "key": "client",
            "value": "sdk"
        }
    ]
});
console.log(response);

Keywords

FAQs

Package last updated on 19 Nov 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