-
-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add DelayedWithdrawalRouter events and calls * replace address with proxy address * change calls dataset name * change calls table name * fix source of pod address * Add eigen pod calls * add eigenlayer LST strategy calls
- Loading branch information
1 parent
095d2ef
commit 6481451
Showing
25 changed files
with
983 additions
and
7 deletions.
There are no files selected for viewing
42 changes: 42 additions & 0 deletions
42
...se/table_definitions/eigenlayer/DelayedWithdrawalRouter_call_claimDelayedWithdrawals.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"parser": { | ||
"abi": { | ||
"inputs": [ | ||
{ | ||
"internalType": "address", | ||
"name": "recipient", | ||
"type": "address" | ||
}, | ||
{ | ||
"internalType": "uint256", | ||
"name": "maxNumberOfDelayedWithdrawalsToClaim", | ||
"type": "uint256" | ||
} | ||
], | ||
"name": "claimDelayedWithdrawals", | ||
"outputs": [], | ||
"stateMutability": "nonpayable", | ||
"type": "function" | ||
}, | ||
"contract_address": "0x7fe7e9cc0f274d2435ad5d56d5fa73e47f6a23d8", | ||
"field_mapping": {}, | ||
"type": "trace" | ||
}, | ||
"table": { | ||
"dataset_name": "eigenlayer", | ||
"schema": [ | ||
{ | ||
"description": "", | ||
"name": "recipient", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "maxNumberOfDelayedWithdrawalsToClaim", | ||
"type": "STRING" | ||
} | ||
], | ||
"table_description": "", | ||
"table_name": "DelayedWithdrawalRouter_call_claimDelayedWithdrawals" | ||
} | ||
} |
42 changes: 42 additions & 0 deletions
42
...se/table_definitions/eigenlayer/DelayedWithdrawalRouter_call_createDelayedWithdrawal.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"parser": { | ||
"abi": { | ||
"inputs": [ | ||
{ | ||
"internalType": "address", | ||
"name": "podOwner", | ||
"type": "address" | ||
}, | ||
{ | ||
"internalType": "address", | ||
"name": "recipient", | ||
"type": "address" | ||
} | ||
], | ||
"name": "createDelayedWithdrawal", | ||
"outputs": [], | ||
"stateMutability": "payable", | ||
"type": "function" | ||
}, | ||
"contract_address": "0x7fe7e9cc0f274d2435ad5d56d5fa73e47f6a23d8", | ||
"field_mapping": {}, | ||
"type": "trace" | ||
}, | ||
"table": { | ||
"dataset_name": "eigenlayer", | ||
"schema": [ | ||
{ | ||
"description": "", | ||
"name": "podOwner", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "recipient", | ||
"type": "STRING" | ||
} | ||
], | ||
"table_description": "", | ||
"table_name": "DelayedWithdrawalRouter_call_createDelayedWithdrawal" | ||
} | ||
} |
65 changes: 65 additions & 0 deletions
65
.../table_definitions/eigenlayer/DelayedWithdrawalRouter_event_DelayedWithdrawalCreated.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{ | ||
"parser": { | ||
"abi": { | ||
"anonymous": false, | ||
"inputs": [ | ||
{ | ||
"indexed": false, | ||
"internalType": "address", | ||
"name": "podOwner", | ||
"type": "address" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "address", | ||
"name": "recipient", | ||
"type": "address" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "uint256", | ||
"name": "amount", | ||
"type": "uint256" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "uint256", | ||
"name": "index", | ||
"type": "uint256" | ||
} | ||
], | ||
"name": "DelayedWithdrawalCreated", | ||
"type": "event" | ||
}, | ||
"contract_address": "0x7fe7e9cc0f274d2435ad5d56d5fa73e47f6a23d8", | ||
"field_mapping": {}, | ||
"type": "log" | ||
}, | ||
"table": { | ||
"dataset_name": "eigenlayer", | ||
"schema": [ | ||
{ | ||
"description": "", | ||
"name": "podOwner", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "recipient", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "amount", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "index", | ||
"type": "STRING" | ||
} | ||
], | ||
"table_description": "", | ||
"table_name": "DelayedWithdrawalRouter_event_DelayedWithdrawalCreated" | ||
} | ||
} |
54 changes: 54 additions & 0 deletions
54
...table_definitions/eigenlayer/DelayedWithdrawalRouter_event_DelayedWithdrawalsClaimed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{ | ||
"parser": { | ||
"abi": { | ||
"anonymous": false, | ||
"inputs": [ | ||
{ | ||
"indexed": false, | ||
"internalType": "address", | ||
"name": "recipient", | ||
"type": "address" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "uint256", | ||
"name": "amountClaimed", | ||
"type": "uint256" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "uint256", | ||
"name": "delayedWithdrawalsCompleted", | ||
"type": "uint256" | ||
} | ||
], | ||
"name": "DelayedWithdrawalsClaimed", | ||
"type": "event" | ||
}, | ||
"contract_address": "0x7fe7e9cc0f274d2435ad5d56d5fa73e47f6a23d8", | ||
"field_mapping": {}, | ||
"type": "log" | ||
}, | ||
"table": { | ||
"dataset_name": "eigenlayer", | ||
"schema": [ | ||
{ | ||
"description": "", | ||
"name": "recipient", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "amountClaimed", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "delayedWithdrawalsCompleted", | ||
"type": "STRING" | ||
} | ||
], | ||
"table_description": "", | ||
"table_name": "DelayedWithdrawalRouter_event_DelayedWithdrawalsClaimed" | ||
} | ||
} |
32 changes: 32 additions & 0 deletions
32
.../stages/parse/table_definitions/eigenlayer/DelayedWithdrawalRouter_event_Initialized.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"parser": { | ||
"abi": { | ||
"anonymous": false, | ||
"inputs": [ | ||
{ | ||
"indexed": false, | ||
"internalType": "uint8", | ||
"name": "version", | ||
"type": "uint8" | ||
} | ||
], | ||
"name": "Initialized", | ||
"type": "event" | ||
}, | ||
"contract_address": "0x7fe7e9cc0f274d2435ad5d56d5fa73e47f6a23d8", | ||
"field_mapping": {}, | ||
"type": "log" | ||
}, | ||
"table": { | ||
"dataset_name": "eigenlayer", | ||
"schema": [ | ||
{ | ||
"description": "", | ||
"name": "version", | ||
"type": "STRING" | ||
} | ||
], | ||
"table_description": "", | ||
"table_name": "DelayedWithdrawalRouter_event_Initialized" | ||
} | ||
} |
43 changes: 43 additions & 0 deletions
43
...arse/table_definitions/eigenlayer/DelayedWithdrawalRouter_event_OwnershipTransferred.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
"parser": { | ||
"abi": { | ||
"anonymous": false, | ||
"inputs": [ | ||
{ | ||
"indexed": true, | ||
"internalType": "address", | ||
"name": "previousOwner", | ||
"type": "address" | ||
}, | ||
{ | ||
"indexed": true, | ||
"internalType": "address", | ||
"name": "newOwner", | ||
"type": "address" | ||
} | ||
], | ||
"name": "OwnershipTransferred", | ||
"type": "event" | ||
}, | ||
"contract_address": "0x7fe7e9cc0f274d2435ad5d56d5fa73e47f6a23d8", | ||
"field_mapping": {}, | ||
"type": "log" | ||
}, | ||
"table": { | ||
"dataset_name": "eigenlayer", | ||
"schema": [ | ||
{ | ||
"description": "", | ||
"name": "previousOwner", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "newOwner", | ||
"type": "STRING" | ||
} | ||
], | ||
"table_description": "", | ||
"table_name": "DelayedWithdrawalRouter_event_OwnershipTransferred" | ||
} | ||
} |
43 changes: 43 additions & 0 deletions
43
...urces/stages/parse/table_definitions/eigenlayer/DelayedWithdrawalRouter_event_Paused.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
"parser": { | ||
"abi": { | ||
"anonymous": false, | ||
"inputs": [ | ||
{ | ||
"indexed": true, | ||
"internalType": "address", | ||
"name": "account", | ||
"type": "address" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "uint256", | ||
"name": "newPausedStatus", | ||
"type": "uint256" | ||
} | ||
], | ||
"name": "Paused", | ||
"type": "event" | ||
}, | ||
"contract_address": "0x7fe7e9cc0f274d2435ad5d56d5fa73e47f6a23d8", | ||
"field_mapping": {}, | ||
"type": "log" | ||
}, | ||
"table": { | ||
"dataset_name": "eigenlayer", | ||
"schema": [ | ||
{ | ||
"description": "", | ||
"name": "account", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "newPausedStatus", | ||
"type": "STRING" | ||
} | ||
], | ||
"table_description": "", | ||
"table_name": "DelayedWithdrawalRouter_event_Paused" | ||
} | ||
} |
43 changes: 43 additions & 0 deletions
43
...s/parse/table_definitions/eigenlayer/DelayedWithdrawalRouter_event_PauserRegistrySet.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
"parser": { | ||
"abi": { | ||
"anonymous": false, | ||
"inputs": [ | ||
{ | ||
"indexed": false, | ||
"internalType": "contract IPauserRegistry", | ||
"name": "pauserRegistry", | ||
"type": "address" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "contract IPauserRegistry", | ||
"name": "newPauserRegistry", | ||
"type": "address" | ||
} | ||
], | ||
"name": "PauserRegistrySet", | ||
"type": "event" | ||
}, | ||
"contract_address": "0x7fe7e9cc0f274d2435ad5d56d5fa73e47f6a23d8", | ||
"field_mapping": {}, | ||
"type": "log" | ||
}, | ||
"table": { | ||
"dataset_name": "eigenlayer", | ||
"schema": [ | ||
{ | ||
"description": "", | ||
"name": "pauserRegistry", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "newPauserRegistry", | ||
"type": "STRING" | ||
} | ||
], | ||
"table_description": "", | ||
"table_name": "DelayedWithdrawalRouter_event_PauserRegistrySet" | ||
} | ||
} |
Oops, something went wrong.