Skip to content

Instantly share code, notes, and snippets.

@adamwhitakerwilson
Last active February 13, 2021 22:36
Show Gist options
  • Save adamwhitakerwilson/8bb98e27fe0b98d8135594d455f16702 to your computer and use it in GitHub Desktop.
Save adamwhitakerwilson/8bb98e27fe0b98d8135594d455f16702 to your computer and use it in GitHub Desktop.
Getting LOG_SWAP events from a balancer D2 fund to retrieve associated D1 fund addresses.
// Assuming you have a Balancer pool address, you can use this address to grab any topic hash using our topic calulator tool
// @ https://www.covalenthq.com/docs/tools/topic-calculator
// After copying the relevant topic hash, in this case I selected
// 0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378
// which is associated with LOG_SWAP events. We can now pass this information as parameters
// (in this case I used sender_address: 0x04df4fbb6a003d1db3dd83d6d3b9951455837fff
// and topic_hash: 0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378) into our
// Get log events by topic hash(es) endpoint which will return each decoded LOG_SWAP log event
// associated with the the balancer pool.
// We can now simply select all distinct assets from parameter "tokenIn" to get all D1 funds associated with this D2 fund
// and do whatever you want with the rest of the information.
// https://api.covalenthq.com/v1/1/events/topics/0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378/?starting-block=11000001&ending-block=latest&sender-address=0x04df4fbb6a003d1db3dd83d6d3b9951455837fff"
{
"data": {
"items": [
{
"block_signed_at": "2021-01-05T20:27:14Z",
"block_height": 11596706,
"tx_offset": 36,
"log_offset": 46,
"tx_hash": "0xee915aeb0aa44a581c2de6a81c6a7afd0b3b1a8e8f1f08c871aa347b3a5c484d",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000066e8cf3aa42c17e00000000000000000000000000000000000000000000000000749a05c52ff2be",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "463462789827182974"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "32820446872203966"
}
]
}
},
{
"block_signed_at": "2021-01-05T20:27:14Z",
"block_height": 11596706,
"tx_offset": 37,
"log_offset": 65,
"tx_hash": "0xe78abf394565d9faf7ec834343647954ff8e15aee2ef37320cee5f1c78b8415c",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x00000000000000000000000078a55b9b3bbeffb36a43d9905f654d2769dc55e8",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000003655c52ae740e2e00000000000000000000000000000000000000000000000003477d616d5a8f0f",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "244703264945475118"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "236295362860191503"
}
]
}
},
{
"block_signed_at": "2021-01-05T20:27:47Z",
"block_height": 11596708,
"tx_offset": 120,
"log_offset": 307,
"tx_hash": "0x50f076610c588f83662a53fbe564364b046185526195a149d3be6461dc48163f",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000001d1c8c1aa9d06400000000000000000000000000000000000000000000000001a578f5ce8f3c99",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "8194162392944740"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "118633962323000473"
}
]
}
},
{
"block_signed_at": "2021-01-05T20:27:47Z",
"block_height": 11596708,
"tx_offset": 121,
"log_offset": 326,
"tx_hash": "0x9d29020345d28cc6e391991bb8458655231a5a83277092e396fbaf1e75677d68",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x000000000000000000000000860bd2dba9cd475a61e6d1b45e16c365f6d78f66",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x0000000000000000000000000000000000000000000000000265bbcabf03ef9b00000000000000000000000000000000000000000000000000b158bec0727cad",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "172750640186126235"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "49918647173545133"
}
]
}
},
{
"block_signed_at": "2021-01-05T20:27:49Z",
"block_height": 11596709,
"tx_offset": 18,
"log_offset": 21,
"tx_hash": "0xdb32c092ceb2bda8f895acb84fd90496ce74f3b29cc26b58bc4146cc1855d7ba",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x000000000000000000000000860bd2dba9cd475a61e6d1b45e16c365f6d78f66",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000002604c2143536080000000000000000000000000000000000000000000000000223dca07ad6165b",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "10701280724203016"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "154209394074457691"
}
]
}
},
{
"block_signed_at": "2021-01-05T20:27:49Z",
"block_height": 11596709,
"tx_offset": 59,
"log_offset": 122,
"tx_hash": "0xe37612cff57892b6a0105339e037eb6fcaaa535e25062b1e0c8e589f3cf0e923",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000001955e43671c9f9000000000000000000000000000000000000000000000000001e89626d3555f27",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "114101009153564560"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "137524882133311271"
}
]
}
},
{
"block_signed_at": "2021-01-05T20:27:54Z",
"block_height": 11596711,
"tx_offset": 155,
"log_offset": 195,
"tx_hash": "0xf3f8b5b46b79794aca432b2c0c64798047da10e9c67e37dc064ba5c74418adb6",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x0000000000000000000000000000000000000000000000000159b1b900b8a1b0000000000000000000000000000000000000000000000000018e6b86b8a6007b",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "97304275104342448"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "112145267098517627"
}
]
}
},
{
"block_signed_at": "2021-01-05T21:51:07Z",
"block_height": 11597091,
"tx_offset": 157,
"log_offset": 271,
"tx_hash": "0x69ed093fc2f659a3fed4fe6e946c5a8bf6167ff3348f4faee2ad44be2bb527c8",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000009b2541d6ebea9c000000000000000000000000000000000000000000000000000abd93d9c7b201",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "43669586099038876"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "3023192478691841"
}
]
}
},
{
"block_signed_at": "2021-01-05T21:54:35Z",
"block_height": 11597110,
"tx_offset": 132,
"log_offset": 188,
"tx_hash": "0x73c132feae2d2255d8f3d7fd5bef6d876e04356d794a2733b924001484c7960f",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000018c96efd33d4644000000000000000000000000000000000000000000000000017a01eb6d001219",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "111630047562778180"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "106399651854291481"
}
]
}
},
{
"block_signed_at": "2021-01-05T21:54:35Z",
"block_height": 11597110,
"tx_offset": 132,
"log_offset": 200,
"tx_hash": "0x73c132feae2d2255d8f3d7fd5bef6d876e04356d794a2733b924001484c7960f",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x0000000000000000000000000000000000000000000000000139f400e7d6b9bc00000000000000000000000000000000000000000000000001728c3e2e736910",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "88369952437221820"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "104299940078119184"
}
]
}
},
{
"block_signed_at": "2021-01-05T21:56:20Z",
"block_height": 11597121,
"tx_offset": 114,
"log_offset": 120,
"tx_hash": "0x82bb38c790ee0555fb88377e7923eaee515c1aad21f402ae107e8f9599f9c3e7",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000001d59cbe5171fa90000000000000000000000000000000000000000000000000018c444ca58254a2",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "132184105301441168"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "111539186762405026"
}
]
}
},
{
"block_signed_at": "2021-01-05T21:56:20Z",
"block_height": 11597121,
"tx_offset": 121,
"log_offset": 143,
"tx_hash": "0x9f873d12ef589b5a50f9841faf58985390ba4f9a3e4720aed8ae8ebe8884cceb",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000002820712a490acb500000000000000000000000000000000000000000000000000b5dbe3ce6aaa4b",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "180714711699991733"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "51188742251784779"
}
]
}
},
{
"block_signed_at": "2021-01-05T21:57:06Z",
"block_height": 11597123,
"tx_offset": 69,
"log_offset": 151,
"tx_hash": "0x54cc9f1c6f6654306069dfb8144017ddf172e7b0a13675b14d3669b10d3ac07b",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000001f50c6f7bbb20f00000000000000000000000000000000000000000000000000021f6fbe5468e6b",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "141032636288803056"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "9560235975282283"
}
]
}
},
{
"block_signed_at": "2021-01-05T21:59:53Z",
"block_height": 11597134,
"tx_offset": 89,
"log_offset": 139,
"tx_hash": "0x09c234852923e1b508889a26e92a45592037598f1dcb9ef3bc0a990e6ab16c3b",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000025b17f3884b1535000000000000000000000000000000000000000000000000022fa90b426f9519",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "169755745687639349"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "157530377805600025"
}
]
}
},
{
"block_signed_at": "2021-01-05T22:01:02Z",
"block_height": 11597145,
"tx_offset": 257,
"log_offset": 147,
"tx_hash": "0xb84d4da2fc7dec9fa97b387028134dbf84ca482e9db1322289eccb7381b706b1",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000002be84ba1f3a12bc00000000000000000000000000000000000000000000000003286d756a0f56f2",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "197741368573563580"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "227552132240201458"
}
]
}
},
{
"block_signed_at": "2021-01-05T22:04:54Z",
"block_height": 11597161,
"tx_offset": 44,
"log_offset": 82,
"tx_hash": "0x4975084565d0b9bbe32997c235a55091619f8262939834c2dad5577d72e01f82",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x0000000000000000000000000000000000000000000000000243e2a02cc516700000000000000000000000000000000000000000000000000029afce46f42fb8",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "163223189089228400"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "11733774533668792"
}
]
}
},
{
"block_signed_at": "2021-01-05T22:09:16Z",
"block_height": 11597181,
"tx_offset": 154,
"log_offset": 271,
"tx_hash": "0x0dbae8aa6d55aefca7635fa5080029f15d9ebd89aef47a2d574cb546aaa69f92",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x0000000000000000000000000000000000000000000000000029e64d1053e9fb000000000000000000000000000000000000000000000000024516e7735ff460",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "11793692705942011"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "163562144797815904"
}
]
}
},
{
"block_signed_at": "2021-01-06T20:57:41Z",
"block_height": 11603371,
"tx_offset": 157,
"log_offset": 331,
"tx_hash": "0xd8ebc75169aeb0222de383d4bf43d004af95f7c3e26e68ef36a7c2d9c19155f2",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000005efea021c790d43000000000000000000000000000000000000000000000000074178c420357ad2",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "427817784412015939"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "522831815500987090"
}
]
}
},
{
"block_signed_at": "2021-01-06T20:57:46Z",
"block_height": 11603372,
"tx_offset": 137,
"log_offset": 212,
"tx_hash": "0x316968484564334e284f1a50810035e22cce8f8377f33e92dfe80a5b5fed5b08",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000000c419c908b70ab00000000000000000000000000000000000000000000000000292e15128d826c5",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "55197446660623024"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "185458273369466565"
}
]
}
},
{
"block_signed_at": "2021-01-06T20:57:46Z",
"block_height": 11603372,
"tx_offset": 147,
"log_offset": 243,
"tx_hash": "0xbe2786f81ef94a95e5639ef31fd6909e172cba174583e23985437df7db69d58e",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000025d38575d2f72a0000000000000000000000000000000000000000000000000029ed5e20c47d795",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "170354308786647712"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "188823401241499541"
}
]
}
},
{
"block_signed_at": "2021-01-07T07:04:39Z",
"block_height": 11606076,
"tx_offset": 209,
"log_offset": 308,
"tx_hash": "0x6ef2b979eafecddcb6fbc910d1ab0c988defaf57d78872e63561af87bfb801e5",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000001c061e1a4940b500000000000000000000000000000000000000000000000001e4b5ffd980acca",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "7888025707692213"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "136433999198334154"
}
]
}
},
{
"block_signed_at": "2021-01-07T22:15:39Z",
"block_height": 11610175,
"tx_offset": 65,
"log_offset": 98,
"tx_hash": "0xba99c7c7176c0d4157212078a98fb406d1eb5bb71989409a732e76ff7fe40061",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000006255aad2ad5c4a000000000000000000000000000000000000000000000000067cb07d8617ec00",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "27678739885022282"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "467442514506804224"
}
]
}
},
{
"block_signed_at": "2021-01-07T22:15:45Z",
"block_height": 11610176,
"tx_offset": 96,
"log_offset": 168,
"tx_hash": "0xf4b4839bfc59d5c6030e5910d8b1fafcca26179b1050fd14661a978886828edb",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x000000000000000000000000860bd2dba9cd475a61e6d1b45e16c365f6d78f66",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000002797e94a105805d000000000000000000000000000000000000000000000000002a4f24e1fd796a",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "178312837079597149"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "11908968850749802"
}
]
}
},
{
"block_signed_at": "2021-01-07T22:15:45Z",
"block_height": 11610176,
"tx_offset": 97,
"log_offset": 187,
"tx_hash": "0xea2e26c56fdcfc836753a7ed233a137cab9483cfc57aa040b3a999eeabbd904c",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x000000000000000000000000860bd2dba9cd475a61e6d1b45e16c365f6d78f66",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x0000000000000000000000000000000000000000000000000245014687cb01ae00000000000000000000000000000000000000000000000002bdeb185cbec83b",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "163538363906458030"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "197572448541919291"
}
]
}
},
{
"block_signed_at": "2021-01-07T22:15:49Z",
"block_height": 11610177,
"tx_offset": 67,
"log_offset": 50,
"tx_hash": "0x3c5eb250570a1f91a6bde5c48edd50f1b9af27032228fd8a59f65c3931bf56c8",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x000000000000000000000000860bd2dba9cd475a61e6d1b45e16c365f6d78f66",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000000af272a7ac5723800000000000000000000000000000000000000000000000002bc08fab0085aec",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "49301184326234680"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "197042356485642988"
}
]
}
},
{
"block_signed_at": "2021-01-08T10:09:03Z",
"block_height": 11613432,
"tx_offset": 36,
"log_offset": 142,
"tx_hash": "0x08190009ccd00eaa7813aa913cf12203baed8f8abb7118b99774e715d15b5d79",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000003466d1a92eddcf600000000000000000000000000000000000000000000000000334e7923a78011",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "235995991385169142"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "14441506008432657"
}
]
}
},
{
"block_signed_at": "2021-01-08T10:09:03Z",
"block_height": 11613432,
"tx_offset": 36,
"log_offset": 154,
"tx_hash": "0x08190009ccd00eaa7813aa913cf12203baed8f8abb7118b99774e715d15b5d79",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000032e20efed2f1b3700000000000000000000000000000000000000000000000002aaa97556590fde",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "229156845891033911"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "192152255541612510"
}
]
}
},
{
"block_signed_at": "2021-01-08T10:21:42Z",
"block_height": 11613497,
"tx_offset": 113,
"log_offset": 140,
"tx_hash": "0xfd498f8c60d1ce23d5a045515eb926cd25b0c73f3865b6f31829c1c46847af15",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000003288763a68ac61700000000000000000000000000000000000000000000000000e0889635f26e8d",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "227580643247834647"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "63200573514739341"
}
]
}
},
{
"block_signed_at": "2021-01-09T01:54:16Z",
"block_height": 11617754,
"tx_offset": 165,
"log_offset": 230,
"tx_hash": "0x6c348db91aa5216327ec80def97dad2eec04aa45c6cc436f78acc29ad70db5a4",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x0000000000000000000000000000000000000000000000000000cac8e914727d0000000000000000000000000000000000000000000000000000df9c86206809",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "222964252701309"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "245863358162953"
}
]
}
},
{
"block_signed_at": "2021-01-13T12:03:15Z",
"block_height": 11646483,
"tx_offset": 92,
"log_offset": 137,
"tx_hash": "0xce893bdd1f706c67319ac9ab380bd096fe7ec81e94a45026f2edf74eefae72b2",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000000e38bb638c7a11e000000000000000000000000000000000000000000000000038613b793ea14f0",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "64048434466234654"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "253912108174546160"
}
]
}
},
{
"block_signed_at": "2021-01-13T12:03:15Z",
"block_height": 11646483,
"tx_offset": 92,
"log_offset": 148,
"tx_hash": "0xce893bdd1f706c67319ac9ab380bd096fe7ec81e94a45026f2edf74eefae72b2",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000003294f896b708ed5000000000000000000000000000000000000000000000000036a47a23fc7eb10",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "227800707790573269"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "246087891825453840"
}
]
}
},
{
"block_signed_at": "2021-01-13T12:03:24Z",
"block_height": 11646485,
"tx_offset": 62,
"log_offset": 54,
"tx_hash": "0xbe1069f14363663d6d105480c321c9cfac2c3b929c327da7c3600c69c1f01f57",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x0000000000000000000000000000000000000000000000000017299a41282bab000000000000000000000000000000000000000000000000015e52440b44c8dc",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "6519666959199147"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "98606694049040604"
}
]
}
},
{
"block_signed_at": "2021-01-13T12:03:24Z",
"block_height": 11646485,
"tx_offset": 63,
"log_offset": 70,
"tx_hash": "0x0f7cc27935ada2522f8863a189d0d558833d8a56abd2ea7cfbd477163564b4f3",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000013e698f006506d0000000000000000000000000000000000000000000000000005fd575e1409f5c",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "89625105501849296"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "26974825054510940"
}
]
}
},
{
"block_signed_at": "2021-01-13T12:11:04Z",
"block_height": 11646522,
"tx_offset": 95,
"log_offset": 120,
"tx_hash": "0x470a0ec0354a07f0ee3723257c5d70d1794ee45a2874eb1c8c07a686ed5cdea8",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x0000000000000000000000000000000000000000000000000025ce9ff5f79bfa00000000000000000000000000000000000000000000000002600766e83194b1",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "10641760560061434"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "171144924403700913"
}
]
}
},
{
"block_signed_at": "2021-01-13T12:12:15Z",
"block_height": 11646528,
"tx_offset": 158,
"log_offset": 258,
"tx_hash": "0x1867ed30b01b46c8235c380feeb4d4b55375c6f87e8bc08ad57c1ab9b5e57691",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000001184971823e820000000000000000000000000000000000000000000000000001448b2e3cfe7cd7",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "78893745344250368"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "91350923162320087"
}
]
}
},
{
"block_signed_at": "2021-01-14T19:03:53Z",
"block_height": 11654994,
"tx_offset": 24,
"log_offset": 49,
"tx_hash": "0xfd1b56a95dc52d5aee483a7fa0c8724f04f6adb0a0c4fa28411407f4bdc86c8e",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000006ecae917ac804eb000000000000000000000000000000000000000000000000007d52ec7bab25cf",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "498965598584702187"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "35275547729405391"
}
]
}
},
{
"block_signed_at": "2021-01-14T19:03:53Z",
"block_height": 11654994,
"tx_offset": 25,
"log_offset": 68,
"tx_hash": "0x8e4bd904183298ad967b1731709eef3b120793ed1a3bbe1f50ce23b6db73560c",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x000000000000000000000000860bd2dba9cd475a61e6d1b45e16c365f6d78f66",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x0000000000000000000000000000000000000000000000000035e0f39231ad140000000000000000000000000000000000000000000000000364bd994c2b77e0",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "15165510500068628"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "244528745890412512"
}
]
}
},
{
"block_signed_at": "2021-01-14T19:03:53Z",
"block_height": 11654994,
"tx_offset": 26,
"log_offset": 87,
"tx_hash": "0x5a2552025f9a8ba859a9ee89653f04df285ae0172bf1fdf1c9dd84ce7cd01ee5",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x000000000000000000000000860bd2dba9cd475a61e6d1b45e16c365f6d78f66",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000026cea2e8f87213200000000000000000000000000000000000000000000000000b37e70f41768b1",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "174771971257999666"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "50523044427819185"
}
]
}
},
{
"block_signed_at": "2021-01-14T22:51:03Z",
"block_height": 11655981,
"tx_offset": 93,
"log_offset": 228,
"tx_hash": "0x6b5d93f4d12c824d78e15721bd2a24e69bbfff1eb90c5a3ce040eb546805adab",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x0000000000000000000000000000000000000000000000000123eac745dd667000000000000000000000000000000000000000000000000001314c39d3a03f0b",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "82167359814329968"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "85933679144091403"
}
]
}
},
{
"block_signed_at": "2021-01-18T21:08:32Z",
"block_height": 11681563,
"tx_offset": 75,
"log_offset": 269,
"tx_hash": "0x60472e27be861420726f96e4b1161c018e44345d1f68b162656dc32bbe86bdbb",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000001dc19bb88c8f15e00000000000000000000000000000000000000000000000001c4e767e081b1af",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "134010382158721374"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "127481122807460271"
}
]
}
},
{
"block_signed_at": "2021-01-18T21:09:31Z",
"block_height": 11681567,
"tx_offset": 166,
"log_offset": 192,
"tx_hash": "0xd3f277b69171fe39e8c8d304fe93c5c463da2ed3fdac67c9ecbf7e2eb471f528",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000022bf9a004f3457600000000000000000000000000000000000000000000000002434b9a8a5f691b",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "156493077747549558"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "163057138634025243"
}
]
}
},
{
"block_signed_at": "2021-01-18T21:09:31Z",
"block_height": 11681567,
"tx_offset": 166,
"log_offset": 204,
"tx_hash": "0xd3f277b69171fe39e8c8d304fe93c5c463da2ed3fdac67c9ecbf7e2eb471f528",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000001fdd6c913aaba8a0000000000000000000000000000000000000000000000000021074fb35e77a3",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "143506922252450442"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "9296713124575139"
}
]
}
},
{
"block_signed_at": "2021-01-18T21:12:39Z",
"block_height": 11681582,
"tx_offset": 147,
"log_offset": 302,
"tx_hash": "0xd75422d192b1ec4d8fdedcdc449dc39113e4195e1ab94c06534777b23fb041cb",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000002cfbebc628de93f00000000000000000000000000000000000000000000000000bf8e1ac1158266",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "202590224571558207"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "53917966111441510"
}
]
}
},
{
"block_signed_at": "2021-01-18T21:17:19Z",
"block_height": 11681613,
"tx_offset": 203,
"log_offset": 254,
"tx_hash": "0xcc12de67ad6a0f4f76126eb8286bb13b9c0a222a8764e5ed6ba6440dfc6913ee",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x0000000000000000000000000000000000000000000000000247b089b54953cc000000000000000000000000000000000000000000000000020d3ec6e8562ace",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "164294016920802252"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "147843386795502286"
}
]
}
},
{
"block_signed_at": "2021-01-18T21:17:58Z",
"block_height": 11681617,
"tx_offset": 202,
"log_offset": 275,
"tx_hash": "0x1feab419650d0126458022e85edec3b0fbdb0072d8b198bb00d245a60e8d1eb3",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000002a5e801bf0a5ba30000000000000000000000000000000000000000000000000029bf0dd92af817",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "190813653430852515"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "11750540244088855"
}
]
}
},
{
"block_signed_at": "2021-01-18T21:18:35Z",
"block_height": 11681620,
"tx_offset": 102,
"log_offset": 182,
"tx_hash": "0x2dc7b80267ca61c79c24739039a4d6901817d83f89087ad31533fac2d70411b6",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000002dc3c1ba1ebd87500000000000000000000000000000000000000000000000000b8d2eca52e5520",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "206105772330571893"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "52023309540152608"
}
]
}
},
{
"block_signed_at": "2021-01-18T21:18:35Z",
"block_height": 11681620,
"tx_offset": 102,
"log_offset": 194,
"tx_hash": "0x2dc7b80267ca61c79c24739039a4d6901817d83f89087ad31533fac2d70411b6",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000002b0d9c5d43c278b000000000000000000000000000000000000000000000000028cdbfc8c2251da",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "193894227669428107"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "183763562544648666"
}
]
}
},
{
"block_signed_at": "2021-01-18T21:39:27Z",
"block_height": 11681711,
"tx_offset": 122,
"log_offset": 221,
"tx_hash": "0x93cfa8d8c21bff5df2816912e228e9abd97c37f1d63877337f069a85adfe0545",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000005111fcedbac327000000000000000000000000000000000000000000000000014460a7adc9c570",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "22819251131433767"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "91304165745739120"
}
]
}
},
{
"block_signed_at": "2021-01-18T21:39:27Z",
"block_height": 11681711,
"tx_offset": 122,
"log_offset": 233,
"tx_hash": "0x93cfa8d8c21bff5df2816912e228e9abd97c37f1d63877337f069a85adfe0545",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x0000000000000000000000000000000000000000000000000120f748aa0f992d00000000000000000000000000000000000000000000000001303281b7ed190e",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "81336684755523885"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "85623925637978382"
}
]
}
},
{
"block_signed_at": "2021-01-18T22:27:02Z",
"block_height": 11681932,
"tx_offset": 59,
"log_offset": 142,
"tx_hash": "0xc41f4694b0499479cf13912b21a3f69e448dbfbc1138ea5f5559fde251acebe3",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000001c16b74132a42fa000000000000000000000000000000000000000000000000068056903457ef5d",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "126500410824999674"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "468469538599989085"
}
]
}
},
{
"block_signed_at": "2021-01-18T22:27:13Z",
"block_height": 11681933,
"tx_offset": 0,
"log_offset": 6,
"tx_hash": "0x935e23729ff88a86e1472e422db931b034406c35ad8c349c1302e823ae9e0f0c",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x0000000000000000000000000000000000000000000000000301ddbee7969fe000000000000000000000000000000000000000000000000002c12d01a12c52ab",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "216698069089427424"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "198489343603266219"
}
]
}
},
{
"block_signed_at": "2021-01-18T22:27:13Z",
"block_height": 11681933,
"tx_offset": 1,
"log_offset": 22,
"tx_hash": "0x292cf069279d85260cdebfa344435bd9f2fdcd0093f60244078543cc201ed62c",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000002577b931e119f6000000000000000000000000000000000000000000000000000ad4bcff9e3b6a9",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "168739382844563296"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "48778527593707177"
}
]
}
},
{
"block_signed_at": "2021-01-18T22:27:13Z",
"block_height": 11681933,
"tx_offset": 2,
"log_offset": 40,
"tx_hash": "0x48d654406b04c7ea4f58705f7742526f8cf5a8b3c188f7a8608092b502513750",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x000000000000000000000000860bd2dba9cd475a61e6d1b45e16c365f6d78f66",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000003282dcc6d5e0b900000000000000000000000000000000000000000000000002f98b25fa2ae530",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "14217633575854265"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "214355452503975216"
}
]
}
},
{
"block_signed_at": "2021-01-18T22:27:34Z",
"block_height": 11681934,
"tx_offset": 91,
"log_offset": 149,
"tx_hash": "0x3e156bb7fad3d6a7826eaa72976a62e88a465645487a9292f1a274563d8d69f9",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000001a088d10fc25c9000000000000000000000000000000000000000000000000000731ac602f87945",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "117244021805571216"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "32399060077410629"
}
]
}
},
{
"block_signed_at": "2021-01-18T23:18:59Z",
"block_height": 11682172,
"tx_offset": 103,
"log_offset": 237,
"tx_hash": "0xf9eb8ec5b3ff61bdb095a64175af7fe5ecd688f7fd6aeb9d680c2a6e23fe668c",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x0000000000000000000000000000000000000000000000000058907ad53693700000000000000000000000000000000000000000000000000142c1cc25a48cfd",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "24928655188071280"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "90848025049861373"
}
]
}
},
{
"block_signed_at": "2021-01-19T04:00:51Z",
"block_height": 11683436,
"tx_offset": 172,
"log_offset": 312,
"tx_hash": "0x50f89ee86b5cdbb7e5042d88880ada74fcc8728b3b86e0a43b8c963e93037fc5",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000026349186cbbeb3c00000000000000000000000000000000000000000000000002738336e3a6b675",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "172061580022508348"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "176629082168407669"
}
]
}
},
{
"block_signed_at": "2021-01-19T12:52:27Z",
"block_height": 11685854,
"tx_offset": 316,
"log_offset": 107,
"tx_hash": "0x42e27842fb8b9c0f1980e9193b7c396f9c4472e8b4f4d0ce7cbc656cb29b1a88",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000000658984d94942ec00000000000000000000000000000000000000000000000006963493b7a01bbc",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "28580176321921772"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "474624619779726268"
}
]
}
},
{
"block_signed_at": "2021-01-19T12:52:27Z",
"block_height": 11685854,
"tx_offset": 317,
"log_offset": 121,
"tx_hash": "0x069047f00841cdc6717b590c213e24499450f8667c7e5d112dd9d9d8dabd7c87",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x000000000000000000000000860bd2dba9cd475a61e6d1b45e16c365f6d78f66",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000002f1ebe64aac5be400000000000000000000000000000000000000000000000002eb587e8bc2c1c8",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "212210031790939108"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "210359108136780232"
}
]
}
},
{
"block_signed_at": "2021-01-19T12:52:34Z",
"block_height": 11685856,
"tx_offset": 2,
"log_offset": 6,
"tx_hash": "0x201f8c1695d0092813cab5a6ae755a1eae9ea069d825cbf1b0f40499f3c37060",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000000c136c0054492f8000000000000000000000000000000000000000000000000002ee9f1f225001d",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "54384868855157496"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "13205074287591453"
}
]
}
},
{
"block_signed_at": "2021-01-19T12:58:23Z",
"block_height": 11685884,
"tx_offset": 73,
"log_offset": 193,
"tx_hash": "0xf5727f6e3f38aca3d58aa89c80e178ea9e62862ce74869f11cb8f2e8c78ea6e6",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000014bde21cf164c500000000000000000000000000000000000000000000000000016136170660a26",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "93412454080859216"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "6213758706125350"
}
]
}
},
{
"block_signed_at": "2021-01-19T13:18:06Z",
"block_height": 11685960,
"tx_offset": 350,
"log_offset": 138,
"tx_hash": "0xcbc3e039fd7ad92bbb1e721dda1637c3424e610f86bfaf7525a6cca8233a855f",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000017a976d0257ea6000000000000000000000000000000000000000000000000001bac0df49aa70ec",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "106564035643173472"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "124624004952256748"
}
]
}
},
{
"block_signed_at": "2021-01-19T13:19:22Z",
"block_height": 11685965,
"tx_offset": 67,
"log_offset": 116,
"tx_hash": "0x93ceaf354d5fa66475123ed83131cfb171c913ec5bed5c47de0235fab1de0138",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000004ba970de35c5e600000000000000000000000000000000000000000000000001364cb50c51529a",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "21296925482796518"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "87341583259751066"
}
]
}
},
{
"block_signed_at": "2021-01-19T13:22:49Z",
"block_height": 11685983,
"tx_offset": 97,
"log_offset": 225,
"tx_hash": "0x03c140f4b9d99cc54ee5e138bb5f2159b13873ce41a50092f2157f519041ecf0",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000001dbb8e350d4a1f00000000000000000000000000000000000000000000000000070ea33a122c9a2",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "133903900390760944"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "31782704859236770"
}
]
}
},
{
"block_signed_at": "2021-01-19T13:22:49Z",
"block_height": 11685983,
"tx_offset": 105,
"log_offset": 258,
"tx_hash": "0x4744e7ba250497da8b53bc7cf4b4eb9e1c199622ff8b84a506ddb309d8a470ef",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000016e21fd8014774000000000000000000000000000000000000000000000000000185f89b6ab2505",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "103057214135367488"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "6860444520883461"
}
]
}
},
{
"block_signed_at": "2021-01-20T04:11:34Z",
"block_height": 11690015,
"tx_offset": 166,
"log_offset": 307,
"tx_hash": "0xbab11c3f715bbadd243def92137ff659a917eaa5fdb78c9daff52c6a12659796",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000016518f990d3be40000000000000000000000000000000000000000000000000006cdf6277328bc0",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "100514026841423424"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "30644911484341184"
}
]
}
},
{
"block_signed_at": "2021-01-20T04:12:09Z",
"block_height": 11690017,
"tx_offset": 183,
"log_offset": 244,
"tx_hash": "0x1bf31d3a2d89010287208acc3044cd7d93fde8d4cc32136c1c455d71e4d1557f",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000001dcb79fe64075d000000000000000000000000000000000000000000000000000849f2672572fe4",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "134183986304939472"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "37329684401696740"
}
]
}
},
{
"block_signed_at": "2021-01-20T04:24:11Z",
"block_height": 11690076,
"tx_offset": 98,
"log_offset": 209,
"tx_hash": "0x1a8c36c5dff9cf163295fff00904a5249422516be8355bd3279c940817e9c697",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000001291d0cf473ac400000000000000000000000000000000000000000000000001240b217727dfe4",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "5226875597568708"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "82202931560439780"
}
]
}
},
{
"block_signed_at": "2021-01-24T12:19:10Z",
"block_height": 11718271,
"tx_offset": 60,
"log_offset": 181,
"tx_hash": "0x6de4dbebf5a3d525556562da99bcfef358bd27fa2f650568df3f00d88fd69d40",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000002e29e59ac39b20900000000000000000000000000000000000000000000000002b8721e9a5706ca",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "207902640791204361"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "196032059554596554"
}
]
}
},
{
"block_signed_at": "2021-01-24T16:57:40Z",
"block_height": 11719557,
"tx_offset": 111,
"log_offset": 236,
"tx_hash": "0x4f368f258794b351dd87b5d90a3f971abe58976ed8a330e1711f56ad0e06b44f",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000007ce96ba2c10940600000000000000000000000000000000000000000000000007b61a2077617b61",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "562552729815258118"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "555660330770987873"
}
]
}
},
{
"block_signed_at": "2021-01-24T16:57:40Z",
"block_height": 11719557,
"tx_offset": 111,
"log_offset": 246,
"tx_hash": "0x4f368f258794b351dd87b5d90a3f971abe58976ed8a330e1711f56ad0e06b44f",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000005f37abe83d82e7e000000000000000000000000000000000000000000000000062a9c933002849f",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "428821348204686974"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "444339669229012127"
}
]
}
},
{
"block_signed_at": "2021-01-24T16:57:40Z",
"block_height": 11719557,
"tx_offset": 112,
"log_offset": 260,
"tx_hash": "0x2922853cdf47a2539deed45e770786cb74c46d17716f480d23ea21dceb6db863",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x000000000000000000000000860bd2dba9cd475a61e6d1b45e16c365f6d78f66",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000000b1bfc83529d794000000000000000000000000000000000000000000000000026323b77e4a8c23",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "50031937484085140"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "172020481775012899"
}
]
}
},
{
"block_signed_at": "2021-01-24T16:57:40Z",
"block_height": 11719557,
"tx_offset": 113,
"log_offset": 279,
"tx_hash": "0x2d7d75bbcd696c42fe88a8ceb500d021b71398c6bbce3b4693e1202b1b152d5e",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x000000000000000000000000860bd2dba9cd475a61e6d1b45e16c365f6d78f66",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x0000000000000000000000000000000000000000000000000024db4173ac97bd00000000000000000000000000000000000000000000000002870b87407b325a",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "10374173321631677"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "182126985462100570"
}
]
}
},
{
"block_signed_at": "2021-01-24T16:57:43Z",
"block_height": 11719558,
"tx_offset": 175,
"log_offset": 232,
"tx_hash": "0x0abd165d294b5835a6f924ef47955547460705ce396408e1664d306a4e394921",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000001dd2268563862500000000000000000000000000000000000000000000000000086f6024c9fdc8f",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "134301395409461840"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "37988136615140495"
}
]
}
},
{
"block_signed_at": "2021-01-24T22:27:34Z",
"block_height": 11721036,
"tx_offset": 34,
"log_offset": 146,
"tx_hash": "0xb20a67a3942d3fd5c64e9f299e93091dad0bf1f32d69b850bdddecfd2225140a",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000003d177abb133e3ef00000000000000000000000000000000000000000000000000396925f8088887",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "275132631542391791"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "16159685468522631"
}
]
}
},
{
"block_signed_at": "2021-01-24T22:27:34Z",
"block_height": 11721036,
"tx_offset": 34,
"log_offset": 158,
"tx_hash": "0xb20a67a3942d3fd5c64e9f299e93091dad0bf1f32d69b850bdddecfd2225140a",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x0000000000000000000000000000000000000000000000000112484b94a0d90a00000000000000000000000000000000000000000000000000388f96fee0dd55",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "77203633072036106"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "15920477379812693"
}
]
}
},
{
"block_signed_at": "2021-01-24T22:32:49Z",
"block_height": 11721063,
"tx_offset": 34,
"log_offset": 109,
"tx_hash": "0x915ad76fe498d5ef6cfb9d75d6279df3e7b8d27e8a901305e7a5edff19443a02",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x0000000000000000000000000000000000000000000000000135c1c6f9582e84000000000000000000000000000000000000000000000000001284236a4a11bd",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "87188828134583940"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "5211837222752701"
}
]
}
},
{
"block_signed_at": "2021-01-24T22:36:03Z",
"block_height": 11721083,
"tx_offset": 112,
"log_offset": 238,
"tx_hash": "0x0d78b1162fadc55ed4710255eafde9a5ad8ffe5d4b395b24873d0d50ba9a770a",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000088be9f74fab2a25000000000000000000000000000000000000000000000000081e78e28b772894",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "615843022469016101"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "585037916002527380"
}
]
}
},
{
"block_signed_at": "2021-01-24T22:36:03Z",
"block_height": 11721083,
"tx_offset": 112,
"log_offset": 249,
"tx_hash": "0x0d78b1162fadc55ed4710255eafde9a5ad8ffe5d4b395b24873d0d50ba9a770a",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000000583b818e7912fa00000000000000000000000000000000000000000000000005c3cf01bece76e2",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "24835225577657082"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "415403197051336418"
}
]
}
},
{
"block_signed_at": "2021-01-24T22:36:03Z",
"block_height": 11721083,
"tx_offset": 113,
"log_offset": 262,
"tx_hash": "0xd5cad027c2ac3eefcfe3cabfb66bdcfbca7ddf36790875a128ed434ec98a14d3",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x00000000000000000000000000000000000017c75025d397b91d284bbe8fc7f2",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000028925a38d62ace900000000000000000000000000000000000000000000000002bfc05c639dd9dd",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x00000000000017c75025d397b91d284bbe8fc7f2"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "182718644267166953"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "198088411668404701"
}
]
}
},
{
"block_signed_at": "2021-01-24T22:36:03Z",
"block_height": 11721083,
"tx_offset": 115,
"log_offset": 281,
"tx_hash": "0xed32b46d90d62e72d3d0681282c5594b5be9e48e11879f354748d6cbde7386b4",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x000000000000000000000000860bd2dba9cd475a61e6d1b45e16c365f6d78f66",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000028c01cbe30df56c0000000000000000000000000000000000000000000000000026f11491b66dd3",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "183523660014679404"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "10961119761296851"
}
]
}
},
{
"block_signed_at": "2021-01-24T22:36:11Z",
"block_height": 11721084,
"tx_offset": 18,
"log_offset": 41,
"tx_hash": "0xd72c09f4fedba9ed03b07dd7b3f16914e687703a65a23a45c638300584628ff8",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000025e2271e694d980000000000000000000000000000000000000000000000000026194caa4fdbd01",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "170611708481821056"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "171581858889186561"
}
]
}
},
{
"block_signed_at": "2021-01-24T22:36:11Z",
"block_height": 11721084,
"tx_offset": 33,
"log_offset": 79,
"tx_hash": "0x03f2a9698a0643819145f63929612e5b7d756ac99c3aa7d1fa1e02d81539d320",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000006c2028cfda9110000000000000000000000000000000000000000000000000018e1c93ff053a5e",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "30434657142739216"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "112058462695144030"
}
]
}
},
{
"block_signed_at": "2021-01-24T22:50:41Z",
"block_height": 11721159,
"tx_offset": 26,
"log_offset": 60,
"tx_hash": "0x81a9d917f039f6a909358ee28de445868c5a1f0b7ec63b6c6567b10b1a1fbf9b",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000045a3608eeb81524000000000000000000000000000000000000000000000000003d491e471afc71",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "313622536048350500"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "17250367970147441"
}
]
}
},
{
"block_signed_at": "2021-01-24T22:50:42Z",
"block_height": 11721160,
"tx_offset": 155,
"log_offset": 340,
"tx_hash": "0xe7475b4290b0fe7a2e3914ebb09ab8d3806376d4a7716cfcf221ee5d20e3ce29",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000002edd6c361e429ca000000000000000000000000000000000000000000000000002872a3bdbd70e9",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "211060892205590986"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "11385046656970985"
}
]
}
},
{
"block_signed_at": "2021-01-24T22:50:42Z",
"block_height": 11721160,
"tx_offset": 155,
"log_offset": 351,
"tx_hash": "0xe7475b4290b0fe7a2e3914ebb09ab8d3806376d4a7716cfcf221ee5d20e3ce29",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x0000000000000000000000000000000000000000000000000095d6d0feb7d9f6000000000000000000000000000000000000000000000000001ddaffe9a58565",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "42175964644891126"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "8403566996063589"
}
]
}
},
{
"block_signed_at": "2021-01-24T22:51:26Z",
"block_height": 11721162,
"tx_offset": 22,
"log_offset": 24,
"tx_hash": "0x0f8f0b541067811b85c9b118215a800f804ba9c1cd56ecfac81da6a528f026c4",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000000270a9e85337b6000000000000000000000000000000000000000000000000000c303284b1dfe80",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "10989200047569760"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "54891092052409984"
}
]
}
},
{
"block_signed_at": "2021-01-24T23:04:23Z",
"block_height": 11721216,
"tx_offset": 163,
"log_offset": 309,
"tx_hash": "0xfba076f940758b4391d6369930cbc3fda74a351df3b621be099d179125797e7c",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000064f41f882a24f9600000000000000000000000000000000000000000000000005aa39cc8f802130",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "454654622987079574"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "408202266974101808"
}
]
}
},
{
"block_signed_at": "2021-01-24T23:04:23Z",
"block_height": 11721216,
"tx_offset": 164,
"log_offset": 328,
"tx_hash": "0x1008ec1d3c1189d2fa15e51b800e032788bd40efff8994d528abed423082db34",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x00000000000000000000000078a55b9b3bbeffb36a43d9905f654d2769dc55e8",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000038efe7b6b60d587000000000000000000000000000000000000000000000000032a2958c13391ab",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "256422034842637703"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "228040192310874539"
}
]
}
},
{
"block_signed_at": "2021-01-24T23:04:23Z",
"block_height": 11721216,
"tx_offset": 166,
"log_offset": 347,
"tx_hash": "0xe01f0032512d249577e5ecdd2a4fcf51051230134f4c4eb9d20cde5e4807c816",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x000000000000000000000000860bd2dba9cd475a61e6d1b45e16c365f6d78f66",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000002576b27ca32688200000000000000000000000000000000000000000000000000b03e76694c6a0a",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "168721329689880706"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "49608274194754058"
}
]
}
},
{
"block_signed_at": "2021-01-26T05:27:34Z",
"block_height": 11729454,
"tx_offset": 132,
"log_offset": 249,
"tx_hash": "0x09c987017fa4ec3921f9d1941f259fd7f0e6a252e8ee0e9c53d84630e1a0f85e",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x0000000000000000000000000000000000000000000000000052dc03d7e615700000000000000000000000000000000000000000000000000010b99bb04038f4",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "23322857155466608"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "4707677955438836"
}
]
}
},
{
"block_signed_at": "2021-01-29T04:43:48Z",
"block_height": 11748719,
"tx_offset": 121,
"log_offset": 288,
"tx_hash": "0x62251023ef2445f4fde01ce1a9c8fa4c8e16f9dd8bc319209614fc6738e0460f",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000000396c4e1b0b62490000000000000000000000000000000000000000000000000037333fd6701820",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "16163156389487177"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "15537472992712736"
}
]
}
},
{
"block_signed_at": "2021-02-02T17:56:06Z",
"block_height": 11778293,
"tx_offset": 201,
"log_offset": 234,
"tx_hash": "0x0fbb3745063ff694a01d9e8437b69d1f4eed9407ad3e0080047c36bf486b2b21",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000065f61368ee3404d000000000000000000000000000000000000000000000000067cf2555fc49483",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "459192573968465997"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "467514909832549507"
}
]
}
},
{
"block_signed_at": "2021-02-02T17:56:07Z",
"block_height": 11778294,
"tx_offset": 8,
"log_offset": 30,
"tx_hash": "0x6339582186a11a22e866eadb408dadc9f798bdfa6248156b8a07f4476e4340d4",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000002bfee98882450000000000000000000000000000000000000000000000000002d38f1a29fde51a",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "12383702969632000"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "203663750698231066"
}
]
}
},
{
"block_signed_at": "2021-02-02T17:56:07Z",
"block_height": 11778294,
"tx_offset": 9,
"log_offset": 47,
"tx_hash": "0x4ae5dae4af2088b66738241385b1def47ba1f0ebf0077d41500bd7b6f7bfc662",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000000d3d13c6d09322000000000000000000000000000000000000000000000000002bdcd6ca6ba179d",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "59621277543510560"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "197539825211545501"
}
]
}
},
{
"block_signed_at": "2021-02-08T20:01:52Z",
"block_height": 11817806,
"tx_offset": 189,
"log_offset": 261,
"tx_hash": "0x85ebf4ef817c0f88eefa617825f67bd9e45f1ef9c14e12cc85dd9be02f24821c",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000003e66b66fd1d0b02fda6c811da9e0547970db2f21",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x00000000000000000000000000000000000000000000000003a6fa1adf9df93100000000000000000000000000000000000000000000000004b1a64aa115892a",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x3e66b66fd1d0b02fda6c811da9e0547970db2f21"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "263172621575518513"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "338234286489831722"
}
]
}
},
{
"block_signed_at": "2021-02-08T20:19:16Z",
"block_height": 11817896,
"tx_offset": 186,
"log_offset": 233,
"tx_hash": "0x4364f8773a38c99d8fdb3bb47b8fd058b3757d234de821a7754189c41d3b7ea5",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x000000000000000000000000f18ade29a225faa555e475ee01f9eb66eb4a3a74",
"0x00000000000000000000000069bbe2fa02b4d90a944ff328663667dc32786385"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000001e3f5427bd5c6c000000000000000000000000000000000000000000000000025cdc7757445819",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xf18ade29a225faa555e475ee01f9eb66eb4a3a74"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x69bbe2fa02b4d90a944ff328663667dc32786385"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "8513879977843820"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "170253291056551961"
}
]
}
},
{
"block_signed_at": "2021-02-08T20:47:31Z",
"block_height": 11818019,
"tx_offset": 111,
"log_offset": 250,
"tx_hash": "0xba1cb6cd1ae37bb68822a7b51851bb1b3dbdb044a9abd5648f6fb4097633ca4d",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x000000000000000000000000ab9c92a9337a1494c6d545e48187fa37144403c8",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x000000000000000000000000000000000000000000000000006fe8d87adbeca00000000000000000000000000000000000000000000000000162e5244430b603",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0xab9c92a9337a1494c6d545e48187fa37144403c8"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "31499738886696096"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "99894085681198595"
}
]
}
},
{
"block_signed_at": "2021-02-10T04:35:24Z",
"block_height": 11826633,
"tx_offset": 252,
"log_offset": 265,
"tx_hash": "0x68ea2f31afac6be8a4b5f34bcb641adf2a974af6cb78ef063a084022dade3da4",
"raw_log_topics": [
"0x908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378",
"0x0000000000000000000000000000000000007f150bd6f54c40a34d7c3d5e9f56",
"0x00000000000000000000000049706a576bb823cde3180c930f9947d59e2ded4d",
"0x00000000000000000000000027ffed7e5926fb2795fc85aaab558243f280a8a2"
],
"sender_address": "0x04df4fbb6a003d1db3dd83d6d3b9951455837fff",
"sender_address_label": null,
"raw_log_data": "0x0000000000000000000000000000000000000000000000000180f283ae2083a00000000000000000000000000000000000000000000000000191f57ae31f4092",
"decoded": {
"name": "LOG_SWAP",
"signature": "LOG_SWAP(indexed address caller, indexed address tokenIn, indexed address tokenOut, uint256 tokenAmountIn, uint256 tokenAmountOut)",
"params": [
{
"name": "caller",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x0000000000007f150bd6f54c40a34d7c3d5e9f56"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x49706a576bb823cde3180c930f9947d59e2ded4d"
},
{
"name": "tokenOut",
"type": "address",
"indexed": true,
"decoded": true,
"value": "0x27ffed7e5926fb2795fc85aaab558243f280a8a2"
},
{
"name": "tokenAmountIn",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "108353038432895904"
},
{
"name": "tokenAmountOut",
"type": "uint256",
"indexed": false,
"decoded": true,
"value": "113141373806264466"
}
]
}
}
],
"pagination": null
},
"error": false,
"error_message": null,
"error_code": null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment