
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
Install via npm:
npm i @fetcch/kit
Install via pnpm:
pnpm i @fetcch/kit
Install via yarn:
yarn add @fetcch/kit
Arrange transaction request
{
"receiver": "string",
"payer": "string", //optional
"actions": [
{
"type": "PAYMENT",
"data": {
"token": "string",
"chain": number,
"receiver": "string",
"amount": {
"amount": "string" // in lowest denominator,
"currency": "CRYPTO"
}
}
}
],
"message": "string",
"label": "string"
}
Generate message by making post call to https://staging-api.fetcch.xyz/v1/transaction-request/generate-message
Create transaction request by making post call to https://staging-api.fetcch.xyz/v1/transaction-request
Detailed guide - https://docs.fetcch.xyz/how-to-integrate/guides/transaction-requests/how-to-create-transaction-request
Import FetcchButton component from the package
import FetcchButton from "@fetcch/kit"
Render FetcchButton component and configure it with following params
requestId : Id of transaction request createdaction : Type of operation to be performedname : Label or identifier for the specific use casesecretKey : API keys for authenticating requestreturn(
<FetcchButton requestId="" action="" name="" secretKey="" />
)
"use client"
import FetcchButton from "@fetcch/kit"
export const FButton = (params: { id: string }) => {
return (
<FetcchButton requestId={params.id} action="Deposit" name="Fetcch OTC" secretKey={process.env.NEXT_PUBLIC_FETCCH_API_KEY as string} />
)
}
FAQs
asdf
The npm package vvvbridge receives a total of 0 weekly downloads. As such, vvvbridge popularity was classified as not popular.
We found that vvvbridge 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.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.