Skip to content

Commit

Permalink
add echelon prime caching events (#729)
Browse files Browse the repository at this point in the history
* add echelon prime caching events

* fix dataset name
  • Loading branch information
onurerkin authored Jun 7, 2024
1 parent d44d52f commit ba7c7c6
Show file tree
Hide file tree
Showing 3 changed files with 217 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
{
"parser": {
"abi": {
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "depositIndex",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "endTimestamp",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "createdTimestamp",
"type": "uint256"
}
],
"name": "DepositCreated",
"type": "event"
},
"contract_address": "0x4a3826bd2e8a31956ad0397a49efde5e0d825238",
"field_mapping": {},
"type": "log"
},
"table": {
"dataset_name": "echelon",
"schema": [
{
"description": "",
"name": "user",
"type": "STRING"
},
{
"description": "",
"name": "depositIndex",
"type": "STRING"
},
{
"description": "",
"name": "amount",
"type": "STRING"
},
{
"description": "",
"name": "endTimestamp",
"type": "STRING"
},
{
"description": "",
"name": "createdTimestamp",
"type": "STRING"
}
],
"table_description": "",
"table_name": "PrimeCaching_event_DepositCreated"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
{
"parser": {
"abi": {
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "depositIndex",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "endTimestamp",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "createdTimestamp",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "updatedTimestamp",
"type": "uint256"
}
],
"name": "DepositExtended",
"type": "event"
},
"contract_address": "0x4a3826bd2e8a31956ad0397a49efde5e0d825238",
"field_mapping": {},
"type": "log"
},
"table": {
"dataset_name": "echelon",
"schema": [
{
"description": "",
"name": "user",
"type": "STRING"
},
{
"description": "",
"name": "depositIndex",
"type": "STRING"
},
{
"description": "",
"name": "endTimestamp",
"type": "STRING"
},
{
"description": "",
"name": "createdTimestamp",
"type": "STRING"
},
{
"description": "",
"name": "updatedTimestamp",
"type": "STRING"
}
],
"table_description": "",
"table_name": "PrimeCaching_event_DepositExtended"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
{
"parser": {
"abi": {
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256[]",
"name": "depositIndexes",
"type": "uint256[]"
},
{
"indexed": false,
"internalType": "uint256",
"name": "totalAmount",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "updatedTimestamp",
"type": "uint256"
}
],
"name": "DepositsWithdrawn",
"type": "event"
},
"contract_address": "0x4a3826bd2e8a31956ad0397a49efde5e0d825238",
"field_mapping": {},
"type": "log"
},
"table": {
"dataset_name": "echelon",
"schema": [
{
"description": "",
"name": "user",
"type": "STRING"
},
{
"description": "",
"name": "depositIndexes",
"type": "STRING"
},
{
"description": "",
"name": "totalAmount",
"type": "STRING"
},
{
"description": "",
"name": "updatedTimestamp",
"type": "STRING"
}
],
"table_description": "",
"table_name": "PrimeCaching_event_DepositsWithdrawn"
}
}

0 comments on commit ba7c7c6

Please sign in to comment.