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桁。最初の2桁を使い、例: 10.55(10ドル55セント)、可変記号付きは10.550001。実際は1セントの1000分の1未満で、購入者の超過負担はありません。ただし支払いは追跡できます。
Merchantモードで最大10,000コードを使い切ると、次の10,000コード用の新しいUSDTアドレスが自動追加され、以降も同様です。1日数千件の注文がある大規模店舗にも対応できます。
そうでなければ支払いごとに別アドレスが必要になり、資金を1アドレスに集めるたびにネットワーク手数料がかかります。 例えば100件の支払いが100アドレスにある場合、1つのアドレスに集約する(両替など)には手数料を100回(1回あたり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コードを生成
