-
-
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.
Showing
18 changed files
with
1,324 additions
and
0 deletions.
There are no files selected for viewing
54 changes: 54 additions & 0 deletions
54
dags/resources/stages/parse/table_definitions/aave_v3_prime/AToken_v3_event_Approval.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": true, | ||
"internalType": "address", | ||
"name": "owner", | ||
"type": "address" | ||
}, | ||
{ | ||
"indexed": true, | ||
"internalType": "address", | ||
"name": "spender", | ||
"type": "address" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "uint256", | ||
"name": "value", | ||
"type": "uint256" | ||
} | ||
], | ||
"name": "Approval", | ||
"type": "event" | ||
}, | ||
"contract_address": "SELECT aToken FROM ref('PoolConfigurator_event_ReserveInitialized') group by aToken", | ||
"field_mapping": {}, | ||
"type": "log" | ||
}, | ||
"table": { | ||
"dataset_name": "aave_v3_prime", | ||
"schema": [ | ||
{ | ||
"description": "", | ||
"name": "owner", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "spender", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "value", | ||
"type": "STRING" | ||
} | ||
], | ||
"table_description": "", | ||
"table_name": "AToken_v3_event_Approval" | ||
} | ||
} |
65 changes: 65 additions & 0 deletions
65
...sources/stages/parse/table_definitions/aave_v3_prime/AToken_v3_event_BalanceTransfer.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": true, | ||
"internalType": "address", | ||
"name": "from", | ||
"type": "address" | ||
}, | ||
{ | ||
"indexed": true, | ||
"internalType": "address", | ||
"name": "to", | ||
"type": "address" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "uint256", | ||
"name": "value", | ||
"type": "uint256" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "uint256", | ||
"name": "index", | ||
"type": "uint256" | ||
} | ||
], | ||
"name": "BalanceTransfer", | ||
"type": "event" | ||
}, | ||
"contract_address": "SELECT aToken FROM ref('PoolConfigurator_event_ReserveInitialized') group by aToken", | ||
"field_mapping": {}, | ||
"type": "log" | ||
}, | ||
"table": { | ||
"dataset_name": "aave_v3_prime", | ||
"schema": [ | ||
{ | ||
"description": "", | ||
"name": "from", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "to", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "value", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "index", | ||
"type": "STRING" | ||
} | ||
], | ||
"table_description": "", | ||
"table_name": "AToken_v3_event_BalanceTransfer" | ||
} | ||
} |
76 changes: 76 additions & 0 deletions
76
dags/resources/stages/parse/table_definitions/aave_v3_prime/AToken_v3_event_Burn.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,76 @@ | ||
{ | ||
"parser": { | ||
"abi": { | ||
"anonymous": false, | ||
"inputs": [ | ||
{ | ||
"indexed": true, | ||
"internalType": "address", | ||
"name": "from", | ||
"type": "address" | ||
}, | ||
{ | ||
"indexed": true, | ||
"internalType": "address", | ||
"name": "target", | ||
"type": "address" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "uint256", | ||
"name": "value", | ||
"type": "uint256" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "uint256", | ||
"name": "balanceIncrease", | ||
"type": "uint256" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "uint256", | ||
"name": "index", | ||
"type": "uint256" | ||
} | ||
], | ||
"name": "Burn", | ||
"type": "event" | ||
}, | ||
"contract_address": "SELECT aToken FROM ref('PoolConfigurator_event_ReserveInitialized') group by aToken", | ||
"field_mapping": {}, | ||
"type": "log" | ||
}, | ||
"table": { | ||
"dataset_name": "aave_v3_prime", | ||
"schema": [ | ||
{ | ||
"description": "", | ||
"name": "from", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "target", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "value", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "balanceIncrease", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "index", | ||
"type": "STRING" | ||
} | ||
], | ||
"table_description": "", | ||
"table_name": "AToken_v3_event_Burn" | ||
} | ||
} |
109 changes: 109 additions & 0 deletions
109
dags/resources/stages/parse/table_definitions/aave_v3_prime/AToken_v3_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,109 @@ | ||
{ | ||
"parser": { | ||
"abi": { | ||
"anonymous": false, | ||
"inputs": [ | ||
{ | ||
"indexed": true, | ||
"internalType": "address", | ||
"name": "underlyingAsset", | ||
"type": "address" | ||
}, | ||
{ | ||
"indexed": true, | ||
"internalType": "address", | ||
"name": "pool", | ||
"type": "address" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "address", | ||
"name": "treasury", | ||
"type": "address" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "address", | ||
"name": "incentivesController", | ||
"type": "address" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "uint8", | ||
"name": "aTokenDecimals", | ||
"type": "uint8" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "string", | ||
"name": "aTokenName", | ||
"type": "string" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "string", | ||
"name": "aTokenSymbol", | ||
"type": "string" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "bytes", | ||
"name": "params", | ||
"type": "bytes" | ||
} | ||
], | ||
"name": "Initialized", | ||
"type": "event" | ||
}, | ||
"contract_address": "SELECT aToken FROM ref('PoolConfigurator_event_ReserveInitialized') group by aToken", | ||
"field_mapping": {}, | ||
"type": "log" | ||
}, | ||
"table": { | ||
"dataset_name": "aave_v3_prime", | ||
"schema": [ | ||
{ | ||
"description": "", | ||
"name": "underlyingAsset", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "pool", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "treasury", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "incentivesController", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "aTokenDecimals", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "aTokenName", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "aTokenSymbol", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "params", | ||
"type": "STRING" | ||
} | ||
], | ||
"table_description": "", | ||
"table_name": "AToken_v3_event_Initialized" | ||
} | ||
} |
76 changes: 76 additions & 0 deletions
76
dags/resources/stages/parse/table_definitions/aave_v3_prime/AToken_v3_event_Mint.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,76 @@ | ||
{ | ||
"parser": { | ||
"abi": { | ||
"anonymous": false, | ||
"inputs": [ | ||
{ | ||
"indexed": true, | ||
"internalType": "address", | ||
"name": "caller", | ||
"type": "address" | ||
}, | ||
{ | ||
"indexed": true, | ||
"internalType": "address", | ||
"name": "onBehalfOf", | ||
"type": "address" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "uint256", | ||
"name": "value", | ||
"type": "uint256" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "uint256", | ||
"name": "balanceIncrease", | ||
"type": "uint256" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "uint256", | ||
"name": "index", | ||
"type": "uint256" | ||
} | ||
], | ||
"name": "Mint", | ||
"type": "event" | ||
}, | ||
"contract_address": "SELECT aToken FROM ref('PoolConfigurator_event_ReserveInitialized') group by aToken", | ||
"field_mapping": {}, | ||
"type": "log" | ||
}, | ||
"table": { | ||
"dataset_name": "aave_v3_prime", | ||
"schema": [ | ||
{ | ||
"description": "", | ||
"name": "caller", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "onBehalfOf", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "value", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "balanceIncrease", | ||
"type": "STRING" | ||
}, | ||
{ | ||
"description": "", | ||
"name": "index", | ||
"type": "STRING" | ||
} | ||
], | ||
"table_description": "", | ||
"table_name": "AToken_v3_event_Mint" | ||
} | ||
} |
Oops, something went wrong.