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.27 KB

PayoutItemInputs.md

File metadata and controls

28 lines (24 loc) · 1.27 KB

BleumiPay::PayoutItemInputs

Properties

Name Type Description Notes
salt String Unique identifier generated for the txid of the payout (specified during Create a Payout).
token String Token used for the payout ETH - for Ethereum
XDAI - for xDai
XDAIT - for xDai Testnet
ALGO - for Algo
<asset id> - for Algorand Standard Asset payouts
<contract address of ERC-20 token> - for ERC-20 payouts; Please refer to 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

{
    "salt": "0x6f3b4b923b133a82dddef57139b6bbd622e7343128983518557cd13201c5462b",
    "token": "0x84df8548086ec9025e9c93297058bed706e90ddd",
    "payouts": [
        {
        "transferAddress": "0xD15BDD17175825742A5904b21008dd3A019a060E",
        "amount": "15"
        },
        {
        "amount": "21",
        "transferAddress": "0x7Dc30B85084aA1608e5C1Ce39c804Be177e40A07"
        }
    ]
}