USD
결제 수납 통화:


주소가 선택되지 않음


Webhook URL 

https://....yourwebsite.com

결제 받을 암호화폐를 선택하세요:

USDT, TRC20

USDT, BEP20

USDT, ERC20

BTC, Bitcoin

VMT, Mitilena

APFC, ERC20
다중 결제용 자동 식별자(VS) 
API로 암호화폐를 완전 자동 수납하세요. API 일반 설명 어떤 환경에서도 구현 가능하며, 또한 Wordpress WooCommerce 온라인 스토어용 플러그인.
가변 기호 — 결제 추적용 참조 코드입니다. 결제를 추적하기 위해 금액 끝에 숫자 4자리를 추가합니다. 예를 들어 Tron 네트워크 USDT는 소수점 이하 6자리입니다. 앞 두 자리를 사용하면 예: 10.55(10달러 55센트), 가변 기호 포함 시 10.550001이 됩니다. 사실 1센트의 1/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! */해당 객체를 받아 확인한 뒤 DB에서 주문을 결제 완료로 표시할 수 있습니다. 더 자세한 설명이 있습니다 블로그에서.
QR 코드 생성
