Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@getgreenspark/estimations
Advanced tools
The Greenspark Estimations SDK provides access to the Greenspark Estimations API from applications running on a server or in a browser.
See the @greenspark/estimations
API docs for details.
Node 16 or higher.
Install the package with:
npm install @getgreenspark/estimations --save
The SDK use the production
environment by default. You only need to provide your API key.
const estimationsApi = new EstimationsApi({apiKey: "<YOUR_API_KEY>"})
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 estimationsApi = new EstimationsApi({basePath: "https://sandbox.getgreenspark.com", apiKey: "<YOUR_API_KEY>"})
The SDK needs to be configured with your Greenspark API key, which is available in the Greenspark Dashboard.
import {
Estimation,
EstimationsApi,
EstimationsByMCCRequestBodyGeoEnum,
EstimationsByMCCRequestBodyUserTypeEnum
} from "@greenspark/estimations";
const estimationsApi = new EstimationsApi({apiKey: "<YOUR_API_KEY>"})
const {data}: Estimation = await estimationsApi.fetchCarbonEstimateOfATransactionByMCC({
"price": 1000,
"mcc": "5411",
"currencyISO": "EUR",
"merchant": "Superstore",
"geo": EstimationsByMCCRequestBodyGeoEnum.EUUK,
"userType": EstimationsByMCCRequestBodyUserTypeEnum.PERSONAL,
"metadata": [
{
"key": "customerId",
"value": "743ce227-22ef-4c6e-9c06-725f97b99690"
}
]
})
console.log(data);
FAQs
Greenspark Estimations API SDK
The npm package @getgreenspark/estimations receives a total of 3 weekly downloads. As such, @getgreenspark/estimations popularity was classified as not popular.
We found that @getgreenspark/estimations demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.