資源の読み込みに... 荷物...

exchange.IO("解読",...)

についてexchange.IO("decode", ...)解読に使われる方法で呼び出されます

についてexchange.IO("decode", ...)文字列を返します.dataFormat数値が 1 つ以上ある場合,配列を返します.dataFormatパラメーター array、string について

exchange.IO(k,データ 形式,データ)

についてkパラメータは,機能の設定に使用されますexchange.IO()機能,そしてそれを設定"decode"この関数はデータ解読に使用される. k 本当 文字列 についてdataFormatパラメータは,解読されたデータの種類と順序を指定するために使用されます. data 形式 本当 文字列 について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)            

    var rawData = exchange.IO("decode", types, ret)
    Log("decode:", rawData)
}

逆の操作exchange.IO("encode", ...)機能:

function main() {
    // register SwapRouter02 abi
    var walletAddress = "0x398a93ca23CBdd2642a07445bCD2b8435e0a373f"
    var routerAddress = "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45"
    var abi = `[{"inputs":[{"components":[{"internalType":"bytes","name":"path","type":"bytes"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amountOut","type":"uint256"},{"internalType":"uint256","name":"amountInMaximum","type":"uint256"}],"internalType":"struct IV3SwapRouter.ExactOutputParams","name":"params","type":"tuple"}],"name":"exactOutput","outputs":[{"internalType":"uint256","name":"amountIn","type":"uint256"}],"stateMutability":"payable","type":"function"}]`
    exchange.IO("abi", routerAddress, abi)   // abi only uses the contents of the local exactOutput method, the full abi can be searched on the Internet              

    // encode path
    var fee = exchange.IO("encodePacked", "uint24", 3000)
    var tokenInAddress = "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"
    var tokenOutAddress = "0xdac17f958d2ee523a2206206994597c13d831ec7"
    var path = tokenInAddress.slice(2).toLowerCase()
    path += fee + tokenOutAddress.slice(2).toLowerCase()
    Log("path:", path)              

    var dataTuple = {
        "path" : path, 
        "recipient" : walletAddress, 
        "amountOut" : 1000, 
        "amountInMaximum" : 1, 
    }
    // encode SwapRouter02 exactOutput 
    var rawData = exchange.IO("encode", routerAddress, "exactOutput", dataTuple)
    Log("method hash:", rawData.slice(0, 8))   // 09b81346
    Log("params hash:", rawData.slice(8))              

    // decode exactOutput params
    var decodeRaw = exchange.IO("decode", "tuple(path bytes,recipient address,amountOut uint256,amountInMaximum uint256)", rawData.slice(8))
    Log("decodeRaw:", decodeRaw)
}

この例では,まずencodePacked操作についてpathパラメータ処理exactOutput後で暗号化される必要がある方法呼び出しが必要です.path設定されたパラメータです.encodeについてexactOutputルーティング契約の方法,タイプパラメータが1つだけtuple方法名exactOutputこのコードは:0x09b81346,そして,exchange.IO("decode", ...)解読する方法decodeRaw変数と一致するdataTuple.

データ処理については,exchange.IO()暗号化だけでなく解読もサポートします

交換.IO (("エンコードパック",...) 交換する.IO (("キー",...)