ठीक है, पुष्टि करें कि आप टैंक लेनदेन नहीं कर सकते हैं

लेखक:डानियाओरेन, दिनांकः 2021-02-08 09:13:30
टैगःओकेएक्सऔजार

स्व-उपयोगी, सरल रूप से उन सभी सिक्कों को सूचीबद्ध करता है जो वर्तमान में ओकेएक्स द्वारा निकाले नहीं जा सकते हैं, कभी-कभी बहुत उपयोगी होते हैं, जिन्हें स्वयं निकालने की आवश्यकता होती है


function main() {
    var results = exchange.IO("api", "GET", "/api/account/v3/currencies", "" , "");
    var blacklist = []
    i = 0;
    var statusMsg = '';
	while (true)
    {
        if (results[i]["can_withdraw"] == "0"){
            Log(results[i]["currency"],"|",results[i]["name"], results[i]["can_deposit"]);
            statusMsg += results[i]["currency"] + " | " + results[i]["name"] + ' ' + results[i]["can_deposit"] + '\n';
            blacklist.push(results[i]);
        }
        i++;
        if (i >= results.length){
        	break;
        }
    }
    Log(blacklist.length);
    statusMsg = blacklist.length + '\n' + statusMsg;
    LogStatus(statusMsg);
    return blacklist;

}

संबंधित

अधिक