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

exchange.IO("एपीआई",...)

..exchange.IO("api", ...)फ़ंक्शन को उस तरह से बुलाया जाता है जिसका उपयोग स्मार्ट कॉन्ट्रैक्ट के तरीकों को बुलाने के लिए किया जाता है।

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

exchange.IO(k, पता, विधि)exchange.IO(k, पता, विधि,... args)exchange.IO(k, पता, विधि, मूल्य,... args)

..kपैरामीटर का उपयोग फंक्शन सेट करने के लिए किया जाता हैexchange.IO()फंक्शन, पर सेट"api"इंगित करता है कि फ़ंक्शन का उपयोग कॉल अनुरोध का विस्तार करने के लिए किया जाता है. क सच स्ट्रिंग दaddressपैरामीटर का उपयोग स्मार्ट कॉन्ट्रैक्ट के पते को निर्दिष्ट करने के लिए किया जाता है। पता सच स्ट्रिंग दmethodपैरामीटर का उपयोग स्मार्ट कॉन्ट्रैक्ट की विधि को निर्दिष्ट करने के लिए किया जाता है। विधि सच स्ट्रिंग दvalueपैरामीटर का उपयोग ईटीएच की मात्रा को भेजने के लिए किया जाता है।stateMutabilityनिष्पादित करने के लिए स्मार्ट अनुबंध विधि की विशेषता हैpayable, फिरvalueपैरामीटर पारित करने की जरूरत है."stateMutability": "payable"एट्रिब्यूट को एबीआई से देखा जा सकता है।exchange.IO()समारोह के आधार पर आवश्यक पैरामीटर निर्धारित करेगाstateMutabilityएबीआई में विशेषता है कि पंजीकृत किया गया है.stateMutabilityविशेषता हैnonpayable, फिरvalueपैरामीटर को पास करने की आवश्यकता नहीं है। मूल्य झूठी संख्या, स्ट्रिंग दargपैरामीटर का उपयोग स्मार्ट अनुबंध की विधि के मापदंडों को निर्दिष्ट करने के लिए किया जाता है।argपैरामीटर, और प्रकार और संख्याargपैरामीटर स्मार्ट अनुबंध की विधि पर निर्भर करता है बुलाया जा रहा है। आर्ग झूठी स्ट्रिंग, संख्या, bool, और सिस्टम द्वारा समर्थित अन्य सभी प्रकार

function main(){
    var tokenAddress = "0x111111111117dC0aa78b770fA6A738034120C302"    // The contract address of the token, the token is 1INCH in the example
    Log(exchange.IO("api", tokenAddress, "decimals"))                  // Query, print 1INCH tokens with precision index of 18
}

..decimalsविधि हैconstantईआरसी20 की ऐसी विधि जो गैस की खपत नहीं करती है और यह टोकन के सटीक डेटा को क्वेरी कर सकती है।decimalsविधि के पास कोई पैरामीटर नहीं है। रिटर्न मानः टोकन के सटीक डेटा।

function main(){
    // The contract address of the token, in the example the token is 1INCH
    var tokenAddress = "0x111111111117dC0aa78b770fA6A738034120C302"                          

    // For example, the query yields 1000000000000000000, divided by the precision unit of the token 1e18, the wallet to which the current exchange object is bound has authorized 1 1INCH to the spender address
    Log(exchange.IO("api", tokenAddress, "allowance", "owner", "spender"))   
}

..allowanceविधि हैconstantERC20 की एक विधि है कि गैस की खपत उत्पन्न नहीं करता है और एक निश्चित अनुबंध पते के लिए एक टोकन की अधिकृत राशि की क्वेरी कर सकते हैं।allowanceविधि 2 मापदंड लेता है, पहला वॉलेट पता है और दूसरा अधिकृत पता है। रिटर्न मानः टोकन की प्राधिकरण राशि।
owner: वॉलेट का पता, उदाहरण स्ट्रिंग owner से बदल दिया जाता है, वास्तविक उपयोग के लिए विशिष्ट पता भरने की जरूरत है।spender: अनुमोदित अनुबंध का पता, उदाहरण स्ट्रिंग spender द्वारा प्रतिस्थापित किया जाता है, वास्तविक उपयोग के लिए विशिष्ट पते को भरने की आवश्यकता होती है, उदाहरण के लिए यह हो सकता हैUniswap V3 router v1 address.

function main(){
    // The contract address of the token, the token is 1INCH in the example
    var tokenAddress = "0x111111111117dC0aa78b770fA6A738034120C302"                 

    // The hexadecimal string of the authorization amount: 0xde0b6b3a7640000 , the corresponding decimal string: 1e18 , 1e18 divided by the precision unit of the token, i.e. 1 token amount, so this refers to the authorization of one token
    Log(exchange.IO("api", tokenAddress, "approve", "spender", "0xde0b6b3a7640000"))  
}```
The ```approve``` method is a non-```constant``` method of ERC20, which generates gas consumption and is used to authorize the operation amount of a token to a contract address. The ```approve``` method takes 2 parameters, the first one is the address to be authorized and the second one is the amount to be authorized. Return value: txid.  
```spender```: the address of the authorized contract, the example is replaced by the string "spender", the actual use needs to fill in the specific address, for example, it can be ```Uniswap V3 router v1``` address. ```0xde0b6b3a7640000```: the number of authorizations, here is the hexadecimal string, the corresponding decimal value is 1e18, divided by the token precision unit in the example (i.e. 1e18). The result is that 1 token is authorized. The third parameter of the ```exchange.IO()``` function is passed to the method name ```approve```, which can also be written in the form of methodId, such as "0x571ac8b0". It is also possible to write the full standard method name, for example: "approve(address,uint256)".
```javascript
function main() {
    var ContractV3SwapRouterV2 = "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45"
    var tokenInName = "ETH"
    var amountIn = 0.01
    var options = {gasPrice: 5000000000, gasLimit: 21000, nonce: 100}   // This is an example, depending on the actual scene settings
    var data = ""                                                       // The encoded data, here is the empty string, depending on the actual scene settings
    var tx = exchange.IO("api", ContractV3SwapRouterV2, "multicall(uint256,bytes[])", (tokenInName == 'ETH' ? amountIn : 0), (new Date().getTime() / 1000) + 3600, data, options || {})
}

..multicallविधि एक गैर-constantविधिUniswap V3जो गैस की खपत उत्पन्न करता है और टोकन को कई तरीकों से रिडीम करने के लिए उपयोग किया जाता है। दmulticallविधि के पास पैरामीटर पास करने के विभिन्न तरीके हो सकते हैं, आप एबीआई की जांच कर सकते हैं जिसमें विधि विशेष रूप से है, आपको विधि को कॉल करने से पहले एबीआई को पंजीकृत करने की आवश्यकता है। रिटर्न मानः txid.

विशिष्ट उदाहरणों के लिएmulticallविधि कॉल, आप सार्वजनिक रूप से उपलब्ध प्लेटफार्मों का संदर्भ ले सकते हैंUniswap V3 व्यापार टेम्पलेट

कुछ विवरण यहाँ छद्म-कोड का उपयोग करके वर्णित हैं:


exchange.IO("api", ContractV3SwapRouterV2, "multicall(uint256,bytes[])", value, deadline, data)

ContractV3SwapRouterV2: Uniswap V3 के राउटर v2 का पता।value: स्थानांतरित करने के लिए ईटीएच की राशि, यदि एक्सचेंज ऑपरेशन का टोकन ईटीएच नहीं है तो 0 पर सेट की जाती है।deadline: deadlineके पैरामीटर हैmulticallविधि, जिसे (नई दिनांक))) / 1000) + 3600 पर सेट किया जा सकता है, यह दर्शाता है कि यह एक घंटे के लिए मान्य है।data: dataके पैरामीटर हैmulticallविधि, पैकिंग ऑपरेशन के आंकड़े जो किया जाना है।

के समानexchange.IO("api", "eth", "send", "toAddress", toAmount),gasLimit/gasPrice/nonceविधि कॉल की सेटिंग को कॉल करते समय निर्दिष्ट किया जा सकताmulticallविधि। फिर, हम वर्णन करने के लिए छद्म कोड का उपयोग करते हैंः


exchange.IO("api", ContractV3SwapRouterV2, "multicall(uint256,bytes[])", value, deadline, data, {gasPrice: 123456, gasLimit: 21000})

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

विनिमय.IO (("कुंजी",...) विनिमय.IO (("पता")