Skip to content

Commit d8c5a59

Browse files
code-oracle609ian-mellenwderosekatiebkqshao-gauntlet
committed
Polygon Aera Table Definitions (#366)
Co-authored-by: ian-mellen <[email protected]> Co-authored-by: wderose <[email protected]> Co-authored-by: katiebk <[email protected]> Co-authored-by: Qi Shao <[email protected]> Co-authored-by: Michalis Alifierakis <[email protected]>
1 parent 640b12c commit d8c5a59

16 files changed

+795
-0
lines changed
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
{
2+
"parser": {
3+
"abi": {
4+
"anonymous": false,
5+
"inputs": [
6+
{
7+
"indexed": true,
8+
"internalType": "address",
9+
"name": "feeRecipient",
10+
"type": "address"
11+
},
12+
{
13+
"indexed": false,
14+
"internalType": "uint256",
15+
"name": "claimedFee",
16+
"type": "uint256"
17+
},
18+
{
19+
"indexed": false,
20+
"internalType": "uint256",
21+
"name": "unclaimedFee",
22+
"type": "uint256"
23+
},
24+
{
25+
"indexed": false,
26+
"internalType": "uint256",
27+
"name": "feeTotal",
28+
"type": "uint256"
29+
}
30+
],
31+
"name": "Claimed",
32+
"type": "event"
33+
},
34+
"contract_address": "0xb1095567c713744e61f1f949e1d324adac738c6a",
35+
"field_mapping": {},
36+
"type": "log"
37+
},
38+
"table": {
39+
"dataset_name": "aera",
40+
"schema": [
41+
{
42+
"description": "",
43+
"name": "feeRecipient",
44+
"type": "STRING"
45+
},
46+
{
47+
"description": "",
48+
"name": "claimedFee",
49+
"type": "STRING"
50+
},
51+
{
52+
"description": "",
53+
"name": "unclaimedFee",
54+
"type": "STRING"
55+
},
56+
{
57+
"description": "",
58+
"name": "feeTotal",
59+
"type": "STRING"
60+
}
61+
],
62+
"table_description": "",
63+
"table_name": "AeraVaultV2_event_Claimed"
64+
}
65+
}
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"parser": {
3+
"abi": {
4+
"anonymous": false,
5+
"inputs": [
6+
{
7+
"indexed": true,
8+
"internalType": "address",
9+
"name": "owner",
10+
"type": "address"
11+
},
12+
{
13+
"indexed": true,
14+
"internalType": "contract IERC20",
15+
"name": "asset",
16+
"type": "address"
17+
},
18+
{
19+
"indexed": false,
20+
"internalType": "uint256",
21+
"name": "amount",
22+
"type": "uint256"
23+
}
24+
],
25+
"name": "Deposit",
26+
"type": "event"
27+
},
28+
"contract_address": "0xb1095567c713744e61f1f949e1d324adac738c6a",
29+
"field_mapping": {},
30+
"type": "log"
31+
},
32+
"table": {
33+
"dataset_name": "aera",
34+
"schema": [
35+
{
36+
"description": "",
37+
"name": "owner",
38+
"type": "STRING"
39+
},
40+
{
41+
"description": "",
42+
"name": "asset",
43+
"type": "STRING"
44+
},
45+
{
46+
"description": "",
47+
"name": "amount",
48+
"type": "STRING"
49+
}
50+
],
51+
"table_description": "",
52+
"table_name": "AeraVaultV2_event_Deposit"
53+
}
54+
}
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
{
2+
"parser": {
3+
"abi": {
4+
"anonymous": false,
5+
"inputs": [
6+
{
7+
"indexed": true,
8+
"internalType": "address",
9+
"name": "owner",
10+
"type": "address"
11+
},
12+
{
13+
"components": [
14+
{
15+
"internalType": "address",
16+
"name": "target",
17+
"type": "address"
18+
},
19+
{
20+
"internalType": "uint256",
21+
"name": "value",
22+
"type": "uint256"
23+
},
24+
{
25+
"internalType": "bytes",
26+
"name": "data",
27+
"type": "bytes"
28+
}
29+
],
30+
"indexed": false,
31+
"internalType": "struct Operation",
32+
"name": "operation",
33+
"type": "tuple"
34+
}
35+
],
36+
"name": "Executed",
37+
"type": "event"
38+
},
39+
"contract_address": "0xb1095567c713744e61f1f949e1d324adac738c6a",
40+
"field_mapping": {},
41+
"type": "log"
42+
},
43+
"table": {
44+
"dataset_name": "aera",
45+
"schema": [
46+
{
47+
"description": "",
48+
"name": "owner",
49+
"type": "STRING"
50+
},
51+
{
52+
"description": "",
53+
"fields": [
54+
{
55+
"description": "",
56+
"name": "target",
57+
"type": "STRING"
58+
},
59+
{
60+
"description": "",
61+
"name": "value",
62+
"type": "STRING"
63+
},
64+
{
65+
"description": "",
66+
"name": "data",
67+
"type": "STRING"
68+
}
69+
],
70+
"name": "operation",
71+
"type": "RECORD"
72+
}
73+
],
74+
"table_description": "",
75+
"table_name": "AeraVaultV2_event_Executed"
76+
}
77+
}
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
{
2+
"parser": {
3+
"abi": {
4+
"anonymous": false,
5+
"inputs": [
6+
{
7+
"indexed": true,
8+
"internalType": "address",
9+
"name": "feeRecipient",
10+
"type": "address"
11+
},
12+
{
13+
"indexed": false,
14+
"internalType": "uint256",
15+
"name": "newFee",
16+
"type": "uint256"
17+
},
18+
{
19+
"indexed": false,
20+
"internalType": "uint256",
21+
"name": "lastFeeCheckpoint",
22+
"type": "uint256"
23+
},
24+
{
25+
"indexed": false,
26+
"internalType": "uint256",
27+
"name": "lastValue",
28+
"type": "uint256"
29+
},
30+
{
31+
"indexed": false,
32+
"internalType": "uint256",
33+
"name": "lastFeeTokenPrice",
34+
"type": "uint256"
35+
},
36+
{
37+
"indexed": false,
38+
"internalType": "uint256",
39+
"name": "feeTotal",
40+
"type": "uint256"
41+
}
42+
],
43+
"name": "FeesReserved",
44+
"type": "event"
45+
},
46+
"contract_address": "0xb1095567c713744e61f1f949e1d324adac738c6a",
47+
"field_mapping": {},
48+
"type": "log"
49+
},
50+
"table": {
51+
"dataset_name": "aera",
52+
"schema": [
53+
{
54+
"description": "",
55+
"name": "feeRecipient",
56+
"type": "STRING"
57+
},
58+
{
59+
"description": "",
60+
"name": "newFee",
61+
"type": "STRING"
62+
},
63+
{
64+
"description": "",
65+
"name": "lastFeeCheckpoint",
66+
"type": "STRING"
67+
},
68+
{
69+
"description": "",
70+
"name": "lastValue",
71+
"type": "STRING"
72+
},
73+
{
74+
"description": "",
75+
"name": "lastFeeTokenPrice",
76+
"type": "STRING"
77+
},
78+
{
79+
"description": "",
80+
"name": "feeTotal",
81+
"type": "STRING"
82+
}
83+
],
84+
"table_description": "",
85+
"table_name": "AeraVaultV2_event_FeesReserved"
86+
}
87+
}
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"parser": {
3+
"abi": {
4+
"anonymous": false,
5+
"inputs": [
6+
{
7+
"indexed": true,
8+
"internalType": "address",
9+
"name": "owner",
10+
"type": "address"
11+
},
12+
{
13+
"components": [
14+
{
15+
"internalType": "contract IERC20",
16+
"name": "asset",
17+
"type": "address"
18+
},
19+
{
20+
"internalType": "uint256",
21+
"name": "value",
22+
"type": "uint256"
23+
}
24+
],
25+
"indexed": false,
26+
"internalType": "struct AssetValue[]",
27+
"name": "withdrawnAmounts",
28+
"type": "tuple[]"
29+
}
30+
],
31+
"name": "Finalized",
32+
"type": "event"
33+
},
34+
"contract_address": "0xb1095567c713744e61f1f949e1d324adac738c6a",
35+
"field_mapping": {},
36+
"type": "log"
37+
},
38+
"table": {
39+
"dataset_name": "aera",
40+
"schema": [
41+
{
42+
"description": "",
43+
"name": "owner",
44+
"type": "STRING"
45+
},
46+
{
47+
"description": "",
48+
"name": "withdrawnAmounts",
49+
"type": "STRING"
50+
}
51+
],
52+
"table_description": "",
53+
"table_name": "AeraVaultV2_event_Finalized"
54+
}
55+
}

0 commit comments

Comments
 (0)