
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
zinari-pay
Advanced tools
zinari-pay is a comprehensive package for integrating ZinariPays cryptocurrency payment gateway into web & mobile applications.
zinari-pay
is a secure and easy-to-integrate cryptocurrency payment gateway designed to enable businesses to accept
crypto payments online. It supports stablecoins (USDT & USDC), offers encrypted transaction handling, and provides
seamless integration for developers and business owners.
ZinariPay charges a straightforward and affordable fee structure:
Transaction Fee | Minimum Fee | Maximum Fee |
---|---|---|
1% per transaction | $1 | $5 |
For detailed pricing information, visit our Pricing Page.
npm install zinari-pay
yarn add zinari-pay
import ZinariPay from 'zinari-pay';
const zinariPay = new ZinariPay({
appId: 'your-app-id',
apiKey: 'your-api-key',
publicKey: 'your-public-key',
log: process.env.NODE_ENV === 'development',
});
document.getElementById("your-payment-button").addEventListener("click", () => {
zinariPay.initiateTransaction({
amount: 1000,
notificationEmailAddress: 'user@email.com',
details: {userId: '123'},
onSuccess: (transactionDetails) => { /* success action */
},
onFailure: (transactionDetails) => { /* failure action */
},
onIncomplete: (transactionDetails) => { /* incomplete action */
},
onExcess: (transactionDetails) => { /* excess action */
},
});
});
import ZinariPay from 'zinari-pay';
const zinariPay = new ZinariPay({
appId: 'your-app-id',
apiKey: 'your-api-key',
publicKey: 'your-public-key',
log: process.env.NODE_ENV === 'development',
});
const App = () => {
const handlePayment = () => {
zinariPay.initiateTransaction({
amount: 500,
notificationEmailAddress: 'user@example.com',
details: {orderId: '567'},
onSuccess: (transactionDetails) => { /* success action */
},
onFailure: (transactionDetails) => { /* failure action */
},
onIncomplete: (transactionDetails) => { /* incomplete action */
},
onExcess: (transactionDetails) => { /* excess action */
},
});
};
return <button onClick={handlePayment}>Pay with Crypto</button>;
};
<script src="https://cdn.jsdelivr.net/npm/zinari-pay/dist/zinari-pay-cdn-bundle.umd.js"></script>
<script>
window.zinariPay = new ZinariPay({
appId: 'your-app-id',
apiKey: 'your-api-key',
publicKey: 'your-public-key',
});
</script>
your-app-id
, your-api-key
, your-public-key
) with actual credentials.Resolve by adding your environment URLs to whitelisted URLs in your ZinariPay console.
FAQs
zinari-pay is a comprehensive package for integrating ZinariPays cryptocurrency payment gateway into web & mobile applications.
The npm package zinari-pay receives a total of 18 weekly downloads. As such, zinari-pay popularity was classified as not popular.
We found that zinari-pay 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.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.