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

समर्थन कोड

कार्यexchange.IOसमाहित करता हैencodeविधि, जो फ़ंक्शन कॉल एन्कोडिंग को वापस कर सकता हैhexस्ट्रिंग प्रारूप. आप सार्वजनिक रूप से उपलब्ध प्लेटफार्मों का संदर्भ ले सकते हैंUniswap V3 ट्रेडिंग क्लास लाइब्रेरी टेम्पलेटविशिष्ट उपयोग के लिए। एन्कोडिंग की कॉलunwrapWETH9विधि का प्रयोग यहाँ उदाहरण के रूप में किया जाता हैः

function main() {
    // Main network address of ContractV3SwapRouterV2: 0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45
    // To call the unwrapWETH9 method, you need to register the ABI first, omit the registration here.
    // "owner" represents the wallet address, it needs to fill in the specific, 1 represents the number of unwrapping, unwrap a WETH into ETH
    var data = exchange.IO("encode", "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", "unwrapWETH9(uint256,address)", 1, "owner")
    Log(data)
}

जब कॉलexchange.IO("encode",...)फ़ंक्शन, यदि दूसरा पैरामीटर (स्ट्रिंग प्रकार) के साथ शुरू होता है0x, इसका अर्थ है कोडित (encode) स्मार्ट कॉन्ट्रैक्ट। यदि यह के साथ शुरू नहीं होता है0x, इसका उपयोग निर्दिष्ट प्रकार क्रम को कोड करने के लिए किया जाता है।abi.encodeमेंsolidityनिम्नलिखित उदाहरण देखें।

function main() {
    var x = 10 
    var address = "0x02a5fBb259d20A3Ad2Fdf9CCADeF86F6C1c1Ccc9"
    var str = "Hello World"
    var array = [1, 2, 3]
    var ret = exchange.IO("encode", "uint256,address,string,uint256[]", x, address, str, array)   // uint i.e. uint256 , the type length needs to be specified on FMZ
    Log("ret:", ret)
    /*
    000000000000000000000000000000000000000000000000000000000000000a    // x
    00000000000000000000000002a5fbb259d20a3ad2fdf9ccadef86f6c1c1ccc9    // address
    0000000000000000000000000000000000000000000000000000000000000080    // offset of str
    00000000000000000000000000000000000000000000000000000000000000c0    // offset of array
    000000000000000000000000000000000000000000000000000000000000000b    // the length of str
    48656c6c6f20576f726c64000000000000000000000000000000000000000000    // str data
    0000000000000000000000000000000000000000000000000000000000000003    // the length of the array
    0000000000000000000000000000000000000000000000000000000000000001    // array the first data
    0000000000000000000000000000000000000000000000000000000000000002    // array the second data
    0000000000000000000000000000000000000000000000000000000000000003    // array the third data
    */
}

ट्यूपल्स या ट्यूपल्स युक्त प्रकारों के अनुक्रमिक एन्कोडिंग का समर्थन करें:

function main() {
    var types = "tuple(a uint256,b uint8,c address),bytes"
    var ret = exchange.IO("encode", types, {
        a: 30,
        b: 20,
        c: "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"
    }, "0011")
    Log("encode: ", ret)
}

इस प्रकार के आदेश में निम्नलिखित शामिल हैंtupleऔरbytes, तो दो मापदंडों में पारित किया जाना चाहिए जब कॉलexchange.IOतकencode:

  • प्रकार टपल के अनुरूप चर:
    {
        a: 30,
        b: 20,
        c: "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"
    }
    
    दिए गए मापदंडों को भी संरचना और प्रकार के अनुरूप होना चाहिएtuple, के रूप में परिभाषितtypesपैरामीटर:tuple(a uint256, b uint8, c address).
  • प्रकार बाइट्स के अनुरूप चर:
    "0011"
    

सरणी या सरणी युक्त प्रकारों के अनुक्रमिक एन्कोडिंग के लिए समर्थन:

function main() {
    var path = ["0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "0xdac17f958d2ee523a2206206994597c13d831ec7"]   // ETH address, USDT address
    var ret = exchange.IO("encode", "address[]", path)
    Log("encode: ", ret)
}
एथेरियम आरपीसी कॉल करने की विधि encodePacked के लिए समर्थन