Closed
Description
- OS: Any
- Programming Language version: all
- CCXT version: 10.14.103
- Exchange: okex
- Method: private_post_wallet_info and private_post_funds_transfer
The okex rest API has added two new methods to deal with their new wallet model,
private_post_wallet_info
:
url: https://www.okex.com/api/v1/wallet_info.do
Parameter | Description |
---|---|
api_key | apiKey of the user |
sign | signature of request parameters |
and
private_post_funds_transfer
:
https://www.okex.com/api/v1/funds_transfer.do
Parameter | Description |
---|---|
api_key | apiKey of the user |
symbol | Pairs like : ltc_btc etc_btc |
amount | The amount to transfer |
from | Remitting Account(1:spot 3:futures 6:my wallet) |
to | Beneficiary Account(1:spot 3:futures 6:my wallet) |
sign | signature of request parameters |
It would be nice to have them in ccxt
too.