Skip to content
This repository has been archived by the owner on Mar 12, 2021. It is now read-only.

Latest commit

 

History

History
28 lines (24 loc) · 1.36 KB

CreatePayoutRequest.md

File metadata and controls

28 lines (24 loc) · 1.36 KB

BleumiPay::CreatePayoutRequest

Properties

Name Type Description Notes
txid String Unique identifier for this payout
token String ETH - for Ethereum
XDAI - for xDai
XDAIT - for xDai Testnet
ALGO - for Algo
RBTC - for R-BTC
<asset id> - for Algorand Standard Asset
<contract address of ERC-20 token> - for ERC-20 Tokens. Please refer to ERC-20 Tokens for contract address;
<contract address of RSK ERC-20 token> - for RSK ERC-20 Tokens. Please refer to RSK ERC-20 Tokens for contract address;
payouts Array<Payout> Array of payments to be made in this payout. This is an atomic transaction (i.e. either all payments are processed or all of them are rejected).

Example

{
    "txid": "12345-6789",
    "token": "0x84df8548086EC9025E9C93297058Bed706E90DDD",
    "payouts": [
        {
            "transferAddress": "0xD15BDD17175825742A5904b21008dd3A019a060E",
            "amount": "1"
        },
        {
            "transferAddress": "0x7Dc30B85084aA1608e5C1Ce39c804Be177e40A07",
            "amount": "1"
        }
    ]
}