/
Using networks for deposits & withdrawals
Using networks for deposits & withdrawals
В типе currency в currencyPaymentInterfaces появилось новое поле networks
query {
currencies {
id
currencyPaymentInterfaces {
depositNetworks {
id
}
withdrawNetworks {
id
}
}
}
}
Deposit
Пользователь при выборе валюты должен указать в какой сети (network) он будет выполнять депозит или вывод средств.
Например, при генерации нового адреса для депозита необходимо в параметрах передать также и сеть:
mutation {
generateWallet(
currencyId: "USDT"
paymentInterfaceId: "WHITEBIT-PI"
isDonation: false
network: "TRC20"
) {
address
}
Withdrawal
При создании recipient параметр сеть должен быть добавлен к адресу в поле “data”:
mutation {
createRecipient(
paymentInterfaceId: "WHITEBIT-PI"
currencyId: "USDT"
data: '{\"address\":\"TL5xZcCNXCZqbd5WVQ9d26EaJsUoasJEQ3\",\"network\":\"TRC20\"'
description: "main"
)
}
, multiple selections available,
Related content
User Withdrawal
User Withdrawal
More like this
Deposit to Proxy address
Deposit to Proxy address
More like this
Connecting Market Trading
Connecting Market Trading
Read with this
[DRAFT] Financial Operations & Commissions
[DRAFT] Financial Operations & Commissions
More like this
Connecting Market Off-chain Swap
Connecting Market Off-chain Swap
Read with this
Offchain Swap + Whitebit
Offchain Swap + Whitebit
More like this