kucoin-php-sdk icon indicating copy to clipboard operation
kucoin-php-sdk copied to clipboard

currency get detail on another chain

Open mahdi4187 opened this issue 4 years ago • 3 comments

$detail = Kucoin::currency()->getDetail('ETH', 'KCC');

array:12 [▼ "currency" => "ETH" "name" => "ETH" "fullName" => "Ethereum" "precision" => 8 "confirms" => 1 "contractAddress" => "" "withdrawalMinSize" => "0.01" "withdrawalMinFee" => "0.004" "isWithdrawEnabled" => true "isDepositEnabled" => true "isMarginEnabled" => true "isDebitEnabled" => true ]

$detail = Kucoin::currency()->getDetail('ETH');

array:12 [▼ "currency" => "ETH" "name" => "ETH" "fullName" => "Ethereum" "precision" => 8 "confirms" => 12 "contractAddress" => "" "withdrawalMinSize" => "0.01" "withdrawalMinFee" => "0.004" "isWithdrawEnabled" => true "isDepositEnabled" => true "isMarginEnabled" => true "isDebitEnabled" => true ]

The withdrawalMinFee did not change

mahdi4187 avatar Sep 06 '21 05:09 mahdi4187

$detail = Kucoin::currency()->getDetail('ETH', 'KCC');

array:12 [▼ "currency" => "ETH" "name" => "ETH" "fullName" => "Ethereum" "precision" => 8 "confirms" => 1 "contractAddress" => "" "withdrawalMinSize" => "0.01" "withdrawalMinFee" => "0.004" "isWithdrawEnabled" => true "isDepositEnabled" => true "isMarginEnabled" => true "isDebitEnabled" => true ]

$detail = Kucoin::currency()->getDetail('ETH');

array:12 [▼ "currency" => "ETH" "name" => "ETH" "fullName" => "Ethereum" "precision" => 8 "confirms" => 12 "contractAddress" => "" "withdrawalMinSize" => "0.01" "withdrawalMinFee" => "0.004" "isWithdrawEnabled" => true "isDepositEnabled" => true "isMarginEnabled" => true "isDebitEnabled" => true ]

The withdrawalMinFee did not change

Hi, The withdrawalMinFees is a returned configuration parameter. Is there any difference between your expected value and the actual return value?

codewc avatar Sep 06 '21 09:09 codewc

no withdrawalMinFees in kcc 0.001

but return 0.004

mahdi4187 avatar Sep 06 '21 13:09 mahdi4187

try $detail = Kucoin::currency()->getDetail('ETH', 'kcc')

hhxsv5 avatar Sep 08 '21 04:09 hhxsv5