otterscan/cmd/otter/postman/Trace_Testing.json

7474 lines
311 KiB
JSON
Raw Normal View History

2022-10-25 01:58:24 +00:00
{
"info": {
"_postman_id": "7b2a3a4b-0c75-4b99-8e8b-4237bcbd2494",
"name": "Trace Testing",
"description": "Tests related to tracing",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "trace_call",
"item": [
{
"name": "trace_call - all",
"event": [
{
"listen": "test",
"script": {
"id": "cad5e0e8-19aa-4c85-b322-fe4e9e40f0f7",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": {",
" \"output\": \"0x\",",
" \"stateDiff\": {",
" \"0x407d73d8a49eeb85d32cf465507dd71d507100c1\": {",
" \"balance\": {",
" \"+\": \"0x0\"",
" },",
" \"code\": {",
" \"+\": \"0x\"",
" },",
" \"nonce\": {",
" \"+\": \"0x1\"",
" },",
" \"storage\": {}",
" },",
" \"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\": {",
" \"balance\": {",
" \"+\": \"0x186a0\"",
" },",
" \"code\": {",
" \"+\": \"0x\"",
" },",
" \"nonce\": {",
" \"+\": \"0x0\"",
" },",
" \"storage\": {}",
" }",
" },",
" \"trace\": [",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x407d73d8a49eeb85d32cf465507dd71d507100c1\",",
" \"gas\": \"0x1dcd12f8\",",
" \"input\": \"0x\",",
" \"to\": \"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\",",
" \"value\": \"0x186a0\"",
" },",
" \"result\": {",
" \"gasUsed\": \"0x0\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [],",
" \"type\": \"call\"",
" }",
" ],",
" \"vmTrace\": {",
" \"code\": \"0x\",",
" \"ops\": []",
" }",
" },",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"jsonrpc\":\"2.0\",\n \"method\":\"trace_call\",\n \"params\":[\n {\n \"from\":\"0x407d73d8a49eeb85d32cf465507dd71d507100c1\",\n \"to\":\"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\",\n \"value\":\"0x186a0\"\n },\n [\"trace\",\"vmTrace\",\"stateDiff\"],\n \"0x186a0\"\n ],\n \"id\": \"1\"\n}\n",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_call - none",
"event": [
{
"listen": "test",
"script": {
"id": "b5c127ba-f385-4ae5-a779-038281427a49",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": {",
" \"output\": \"0x\",",
" \"stateDiff\": null,",
" \"trace\": [],",
" \"vmTrace\": null",
" },",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"jsonrpc\":\"2.0\",\n \"method\":\"trace_call\",\n \"params\":[\n {\n \"from\":\"0x407d73d8a49eeb85d32cf465507dd71d507100c1\",\n \"to\":\"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\",\n \"value\":\"0x186a0\"\n },\n [],\n \"0x186a0\"\n ],\n \"id\": \"1\"\n}\n",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_call - trace only",
"event": [
{
"listen": "test",
"script": {
"id": "719796d3-02f9-499d-b22d-c7f42f9fa80a",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": {",
" \"output\": \"0x\",",
" \"stateDiff\": null,",
" \"trace\": [",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x407d73d8a49eeb85d32cf465507dd71d507100c1\",",
" \"gas\": \"0x1dcd12f8\",",
" \"input\": \"0x\",",
" \"to\": \"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\",",
" \"value\": \"0x186a0\"",
" },",
" \"result\": {",
" \"gasUsed\": \"0x0\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [],",
" \"type\": \"call\"",
" }",
" ],",
" \"vmTrace\": null",
" },",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"jsonrpc\":\"2.0\",\n \"method\":\"trace_call\",\n \"params\":[\n {\n \"from\":\"0x407d73d8a49eeb85d32cf465507dd71d507100c1\",\n \"to\":\"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\",\n \"value\":\"0x186a0\"\n },\n [\"trace\"],\n \"0x186a0\"\n ],\n \"id\": \"1\"\n}\n",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_call - vmTrace only",
"event": [
{
"listen": "test",
"script": {
"id": "bf873e95-ad20-42ef-b5da-71ef503f314c",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": {",
" \"output\": \"0x\",",
" \"stateDiff\": null,",
" \"trace\": [],",
" \"vmTrace\": {",
" \"code\": \"0x\",",
" \"ops\": []",
" }",
" },",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"jsonrpc\":\"2.0\",\n \"method\":\"trace_call\",\n \"params\":[\n {\n \"from\":\"0x407d73d8a49eeb85d32cf465507dd71d507100c1\",\n \"to\":\"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\",\n \"value\":\"0x186a0\"\n },\n [\"vmTrace\"],\n \"0x186a0\"\n ],\n \"id\": \"1\"\n}\n",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_call - stateDiff only",
"event": [
{
"listen": "test",
"script": {
"id": "eabf15c8-247b-4bfb-acfd-81c1851fa9d7",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": {",
" \"output\": \"0x\",",
" \"stateDiff\": {",
" \"0x407d73d8a49eeb85d32cf465507dd71d507100c1\": {",
" \"balance\": {",
" \"+\": \"0x0\"",
" },",
" \"code\": {",
" \"+\": \"0x\"",
" },",
" \"nonce\": {",
" \"+\": \"0x1\"",
" },",
" \"storage\": {}",
" },",
" \"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\": {",
" \"balance\": {",
" \"+\": \"0x186a0\"",
" },",
" \"code\": {",
" \"+\": \"0x\"",
" },",
" \"nonce\": {",
" \"+\": \"0x0\"",
" },",
" \"storage\": {}",
" }",
" },",
" \"trace\": [],",
" \"vmTrace\": null",
" },",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"jsonrpc\":\"2.0\",\n \"method\":\"trace_call\",\n \"params\":[\n {\n \"from\":\"0x407d73d8a49eeb85d32cf465507dd71d507100c1\",\n \"to\":\"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\",\n \"value\":\"0x186a0\"\n },\n [\"stateDiff\"],\n \"0x186a0\"\n ],\n \"id\": \"1\"\n}\n",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
}
],
"protocolProfileBehavior": {}
},
{
"name": "trace_callMany",
"item": [
{
"name": "trace_callMany - all",
"event": [
{
"listen": "test",
"script": {
"id": "7949387e-4c36-4942-a5a7-1759d7c43975",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": [",
" {",
" \"output\": \"0x\",",
" \"stateDiff\": {",
" \"0x407d73d8a49eeb85d32cf465507dd71d507100c1\": {",
" \"balance\": {",
" \"+\": \"0x0\"",
" },",
" \"code\": {",
" \"+\": \"0x\"",
" },",
" \"nonce\": {",
" \"+\": \"0x1\"",
" },",
" \"storage\": {}",
" },",
" \"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\": {",
" \"balance\": {",
" \"+\": \"0x186a0\"",
" },",
" \"code\": {",
" \"+\": \"0x\"",
" },",
" \"nonce\": {",
" \"+\": \"0x0\"",
" },",
" \"storage\": {}",
" }",
" },",
" \"trace\": [",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x407d73d8a49eeb85d32cf465507dd71d507100c1\",",
" \"gas\": \"0x1dcd12f8\",",
" \"input\": \"0x\",",
" \"to\": \"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\",",
" \"value\": \"0x186a0\"",
" },",
" \"result\": {",
" \"gasUsed\": \"0x0\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [],",
" \"type\": \"call\"",
" }",
" ],",
" \"vmTrace\": {",
" \"code\": \"0x\",",
" \"ops\": []",
" }",
" },",
" {",
" \"output\": \"0x\",",
" \"stateDiff\": {",
" \"0x407d73d8a49eeb85d32cf465507dd71d507100c1\": {",
" \"balance\": \"=\",",
" \"code\": \"=\",",
" \"nonce\": {",
" \"*\": {",
" \"from\": \"0x1\",",
" \"to\": \"0x2\"",
" }",
" },",
" \"storage\": {}",
" },",
" \"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\": {",
" \"balance\": {",
" \"*\": {",
" \"from\": \"0x186a0\",",
" \"to\": \"0x30d40\"",
" }",
" },",
" \"code\": \"=\",",
" \"nonce\": \"=\",",
" \"storage\": {}",
" }",
" },",
" \"trace\": [",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x407d73d8a49eeb85d32cf465507dd71d507100c1\",",
" \"gas\": \"0x1dcd12f8\",",
" \"input\": \"0x\",",
" \"to\": \"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\",",
" \"value\": \"0x186a0\"",
" },",
" \"result\": {",
" \"gasUsed\": \"0x0\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [],",
" \"type\": \"call\"",
" }",
" ],",
" \"vmTrace\": {",
" \"code\": \"0x\",",
" \"ops\": []",
" }",
" }",
" ],",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_callMany\",\n \"params\": [\n [\n [\n {\n \"from\":\"0x407d73d8a49eeb85d32cf465507dd71d507100c1\",\n \"to\":\"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\",\n \"value\":\"0x186a0\"\n },\n [\"trace\",\"vmTrace\",\"stateDiff\"]\n ],\n [\n {\n \"from\":\"0x407d73d8a49eeb85d32cf465507dd71d507100c1\",\n \"to\":\"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\",\n \"value\":\"0x186a0\"\n },\n [\"trace\",\"vmTrace\",\"stateDiff\"]\n ]\n ],\n \"0x186a0\"\n ],\n\t\"id\":\"1\"\n}\n",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_callMany - none",
"event": [
{
"listen": "test",
"script": {
"id": "1670fbac-fbed-4c5d-9e4f-cacf151fab86",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": [",
" {",
" \"output\": \"0x\",",
" \"stateDiff\": null,",
" \"trace\": [],",
" \"vmTrace\": null",
" },",
" {",
" \"output\": \"0x\",",
" \"stateDiff\": null,",
" \"trace\": [],",
" \"vmTrace\": null",
" }",
" ],",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_callMany\",\n \"params\": [\n [\n [\n {\n \"from\":\"0x407d73d8a49eeb85d32cf465507dd71d507100c1\",\n \"to\":\"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\",\n \"value\":\"0x186a0\"\n },\n []\n ],\n [\n {\n \"from\":\"0x407d73d8a49eeb85d32cf465507dd71d507100c1\",\n \"to\":\"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\",\n \"value\":\"0x186a0\"\n },\n []\n ]\n ],\n \"0x186a0\"\n ],\n\t\"id\":\"1\"\n}\n",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_callMany - trace only",
"event": [
{
"listen": "test",
"script": {
"id": "1e12f8e6-f089-458c-9b8f-9cc17d1f2828",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": [",
" {",
" \"output\": \"0x\",",
" \"stateDiff\": null,",
" \"trace\": [",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x407d73d8a49eeb85d32cf465507dd71d507100c1\",",
" \"gas\": \"0x1dcd12f8\",",
" \"input\": \"0x\",",
" \"to\": \"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\",",
" \"value\": \"0x186a0\"",
" },",
" \"result\": {",
" \"gasUsed\": \"0x0\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [],",
" \"type\": \"call\"",
" }",
" ],",
" \"vmTrace\": null",
" },",
" {",
" \"output\": \"0x\",",
" \"stateDiff\": null,",
" \"trace\": [",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x407d73d8a49eeb85d32cf465507dd71d507100c1\",",
" \"gas\": \"0x1dcd12f8\",",
" \"input\": \"0x\",",
" \"to\": \"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\",",
" \"value\": \"0x186a0\"",
" },",
" \"result\": {",
" \"gasUsed\": \"0x0\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [],",
" \"type\": \"call\"",
" }",
" ],",
" \"vmTrace\": null",
" }",
" ],",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_callMany\",\n \"params\": [\n [\n [\n {\n \"from\":\"0x407d73d8a49eeb85d32cf465507dd71d507100c1\",\n \"to\":\"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\",\n \"value\":\"0x186a0\"\n },\n [\"trace\"]\n ],\n [\n {\n \"from\":\"0x407d73d8a49eeb85d32cf465507dd71d507100c1\",\n \"to\":\"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\",\n \"value\":\"0x186a0\"\n },\n [\"trace\"]\n ]\n ],\n \"0x186a0\"\n ],\n\t\"id\":\"1\"\n}\n",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_callMany - vmTrace only",
"event": [
{
"listen": "test",
"script": {
"id": "27cc3046-2d7c-4b7a-ae7d-f1b11008fc4c",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": [",
" {",
" \"output\": \"0x\",",
" \"stateDiff\": null,",
" \"trace\": [],",
" \"vmTrace\": {",
" \"code\": \"0x\",",
" \"ops\": []",
" }",
" },",
" {",
" \"output\": \"0x\",",
" \"stateDiff\": null,",
" \"trace\": [],",
" \"vmTrace\": {",
" \"code\": \"0x\",",
" \"ops\": []",
" }",
" }",
" ],",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_callMany\",\n \"params\": [\n [\n [\n {\n \"from\":\"0x407d73d8a49eeb85d32cf465507dd71d507100c1\",\n \"to\":\"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\",\n \"value\":\"0x186a0\"\n },\n [\"vmTrace\"]\n ],\n [\n {\n \"from\":\"0x407d73d8a49eeb85d32cf465507dd71d507100c1\",\n \"to\":\"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\",\n \"value\":\"0x186a0\"\n },\n [\"vmTrace\"]\n ]\n ],\n \"0x186a0\"\n ],\n\t\"id\":\"1\"\n}\n",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_callMany - stateDiff only",
"event": [
{
"listen": "test",
"script": {
"id": "d944881a-3184-4b85-a047-a1ce1ec115cd",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": [",
" {",
" \"output\": \"0x\",",
" \"stateDiff\": {",
" \"0x407d73d8a49eeb85d32cf465507dd71d507100c1\": {",
" \"balance\": {",
" \"+\": \"0x0\"",
" },",
" \"code\": {",
" \"+\": \"0x\"",
" },",
" \"nonce\": {",
" \"+\": \"0x1\"",
" },",
" \"storage\": {}",
" },",
" \"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\": {",
" \"balance\": {",
" \"+\": \"0x186a0\"",
" },",
" \"code\": {",
" \"+\": \"0x\"",
" },",
" \"nonce\": {",
" \"+\": \"0x0\"",
" },",
" \"storage\": {}",
" }",
" },",
" \"trace\": [],",
" \"vmTrace\": null",
" },",
" {",
" \"output\": \"0x\",",
" \"stateDiff\": {",
" \"0x407d73d8a49eeb85d32cf465507dd71d507100c1\": {",
" \"balance\": \"=\",",
" \"code\": \"=\",",
" \"nonce\": {",
" \"*\": {",
" \"from\": \"0x1\",",
" \"to\": \"0x2\"",
" }",
" },",
" \"storage\": {}",
" },",
" \"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\": {",
" \"balance\": {",
" \"*\": {",
" \"from\": \"0x186a0\",",
" \"to\": \"0x30d40\"",
" }",
" },",
" \"code\": \"=\",",
" \"nonce\": \"=\",",
" \"storage\": {}",
" }",
" },",
" \"trace\": [],",
" \"vmTrace\": null",
" }",
" ],",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_callMany\",\n \"params\": [\n [\n [\n {\n \"from\":\"0x407d73d8a49eeb85d32cf465507dd71d507100c1\",\n \"to\":\"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\",\n \"value\":\"0x186a0\"\n },\n [\"stateDiff\"]\n ],\n [\n {\n \"from\":\"0x407d73d8a49eeb85d32cf465507dd71d507100c1\",\n \"to\":\"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\",\n \"value\":\"0x186a0\"\n },\n [\"stateDiff\"]\n ]\n ],\n \"0x1e8480\"\n ],\n\t\"id\":\"1\"\n}\n",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
}
],
"protocolProfileBehavior": {}
},
{
"name": "trace_replayTransaction",
"item": [
{
"name": "trace_replayTransaction - all",
"event": [
{
"listen": "test",
"script": {
"id": "0df08365-de62-444f-a2a8-1585c6b2d9b1",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": {",
" \"output\": \"0x\",",
" \"stateDiff\": {",
" \"0x00a63d34051602b2cb268ea344d4b8bc4767f2d4\": {",
" \"balance\": {",
" \"*\": {",
" \"from\": \"0x52b7cb1385ccf49b2b\",",
" \"to\": \"0x5236bafcfeb4e73b2b\"",
" }",
" },",
" \"code\": \"=\",",
" \"nonce\": {",
" \"*\": {",
" \"from\": \"0xc6f\",",
" \"to\": \"0xc70\"",
" }",
" },",
" \"storage\": {}",
" },",
" \"0x1a060b0604883a99809eb3f798df71bef6c358f1\": {",
" \"balance\": {",
" \"*\": {",
" \"from\": \"0x6f9b59db405cf2c70\",",
" \"to\": \"0x6f9b71bb0e49d6c70\"",
" }",
" },",
" \"code\": \"=\",",
" \"nonce\": \"=\",",
" \"storage\": {}",
" },",
" \"0x87cc0d78ee64a9f11b5affdd9ea523872eae14e4\": {",
" \"balance\": {",
" \"*\": {",
" \"from\": \"0x3afccb788fcd0e00\",",
" \"to\": \"0xbc0b6402c90c2e00\"",
" }",
" },",
" \"code\": \"=\",",
" \"nonce\": \"=\",",
" \"storage\": {}",
" }",
" },",
" \"trace\": [",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x00a63d34051602b2cb268ea344d4b8bc4767f2d4\",",
" \"gas\": \"0x0\",",
" \"input\": \"0x\",",
" \"to\": \"0x87cc0d78ee64a9f11b5affdd9ea523872eae14e4\",",
" \"value\": \"0x810e988a393f2000\"",
" },",
" \"result\": {",
" \"gasUsed\": \"0x0\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [],",
" \"type\": \"call\"",
" }",
" ],",
" \"vmTrace\": {",
" \"code\": \"0x\",",
" \"ops\": []",
" }",
" },",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_replayTransaction\",\n\t\"params\":[\n \"0x02d4a872e096445e80d05276ee756cefef7f3b376bcec14246469c0cd97dad8f\",\n [\"trace\",\"vmTrace\",\"stateDiff\"]\n ],\n\t\"id\":\"1\"\n}",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_replayTransaction - none",
"event": [
{
"listen": "test",
"script": {
"id": "5f84df2a-b6ab-45ca-9b18-f4f9534c1458",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": {",
" \"output\": \"0x\",",
" \"stateDiff\": null,",
" \"trace\": [],",
" \"vmTrace\": null",
" },",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_replayTransaction\",\n\t\"params\":[\n \"0x02d4a872e096445e80d05276ee756cefef7f3b376bcec14246469c0cd97dad8f\",\n []\n ],\n\t\"id\":\"1\"\n}",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_replayTransaction - trace only",
"event": [
{
"listen": "test",
"script": {
"id": "33278201-153b-490c-acb2-07b233baac25",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": {",
" \"output\": \"0x\",",
" \"stateDiff\": null,",
" \"trace\": [",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x00a63d34051602b2cb268ea344d4b8bc4767f2d4\",",
" \"gas\": \"0x0\",",
" \"input\": \"0x\",",
" \"to\": \"0x87cc0d78ee64a9f11b5affdd9ea523872eae14e4\",",
" \"value\": \"0x810e988a393f2000\"",
" },",
" \"result\": {",
" \"gasUsed\": \"0x0\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [],",
" \"type\": \"call\"",
" }",
" ],",
" \"vmTrace\": null",
" },",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_replayTransaction\",\n\t\"params\":[\n \"0x02d4a872e096445e80d05276ee756cefef7f3b376bcec14246469c0cd97dad8f\",\n [\"trace\"]\n ],\n\t\"id\":\"1\"\n}",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_replayTransaction - vmTrace only",
"event": [
{
"listen": "test",
"script": {
"id": "a84b1a91-ee56-46ee-b4fa-231f7aad455e",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": {",
" \"output\": \"0x\",",
" \"stateDiff\": null,",
" \"trace\": [],",
" \"vmTrace\": {",
" \"code\": \"0x\",",
" \"ops\": []",
" }",
" },",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_replayTransaction\",\n\t\"params\":[\n \"0x02d4a872e096445e80d05276ee756cefef7f3b376bcec14246469c0cd97dad8f\",\n [\"vmTrace\"]\n ],\n\t\"id\":\"1\"\n}",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_replayTransaction - stateDiff only",
"event": [
{
"listen": "test",
"script": {
"id": "915e86b3-5172-44b3-87d9-9025c074ea5b",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": {",
" \"output\": \"0x\",",
" \"stateDiff\": {",
" \"0x00a63d34051602b2cb268ea344d4b8bc4767f2d4\": {",
" \"balance\": {",
" \"*\": {",
" \"from\": \"0x52b7cb1385ccf49b2b\",",
" \"to\": \"0x5236bafcfeb4e73b2b\"",
" }",
" },",
" \"code\": \"=\",",
" \"nonce\": {",
" \"*\": {",
" \"from\": \"0xc6f\",",
" \"to\": \"0xc70\"",
" }",
" },",
" \"storage\": {}",
" },",
" \"0x1a060b0604883a99809eb3f798df71bef6c358f1\": {",
" \"balance\": {",
" \"*\": {",
" \"from\": \"0x6f9b59db405cf2c70\",",
" \"to\": \"0x6f9b71bb0e49d6c70\"",
" }",
" },",
" \"code\": \"=\",",
" \"nonce\": \"=\",",
" \"storage\": {}",
" },",
" \"0x87cc0d78ee64a9f11b5affdd9ea523872eae14e4\": {",
" \"balance\": {",
" \"*\": {",
" \"from\": \"0x3afccb788fcd0e00\",",
" \"to\": \"0xbc0b6402c90c2e00\"",
" }",
" },",
" \"code\": \"=\",",
" \"nonce\": \"=\",",
" \"storage\": {}",
" }",
" },",
" \"trace\": [],",
" \"vmTrace\": null",
" },",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_replayTransaction\",\n\t\"params\":[\n \"0x02d4a872e096445e80d05276ee756cefef7f3b376bcec14246469c0cd97dad8f\",\n [\"stateDiff\"]\n ],\n\t\"id\":\"1\"\n}",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
}
],
"protocolProfileBehavior": {}
},
{
"name": "trace_replayBlockTransactions",
"item": [
{
"name": "trace_replayBlockTransactions - all",
"event": [
{
"listen": "test",
"script": {
"id": "38dda4a1-afc6-4d61-ae10-d59496d10eb3",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": [",
" {",
" \"output\": \"0x\",",
" \"stateDiff\": {",
" \"0x104994f45d9d697ca104e5704a7b77d7fec3537c\": {",
" \"balance\": {",
" \"+\": \"0x821878651a4d70000\"",
" },",
" \"code\": {",
" \"+\": \"0x\"",
" },",
" \"nonce\": {",
" \"+\": \"0x0\"",
" },",
" \"storage\": {}",
" },",
" \"0x32be343b94f860124dc4fee278fdcbd38c102d88\": {",
" \"balance\": {",
" \"*\": {",
" \"from\": \"0x29dd8f1fcd55eef7fe5c\",",
" \"to\": \"0x29d56d960a08fbeb9e5c\"",
" }",
" },",
" \"code\": \"=\",",
" \"nonce\": {",
" \"*\": {",
" \"from\": \"0x1efc5\",",
" \"to\": \"0x1efc6\"",
" }",
" },",
" \"storage\": {}",
" },",
" \"0x61c808d82a3ac53231750dadc13c777b59310bd9\": {",
" \"balance\": {",
" \"*\": {",
" \"from\": \"0x16d21cbe94fc6c3ebf7\",",
" \"to\": \"0x16d21ce264b14f94bf7\"",
" }",
" },",
" \"code\": \"=\",",
" \"nonce\": \"=\",",
" \"storage\": {}",
" }",
" },",
" \"trace\": [",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x32be343b94f860124dc4fee278fdcbd38c102d88\",",
" \"gas\": \"0x4c40d\",",
" \"input\": \"0x\",",
" \"to\": \"0x104994f45d9d697ca104e5704a7b77d7fec3537c\",",
" \"value\": \"0x821878651a4d70000\"",
" },",
" \"result\": {",
" \"gasUsed\": \"0x0\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [],",
" \"type\": \"call\"",
" }",
" ],",
" \"transactionHash\": \"0xc55e2b90168af6972193c1f86fa4d7d7b31a29c156665d15b9cd48618b5177ef\",",
" \"vmTrace\": {",
" \"code\": \"0x\",",
" \"ops\": []",
" }",
" }",
" ],",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_replayBlockTransactions\",\n\t\"params\":[\n \"0x1e8480\",\n [\"trace\",\"vmTrace\",\"stateDiff\"]\n ],\n\t\"id\":\"1\"\n}",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_replayBlockTransactions - none",
"event": [
{
"listen": "test",
"script": {
"id": "7ae24d9b-a87c-4e22-a604-9c20e6641ee5",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": [",
" {",
" \"output\": \"0x\",",
" \"stateDiff\": null,",
" \"trace\": [],",
" \"transactionHash\": \"0xc55e2b90168af6972193c1f86fa4d7d7b31a29c156665d15b9cd48618b5177ef\",",
" \"vmTrace\": null",
" }",
" ],",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_replayBlockTransactions\",\n\t\"params\":[\n \"0x1e8480\",\n []\n ],\n\t\"id\":\"1\"\n}",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_replayBlockTransactions - trace only",
"event": [
{
"listen": "test",
"script": {
"id": "ed4c941b-54ee-487d-8aff-7d0ecb750523",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": [",
" {",
" \"output\": \"0x\",",
" \"stateDiff\": null,",
" \"trace\": [",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x32be343b94f860124dc4fee278fdcbd38c102d88\",",
" \"gas\": \"0x4c40d\",",
" \"input\": \"0x\",",
" \"to\": \"0x104994f45d9d697ca104e5704a7b77d7fec3537c\",",
" \"value\": \"0x821878651a4d70000\"",
" },",
" \"result\": {",
" \"gasUsed\": \"0x0\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [],",
" \"type\": \"call\"",
" }",
" ],",
" \"transactionHash\": \"0xc55e2b90168af6972193c1f86fa4d7d7b31a29c156665d15b9cd48618b5177ef\",",
" \"vmTrace\": null",
" }",
" ],",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_replayBlockTransactions\",\n\t\"params\":[\n \"0x1e8480\",\n [\"trace\"]\n ],\n\t\"id\":\"1\"\n}",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_replayBlockTransactions - vmTrace only",
"event": [
{
"listen": "test",
"script": {
"id": "b3703c29-7bb8-4d08-b757-efbb4de8243d",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": [",
" {",
" \"output\": \"0x\",",
" \"stateDiff\": null,",
" \"trace\": [],",
" \"transactionHash\": \"0xc55e2b90168af6972193c1f86fa4d7d7b31a29c156665d15b9cd48618b5177ef\",",
" \"vmTrace\": {",
" \"code\": \"0x\",",
" \"ops\": []",
" }",
" }",
" ],",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_replayBlockTransactions\",\n\t\"params\":[\n \"0x1e8480\",\n [\"vmTrace\"]\n ],\n\t\"id\":\"1\"\n}",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_replayBlockTransactions - stateDiff only",
"event": [
{
"listen": "test",
"script": {
"id": "ac907f46-3f6d-436e-b0fb-3ab294e6c33f",
"exec": [
"utils.cannotTest(\"trace_rawTransaction - all\", pm.response.json())",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_replayBlockTransactions\",\n\t\"params\":[\n \"0x1e8480\",\n [\"stateDiff\"]\n ],\n\t\"id\":\"1\"\n}",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
}
],
"protocolProfileBehavior": {}
},
{
"name": "trace_rawTransaction",
"item": [
{
"name": "trace_rawTransaction - all",
"event": [
{
"listen": "test",
"script": {
"id": "daca0279-5627-47e0-abb3-b1d0e0e3e1ef",
"exec": [
"utils.cannotTest(\"trace_rawTransaction - all\", pm.response.json())",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_rawTransaction\",\n\t\"params\":[\n \"0xf86d09850cf032900f83030d4094109c4f2ccc82c4d77bde15f306707320294aea3f880de0b6b3a7640000801ca02da49aa24d7fa6fa876af59d77acfd60537eba478654934430b1b32893b65c85a02cdc152d81b71f25fd23e3e271c8c0b15a3a91ce104b6af35bd476d1e6d26fdf\",\n [\"trace\",\"vmTrace\",\"stateDiff\"]\n ],\n\t\"id\":\"1\"\n}",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_rawTransaction - none",
"event": [
{
"listen": "test",
"script": {
"id": "7a69f86d-f9db-4377-b650-e4fc0cf09253",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": {",
" \"output\": \"0x\",",
" \"stateDiff\": null,",
" \"trace\": [],",
" \"vmTrace\": null",
" },",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_rawTransaction\",\n\t\"params\":[\n \"0xf86d09850cf032900f83030d4094109c4f2ccc82c4d77bde15f306707320294aea3f880de0b6b3a7640000801ca02da49aa24d7fa6fa876af59d77acfd60537eba478654934430b1b32893b65c85a02cdc152d81b71f25fd23e3e271c8c0b15a3a91ce104b6af35bd476d1e6d26fdf\",\n []\n ],\n\t\"id\":\"1\"\n}",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_rawTransaction - trace only",
"event": [
{
"listen": "test",
"script": {
"id": "7ddd07c3-edfc-4a21-ba38-308efc7fb782",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": {",
" \"output\": \"0x\",",
" \"stateDiff\": null,",
" \"trace\": [",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xfd2605a2bf58fdbb90db1da55df61628b47f9e8c\",",
" \"gas\": \"0x2bb38\",",
" \"input\": \"0x\",",
" \"to\": \"0x109c4f2ccc82c4d77bde15f306707320294aea3f\",",
" \"value\": \"0xde0b6b3a7640000\"",
" },",
" \"result\": {",
" \"gasUsed\": \"0x9325\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [],",
" \"type\": \"call\"",
" }",
" ],",
" \"vmTrace\": null",
" },",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_rawTransaction\",\n\t\"params\":[\n \"0xf86d09850cf032900f83030d4094109c4f2ccc82c4d77bde15f306707320294aea3f880de0b6b3a7640000801ca02da49aa24d7fa6fa876af59d77acfd60537eba478654934430b1b32893b65c85a02cdc152d81b71f25fd23e3e271c8c0b15a3a91ce104b6af35bd476d1e6d26fdf\",\n [\"trace\"]\n ],\n\t\"id\":\"1\"\n}",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_rawTransaction - vmTrace only",
"event": [
{
"listen": "test",
"script": {
"id": "10371f18-4769-4d59-a46c-03d13a79a3c9",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": {",
" \"output\": \"0x\",",
" \"stateDiff\": null,",
" \"trace\": [],",
" \"vmTrace\": {",
" \"code\": \"0x6060604052361561001f5760e060020a600035046372ea4b8c811461010c575b61011b3460008080670de0b6b3a764000084106101d557600180548101908190556003805433929081101561000257906000526020600020900160006101000a815481600160a060020a0302191690830217905550670de0b6b3a7640000840393508350670de0b6b3a76400006000600082828250540192505081905550600260016000505411151561011d5760038054829081101561000257906000526020600020900160009054906101000a9004600160a060020a0316600160a060020a03166000600060005054604051809050600060405180830381858888f150505080555060016002556101d5565b60018054016060908152602090f35b005b60018054600354910114156101d55760038054600254600101909102900392505b6003546002549003600119018310156101e357600380548490811015610002579082526040517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b9190910154600160a060020a03169082906706f05b59d3b200009082818181858883f1505090546706f05b59d3b1ffff1901835550506001929092019161013e565b505060028054600101905550505b600080548501905550505050565b506002548154919250600190810190910460001901905b60035460025490036001190183101561029a576003805484908110156100025760009182526040517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b9190910154600160a060020a03169190838504600019019082818181858883f1505081548486049003600190810190925550600290830183020460001901841415905061028e576001015b600192909201916101fa565b60038054600254810182018083559190829080158290116101c75760008390526101c7907fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b9081019083015b808211156102fa57600081556001016102e6565b509056\",",
" \"ops\": [",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x60\"",
" ],",
" \"store\": null,",
" \"used\": 178997",
" },",
" \"pc\": 0,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x40\"",
" ],",
" \"store\": null,",
" \"used\": 178994",
" },",
" \"pc\": 2,",
" \"sub\": null",
" },",
" {",
" \"cost\": 12,",
" \"ex\": {",
" \"mem\": {",
" \"data\": \"0x0000000000000000000000000000000000000000000000000000000000000060\",",
" \"off\": 64",
" },",
" \"push\": [],",
" \"store\": null,",
" \"used\": 178982",
" },",
" \"pc\": 4,",
" \"sub\": null",
" },",
" {",
" \"cost\": 2,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 178980",
" },",
" \"pc\": 5,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x1\"",
" ],",
" \"store\": null,",
" \"used\": 178977",
" },",
" \"pc\": 6,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x1f\"",
" ],",
" \"store\": null,",
" \"used\": 178974",
" },",
" \"pc\": 7,",
" \"sub\": null",
" },",
" {",
" \"cost\": 10,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": null,",
" \"used\": 178964",
" },",
" \"pc\": 10,",
" \"sub\": null",
" },",
" {",
" \"cost\": 1,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": null,",
" \"used\": 178963",
" },",
" \"pc\": 31,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x11b\"",
" ],",
" \"store\": null,",
" \"used\": 178960",
" },",
" \"pc\": 32,",
" \"sub\": null",
" },",
" {",
" \"cost\": 2,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0xde0b6b3a7640000\"",
" ],",
" \"store\": null,",
" \"used\": 178958",
" },",
" \"pc\": 35,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 178955",
" },",
" \"pc\": 36,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\",",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 178952",
" },",
" \"pc\": 38,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\",",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 178949",
" },",
" \"pc\": 39,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0xde0b6b3a7640000\"",
" ],",
" \"store\": null,",
" \"used\": 178946",
" },",
" \"pc\": 40,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0xde0b6b3a7640000\",",
" \"0x0\",",
" \"0x0\",",
" \"0x0\",",
" \"0xde0b6b3a7640000\",",
" \"0xde0b6b3a7640000\"",
" ],",
" \"store\": null,",
" \"used\": 178943",
" },",
" \"pc\": 49,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 178940",
" },",
" \"pc\": 50,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x1d5\"",
" ],",
" \"store\": null,",
" \"used\": 178937",
" },",
" \"pc\": 51,",
" \"sub\": null",
" },",
" {",
" \"cost\": 10,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": null,",
" \"used\": 178927",
" },",
" \"pc\": 54,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x1\"",
" ],",
" \"store\": null,",
" \"used\": 178924",
" },",
" \"pc\": 55,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x1\",",
" \"0x1\"",
" ],",
" \"store\": null,",
" \"used\": 178921",
" },",
" \"pc\": 57,",
" \"sub\": null",
" },",
" {",
" \"cost\": 800,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x56\"",
" ],",
" \"store\": null,",
" \"used\": 178121",
" },",
" \"pc\": 58,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x1\",",
" \"0x56\",",
" \"0x1\"",
" ],",
" \"store\": null,",
" \"used\": 178118",
" },",
" \"pc\": 59,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x57\"",
" ],",
" \"store\": null,",
" \"used\": 178115",
" },",
" \"pc\": 60,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x57\",",
" \"0x1\"",
" ],",
" \"store\": null,",
" \"used\": 178112",
" },",
" \"pc\": 61,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x57\",",
" \"0x1\",",
" \"0x57\"",
" ],",
" \"store\": null,",
" \"used\": 178109",
" },",
" \"pc\": 62,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x57\",",
" \"0x1\"",
" ],",
" \"store\": null,",
" \"used\": 178106",
" },",
" \"pc\": 63,",
" \"sub\": null",
" },",
" {",
" \"cost\": 5000,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": {",
" \"key\": \"0x1\",",
" \"val\": \"0x57\"",
" },",
" \"used\": 173106",
" },",
" \"pc\": 64,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x3\"",
" ],",
" \"store\": null,",
" \"used\": 173103",
" },",
" \"pc\": 65,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x3\",",
" \"0x3\"",
" ],",
" \"store\": null,",
" \"used\": 173100",
" },",
" \"pc\": 67,",
" \"sub\": null",
" },",
" {",
" \"cost\": 800,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x5b\"",
" ],",
" \"store\": null,",
" \"used\": 172300",
" },",
" \"pc\": 68,",
" \"sub\": null",
" },",
" {",
" \"cost\": 2,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0xfd2605a2bf58fdbb90db1da55df61628b47f9e8c\"",
" ],",
" \"store\": null,",
" \"used\": 172298",
" },",
" \"pc\": 69,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0xfd2605a2bf58fdbb90db1da55df61628b47f9e8c\",",
" \"0x3\",",
" \"0x5b\",",
" \"0x57\"",
" ],",
" \"store\": null,",
" \"used\": 172295",
" },",
" \"pc\": 70,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x57\",",
" \"0x5b\"",
" ],",
" \"store\": null,",
" \"used\": 172292",
" },",
" \"pc\": 71,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x57\",",
" \"0x5b\",",
" \"0x57\"",
" ],",
" \"store\": null,",
" \"used\": 172289",
" },",
" \"pc\": 72,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x1\"",
" ],",
" \"store\": null,",
" \"used\": 172286",
" },",
" \"pc\": 73,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 172283",
" },",
" \"pc\": 74,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x2\"",
" ],",
" \"store\": null,",
" \"used\": 172280",
" },",
" \"pc\": 75,",
" \"sub\": null",
" },",
" {",
" \"cost\": 10,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": null,",
" \"used\": 172270",
" },",
" \"pc\": 78,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x57\",",
" \"0x3\"",
" ],",
" \"store\": null,",
" \"used\": 172267",
" },",
" \"pc\": 79,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 172264",
" },",
" \"pc\": 80,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": {",
" \"data\": \"0x0000000000000000000000000000000000000000000000000000000000000003\",",
" \"off\": 0",
" },",
" \"push\": [],",
" \"store\": null,",
" \"used\": 172261",
" },",
" \"pc\": 82,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x20\"",
" ],",
" \"store\": null,",
" \"used\": 172258",
" },",
" \"pc\": 83,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 172255",
" },",
" \"pc\": 85,",
" \"sub\": null",
" },",
" {",
" \"cost\": 36,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b\"",
" ],",
" \"store\": null,",
" \"used\": 172219",
" },",
" \"pc\": 87,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b\",",
" \"0x57\"",
" ],",
" \"store\": null,",
" \"used\": 172216",
" },",
" \"pc\": 88,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f8b2\"",
" ],",
" \"store\": null,",
" \"used\": 172213",
" },",
" \"pc\": 89,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 172210",
" },",
" \"pc\": 90,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x100\"",
" ],",
" \"store\": null,",
" \"used\": 172207",
" },",
" \"pc\": 92,",
" \"sub\": null",
" },",
" {",
" \"cost\": 10,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x1\"",
" ],",
" \"store\": null,",
" \"used\": 172197",
" },",
" \"pc\": 95,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f8b2\",",
" \"0x1\",",
" \"0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f8b2\"",
" ],",
" \"store\": null,",
" \"used\": 172194",
" },",
" \"pc\": 96,",
" \"sub\": null",
" },",
" {",
" \"cost\": 800,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 171394",
" },",
" \"pc\": 97,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x1\",",
" \"0x0\",",
" \"0x1\"",
" ],",
" \"store\": null,",
" \"used\": 171391",
" },",
" \"pc\": 98,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x1\"",
" ],",
" \"store\": null,",
" \"used\": 171388",
" },",
" \"pc\": 99,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0xa0\"",
" ],",
" \"store\": null,",
" \"used\": 171385",
" },",
" \"pc\": 101,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x2\"",
" ],",
" \"store\": null,",
" \"used\": 171382",
" },",
" \"pc\": 103,",
" \"sub\": null",
" },",
" {",
" \"cost\": 60,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x10000000000000000000000000000000000000000\"",
" ],",
" \"store\": null,",
" \"used\": 171322",
" },",
" \"pc\": 105,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0xffffffffffffffffffffffffffffffffffffffff\"",
" ],",
" \"store\": null,",
" \"used\": 171319",
" },",
" \"pc\": 106,",
" \"sub\": null",
" },",
" {",
" \"cost\": 5,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0xffffffffffffffffffffffffffffffffffffffff\"",
" ],",
" \"store\": null,",
" \"used\": 171314",
" },",
" \"pc\": 107,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0xffffffffffffffffffffffff0000000000000000000000000000000000000000\"",
" ],",
" \"store\": null,",
" \"used\": 171311",
" },",
" \"pc\": 108,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 171308",
" },",
" \"pc\": 109,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\",",
" \"0x1\"",
" ],",
" \"store\": null,",
" \"used\": 171305",
" },",
" \"pc\": 110,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0xfd2605a2bf58fdbb90db1da55df61628b47f9e8c\",",
" \"0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f8b2\",",
" \"0x0\",",
" \"0x1\",",
" \"0xfd2605a2bf58fdbb90db1da55df61628b47f9e8c\"",
" ],",
" \"store\": null,",
" \"used\": 171302",
" },",
" \"pc\": 111,",
" \"sub\": null",
" },",
" {",
" \"cost\": 5,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0xfd2605a2bf58fdbb90db1da55df61628b47f9e8c\"",
" ],",
" \"store\": null,",
" \"used\": 171297",
" },",
" \"pc\": 112,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0xfd2605a2bf58fdbb90db1da55df61628b47f9e8c\"",
" ],",
" \"store\": null,",
" \"used\": 171294",
" },",
" \"pc\": 113,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0xfd2605a2bf58fdbb90db1da55df61628b47f9e8c\",",
" \"0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f8b2\"",
" ],",
" \"store\": null,",
" \"used\": 171291",
" },",
" \"pc\": 114,",
" \"sub\": null",
" },",
" {",
" \"cost\": 20000,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": {",
" \"key\": \"0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f8b2\",",
" \"val\": \"0xfd2605a2bf58fdbb90db1da55df61628b47f9e8c\"",
" },",
" \"used\": 151291",
" },",
" \"pc\": 115,",
" \"sub\": null",
" },",
" {",
" \"cost\": 2,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": null,",
" \"used\": 151289",
" },",
" \"pc\": 116,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0xde0b6b3a7640000\"",
" ],",
" \"store\": null,",
" \"used\": 151286",
" },",
" \"pc\": 117,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0xde0b6b3a7640000\",",
" \"0x0\",",
" \"0x0\",",
" \"0x0\",",
" \"0xde0b6b3a7640000\",",
" \"0xde0b6b3a7640000\"",
" ],",
" \"store\": null,",
" \"used\": 151283",
" },",
" \"pc\": 126,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 151280",
" },",
" \"pc\": 127,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\",",
" \"0x0\",",
" \"0x0\",",
" \"0x0\",",
" \"0xde0b6b3a7640000\"",
" ],",
" \"store\": null,",
" \"used\": 151277",
" },",
" \"pc\": 128,",
" \"sub\": null",
" },",
" {",
" \"cost\": 2,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": null,",
" \"used\": 151275",
" },",
" \"pc\": 129,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\",",
" \"0x0\",",
" \"0x0\",",
" \"0x0\",",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 151272",
" },",
" \"pc\": 130,",
" \"sub\": null",
" },",
" {",
" \"cost\": 2,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": null,",
" \"used\": 151270",
" },",
" \"pc\": 131,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0xde0b6b3a7640000\"",
" ],",
" \"store\": null,",
" \"used\": 151267",
" },",
" \"pc\": 132,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 151264",
" },",
" \"pc\": 141,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 151261",
" },",
" \"pc\": 143,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0xde0b6b3a7640000\",",
" \"0x0\",",
" \"0x0\",",
" \"0xde0b6b3a7640000\"",
" ],",
" \"store\": null,",
" \"used\": 151258",
" },",
" \"pc\": 145,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\",",
" \"0x0\",",
" \"0xde0b6b3a7640000\",",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 151255",
" },",
" \"pc\": 146,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\",",
" \"0xde0b6b3a7640000\",",
" \"0x0\",",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 151252",
" },",
" \"pc\": 147,",
" \"sub\": null",
" },",
" {",
" \"cost\": 2,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": null,",
" \"used\": 151250",
" },",
" \"pc\": 148,",
" \"sub\": null",
" },",
" {",
" \"cost\": 800,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x7ce66c50e91277e9\"",
" ],",
" \"store\": null,",
" \"used\": 150450",
" },",
" \"pc\": 149,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x8ac72304907677e9\"",
" ],",
" \"store\": null,",
" \"used\": 150447",
" },",
" \"pc\": 150,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x8ac72304907677e9\",",
" \"0x0\",",
" \"0x0\",",
" \"0xde0b6b3a7640000\"",
" ],",
" \"store\": null,",
" \"used\": 150444",
" },",
" \"pc\": 151,",
" \"sub\": null",
" },",
" {",
" \"cost\": 2,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": null,",
" \"used\": 150442",
" },",
" \"pc\": 152,",
" \"sub\": null",
" },",
" {",
" \"cost\": 2,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": null,",
" \"used\": 150440",
" },",
" \"pc\": 153,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x8ac72304907677e9\",",
" \"0x0\",",
" \"0x8ac72304907677e9\"",
" ],",
" \"store\": null,",
" \"used\": 150437",
" },",
" \"pc\": 154,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x8ac72304907677e9\",",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 150434",
" },",
" \"pc\": 155,",
" \"sub\": null",
" },",
" {",
" \"cost\": 5000,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": {",
" \"key\": \"0x0\",",
" \"val\": \"0x8ac72304907677e9\"",
" },",
" \"used\": 145434",
" },",
" \"pc\": 156,",
" \"sub\": null",
" },",
" {",
" \"cost\": 2,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": null,",
" \"used\": 145432",
" },",
" \"pc\": 157,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x2\"",
" ],",
" \"store\": null,",
" \"used\": 145429",
" },",
" \"pc\": 158,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x1\"",
" ],",
" \"store\": null,",
" \"used\": 145426",
" },",
" \"pc\": 160,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 145423",
" },",
" \"pc\": 162,",
" \"sub\": null",
" },",
" {",
" \"cost\": 2,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": null,",
" \"used\": 145421",
" },",
" \"pc\": 164,",
" \"sub\": null",
" },",
" {",
" \"cost\": 800,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x57\"",
" ],",
" \"store\": null,",
" \"used\": 144621",
" },",
" \"pc\": 165,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x1\"",
" ],",
" \"store\": null,",
" \"used\": 144618",
" },",
" \"pc\": 166,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 144615",
" },",
" \"pc\": 167,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x1\"",
" ],",
" \"store\": null,",
" \"used\": 144612",
" },",
" \"pc\": 168,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x11d\"",
" ],",
" \"store\": null,",
" \"used\": 144609",
" },",
" \"pc\": 169,",
" \"sub\": null",
" },",
" {",
" \"cost\": 10,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": null,",
" \"used\": 144599",
" },",
" \"pc\": 172,",
" \"sub\": null",
" },",
" {",
" \"cost\": 1,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": null,",
" \"used\": 144598",
" },",
" \"pc\": 285,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x1\"",
" ],",
" \"store\": null,",
" \"used\": 144595",
" },",
" \"pc\": 286,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x1\",",
" \"0x1\"",
" ],",
" \"store\": null,",
" \"used\": 144592",
" },",
" \"pc\": 288,",
" \"sub\": null",
" },",
" {",
" \"cost\": 800,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x57\"",
" ],",
" \"store\": null,",
" \"used\": 143792",
" },",
" \"pc\": 289,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x3\"",
" ],",
" \"store\": null,",
" \"used\": 143789",
" },",
" \"pc\": 290,",
" \"sub\": null",
" },",
" {",
" \"cost\": 800,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x5b\"",
" ],",
" \"store\": null,",
" \"used\": 142989",
" },",
" \"pc\": 292,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x5b\",",
" \"0x57\",",
" \"0x1\"",
" ],",
" \"store\": null,",
" \"used\": 142986",
" },",
" \"pc\": 293,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x58\"",
" ],",
" \"store\": null,",
" \"used\": 142983",
" },",
" \"pc\": 294,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 142980",
" },",
" \"pc\": 295,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x1\"",
" ],",
" \"store\": null,",
" \"used\": 142977",
" },",
" \"pc\": 296,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x1d5\"",
" ],",
" \"store\": null,",
" \"used\": 142974",
" },",
" \"pc\": 297,",
" \"sub\": null",
" },",
" {",
" \"cost\": 10,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": null,",
" \"used\": 142964",
" },",
" \"pc\": 300,",
" \"sub\": null",
" },",
" {",
" \"cost\": 1,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": null,",
" \"used\": 142963",
" },",
" \"pc\": 469,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 142960",
" },",
" \"pc\": 470,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\",",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 142957",
" },",
" \"pc\": 472,",
" \"sub\": null",
" },",
" {",
" \"cost\": 800,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x8ac72304907677e9\"",
" ],",
" \"store\": null,",
" \"used\": 142157",
" },",
" \"pc\": 473,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x0\",",
" \"0x0\",",
" \"0x0\",",
" \"0x0\",",
" \"0x0\",",
" \"0x8ac72304907677e9\",",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 142154",
" },",
" \"pc\": 474,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x8ac72304907677e9\"",
" ],",
" \"store\": null,",
" \"used\": 142151",
" },",
" \"pc\": 475,",
" \"sub\": null",
" },",
" {",
" \"cost\": 3,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [",
" \"0x8ac72304907677e9\",",
" \"0x0\"",
" ],",
" \"store\": null,",
" \"used\": 142148",
" },",
" \"pc\": 476,",
" \"sub\": null",
" },",
" {",
" \"cost\": 800,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": {",
" \"key\": \"0x0\",",
" \"val\": \"0x8ac72304907677e9\"",
" },",
" \"used\": 141348",
" },",
" \"pc\": 477,",
" \"sub\": null",
" },",
" {",
" \"cost\": 2,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": null,",
" \"used\": 141346",
" },",
" \"pc\": 478,",
" \"sub\": null",
" },",
" {",
" \"cost\": 2,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": null,",
" \"used\": 141344",
" },",
" \"pc\": 479,",
" \"sub\": null",
" },",
" {",
" \"cost\": 2,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": null,",
" \"used\": 141342",
" },",
" \"pc\": 480,",
" \"sub\": null",
" },",
" {",
" \"cost\": 2,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": null,",
" \"used\": 141340",
" },",
" \"pc\": 481,",
" \"sub\": null",
" },",
" {",
" \"cost\": 8,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": null,",
" \"used\": 141332",
" },",
" \"pc\": 482,",
" \"sub\": null",
" },",
" {",
" \"cost\": 1,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": null,",
" \"used\": 141331",
" },",
" \"pc\": 283,",
" \"sub\": null",
" },",
" {",
" \"cost\": 0,",
" \"ex\": {",
" \"mem\": null,",
" \"push\": [],",
" \"store\": null,",
" \"used\": 141331",
" },",
" \"pc\": 284,",
" \"sub\": null",
" }",
" ]",
" }",
" },",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_rawTransaction\",\n\t\"params\":[\n \"0xf86d09850cf032900f83030d4094109c4f2ccc82c4d77bde15f306707320294aea3f880de0b6b3a7640000801ca02da49aa24d7fa6fa876af59d77acfd60537eba478654934430b1b32893b65c85a02cdc152d81b71f25fd23e3e271c8c0b15a3a91ce104b6af35bd476d1e6d26fdf\",\n [\"vmTrace\"]\n ],\n\t\"id\":\"1\"\n}",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_rawTransaction - stateDiff only",
"event": [
{
"listen": "test",
"script": {
"id": "9fd4f1d1-1c82-4d39-b47f-feeb33836056",
"exec": [
"utils.cannotTest(\"trace_rawTransaction - stateDiff only\", pm.response.json())",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_rawTransaction\",\n\t\"params\":[\n \"0xf86d09850cf032900f83030d4094109c4f2ccc82c4d77bde15f306707320294aea3f880de0b6b3a7640000801ca02da49aa24d7fa6fa876af59d77acfd60537eba478654934430b1b32893b65c85a02cdc152d81b71f25fd23e3e271c8c0b15a3a91ce104b6af35bd476d1e6d26fdf\",\n [\"stateDiff\"]\n ],\n\t\"id\":\"1\"\n}",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
}
],
"protocolProfileBehavior": {}
},
{
"name": "trace_get",
"item": [
{
"name": "trace_get - trace 0",
"event": [
{
"listen": "test",
"script": {
"id": "b13645b7-48a0-480f-99e5-be52aacae86d",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": {",
" \"action\": {",
" \"callType\": \"staticcall\",",
" \"from\": \"0x7a250d5630b4cf539739df2c5dacb4c659f2488d\",",
" \"gas\": \"0x40e8b\",",
" \"input\": \"0x0902f1ac\",",
" \"to\": \"0x6ebb1c40cd3789e6fc02f003b2416383ea5c96f4\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0x4d5e647b2d8d3a3c8c1561ebb88734bc5fc3c2941016f810cf218738c0ecd99e\",",
" \"blockNumber\": 11000000,",
" \"result\": {",
" \"gasUsed\": \"0x4b4\",",
" \"output\": \"0x00000000000000000000000000000000000000000000008f63f71a5f71f77323000000000000000000000000000000000000000000000008709d1f36bd0f2f83000000000000000000000000000000000000000000000000000000005f7befab\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 0",
" ],",
" \"transactionHash\": \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",",
" \"transactionPosition\": 26,",
" \"type\": \"call\"",
" },",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_get\",\n \"params\":[\n \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",\n [\"0x0\"]\n ],\n\t\"id\":\"1\"\n}\n",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_get - trace 3",
"event": [
{
"listen": "test",
"script": {
"id": "0c7a662c-06d5-45f2-85e8-6d0d30e07d64",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x7a250d5630b4cf539739df2c5dacb4c659f2488d\",",
" \"gas\": \"0x3d7ce\",",
" \"input\": \"0x23b872dd0000000000000000000000006795e7f4219a48e083157db6b52cf70002eced5f0000000000000000000000004a4354ffddb257671ac00cdcedef87503ac6b35200000000000000000000000000000000000000000000000001d1e7fc878ab04b\",",
" \"to\": \"0x5befbb272290dd5b8521d4a938f6c4757742c430\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0x4d5e647b2d8d3a3c8c1561ebb88734bc5fc3c2941016f810cf218738c0ecd99e\",",
" \"blockNumber\": 11000000,",
" \"result\": {",
" \"gasUsed\": \"0x5a30\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 3",
" ],",
" \"transactionHash\": \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",",
" \"transactionPosition\": 26,",
" \"type\": \"call\"",
" },",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_get\",\n \"params\":[\n \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",\n [\"0x3\"]\n ],\n\t\"id\":\"1\"\n}\n",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_get - trace 5",
"event": [
{
"listen": "test",
"script": {
"id": "f5431b3d-4824-4fb7-9172-483588363adc",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x7a250d5630b4cf539739df2c5dacb4c659f2488d\",",
" \"gas\": \"0x271a9\",",
" \"input\": \"0x022c0d9f00000000000000000000000000000000000000000000000003483b57f55165f500000000000000000000000000000000000000000000000000000000000000000000000000000000000000006ebb1c40cd3789e6fc02f003b2416383ea5c96f400000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000\",",
" \"to\": \"0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0x4d5e647b2d8d3a3c8c1561ebb88734bc5fc3c2941016f810cf218738c0ecd99e\",",
" \"blockNumber\": 11000000,",
" \"result\": {",
" \"gasUsed\": \"0xe1fa\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 3,",
" \"traceAddress\": [",
" 5",
" ],",
" \"transactionHash\": \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",",
" \"transactionPosition\": 26,",
" \"type\": \"call\"",
" },",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_get\",\n \"params\":[\n \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",\n [\"0x5\"]\n ],\n\t\"id\":\"1\"\n}\n",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_get - trace 10 (non-existant)",
"event": [
{
"listen": "test",
"script": {
"id": "77a95092-2e76-4457-b024-78b2e57d7457",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": null,",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_get\",\n \"params\":[\n \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",\n [\"0xa\"]\n ],\n\t\"id\":\"1\"\n}\n",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
}
],
"protocolProfileBehavior": {}
},
{
"name": "trace_transaction",
"event": [
{
"listen": "test",
"script": {
"id": "d326776f-bac6-4630-82eb-d698fea4a4bf",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": [",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x6795e7f4219a48e083157db6b52cf70002eced5f\",",
" \"gas\": \"0x42c8c\",",
" \"input\": \"0x8803dbee0000000000000000000000000000000000000000000000003782dace9d90000000000000000000000000000000000000000000000000000001d690b82191f53800000000000000000000000000000000000000000000000000000000000000a00000000000000000000000006795e7f4219a48e083157db6b52cf70002eced5f000000000000000000000000000000000000000000000000000000005f7bf45c00000000000000000000000000000000000000000000000000000000000000040000000000000000000000005befbb272290dd5b8521d4a938f6c4757742c430000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000001712aad2c773ee04bdc9114b32163c058321cd85\",",
" \"to\": \"0x7a250d5630b4cf539739df2c5dacb4c659f2488d\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0x4d5e647b2d8d3a3c8c1561ebb88734bc5fc3c2941016f810cf218738c0ecd99e\",",
" \"blockNumber\": 11000000,",
" \"result\": {",
" \"gasUsed\": \"0x3bafa\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000001d1e7fc878ab04b0000000000000000000000000000000000000000000000000000000004fe3dbb00000000000000000000000000000000000000000000000003483b57f55165f50000000000000000000000000000000000000000000000003782dace9d900000\"",
" },",
" \"subtraces\": 7,",
" \"traceAddress\": [],",
" \"transactionHash\": \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",",
" \"transactionPosition\": 26,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"staticcall\",",
" \"from\": \"0x7a250d5630b4cf539739df2c5dacb4c659f2488d\",",
" \"gas\": \"0x40e8b\",",
" \"input\": \"0x0902f1ac\",",
" \"to\": \"0x6ebb1c40cd3789e6fc02f003b2416383ea5c96f4\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0x4d5e647b2d8d3a3c8c1561ebb88734bc5fc3c2941016f810cf218738c0ecd99e\",",
" \"blockNumber\": 11000000,",
" \"result\": {",
" \"gasUsed\": \"0x4b4\",",
" \"output\": \"0x00000000000000000000000000000000000000000000008f63f71a5f71f77323000000000000000000000000000000000000000000000008709d1f36bd0f2f83000000000000000000000000000000000000000000000000000000005f7befab\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 0",
" ],",
" \"transactionHash\": \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",",
" \"transactionPosition\": 26,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"staticcall\",",
" \"from\": \"0x7a250d5630b4cf539739df2c5dacb4c659f2488d\",",
" \"gas\": \"0x3fc18\",",
" \"input\": \"0x0902f1ac\",",
" \"to\": \"0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0x4d5e647b2d8d3a3c8c1561ebb88734bc5fc3c2941016f810cf218738c0ecd99e\",",
" \"blockNumber\": 11000000,",
" \"result\": {",
" \"gasUsed\": \"0x4b4\",",
" \"output\": \"0x000000000000000000000000000000000000000000008c337fdddb8e693225210000000000000000000000000000000000000000000000000000d4a5c378ac6a000000000000000000000000000000000000000000000000000000005f7befad\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1",
" ],",
" \"transactionHash\": \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",",
" \"transactionPosition\": 26,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"staticcall\",",
" \"from\": \"0x7a250d5630b4cf539739df2c5dacb4c659f2488d\",",
" \"gas\": \"0x3e9b8\",",
" \"input\": \"0x0902f1ac\",",
" \"to\": \"0x4a4354ffddb257671ac00cdcedef87503ac6b352\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0x4d5e647b2d8d3a3c8c1561ebb88734bc5fc3c2941016f810cf218738c0ecd99e\",",
" \"blockNumber\": 11000000,",
" \"result\": {",
" \"gasUsed\": \"0x4b4\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000076bfdff5e26f7d67500000000000000000000000000000000000000000000000000000014716b4531000000000000000000000000000000000000000000000000000000005f7beebe\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 2",
" ],",
" \"transactionHash\": \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",",
" \"transactionPosition\": 26,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x7a250d5630b4cf539739df2c5dacb4c659f2488d\",",
" \"gas\": \"0x3d7ce\",",
" \"input\": \"0x23b872dd0000000000000000000000006795e7f4219a48e083157db6b52cf70002eced5f0000000000000000000000004a4354ffddb257671ac00cdcedef87503ac6b35200000000000000000000000000000000000000000000000001d1e7fc878ab04b\",",
" \"to\": \"0x5befbb272290dd5b8521d4a938f6c4757742c430\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0x4d5e647b2d8d3a3c8c1561ebb88734bc5fc3c2941016f810cf218738c0ecd99e\",",
" \"blockNumber\": 11000000,",
" \"result\": {",
" \"gasUsed\": \"0x5a30\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 3",
" ],",
" \"transactionHash\": \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",",
" \"transactionPosition\": 26,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x7a250d5630b4cf539739df2c5dacb4c659f2488d\",",
" \"gas\": \"0x36f24\",",
" \"input\": \"0x022c0d9f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004fe3dbb0000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f185200000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000\",",
" \"to\": \"0x4a4354ffddb257671ac00cdcedef87503ac6b352\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0x4d5e647b2d8d3a3c8c1561ebb88734bc5fc3c2941016f810cf218738c0ecd99e\",",
" \"blockNumber\": 11000000,",
" \"result\": {",
" \"gasUsed\": \"0xf2c2\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 3,",
" \"traceAddress\": [",
" 4",
" ],",
" \"transactionHash\": \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",",
" \"transactionPosition\": 26,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x4a4354ffddb257671ac00cdcedef87503ac6b352\",",
" \"gas\": \"0x33965\",",
" \"input\": \"0xa9059cbb0000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f18520000000000000000000000000000000000000000000000000000000004fe3dbb\",",
" \"to\": \"0xdac17f958d2ee523a2206206994597c13d831ec7\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0x4d5e647b2d8d3a3c8c1561ebb88734bc5fc3c2941016f810cf218738c0ecd99e\",",
" \"blockNumber\": 11000000,",
" \"result\": {",
" \"gasUsed\": \"0x4c91\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 4,",
" 0",
" ],",
" \"transactionHash\": \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",",
" \"transactionPosition\": 26,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"staticcall\",",
" \"from\": \"0x4a4354ffddb257671ac00cdcedef87503ac6b352\",",
" \"gas\": \"0x2e786\",",
" \"input\": \"0x70a082310000000000000000000000004a4354ffddb257671ac00cdcedef87503ac6b352\",",
" \"to\": \"0x5befbb272290dd5b8521d4a938f6c4757742c430\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0x4d5e647b2d8d3a3c8c1561ebb88734bc5fc3c2941016f810cf218738c0ecd99e\",",
" \"blockNumber\": 11000000,",
" \"result\": {",
" \"gasUsed\": \"0x4c2\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000076dcfe75aae8286c0\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 4,",
" 1",
" ],",
" \"transactionHash\": \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",",
" \"transactionPosition\": 26,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"staticcall\",",
" \"from\": \"0x4a4354ffddb257671ac00cdcedef87503ac6b352\",",
" \"gas\": \"0x2dca4\",",
" \"input\": \"0x70a082310000000000000000000000004a4354ffddb257671ac00cdcedef87503ac6b352\",",
" \"to\": \"0xdac17f958d2ee523a2206206994597c13d831ec7\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0x4d5e647b2d8d3a3c8c1561ebb88734bc5fc3c2941016f810cf218738c0ecd99e\",",
" \"blockNumber\": 11000000,",
" \"result\": {",
" \"gasUsed\": \"0x97f\",",
" \"output\": \"0x000000000000000000000000000000000000000000000000000000146c6d0776\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 4,",
" 2",
" ],",
" \"transactionHash\": \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",",
" \"transactionPosition\": 26,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x7a250d5630b4cf539739df2c5dacb4c659f2488d\",",
" \"gas\": \"0x271a9\",",
" \"input\": \"0x022c0d9f00000000000000000000000000000000000000000000000003483b57f55165f500000000000000000000000000000000000000000000000000000000000000000000000000000000000000006ebb1c40cd3789e6fc02f003b2416383ea5c96f400000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000\",",
" \"to\": \"0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0x4d5e647b2d8d3a3c8c1561ebb88734bc5fc3c2941016f810cf218738c0ecd99e\",",
" \"blockNumber\": 11000000,",
" \"result\": {",
" \"gasUsed\": \"0xe1fa\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 3,",
" \"traceAddress\": [",
" 5",
" ],",
" \"transactionHash\": \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",",
" \"transactionPosition\": 26,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852\",",
" \"gas\": \"0x23ffe\",",
" \"input\": \"0xa9059cbb0000000000000000000000006ebb1c40cd3789e6fc02f003b2416383ea5c96f400000000000000000000000000000000000000000000000003483b57f55165f5\",",
" \"to\": \"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0x4d5e647b2d8d3a3c8c1561ebb88734bc5fc3c2941016f810cf218738c0ecd99e\",",
" \"blockNumber\": 11000000,",
" \"result\": {",
" \"gasUsed\": \"0x3b3a\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 5,",
" 0",
" ],",
" \"transactionHash\": \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",",
" \"transactionPosition\": 26,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"staticcall\",",
" \"from\": \"0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852\",",
" \"gas\": \"0x1fea6\",",
" \"input\": \"0x70a082310000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f1852\",",
" \"to\": \"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0x4d5e647b2d8d3a3c8c1561ebb88734bc5fc3c2941016f810cf218738c0ecd99e\",",
" \"blockNumber\": 11000000,",
" \"result\": {",
" \"gasUsed\": \"0x4d2\",",
" \"output\": \"0x000000000000000000000000000000000000000000008c337c95a03673e0bf2c\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 5,",
" 1",
" ],",
" \"transactionHash\": \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",",
" \"transactionPosition\": 26,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"staticcall\",",
" \"from\": \"0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852\",",
" \"gas\": \"0x1f3b5\",",
" \"input\": \"0x70a082310000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f1852\",",
" \"to\": \"0xdac17f958d2ee523a2206206994597c13d831ec7\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0x4d5e647b2d8d3a3c8c1561ebb88734bc5fc3c2941016f810cf218738c0ecd99e\",",
" \"blockNumber\": 11000000,",
" \"result\": {",
" \"gasUsed\": \"0x97f\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000d4a5c876ea25\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 5,",
" 2",
" ],",
" \"transactionHash\": \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",",
" \"transactionPosition\": 26,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x7a250d5630b4cf539739df2c5dacb4c659f2488d\",",
" \"gas\": \"0x1875a\",",
" \"input\": \"0x022c0d9f0000000000000000000000000000000000000000000000003782dace9d90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006795e7f4219a48e083157db6b52cf70002eced5f00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000\",",
" \"to\": \"0x6ebb1c40cd3789e6fc02f003b2416383ea5c96f4\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0x4d5e647b2d8d3a3c8c1561ebb88734bc5fc3c2941016f810cf218738c0ecd99e\",",
" \"blockNumber\": 11000000,",
" \"result\": {",
" \"gasUsed\": \"0x119aa\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 3,",
" \"traceAddress\": [",
" 6",
" ],",
" \"transactionHash\": \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",",
" \"transactionPosition\": 26,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x6ebb1c40cd3789e6fc02f003b2416383ea5c96f4\",",
" \"gas\": \"0x15958\",",
" \"input\": \"0xa9059cbb0000000000000000000000006795e7f4219a48e083157db6b52cf70002eced5f0000000000000000000000000000000000000000000000003782dace9d900000\",",
" \"to\": \"0x1712aad2c773ee04bdc9114b32163c058321cd85\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0x4d5e647b2d8d3a3c8c1561ebb88734bc5fc3c2941016f810cf218738c0ecd99e\",",
" \"blockNumber\": 11000000,",
" \"result\": {",
" \"gasUsed\": \"0x776b\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 6,",
" 0",
" ],",
" \"transactionHash\": \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",",
" \"transactionPosition\": 26,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"staticcall\",",
" \"from\": \"0x6ebb1c40cd3789e6fc02f003b2416383ea5c96f4\",",
" \"gas\": \"0xdcc0\",",
" \"input\": \"0x70a082310000000000000000000000006ebb1c40cd3789e6fc02f003b2416383ea5c96f4\",",
" \"to\": \"0x1712aad2c773ee04bdc9114b32163c058321cd85\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0x4d5e647b2d8d3a3c8c1561ebb88734bc5fc3c2941016f810cf218738c0ecd99e\",",
" \"blockNumber\": 11000000,",
" \"result\": {",
" \"gasUsed\": \"0x4fe\",",
" \"output\": \"0x00000000000000000000000000000000000000000000008f2c743f90d4677323\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 6,",
" 1",
" ],",
" \"transactionHash\": \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",",
" \"transactionPosition\": 26,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"staticcall\",",
" \"from\": \"0x6ebb1c40cd3789e6fc02f003b2416383ea5c96f4\",",
" \"gas\": \"0xd1a4\",",
" \"input\": \"0x70a082310000000000000000000000006ebb1c40cd3789e6fc02f003b2416383ea5c96f4\",",
" \"to\": \"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0x4d5e647b2d8d3a3c8c1561ebb88734bc5fc3c2941016f810cf218738c0ecd99e\",",
" \"blockNumber\": 11000000,",
" \"result\": {",
" \"gasUsed\": \"0x4d2\",",
" \"output\": \"0x00000000000000000000000000000000000000000000000873e55a8eb2609578\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 6,",
" 2",
" ],",
" \"transactionHash\": \"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\",",
" \"transactionPosition\": 26,",
" \"type\": \"call\"",
" }",
" ],",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_transaction\",\n \"params\":[\"0x88162c6bcbb040fd8f6676fe336f83d7a27a5765b18bfce524beea2a0e107159\"],\n\t\"id\":\"1\"\n}\n",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_block",
"event": [
{
"listen": "test",
"script": {
"id": "181dcd6d-e8cd-4ab4-aae3-db15ad220580",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": [",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x969837498944ae1dc0dcac2d0c65634c88729b2d\",",
" \"gas\": \"0x4782ec\",",
" \"input\": \"0xc4463c80000000000000000000000000000000000000000000000000000000000000003b000000000000000000000000b656b2a9c3b2416437a811e07466ca712f5a5b5a000000000000000000000000f835a0247b0063c04ef22006ebe57c5f11977cc40000000000000000000000000000000000000000000000000000000000000009000000000000000000000000f35e2cc8e6523d683ed44870f5b7cc785051a77d\",",
" \"to\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"value\": \"0x775ec7b96add6c8f0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x3ee428\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 2,",
" \"traceAddress\": [],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"gas\": \"0x8fc\",",
" \"input\": \"0x\",",
" \"to\": \"0xf35e2cc8e6523d683ed44870f5b7cc785051a77d\",",
" \"value\": \"0x775ec7b96add6c8f0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x0\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"gas\": \"0x4567ba\",",
" \"input\": \"0x82661dc4000000000000000000000000000000000000000000000000000000000000003b000000000000000000000000b656b2a9c3b2416437a811e07466ca712f5a5b5a\",",
" \"to\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x3d248a\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 5,",
" \"traceAddress\": [",
" 1",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x44f77f\",",
" \"input\": \"0xe2faf044000000000000000000000000b656b2a9c3b2416437a811e07466ca712f5a5b5a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057870858\",",
" \"to\": \"0x4a574510c7014e4ae985403536074abe582adfc8\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x2b21c7\",",
" \"output\": \"0x000000000000000000000000304a554a310c7e546dfe434669c62820b7d83490\"",
" },",
" \"subtraces\": 1,",
" \"traceAddress\": [",
" 1,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"from\": \"0x4a574510c7014e4ae985403536074abe582adfc8\",",
" \"gas\": \"0x446e14\",",
" \"init\": \"0x606060405260405160c0806132c88339610120604052905160805160a051925160e0516101005193949293828282600f829055601083905560118054610100830261010060a860020a031990911617905560405130906001906101bc8061033e8339600160a060020a03909316908301526101408201526040519081900361016001906000f060128054600160a060020a031916919091179055505060038054600160a060020a03199081168917909155600e80549091168717905550600c84905560405130906000906101bc806104fa8339018083600160a060020a0316815260200182815260200192505050604051809103906000f0600760006101000a815481600160a060020a03021916908302179055503060006040516101bc806106b68339018083600160a060020a0316815260200182815260200192505050604051809103906000f060088054600160a060020a031916919091179055600754600160a060020a03166000141561017557610002565b600854600160a060020a03166000141561018e57610002565b426002556005600190815560008054828255829080158290116101ca57600e0281600e0283600052602060002091820191016101ca9190610245565b50505030600160a060020a03908116600090815260046020526040808220805460ff19908116600190811790925560035490941683529120805490921617905550505050505050612a56806108726000396000f35b5050600060098201819055600a820155600d81018054600160a060020a03191690556001015b8082111561033a578054600160a060020a03191681556000600182810182905560028381018054848255909281161561010002600019011604601f81901061030c57505b506000600383018190556004838101805461ffff19169055600584018290556006840182905560078401805460ff19169055600884018054838255908352602090922061021f929091028101905b8082111561033a5760008082556001820181815560028301919091556003919091018054600160a060020a03191690556102d7565b601f01602090049060005260206000209081019061028991905b8082111561033a5760008155600101610326565b50905660606040818152806101bc833960a090525160805160008054600160a060020a03191690921760a060020a60ff0219167401000000000000000000000000000000000000000090910217815561016290819061005a90396000f3606060405236156100405760e060020a60003504630221038a811461004d57806318bdc79a146100aa5780638da5cb5b146100be578063d2cc718f146100d0575b6100d96001805434019055565b6100db6004356024356000805433600160a060020a0390811691161415806100755750600034115b806100a05750805460a060020a900460ff1680156100a057508054600160a060020a03848116911614155b156100f757610002565b6100db60005460ff60a060020a9091041681565b6100ed600054600160a060020a031681565b6100db60015481565b005b60408051918252519081900360200190f35b6060908152602090f35b600160a060020a0383168260608381818185876185025a03f1925050501561015c57604080518381529051600160a060020a038516917f9735b0cb909f3d21d5c16bbcccd272d85fa11446f6d679f6ecb170d2dabfecfc919081900360200190a25060015b929150505660606040818152806101bc833960a090525160805160008054600160a060020a03191690921760a060020a60ff0219167401000000000000000000000000000000000000000090910217815561016290819061005a90396000f3606060405236156100405760e060020a60003504630221038a811461004d57806318bdc79a146100aa5780638da5cb5b146100be578063d2cc718f146100d0575b6100d96001805434019055565b6100db6004356024356000805433600160a060020a0390811691161415806100755750600034115b806100a05750805460a060020a900460ff1680156100a057508054600160a060020a03848116911614155b156100f757610002565b6100db60005460ff60a060020a9091041681565b6100ed600054600160a060020a031681565b6100db60015481565b005b60408051918252519081900360200190f35b6060908152602090f35b600160a060020a0383168260608381818185876185025a03f1925050501561015c57604080518381529051600160a060020a038516917f9735b0cb909f3d21d5c16bbcccd272d85fa11446f6d679f6ecb170d2dabfecfc919081900360200190a25060015b929150505660606040818152806101bc833960a090525160805160008054600160a060020a03191690921760a060020a60ff0219167401000000000000000000000000000000000000000090910217815561016290819061005a90396000f3606060405236156100405760e060020a60003504630221038a811461004d57806318bdc79a146100aa5780638da5cb5b146100be578063d2cc718f146100d0575b6100d96001805434019055565b6100db6004356024356000805433600160a060020a0390811691161415806100755750600034115b806100a05750805460a060020a900460ff1680156100a057508054600160a060020a03848116911614155b156100f757610002565b6100db60005460ff60a060020a9091041681565b6100ed600054600160a060020a031681565b6100db60015481565b005b604080519
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"address\": \"0x304a554a310c7e546dfe434669c62820b7d83490\",",
" \"code\": \"0x6060604052361561020e5760e060020a6000350463013cf08b8114610247578063095ea7b3146102d05780630c3b7b96146103455780630e7082031461034e578063149acf9a1461036057806318160ddd146103725780631f2dc5ef1461037b57806321b5b8dd1461039b578063237e9492146103ad57806323b872dd1461040e5780632632bf2014610441578063341458081461047257806339d1f9081461047b5780634b6753bc146104935780634df6d6cc1461049c5780634e10c3ee146104b7578063590e1ae3146104ca578063612e45a3146104db578063643f7cdd1461057a578063674ed066146105925780636837ff1e1461059b57806370a08231146105e5578063749f98891461060b57806378524b2e1461062457806381f03fcb1461067e57806382661dc41461069657806382bf6464146106b75780638b15a605146106c95780638d7af473146106d257806396d7f3f5146106e1578063a1da2fb9146106ea578063a3912ec814610704578063a9059cbb1461070f578063b7bc2c841461073f578063baac53001461074b578063be7c29c1146107b1578063c9d27afe14610817578063cc9ae3f61461082d578063cdef91d014610841578063dbde198814610859578063dd62ed3e1461087e578063e33734fd146108b2578063e5962195146108c6578063e66f53b7146108de578063eceb2945146108f0578063f8c80d261461094f575b610966600f546000906234bc000142108015610239575060125433600160a060020a03908116911614155b156109785761098033610752565b6109866004356000805482908110156100025750808052600e8202600080516020612a3683398151915201905060038101546004820154600683015460018401548454600786015460058701546009880154600a890154600d8a0154600160a060020a039586169b509599600201989760ff81811698610100909204811697949691951693168c565b61096660043560243533600160a060020a03908116600081815260156020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b61096660105481565b610a7d600754600160a060020a031681565b610a7d600e54600160a060020a031681565b61096660165481565b6109665b60004262127500600f60005054031115610de557506014610983565b610a7d601254600160a060020a031681565b60408051602060248035600481810135601f810185900485028601850190965285855261096695813595919460449492939092019181908401838280828437509496505050505050506000600060006000600060003411156116a857610002565b6109666004356024356044355b60115460009060ff1680156104315750600f5442115b80156124e957506124e78461044b565b6109666000610980335b600160a060020a0381166000908152600b602052604081205481908114156129cb57610b99565b61096660065481565b6109665b600d5430600160a060020a03163103610983565b610966600f5481565b61096660043560046020526000908152604090205460ff1681565b61096660043560243560006124cb610831565b610a9a6000341115610ba457610002565b604080516020604435600481810135601f8101849004840285018401909552848452610966948135946024803595939460649492939101918190840183828082843750506040805160209735808a0135601f81018a90048a0283018a01909352828252969897608497919650602491909101945090925082915084018382808284375094965050933593505060a435915050600060006110c1336105ec565b61096660043560096020526000908152604090205481565b61096660015481565b610a9a60043530600160a060020a031633600160a060020a03161415806105db5750600160a060020a03811660009081526004602052604090205460ff16155b156121cb576121c8565b6109666004355b600160a060020a0381166000908152601460205260409020545b919050565b6109666004356024356000600034111561259957610002565b610966600062e6b680420360026000505410806106505750600354600160a060020a0390811633909116145b80156106645750600254621274ff19420190105b156126145750426002908155600180549091028155610983565b610966600435600a6020526000908152604090205481565b610966600435602435600060006000600060006000341115611ba157610002565b610a7d600854600160a060020a031681565b610966600c5481565b61096660005460001901610983565b61096660025481565b61096660043560006000600060003411156121fc57610002565b6109665b6001610983565b6109666004356024355b60115460009060ff16801561072f5750600f5442115b801561248757506124853361044b565b61096660115460ff1681565b6109666004355b60006000600f600050544210801561076a5750600034115b80156107a457506011546101009004600160a060020a0316600014806107a457506011546101009004600160a060020a0390811633909116145b15610b9f57610a9c61037f565b610a7d600435600060006000508281548110156100025750508080527f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56b600
" \"gasUsed\": \"0x2a97ef\"",
" },",
" \"subtraces\": 3,",
" \"traceAddress\": [",
" 1,",
" 0,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"create\"",
" },",
" {",
" \"action\": {",
" \"from\": \"0x304a554a310c7e546dfe434669c62820b7d83490\",",
" \"gas\": \"0x433f5e\",",
" \"init\": \"0x60606040818152806101bc833960a090525160805160008054600160a060020a03191690921760a060020a60ff0219167401000000000000000000000000000000000000000090910217815561016290819061005a90396000f3606060405236156100405760e060020a60003504630221038a811461004d57806318bdc79a146100aa5780638da5cb5b146100be578063d2cc718f146100d0575b6100d96001805434019055565b6100db6004356024356000805433600160a060020a0390811691161415806100755750600034115b806100a05750805460a060020a900460ff1680156100a057508054600160a060020a03848116911614155b156100f757610002565b6100db60005460ff60a060020a9091041681565b6100ed600054600160a060020a031681565b6100db60015481565b005b60408051918252519081900360200190f35b6060908152602090f35b600160a060020a0383168260608381818185876185025a03f1925050501561015c57604080518381529051600160a060020a038516917f9735b0cb909f3d21d5c16bbcccd272d85fa11446f6d679f6ecb170d2dabfecfc919081900360200190a25060015b9291505056000000000000000000000000304a554a310c7e546dfe434669c62820b7d834900000000000000000000000000000000000000000000000000000000000000001\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"address\": \"0x914d1b8b43e92723e64fd0a06f5bdb8dd9b10c79\",",
" \"code\": \"0x606060405236156100405760e060020a60003504630221038a811461004d57806318bdc79a146100aa5780638da5cb5b146100be578063d2cc718f146100d0575b6100d96001805434019055565b6100db6004356024356000805433600160a060020a0390811691161415806100755750600034115b806100a05750805460a060020a900460ff1680156100a057508054600160a060020a03848116911614155b156100f757610002565b6100db60005460ff60a060020a9091041681565b6100ed600054600160a060020a031681565b6100db60015481565b005b60408051918252519081900360200190f35b6060908152602090f35b600160a060020a0383168260608381818185876185025a03f1925050501561015c57604080518381529051600160a060020a038516917f9735b0cb909f3d21d5c16bbcccd272d85fa11446f6d679f6ecb170d2dabfecfc919081900360200190a25060015b9291505056\",",
" \"gasUsed\": \"0x163e6\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 0,",
" 0,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"create\"",
" },",
" {",
" \"action\": {",
" \"from\": \"0x304a554a310c7e546dfe434669c62820b7d83490\",",
" \"gas\": \"0x405eab\",",
" \"init\": \"0x60606040818152806101bc833960a090525160805160008054600160a060020a03191690921760a060020a60ff0219167401000000000000000000000000000000000000000090910217815561016290819061005a90396000f3606060405236156100405760e060020a60003504630221038a811461004d57806318bdc79a146100aa5780638da5cb5b146100be578063d2cc718f146100d0575b6100d96001805434019055565b6100db6004356024356000805433600160a060020a0390811691161415806100755750600034115b806100a05750805460a060020a900460ff1680156100a057508054600160a060020a03848116911614155b156100f757610002565b6100db60005460ff60a060020a9091041681565b6100ed600054600160a060020a031681565b6100db60015481565b005b60408051918252519081900360200190f35b6060908152602090f35b600160a060020a0383168260608381818185876185025a03f1925050501561015c57604080518381529051600160a060020a038516917f9735b0cb909f3d21d5c16bbcccd272d85fa11446f6d679f6ecb170d2dabfecfc919081900360200190a25060015b9291505056000000000000000000000000304a554a310c7e546dfe434669c62820b7d834900000000000000000000000000000000000000000000000000000000000000000\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"address\": \"0xad3ecf23c0c8983b07163708be6d763b5f056193\",",
" \"code\": \"0x606060405236156100405760e060020a60003504630221038a811461004d57806318bdc79a146100aa5780638da5cb5b146100be578063d2cc718f146100d0575b6100d96001805434019055565b6100db6004356024356000805433600160a060020a0390811691161415806100755750600034115b806100a05750805460a060020a900460ff1680156100a057508054600160a060020a03848116911614155b156100f757610002565b6100db60005460ff60a060020a9091041681565b6100ed600054600160a060020a031681565b6100db60015481565b005b60408051918252519081900360200190f35b6060908152602090f35b600160a060020a0383168260608381818185876185025a03f1925050501561015c57604080518381529051600160a060020a038516917f9735b0cb909f3d21d5c16bbcccd272d85fa11446f6d679f6ecb170d2dabfecfc919081900360200190a25060015b9291505056\",",
" \"gasUsed\": \"0x163e6\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 0,",
" 0,",
" 1",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"create\"",
" },",
" {",
" \"action\": {",
" \"from\": \"0x304a554a310c7e546dfe434669c62820b7d83490\",",
" \"gas\": \"0x3e2e73\",",
" \"init\": \"0x60606040818152806101bc833960a090525160805160008054600160a060020a03191690921760a060020a60ff0219167401000000000000000000000000000000000000000090910217815561016290819061005a90396000f3606060405236156100405760e060020a60003504630221038a811461004d57806318bdc79a146100aa5780638da5cb5b146100be578063d2cc718f146100d0575b6100d96001805434019055565b6100db6004356024356000805433600160a060020a0390811691161415806100755750600034115b806100a05750805460a060020a900460ff1680156100a057508054600160a060020a03848116911614155b156100f757610002565b6100db60005460ff60a060020a9091041681565b6100ed600054600160a060020a031681565b6100db60015481565b005b60408051918252519081900360200190f35b6060908152602090f35b600160a060020a0383168260608381818185876185025a03f1925050501561015c57604080518381529051600160a060020a038516917f9735b0cb909f3d21d5c16bbcccd272d85fa11446f6d679f6ecb170d2dabfecfc919081900360200190a25060015b9291505056000000000000000000000000304a554a310c7e546dfe434669c62820b7d834900000000000000000000000000000000000000000000000000000000000000000\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"address\": \"0x1d29edb6997993a16c5086733cfd735d01df787c\",",
" \"code\": \"0x606060405236156100405760e060020a60003504630221038a811461004d57806318bdc79a146100aa5780638da5cb5b146100be578063d2cc718f146100d0575b6100d96001805434019055565b6100db6004356024356000805433600160a060020a0390811691161415806100755750600034115b806100a05750805460a060020a900460ff1680156100a057508054600160a060020a03848116911614155b156100f757610002565b6100db60005460ff60a060020a9091041681565b6100ed600054600160a060020a031681565b6100db60015481565b005b60408051918252519081900360200190f35b6060908152602090f35b600160a060020a0383168260608381818185876185025a03f1925050501561015c57604080518381529051600160a060020a038516917f9735b0cb909f3d21d5c16bbcccd272d85fa11446f6d679f6ecb170d2dabfecfc919081900360200190a25060015b9291505056\",",
" \"gasUsed\": \"0x163e6\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 0,",
" 0,",
" 2",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"create\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x18a010\",",
" \"input\": \"0xbaac5300000000000000000000000000c0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"to\": \"0x304a554a310c7e546dfe434669c62820b7d83490\",",
" \"value\": \"0xdfd4116684423b208\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x124c9\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 1,",
" \"traceAddress\": [",
" 1,",
" 1",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x304a554a310c7e546dfe434669c62820b7d83490\",",
" \"gas\": \"0x181512\",",
" \"input\": \"0x\",",
" \"to\": \"0x914d1b8b43e92723e64fd0a06f5bdb8dd9b10c79\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x13f9\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 1,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x171a62\",",
" \"input\": \"0xd2cc718f\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x113\",",
" \"output\": \"0x00000000000000000000000000000000000000000000000000038d7ea4c68000\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 2",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x17168c\",",
" \"input\": \"0xd2cc718f\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x113\",",
" \"output\": \"0x00000000000000000000000000000000000000000000000000038d7ea4c68000\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 3",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x171316\",",
" \"input\": \"0x0221038a000000000000000000000000c0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89000000000000000000000000000000000000000000000000000000052aa8b9ab\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0xea64e\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 1,",
" \"traceAddress\": [",
" 1,",
" 4",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"gas\": \"0x169540\",",
" \"input\": \"0x\",",
" \"to\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"value\": \"0x52aa8b9ab\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0xe8407\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 2,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"gas\": \"0x1632a8\",",
" \"input\": \"0x0e708203\",",
" \"to\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x15f\",",
" \"output\": \"0x000000000000000000000000d2e16a20dd7b1ae54fb0312209784478d069c7b0\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"gas\": \"0x161ae8\",",
" \"input\": \"0x82661dc4000000000000000000000000000000000000000000000000000000000000003b000000000000000000000000b656b2a9c3b2416437a811e07466ca712f5a5b5a\",",
" \"to\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0xe6afb\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 4,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x159290\",",
" \"input\": \"0xbaac5300000000000000000000000000c0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"to\": \"0x304a554a310c7e546dfe434669c62820b7d83490\",",
" \"value\": \"0xdfd4116684423b208\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x5cdf\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 1,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x304a554a310c7e546dfe434669c62820b7d83490\",",
" \"gas\": \"0x150792\",",
" \"input\": \"0x\",",
" \"to\": \"0x914d1b8b43e92723e64fd0a06f5bdb8dd9b10c79\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x13f9\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 0,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x14d4cc\",",
" \"input\": \"0xd2cc718f\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x113\",",
" \"output\": \"0x00000000000000000000000000000000000000000000000000038d7ea4c68000\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 1",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x14d0f6\",",
" \"input\": \"0xd2cc718f\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x113\",",
" \"output\": \"0x00000000000000000000000000000000000000000000000000038d7ea4c68000\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 2",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x14cd7d\",",
" \"input\": \"0x0221038a000000000000000000000000c0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89000000000000000000000000000000000000000000000000000000052aa8b9ab\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0xcf3f8\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 1,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"gas\": \"0x144fa7\",",
" \"input\": \"0x\",",
" \"to\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"value\": \"0x52aa8b9ab\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0xcd1b1\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 2,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"gas\": \"0x13ed0f\",",
" \"input\": \"0x0e708203\",",
" \"to\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x15f\",",
" \"output\": \"0x000000000000000000000000d2e16a20dd7b1ae54fb0312209784478d069c7b0\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"gas\": \"0x13d54f\",",
" \"input\": \"0x82661dc4000000000000000000000000000000000000000000000000000000000000003b000000000000000000000000b656b2a9c3b2416437a811e07466ca712f5a5b5a\",",
" \"to\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0xcb8a5\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 4,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x134cf7\",",
" \"input\": \"0xbaac5300000000000000000000000000c0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"to\": \"0x304a554a310c7e546dfe434669c62820b7d83490\",",
" \"value\": \"0xdfd4116684423b208\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x5cdf\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 1,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x304a554a310c7e546dfe434669c62820b7d83490\",",
" \"gas\": \"0x12c1f9\",",
" \"input\": \"0x\",",
" \"to\": \"0x914d1b8b43e92723e64fd0a06f5bdb8dd9b10c79\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x13f9\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 0,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x128f33\",",
" \"input\": \"0xd2cc718f\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x113\",",
" \"output\": \"0x00000000000000000000000000000000000000000000000000038d7ea4c68000\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 1",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x128b5d\",",
" \"input\": \"0xd2cc718f\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x113\",",
" \"output\": \"0x00000000000000000000000000000000000000000000000000038d7ea4c68000\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 2",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x1287e4\",",
" \"input\": \"0x0221038a000000000000000000000000c0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89000000000000000000000000000000000000000000000000000000052aa8b9ab\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0xb41a2\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 1,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"gas\": \"0x120a0e\",",
" \"input\": \"0x\",",
" \"to\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"value\": \"0x52aa8b9ab\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0xb1f5b\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 2,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"gas\": \"0x11a776\",",
" \"input\": \"0x0e708203\",",
" \"to\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x15f\",",
" \"output\": \"0x000000000000000000000000d2e16a20dd7b1ae54fb0312209784478d069c7b0\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"gas\": \"0x118fb6\",",
" \"input\": \"0x82661dc4000000000000000000000000000000000000000000000000000000000000003b000000000000000000000000b656b2a9c3b2416437a811e07466ca712f5a5b5a\",",
" \"to\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0xb064f\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 4,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x11075e\",",
" \"input\": \"0xbaac5300000000000000000000000000c0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"to\": \"0x304a554a310c7e546dfe434669c62820b7d83490\",",
" \"value\": \"0xdfd4116684423b208\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x5cdf\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 1,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x304a554a310c7e546dfe434669c62820b7d83490\",",
" \"gas\": \"0x107c60\",",
" \"input\": \"0x\",",
" \"to\": \"0x914d1b8b43e92723e64fd0a06f5bdb8dd9b10c79\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x13f9\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 0,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x10499a\",",
" \"input\": \"0xd2cc718f\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x113\",",
" \"output\": \"0x00000000000000000000000000000000000000000000000000038d7ea4c68000\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 1",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x1045c4\",",
" \"input\": \"0xd2cc718f\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x113\",",
" \"output\": \"0x00000000000000000000000000000000000000000000000000038d7ea4c68000\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 2",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x10424b\",",
" \"input\": \"0x0221038a000000000000000000000000c0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89000000000000000000000000000000000000000000000000000000052aa8b9ab\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x98f4c\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 1,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"gas\": \"0xfc475\",",
" \"input\": \"0x\",",
" \"to\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"value\": \"0x52aa8b9ab\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x96d05\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 2,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"gas\": \"0xf61dd\",",
" \"input\": \"0x0e708203\",",
" \"to\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x15f\",",
" \"output\": \"0x000000000000000000000000d2e16a20dd7b1ae54fb0312209784478d069c7b0\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"gas\": \"0xf4a1d\",",
" \"input\": \"0x82661dc4000000000000000000000000000000000000000000000000000000000000003b000000000000000000000000b656b2a9c3b2416437a811e07466ca712f5a5b5a\",",
" \"to\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x953f9\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 4,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0xec1c5\",",
" \"input\": \"0xbaac5300000000000000000000000000c0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"to\": \"0x304a554a310c7e546dfe434669c62820b7d83490\",",
" \"value\": \"0xdfd4116684423b208\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x5cdf\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 1,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x304a554a310c7e546dfe434669c62820b7d83490\",",
" \"gas\": \"0xe36c7\",",
" \"input\": \"0x\",",
" \"to\": \"0x914d1b8b43e92723e64fd0a06f5bdb8dd9b10c79\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x13f9\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 0,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0xe0401\",",
" \"input\": \"0xd2cc718f\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x113\",",
" \"output\": \"0x00000000000000000000000000000000000000000000000000038d7ea4c68000\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 1",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0xe002b\",",
" \"input\": \"0xd2cc718f\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x113\",",
" \"output\": \"0x00000000000000000000000000000000000000000000000000038d7ea4c68000\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 2",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0xdfcb2\",",
" \"input\": \"0x0221038a000000000000000000000000c0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89000000000000000000000000000000000000000000000000000000052aa8b9ab\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x7dcf6\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 1,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"gas\": \"0xd7edc\",",
" \"input\": \"0x\",",
" \"to\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"value\": \"0x52aa8b9ab\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x7baaf\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 2,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"gas\": \"0xd1c44\",",
" \"input\": \"0x0e708203\",",
" \"to\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x15f\",",
" \"output\": \"0x000000000000000000000000d2e16a20dd7b1ae54fb0312209784478d069c7b0\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"gas\": \"0xd0484\",",
" \"input\": \"0x82661dc4000000000000000000000000000000000000000000000000000000000000003b000000000000000000000000b656b2a9c3b2416437a811e07466ca712f5a5b5a\",",
" \"to\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x7a1a3\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 4,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0xc7c2c\",",
" \"input\": \"0xbaac5300000000000000000000000000c0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"to\": \"0x304a554a310c7e546dfe434669c62820b7d83490\",",
" \"value\": \"0xdfd4116684423b208\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x5cdf\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 1,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x304a554a310c7e546dfe434669c62820b7d83490\",",
" \"gas\": \"0xbf12e\",",
" \"input\": \"0x\",",
" \"to\": \"0x914d1b8b43e92723e64fd0a06f5bdb8dd9b10c79\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x13f9\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 0,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0xbbe68\",",
" \"input\": \"0xd2cc718f\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x113\",",
" \"output\": \"0x00000000000000000000000000000000000000000000000000038d7ea4c68000\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 1",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0xbba92\",",
" \"input\": \"0xd2cc718f\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x113\",",
" \"output\": \"0x00000000000000000000000000000000000000000000000000038d7ea4c68000\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 2",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0xbb719\",",
" \"input\": \"0x0221038a000000000000000000000000c0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89000000000000000000000000000000000000000000000000000000052aa8b9ab\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x62aa0\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 1,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"gas\": \"0xb3943\",",
" \"input\": \"0x\",",
" \"to\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"value\": \"0x52aa8b9ab\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x60859\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 2,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"gas\": \"0xad6ab\",",
" \"input\": \"0x0e708203\",",
" \"to\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x15f\",",
" \"output\": \"0x000000000000000000000000d2e16a20dd7b1ae54fb0312209784478d069c7b0\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"gas\": \"0xabeeb\",",
" \"input\": \"0x82661dc4000000000000000000000000000000000000000000000000000000000000003b000000000000000000000000b656b2a9c3b2416437a811e07466ca712f5a5b5a\",",
" \"to\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x5ef4d\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 4,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0xa3693\",",
" \"input\": \"0xbaac5300000000000000000000000000c0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"to\": \"0x304a554a310c7e546dfe434669c62820b7d83490\",",
" \"value\": \"0xdfd4116684423b208\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x5cdf\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 1,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x304a554a310c7e546dfe434669c62820b7d83490\",",
" \"gas\": \"0x9ab95\",",
" \"input\": \"0x\",",
" \"to\": \"0x914d1b8b43e92723e64fd0a06f5bdb8dd9b10c79\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x13f9\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 0,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x978cf\",",
" \"input\": \"0xd2cc718f\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x113\",",
" \"output\": \"0x00000000000000000000000000000000000000000000000000038d7ea4c68000\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 1",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x974f9\",",
" \"input\": \"0xd2cc718f\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x113\",",
" \"output\": \"0x00000000000000000000000000000000000000000000000000038d7ea4c68000\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 2",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x97180\",",
" \"input\": \"0x0221038a000000000000000000000000c0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89000000000000000000000000000000000000000000000000000000052aa8b9ab\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x4784a\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 1,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"gas\": \"0x8f3aa\",",
" \"input\": \"0x\",",
" \"to\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"value\": \"0x52aa8b9ab\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x45603\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 2,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"gas\": \"0x89112\",",
" \"input\": \"0x0e708203\",",
" \"to\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x15f\",",
" \"output\": \"0x000000000000000000000000d2e16a20dd7b1ae54fb0312209784478d069c7b0\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"gas\": \"0x87952\",",
" \"input\": \"0x82661dc4000000000000000000000000000000000000000000000000000000000000003b000000000000000000000000b656b2a9c3b2416437a811e07466ca712f5a5b5a\",",
" \"to\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x43cf7\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 4,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x7f0fa\",",
" \"input\": \"0xbaac5300000000000000000000000000c0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"to\": \"0x304a554a310c7e546dfe434669c62820b7d83490\",",
" \"value\": \"0xdfd4116684423b208\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x5cdf\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 1,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x304a554a310c7e546dfe434669c62820b7d83490\",",
" \"gas\": \"0x765fc\",",
" \"input\": \"0x\",",
" \"to\": \"0x914d1b8b43e92723e64fd0a06f5bdb8dd9b10c79\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x13f9\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 0,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x73336\",",
" \"input\": \"0xd2cc718f\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x113\",",
" \"output\": \"0x00000000000000000000000000000000000000000000000000038d7ea4c68000\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 1",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x72f60\",",
" \"input\": \"0xd2cc718f\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x113\",",
" \"output\": \"0x00000000000000000000000000000000000000000000000000038d7ea4c68000\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 2",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x72be7\",",
" \"input\": \"0x0221038a000000000000000000000000c0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89000000000000000000000000000000000000000000000000000000052aa8b9ab\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x2c5f4\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 1,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"gas\": \"0x6ae11\",",
" \"input\": \"0x\",",
" \"to\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"value\": \"0x52aa8b9ab\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x2a3ad\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 2,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"gas\": \"0x64b79\",",
" \"input\": \"0x0e708203\",",
" \"to\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x15f\",",
" \"output\": \"0x000000000000000000000000d2e16a20dd7b1ae54fb0312209784478d069c7b0\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"gas\": \"0x633b9\",",
" \"input\": \"0x82661dc4000000000000000000000000000000000000000000000000000000000000003b000000000000000000000000b656b2a9c3b2416437a811e07466ca712f5a5b5a\",",
" \"to\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x28aa1\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 4,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x5ab61\",",
" \"input\": \"0xbaac5300000000000000000000000000c0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"to\": \"0x304a554a310c7e546dfe434669c62820b7d83490\",",
" \"value\": \"0xdfd4116684423b208\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x5cdf\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 1,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x304a554a310c7e546dfe434669c62820b7d83490\",",
" \"gas\": \"0x52063\",",
" \"input\": \"0x\",",
" \"to\": \"0x914d1b8b43e92723e64fd0a06f5bdb8dd9b10c79\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x13f9\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 0,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x4ed9d\",",
" \"input\": \"0xd2cc718f\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x113\",",
" \"output\": \"0x00000000000000000000000000000000000000000000000000038d7ea4c68000\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 1",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x4e9c7\",",
" \"input\": \"0xd2cc718f\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x113\",",
" \"output\": \"0x00000000000000000000000000000000000000000000000000038d7ea4c68000\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 2",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"gas\": \"0x4e64e\",",
" \"input\": \"0x0221038a000000000000000000000000c0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89000000000000000000000000000000000000000000000000000000052aa8b9ab\",",
" \"to\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x1139e\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 1,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xd2e16a20dd7b1ae54fb0312209784478d069c7b0\",",
" \"gas\": \"0x46878\",",
" \"input\": \"0x\",",
" \"to\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"value\": \"0x52aa8b9ab\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0xf157\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 3,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"gas\": \"0x405e0\",",
" \"input\": \"0x0e708203\",",
" \"to\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x15f\",",
" \"output\": \"0x000000000000000000000000d2e16a20dd7b1ae54fb0312209784478d069c7b0\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 0",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"gas\": \"0x4024b\",",
" \"input\": \"0x70a08231000000000000000000000000c0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"to\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x314\",",
" \"output\": \"0x00000000000000000000000000000000000000000000000dfd3f956d86e77600\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xc0ee9db1a9e07ca63e4ff0d5fb6f86bf68d47b89\",",
" \"gas\": \"0x3fe60\",",
" \"input\": \"0xa9059cbb000000000000000000000000f835a0247b0063c04ef22006ebe57c5f11977cc400000000000000000000000000000000000000000000000dfd3f956d86e77600\",",
" \"to\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0xd4fa\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 1,",
" 4,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 1,",
" 3,",
" 0,",
" 2",
" ],",
" \"transactionHash\": \"0x0ec3f2488a93839524add10ea229e773f6bc891b4eb4794c3337d4495263790b\",",
" \"transactionPosition\": 0,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x2dd9d8e62af6e839b4ed0d869094198ee7e02bff\",",
" \"gas\": \"0x0\",",
" \"input\": \"0x\",",
" \"to\": \"0x46e943ad525b7fe18f8240d944028c7890da135c\",",
" \"value\": \"0xb1a2bc2ec50000\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x0\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [],",
" \"transactionHash\": \"0x61db76fc3fe109ad548d91d321daf76dc2ef2f683dc3c4006377d1da8629e274\",",
" \"transactionPosition\": 1,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x286635c294b61bf10f416bbb7b579a0035379d33\",",
" \"gas\": \"0x10d88\",",
" \"input\": \"0x\",",
" \"to\": \"0x81d246bf10386b5702193202b865b0e45bd97f1a\",",
" \"value\": \"0x393ef1a5127c80000\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x0\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [],",
" \"transactionHash\": \"0x877db25210ca8be928280112b8b3b4a3afced1d35eb8cd795ac730c7e89d88a3\",",
" \"transactionPosition\": 2,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0xfecd1b8e3a1e21b304bfba7e5fb5241169e1fa1d\",",
" \"gas\": \"0x0\",",
" \"input\": \"0x\",",
" \"to\": \"0x7ed1e469fcb3ee19c0366d829e291451be638e59\",",
" \"value\": \"0x9e4e3e07f0b2fc00\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x0\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [],",
" \"transactionHash\": \"0xe7b3edd1d02b869b4d0eac0be43a67f0ac2f5b190f5a49f37ac59a98b17f56a3\",",
" \"transactionPosition\": 3,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x0a869d79a7052c7f1b55a8ebabbea3420f0d1e13\",",
" \"gas\": \"0x74148\",",
" \"input\": \"0xf5537ede000000000000000000000000bb9bc244d798123fde783fcc1c72d3bb8c1894130000000000000000000000000a869d79a7052c7f1b55a8ebabbea3420f0d1e1300000000000000000000000000000000000000000000000000b1a2bc2ec50000\",",
" \"to\": \"0x447f914fee54e1f9dc1fc5276ae2572b9369ae5d\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x68eb\",",
" \"output\": \"0x\"",
" },",
" \"subtraces\": 1,",
" \"traceAddress\": [],",
" \"transactionHash\": \"0xe11112b361cc2ffdc4815513dcb337beb83be014bcc89cd39a984f3d458e668d\",",
" \"transactionPosition\": 4,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"callType\": \"call\",",
" \"from\": \"0x447f914fee54e1f9dc1fc5276ae2572b9369ae5d\",",
" \"gas\": \"0x6ddd9\",",
" \"input\": \"0xa9059cbb0000000000000000000000000a869d79a7052c7f1b55a8ebabbea3420f0d1e1300000000000000000000000000000000000000000000000000b1a2bc2ec50000\",",
" \"to\": \"0xbb9bc244d798123fde783fcc1c72d3bb8c189413\",",
" \"value\": \"0x0\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": {",
" \"gasUsed\": \"0x5fca\",",
" \"output\": \"0x0000000000000000000000000000000000000000000000000000000000000001\"",
" },",
" \"subtraces\": 0,",
" \"traceAddress\": [",
" 0",
" ],",
" \"transactionHash\": \"0xe11112b361cc2ffdc4815513dcb337beb83be014bcc89cd39a984f3d458e668d\",",
" \"transactionPosition\": 4,",
" \"type\": \"call\"",
" },",
" {",
" \"action\": {",
" \"author\": \"0xbcdfc35b86bedf72f0cda046a3c16829a2ef41d1\",",
" \"rewardType\": \"block\",",
" \"value\": \"0x4563918244f40000\"",
" },",
" \"blockHash\": \"0xcaaa13ce099342d5e1342b04d588d7733093591666af8ef756ce20cf13d16475\",",
" \"blockNumber\": 1718497,",
" \"result\": null,",
" \"subtraces\": 0,",
" \"traceAddress\": [],",
" \"transactionHash\": null,",
" \"transactionPosition\": null,",
" \"type\": \"reward\"",
" }",
" ],",
" \"id\": \"1\"",
"}",
"",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_block\",\n\t\"params\":[\"0x1a38e1\"],\n\t\"id\":\"1\"\n}\n",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
},
{
"name": "trace_filter",
"event": [
{
"listen": "test",
"script": {
"id": "f524ed84-7851-4a5a-88f2-4d19a10e74cb",
"exec": [
"var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"result\": [",
" {",
" \"action\": {",
" \"author\": \"0x5088d623ba0fcf0131e0897a91734a4d83596aa0\",",
" \"rewardType\": \"block\",",
" \"value\": \"0x478eae0e571ba000\"",
" },",
" \"blockHash\": \"0x3d6122660cc824376f11ee842f83addc3525e2dd6756b9bcf0affa6aa88cf741\",",
" \"blockNumber\": 3,",
" \"result\": null,",
" \"subtraces\": 0,",
" \"traceAddress\": [],",
" \"transactionHash\": null,",
" \"transactionPosition\": null,",
" \"type\": \"reward\"",
" },",
" {",
" \"action\": {",
" \"author\": \"0xc8ebccc5f5689fa8659d83713341e5ad19349448\",",
" \"rewardType\": \"uncle\",",
" \"value\": \"0x340aad21b3b70000\"",
" },",
" \"blockHash\": \"0x3d6122660cc824376f11ee842f83addc3525e2dd6756b9bcf0affa6aa88cf741\",",
" \"blockNumber\": 3,",
" \"result\": null,",
" \"subtraces\": 0,",
" \"traceAddress\": [],",
" \"transactionHash\": null,",
" \"transactionPosition\": null,",
" \"type\": \"reward\"",
" }",
" ],",
" \"id\": \"1\"",
"}",
"pm.test('Has correct result', function() {",
" pm.expect(pm.response.json()).to.be.deep.equal(expected);",
"})"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"jsonrpc\":\"2.0\",\n\t\"method\":\"trace_filter\",\n \"params\":[\n {\n \"fromBlock\":\"0x3\",\n \"toBlock\":\"0x3\"\n }\n ],\n\t\"id\":\"1\"\n}\n",
"options": {
"raw": {}
}
},
"url": {
"raw": "{{HOST}}",
"host": [
"{{HOST}}"
]
}
},
"response": []
}
],
"event": [
{
"listen": "prerequest",
"script": {
"id": "f660f521-60fc-4561-bacd-14ab00640a12",
"type": "text/javascript",
"exec": [
"utils = {",
" notImplemented: function(methodName, jsonData) {",
" var isErigon = pm.environment.get('HOST') == \"{{ERIGON}}\";",
" var isSilk = pm.environment.get('HOST') == \"{{SILKRPC}}\";",
" if (!isErigon && !isSilk) // only test erigon",
" return;",
"",
" var testNotImplemented = pm.globals.get('TEST_NOT_IMPLEMENTED') === 'true';",
" if (testNotImplemented) { // defaults to false, therefore don't test",
" pm.test('NOT IMPLEMENTED', function() {",
" pm.expect(false).to.be(true);",
" })",
" } else {",
" // pass unless user has explicitly told us to test not implemented",
" var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"id\": \"1\",",
" \"error\": {",
" \"code\": -32000,",
" \"message\": \"the method is currently not implemented: \" + methodName",
" }",
" }",
" if (jsonData.error)",
" delete jsonData.error.data;",
" pm.test('NOT IMPLEMENTED', function() {",
" pm.expect(jsonData).to.deep.equals(expected);",
" })",
" }",
" },",
"",
" isDeprecated: function(methodName, jsonData) {",
" var isErigon = pm.environment.get('HOST') == \"{{ERIGON}}\";",
" var isSilk = pm.environment.get('HOST') == \"{{SILKRPC}}\";",
" if (!isErigon && !isSilk) // only test erigon",
" return;",
"",
" var testDeprecated = pm.globals.get('TEST_DEPRECATED') === 'true';",
" if (testDeprecated) { // defaults to false, therefore don't test",
" pm.test('DEPRECATED', function() {",
" console.log(\"testDeprecated2: \", testDeprecated)",
" pm.expect(false).to.be(true);",
" })",
" } else {",
" // pass unless user has explicitly told us to fail deprecated",
" var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"id\": \"1\",",
" \"error\": {",
" \"code\": -32000,",
" \"message\": \"the method has been deprecated: \" + methodName",
" }",
" }",
" if (jsonData.error)",
" delete jsonData.error.data;",
" pm.test('DEPRECATED', function() {",
" pm.expect(jsonData).to.deep.equals(expected);",
" })",
" }",
" },",
"",
" cannotTest: function(methodName, jsonData) {",
" var isErigon = pm.environment.get('HOST') == \"{{ERIGON}}\";",
" var isSilk = pm.environment.get('HOST') == \"{{SILKRPC}}\";",
" if (!isErigon && !isSilk) // only test erigon",
" return;",
"",
" var expected = {",
" \"jsonrpc\": \"2.0\",",
" \"id\": \"1\",",
" \"result\": \"Cannot test - value changes\"",
" }",
" pm.test('VALUE CHANGES, CANNOT TEST: ' + methodName, function() {",
" jsonData.result = \"Cannot test - value changes\";",
" pm.expect(jsonData).to.deep.equals(expected);",
" })",
" },",
"};"
]
}
},
{
"listen": "test",
"script": {
"id": "8e45cd97-14f5-42f7-9df7-fe5e2824be86",
"type": "text/javascript",
"exec": [
"pm.test('Base tests', function() {",
" const jsonData = pm.response.json();",
" pm.response.to.have.status(200);",
" pm.expect(jsonData !== null)",
" jsonData.errors == null || pm.expect(jsonData.errors).to.be.empty;",
"})",
""
]
}
}
],
"protocolProfileBehavior": {}
}