USD
ክፍያ ተቀበል በ፡


አድራሻ አልተመረጠም


URL Webhook 

https://....yourwebsite.com

ክፍያ ለመቀበል ክሪፕቶ ይምረጡ፡

USDT, TRC20

USDT, BEP20

USDT, ERC20

BTC, Bitcoin

VMT, Mitilena

APFC, ERC20
ለበርካታ ክፍያዎች ራስ-ሰር ማጣቀሻ (VS) 
ክሪፕቶን ሙሉ በሙሉ በራስ-ሰር በ API ይቀበሉ። የ API አጠቃላይ መግለጫ በማንኛውም አካባቢ ለመተግበር ይገኛል፣ እንዲሁም ለ Wordpress WooCommerce የመስመር ላይ ሱቆች plugin.
ተለዋዋጭ ምልክት — ክፍያን ለመከታተል የማጣቀሻ ኮድ። ክፍያን ለመከታተል በመጠኑ መጨረሻ 4 አሃዞች እናክላለን፤ ለምሳሌ በ USDT በ Tron አውታረ መረብ ከነጥብ በኋላ 6 አሃዞች። የመጀመሪያዎቹ ሁለት ጥቅም ላይ ይውላሉ፣ ለምሳሌ 10.55 (10 ዶላር 55 ሳንቲም)፣ ከተለዋዋጭ ምልክት ጋር 10.550001 ይሆናል። በእውነቱ ከአንድ ሳንቲም 1000 እጥፍ ያነሰ ነው — ገዢው አይከፍልም። ግን ክፍያውን መከታተል ይችላሉ።
በ Merchant ሁነታ እስከ 10 000 ኮዶች ሲያልቁ፣ ለቀጣዮቹ 10 000 ኮዶች አዲስ USDT አድራሻ በራስ-ሰር ይታከላል — እና እንደዚህ ይቀጥላል። በቀን በሺዎች ትዕዛዞች ያለ ትልቅ መደብርን እንኳ ማገልገል ይቻላል።
አለበለዚያ ለእያንዳንዱ ክፍያ የተለየ አድራሻ መጠቀም ይኖርብዎታል። ከዚያም ሁሉንም ገንዘብ ወደ አንድ አድራሻ ለመሰብሰብ የብሎክቼይን ኮሚሽን መክፈል። ለምሳሌ 100 ክፍያዎች በ 100 አድራሻዎች ካሉዎት፣ ገንዘብን ወደ አንድ አድራሻ ለመሰብሰብ (ለልውውጥ ወዘተ) ኮሚሽኑን 100 ጊዜ መክፈል ያስፈልጋል (0.9$ በአንድ)። ይህንን በከላይ በተገለጹት የማጣቀሻ ቁጥሮች አልፈናል።
Your server must be able to accept a POST request to the address you specified as the webhook. Here is an example in Javascript (Express.js framework)
app.post('/mi_webhook_subscription/', bodyParser.json(), (request, response) => {
try {
let eventObj = request.body;
const signature = request.headers['mitilena-signature'];
if (signature === endpointSecretMitilenaNewOur) {
if (!eventObj.statusObj) {
return response.status(400).send('Error, no object.');
}
let hookObj = eventObj.statusObj;
...We will send you an object in JSON format. The object will have the following fields, as well as a secret key.
Your private secret key:
You should only process requests to your webhook that contain this key.
Your private secret key:
You should only process requests to your webhook that contain this key.
statusObj = {
mitilenaInvoiceId: 'auto-683dc5-03f2c0-e3f06a-example-string', // never undefined
yourPaymentId: 'stringOrNull', // never undefined
yourProductName: 'stringOrNull', // never undefined
yourProductId: 'stringOrNull', // never undefined
secretKey: 'your-unique-secret-key', // never undefined,
stableCoinAmount: 0, // number, never undefined
stableCoinSymbol: 'USDT', // never undefined
stableCoinBlockchain: 'tether-trc20', // never undefined
stableCoinContractAddress: 'TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t', // string | null
localCurrencyAmount: 0, // number, never undefined
localCurrencyCode: 'EUR', /// ISO 4217 currency code, never undefined
wasPaid: true, // true | false, never undefined
}
/* payment time === webhook call time.
We try to send a request immediately after the payment is detected
!!!
If the secret key is incorrect or at least one field is
undefined - this is a fake request, do not set the order
as paid in your system! */እንደዚህ ያለ ነገር ሲቀበሉና ሲያረጋግጡ — ትዕዛዙን በመረጃ ቋትዎ እንደተከፈለ ማድረግ ይችላሉ። የበለጠ ሙሉ መግለጫ አለን በብሎጋችን ላይ።
QR-ኮድ አመንጭ
