संसाधन लोड हो रहा है... लोड करना...

exchange.IO("api", eth,...)

कॉल करने की विधिexchange.IO("api", "eth", ...)function का उपयोग Ethereum RPC विधि को कॉल करने के लिए किया जाता है.

..exchange.IO("api", "eth", ...)फ़ंक्शन RPC विधि का लौटाया गया मान लौटाता है। string, number, bool, object, array, null और सिस्टम द्वारा समर्थित अन्य सभी प्रकार

exchange.IO(k, blockChain, rpcMethod)exchange.IO(k, blockChain, rpcMethod,...args)

..kपैरामीटर का उपयोग फंक्शन सेट करने के लिए किया जाता हैexchange.IO()फंक्शन, पर सेट"api"इंगित करता है कि फ़ंक्शन का उपयोग कॉल अनुरोध का विस्तार करने के लिए किया जाता है. क सच स्ट्रिंग दblockChainपैरामीटर का उपयोग फंक्शन सेट करने के लिए किया जाता हैexchange.IO()फंक्शन, पर सेट"eth"यह दर्शाता है कि फ़ंक्शन का उपयोग एथेरियम नेटवर्क पर आरपीसी विधि कॉल के लिए किया जाता है। ब्लॉकचेन सच स्ट्रिंग दrpcMethodपैरामीटर RPC विधि सेट करने के लिए प्रयोग किया जाता है द्वारा बुलाया जाना हैexchange.IO()कार्य। rpc विधि सच स्ट्रिंग दargपैरामीटर का उपयोग आरपीसी विधि के मापदंडों को निर्दिष्ट करने के लिए किया जाता है। एक से अधिक हो सकते हैंargप्रकार और संख्याargमापदंडों RPC विधि द्वारा निर्दिष्ट पर निर्भर करते हैंrpcMethodपैरामीटर आर्ग झूठी string, number, bool, object, array, function, null, और अन्य सभी प्रकार सिस्टम द्वारा समर्थित

function main() {
    // "owner" needs to be replaced with the specific wallet address
    // Parameter labels for the "latest" string position: 'latest', 'earliest' or 'pending', please refrer to https://eth.wiki/json-rpc/API#the-default-block-parameter
    // The return value ethBalance is a hexadecimal string: 0x9b19ce56113070
    var ethBalance = exchange.IO("api", "eth", "eth_getBalance", "owner", "latest")              

    // ETH has a precision unit of 1e18
    var ethDecimal = 18              

    // Because of the JavaScript language precision, it is necessary to use the system underlying package function BigInt, BigDecimal to process
    // Convert ethBalance to readable amount, 0x9b19ce56113070 to 0.043656995388076145
    Log(Number((BigDecimal(BigInt(ethBalance))/BigDecimal(Math.pow(10, ethDecimal))).toString()))
}

अपने बटुए में ईटीएच की शेष राशि की जाँच करेंः

function mian() {
    // ETH has a precision unit of 1e18
    var ethDecimal = 18  

    // Number of transfers, readable amount e.g. 0.01 ETH
    var sendAmount = 0.01  

    // Due to the JavaScript language precision, it is necessary to use the system underlying encapsulated functions BigInt, BigDecimal to process, and to convert the readable amount to the data processed on the chain
    var toAmount = (BigDecimal(sendAmount)*BigDecimal(Math.pow(10, ethDecimal))).toFixed(0)
    
    // "toAddress" is the address of the recipient's ETH wallet at the time of the transfer, which needs to be filled in specifically, and toAmount is the number of transfers
    exchange.IO("api", "eth", "send", "toAddress", toAmount)
}

ईटीएच हस्तांतरण के लिए, आप सेट कर सकते हैं{gasPrice: 11, gasLimit: 111, nonce: 111}पैरामीटर, जो कि अंतिम पैरामीटर पर सेट किया जाता हैexchange.IO()आप अपनी विशिष्ट आवश्यकताओं के अनुसार कार्य कर सकते हैं।nonceऔर सिस्टम डिफ़ॉल्ट का उपयोग करें, या छोड़ देंgasLimit/gasPrice/nonceअनसेट करें और सभी के लिए सिस्टम डिफ़ॉल्ट मान का उपयोग करें.

function toAmount(s, decimals) {
    return Number((BigDecimal(BigInt(s))/BigDecimal(Math.pow(10, decimals))).toString())
}

function main() {
    var gasPrice = exchange.IO("api", "eth", "eth_gasPrice")
    Log("gasPrice:", toAmount(gasPrice, 0))   // 5000000000 , in wei (5 gwei)
}

क्वेरीgasPrice:

function toAmount(s, decimals) {
    // The toAmount function can convert hex-encoded values to decimal values
    return Number((BigDecimal(BigInt(s))/BigDecimal(Math.pow(10, decimals))).toString())
}                

function main() {
    // Coding approve (authorization) method calls
    var data = exchange.IO("encode", "0x111111111117dC0aa78b770fA6A738034120C302", "approve", "0xe592427a0aece92de3edee1f18e0157c05861564", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")
    Log("data:", data)
    var gasPrice = exchange.IO("api", "eth", "eth_gasPrice")
    Log("gasPrice:", toAmount(gasPrice, 0))
    var obj = {
        "from" : "0x0xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",   // walletAddress
        "to"  : "0x111111111117dC0aa78b770fA6A738034120C302",
        "gasPrice" : gasPrice,
        "value" : "0x0",
        "data" : "0x" + data,
    }
    
    var gasLimit = exchange.IO("api", "eth", "eth_estimateGas", obj)
    Log("gasLimit:", toAmount(gasLimit, 0))
    Log("gas fee", toAmount(gasLimit, 0) * toAmount(gasPrice, 0) / 1e18)
}

क्वेरीeth_estimateGas:

के दूसरे पैरामीटरexchange.IO()कार्य के साथ"eth"सीधे एथेरियम नोड सर्वर के लिए उपलब्ध आरपीसी विधियों को कॉल कर सकते हैं.

{@मज़ा BigDecimal}, {@मज़ा BigInt}

विनिमय.IO (("अबी",...) exchange.IO (("कोड",...)