curl --request GET \
--url https://api.jiffyscan.xyz/v0/getUserOp \
--header 'x-api-key: <api-key>'import requests
url = "https://api.jiffyscan.xyz/v0/getUserOp"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.jiffyscan.xyz/v0/getUserOp', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.jiffyscan.xyz/v0/getUserOp",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.jiffyscan.xyz/v0/getUserOp"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.jiffyscan.xyz/v0/getUserOp")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.jiffyscan.xyz/v0/getUserOp")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"userOps": [
{
"verificationGasLimit": "195000",
"userOpHash": "0x2ed4bf0ad7149d160ce4d3fe430f91267dbb1eb7fe7f9e41105a69b19ec29066",
"transactionHash": "0x4047e049629e049d607529953484e85bd07b005fe271703caa6898f90f7b9883",
"target": "0xb555edf5dcf85f42ceef1f3630a52a108e55a654",
"accountTarget": {
"factory": null
},
"success": true,
"signature": "0xdc9169c85758cd07ccaa185c6158898ba87be5b8df053dd378e830c86fbe3b0d34b500d130b49b424071df2766d1fa179cbbd08de44d3d31797eb6d607c577461c",
"sender": "0xc9e54e6a9f8194a265175528022d4bc72f1343a1",
"accountSender": {
"factory": "0xb73eb505abc30d0e7e15b73a492863235b3f4309"
},
"revertReason": null,
"preVerificationGas": "472406748",
"paymasterAndData": "0x769f68e4ba8f53f3092eef34a42a811ab6365b057f5c764cbc14f9669b88837ca1490cca17c316070000006477064400000000000000000000000000000000000000000000000000000000000186a0000000000000000000000000000000000000000000000000000000006f822dd413fe9950b7aeb44807345f27db7d4fb73bbb389f7cfbc4274029d40e92109eb438f5a417c3e13ccde4c25bd40cdc55b3ec97977b653c5c5ff661728fa3f6e2ce1b",
"paymaster": "0x769f68e4ba8f53f3092eef34a42a811ab6365b05",
"nonce": "7",
"network": "optimism",
"maxPriorityFeePerGas": "1100000",
"maxFeePerGas": "1100000",
"input": "0x1fad948c00000000000000000000000000000000000000000000000000000000000000400000000000000000000000003cfdc212769c890907bce93d3d8c2c53de6a7a8900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c9e54e6a9f8194a265175528022d4bc72f1343a10000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000052a38000000000000000000000000000000000000000000000000000000000002f9b8000000000000000000000000000000000000000000000000000000001c285adc000000000000000000000000000000000000000000000000000000000010c8e0000000000000000000000000000000000000000000000000000000000010c8e000000000000000000000000000000000000000000000000000000000000006800000000000000000000000000000000000000000000000000000000000000760000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c4f34308ef000000000000000000000000b555edf5dcf85f42ceef1f3630a52a108e55a654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000769f68e4ba8f53f3092eef34a42a811ab6365b050000000000000000000000007f5c764cbc14f9669b88837ca1490cca17c3160700000000000000000000000000000000000000000000000000000000001135b100000000000000000000000000000000000000000000000000000000000003a43593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000647706ad00000000000000000000000000000000000000000000000000000000000000020a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000001600000000000000000000000007f5c764cbc14f9669b88837ca1490cca17c31607000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000649e92910000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b555edf5dcf85f42ceef1f3630a52a108e55a6540000000000000000000000000000000000000000000000000000000064770c9900000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000415a235fe29ff04f8a3028b4e3f53e60254bd914b2651f008c492c993721f1c1b313a2f71045e891fd4fd2a7c682e8f63113258e4eda5454b5c03f3e9aed1811fc1b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f3ee600000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b7f5c764cbc14f9669b88837ca1490cca17c3160700006494b008aa00579c1307b0ef2c499ad98a8ce58e58000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b0769f68e4ba8f53f3092eef34a42a811ab6365b057f5c764cbc14f9669b88837ca1490cca17c316070000006477064400000000000000000000000000000000000000000000000000000000000186a0000000000000000000000000000000000000000000000000000000006f822dd413fe9950b7aeb44807345f27db7d4fb73bbb389f7cfbc4274029d40e92109eb438f5a417c3e13ccde4c25bd40cdc55b3ec97977b653c5c5ff661728fa3f6e2ce1b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041dc9169c85758cd07ccaa185c6158898ba87be5b8df053dd378e830c86fbe3b0d34b500d130b49b424071df2766d1fa179cbbd08de44d3d31797eb6d607c577461c00000000000000000000000000000000000000000000000000000000000000",
"gasPrice": "1000000",
"id": "0x2ed4bf0ad7149d160ce4d3fe430f91267dbb1eb7fe7f9e41105a69b19ec29066-1",
"gasLimit": "659016",
"factory": "0x",
"callGasLimit": "338488",
"callData": "0x3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000647706ad00000000000000000000000000000000000000000000000000000000000000020a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000001600000000000000000000000007f5c764cbc14f9669b88837ca1490cca17c31607000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000649e92910000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b555edf5dcf85f42ceef1f3630a52a108e55a6540000000000000000000000000000000000000000000000000000000064770c9900000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000415a235fe29ff04f8a3028b4e3f53e60254bd914b2651f008c492c993721f1c1b313a2f71045e891fd4fd2a7c682e8f63113258e4eda5454b5c03f3e9aed1811fc1b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f3ee600000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b7f5c764cbc14f9669b88837ca1490cca17c3160700006494b008aa00579c1307b0ef2c499ad98a8ce58e58000000000000000000000000000000000000000000",
"blockTime": "1685521823",
"blockNumber": "103189837",
"beneficiary": "0x3cfdc212769c890907bce93d3d8c2c53de6a7a89",
"baseFeePerGas": null,
"actualGasUsed": "472681141",
"actualGasCost": "519949255100000",
"entryPoint": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789",
"value": "0"
}
]
}Get UserOp
Detailed information about a user operation
curl --request GET \
--url https://api.jiffyscan.xyz/v0/getUserOp \
--header 'x-api-key: <api-key>'import requests
url = "https://api.jiffyscan.xyz/v0/getUserOp"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.jiffyscan.xyz/v0/getUserOp', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.jiffyscan.xyz/v0/getUserOp",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.jiffyscan.xyz/v0/getUserOp"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.jiffyscan.xyz/v0/getUserOp")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.jiffyscan.xyz/v0/getUserOp")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"userOps": [
{
"verificationGasLimit": "195000",
"userOpHash": "0x2ed4bf0ad7149d160ce4d3fe430f91267dbb1eb7fe7f9e41105a69b19ec29066",
"transactionHash": "0x4047e049629e049d607529953484e85bd07b005fe271703caa6898f90f7b9883",
"target": "0xb555edf5dcf85f42ceef1f3630a52a108e55a654",
"accountTarget": {
"factory": null
},
"success": true,
"signature": "0xdc9169c85758cd07ccaa185c6158898ba87be5b8df053dd378e830c86fbe3b0d34b500d130b49b424071df2766d1fa179cbbd08de44d3d31797eb6d607c577461c",
"sender": "0xc9e54e6a9f8194a265175528022d4bc72f1343a1",
"accountSender": {
"factory": "0xb73eb505abc30d0e7e15b73a492863235b3f4309"
},
"revertReason": null,
"preVerificationGas": "472406748",
"paymasterAndData": "0x769f68e4ba8f53f3092eef34a42a811ab6365b057f5c764cbc14f9669b88837ca1490cca17c316070000006477064400000000000000000000000000000000000000000000000000000000000186a0000000000000000000000000000000000000000000000000000000006f822dd413fe9950b7aeb44807345f27db7d4fb73bbb389f7cfbc4274029d40e92109eb438f5a417c3e13ccde4c25bd40cdc55b3ec97977b653c5c5ff661728fa3f6e2ce1b",
"paymaster": "0x769f68e4ba8f53f3092eef34a42a811ab6365b05",
"nonce": "7",
"network": "optimism",
"maxPriorityFeePerGas": "1100000",
"maxFeePerGas": "1100000",
"input": "0x1fad948c00000000000000000000000000000000000000000000000000000000000000400000000000000000000000003cfdc212769c890907bce93d3d8c2c53de6a7a8900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c9e54e6a9f8194a265175528022d4bc72f1343a10000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000052a38000000000000000000000000000000000000000000000000000000000002f9b8000000000000000000000000000000000000000000000000000000001c285adc000000000000000000000000000000000000000000000000000000000010c8e0000000000000000000000000000000000000000000000000000000000010c8e000000000000000000000000000000000000000000000000000000000000006800000000000000000000000000000000000000000000000000000000000000760000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c4f34308ef000000000000000000000000b555edf5dcf85f42ceef1f3630a52a108e55a654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000769f68e4ba8f53f3092eef34a42a811ab6365b050000000000000000000000007f5c764cbc14f9669b88837ca1490cca17c3160700000000000000000000000000000000000000000000000000000000001135b100000000000000000000000000000000000000000000000000000000000003a43593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000647706ad00000000000000000000000000000000000000000000000000000000000000020a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000001600000000000000000000000007f5c764cbc14f9669b88837ca1490cca17c31607000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000649e92910000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b555edf5dcf85f42ceef1f3630a52a108e55a6540000000000000000000000000000000000000000000000000000000064770c9900000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000415a235fe29ff04f8a3028b4e3f53e60254bd914b2651f008c492c993721f1c1b313a2f71045e891fd4fd2a7c682e8f63113258e4eda5454b5c03f3e9aed1811fc1b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f3ee600000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b7f5c764cbc14f9669b88837ca1490cca17c3160700006494b008aa00579c1307b0ef2c499ad98a8ce58e58000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b0769f68e4ba8f53f3092eef34a42a811ab6365b057f5c764cbc14f9669b88837ca1490cca17c316070000006477064400000000000000000000000000000000000000000000000000000000000186a0000000000000000000000000000000000000000000000000000000006f822dd413fe9950b7aeb44807345f27db7d4fb73bbb389f7cfbc4274029d40e92109eb438f5a417c3e13ccde4c25bd40cdc55b3ec97977b653c5c5ff661728fa3f6e2ce1b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041dc9169c85758cd07ccaa185c6158898ba87be5b8df053dd378e830c86fbe3b0d34b500d130b49b424071df2766d1fa179cbbd08de44d3d31797eb6d607c577461c00000000000000000000000000000000000000000000000000000000000000",
"gasPrice": "1000000",
"id": "0x2ed4bf0ad7149d160ce4d3fe430f91267dbb1eb7fe7f9e41105a69b19ec29066-1",
"gasLimit": "659016",
"factory": "0x",
"callGasLimit": "338488",
"callData": "0x3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000647706ad00000000000000000000000000000000000000000000000000000000000000020a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000001600000000000000000000000007f5c764cbc14f9669b88837ca1490cca17c31607000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000649e92910000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b555edf5dcf85f42ceef1f3630a52a108e55a6540000000000000000000000000000000000000000000000000000000064770c9900000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000415a235fe29ff04f8a3028b4e3f53e60254bd914b2651f008c492c993721f1c1b313a2f71045e891fd4fd2a7c682e8f63113258e4eda5454b5c03f3e9aed1811fc1b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f3ee600000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b7f5c764cbc14f9669b88837ca1490cca17c3160700006494b008aa00579c1307b0ef2c499ad98a8ce58e58000000000000000000000000000000000000000000",
"blockTime": "1685521823",
"blockNumber": "103189837",
"beneficiary": "0x3cfdc212769c890907bce93d3d8c2c53de6a7a89",
"baseFeePerGas": null,
"actualGasUsed": "472681141",
"actualGasCost": "519949255100000",
"entryPoint": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789",
"value": "0"
}
]
}Authorizations
Response
Success
Hash of the user operation.
Hash of the transaction that contains the user operation.
Address of the user that sent the operation.
The target of the user operation
Object containing meta data of the sender's account
Show child attributes
Show child attributes
Object containing meta data of the target's account
Show child attributes
Show child attributes
The paymaster of the user operation
Nonce of the user operation
Actual gas cost of the user operation
Actual gas used of the user operation
Whether the user operation was successful
Hexadecimal reason as to why the user operation reverted
Timestamp of the block in which the user operation was mined
Block number of the block in which the user operation was mined
Network on which the user operation was mined
Input for the transaction that contains the user operation
callData in Hex that was sent to the target of the user operation
Address of the beneficiary of the user operation
Factory of the user operation
Value sent to the target of the user op
Gas limit used for the verification of the user operation
Gas used for the pre-verification of the user operation
Max fee per gas of the user operation
Max priority fee per gas of the user operation
Paymaster and data of the user operation
Signature of the user operation
Internal ID of the user operation, can be ignored.
{
"userOps": [
{
"verificationGasLimit": "195000",
"userOpHash": "0x2ed4bf0ad7149d160ce4d3fe430f91267dbb1eb7fe7f9e41105a69b19ec29066",
"transactionHash": "0x4047e049629e049d607529953484e85bd07b005fe271703caa6898f90f7b9883",
"target": "0xb555edf5dcf85f42ceef1f3630a52a108e55a654",
"accountTarget": { "factory": null },
"success": true,
"signature": "0xdc9169c85758cd07ccaa185c6158898ba87be5b8df053dd378e830c86fbe3b0d34b500d130b49b424071df2766d1fa179cbbd08de44d3d31797eb6d607c577461c",
"sender": "0xc9e54e6a9f8194a265175528022d4bc72f1343a1",
"accountSender": {
"factory": "0xb73eb505abc30d0e7e15b73a492863235b3f4309"
},
"revertReason": null,
"preVerificationGas": "472406748",
"paymasterAndData": "0x769f68e4ba8f53f3092eef34a42a811ab6365b057f5c764cbc14f9669b88837ca1490cca17c316070000006477064400000000000000000000000000000000000000000000000000000000000186a0000000000000000000000000000000000000000000000000000000006f822dd413fe9950b7aeb44807345f27db7d4fb73bbb389f7cfbc4274029d40e92109eb438f5a417c3e13ccde4c25bd40cdc55b3ec97977b653c5c5ff661728fa3f6e2ce1b",
"paymaster": "0x769f68e4ba8f53f3092eef34a42a811ab6365b05",
"nonce": "7",
"network": "optimism",
"maxPriorityFeePerGas": "1100000",
"maxFeePerGas": "1100000",
"input": "0x1fad948c00000000000000000000000000000000000000000000000000000000000000400000000000000000000000003cfdc212769c890907bce93d3d8c2c53de6a7a8900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c9e54e6a9f8194a265175528022d4bc72f1343a10000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000052a38000000000000000000000000000000000000000000000000000000000002f9b8000000000000000000000000000000000000000000000000000000001c285adc000000000000000000000000000000000000000000000000000000000010c8e0000000000000000000000000000000000000000000000000000000000010c8e000000000000000000000000000000000000000000000000000000000000006800000000000000000000000000000000000000000000000000000000000000760000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c4f34308ef000000000000000000000000b555edf5dcf85f42ceef1f3630a52a108e55a654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000769f68e4ba8f53f3092eef34a42a811ab6365b050000000000000000000000007f5c764cbc14f9669b88837ca1490cca17c3160700000000000000000000000000000000000000000000000000000000001135b100000000000000000000000000000000000000000000000000000000000003a43593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000647706ad00000000000000000000000000000000000000000000000000000000000000020a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000001600000000000000000000000007f5c764cbc14f9669b88837ca1490cca17c31607000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000649e92910000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b555edf5dcf85f42ceef1f3630a52a108e55a6540000000000000000000000000000000000000000000000000000000064770c9900000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000415a235fe29ff04f8a3028b4e3f53e60254bd914b2651f008c492c993721f1c1b313a2f71045e891fd4fd2a7c682e8f63113258e4eda5454b5c03f3e9aed1811fc1b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f3ee600000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b7f5c764cbc14f9669b88837ca1490cca17c3160700006494b008aa00579c1307b0ef2c499ad98a8ce58e58000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b0769f68e4ba8f53f3092eef34a42a811ab6365b057f5c764cbc14f9669b88837ca1490cca17c316070000006477064400000000000000000000000000000000000000000000000000000000000186a0000000000000000000000000000000000000000000000000000000006f822dd413fe9950b7aeb44807345f27db7d4fb73bbb389f7cfbc4274029d40e92109eb438f5a417c3e13ccde4c25bd40cdc55b3ec97977b653c5c5ff661728fa3f6e2ce1b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041dc9169c85758cd07ccaa185c6158898ba87be5b8df053dd378e830c86fbe3b0d34b500d130b49b424071df2766d1fa179cbbd08de44d3d31797eb6d607c577461c00000000000000000000000000000000000000000000000000000000000000",
"gasPrice": "1000000",
"id": "0x2ed4bf0ad7149d160ce4d3fe430f91267dbb1eb7fe7f9e41105a69b19ec29066-1",
"gasLimit": "659016",
"factory": "0x",
"callGasLimit": "338488",
"callData": "0x3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000647706ad00000000000000000000000000000000000000000000000000000000000000020a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000001600000000000000000000000007f5c764cbc14f9669b88837ca1490cca17c31607000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000649e92910000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b555edf5dcf85f42ceef1f3630a52a108e55a6540000000000000000000000000000000000000000000000000000000064770c9900000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000415a235fe29ff04f8a3028b4e3f53e60254bd914b2651f008c492c993721f1c1b313a2f71045e891fd4fd2a7c682e8f63113258e4eda5454b5c03f3e9aed1811fc1b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f3ee600000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002b7f5c764cbc14f9669b88837ca1490cca17c3160700006494b008aa00579c1307b0ef2c499ad98a8ce58e58000000000000000000000000000000000000000000",
"blockTime": "1685521823",
"blockNumber": "103189837",
"beneficiary": "0x3cfdc212769c890907bce93d3d8c2c53de6a7a89",
"baseFeePerGas": null,
"actualGasUsed": "472681141",
"actualGasCost": "519949255100000",
"entryPoint": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789",
"value": "0"
}
]
}