Skip to content

Commit ce18b21

Browse files
committed
Merge commit 'c9daba6ca4c7a64888a4919515a4d9d1bb0a06b7'
2 parents 9410052 + c9daba6 commit ce18b21

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+13497
-1006
lines changed

.cursorrules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
- We are a subsquid project which extracts data from EVM blockchains.
2+
- We reference `README.md` for instructions on how to use and contribute to our project.
3+
- When saving entities, use `.insert()` or `.upsert()`.

CHANGELOG.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

DEPENDENCIES.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
Log our important dependencies in here so that we know what should be updated when breaking changes are made for the
44
next version.
55

6-
- https://github.com/OriginProtocol/oeth.com
6+
- https://github.com/oplabs/oeth-new
7+
- https://github.com/oplabs/defi-analytics
78
- https://github.com/OriginProtocol/origin-defi
8-
- https://origindefi.grafana.net/dashboards
9+
- https://origindefi.grafana.net

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
### [Design Decisions Notion Document](https://www.notion.so/originprotocol/Subsquid-Design-Decisions-04ef82ae0d6848d1b14de893e9929ce4#d8e8d367069c4a619809e926f72db074)
44

5+
#### See [docs/](./docs/) for specific tasks.
6+
57
## Release Checklist
68

79
Ensure we don't miss anything on a release by following this checklist.
Lines changed: 183 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,183 @@
1+
[
2+
{
3+
"anonymous": false,
4+
"inputs": [
5+
{
6+
"indexed": true,
7+
"internalType": "address",
8+
"name": "previousGovernor",
9+
"type": "address"
10+
},
11+
{
12+
"indexed": true,
13+
"internalType": "address",
14+
"name": "newGovernor",
15+
"type": "address"
16+
}
17+
],
18+
"name": "GovernorshipTransferred",
19+
"type": "event"
20+
},
21+
{
22+
"anonymous": false,
23+
"inputs": [
24+
{
25+
"indexed": true,
26+
"internalType": "address",
27+
"name": "previousGovernor",
28+
"type": "address"
29+
},
30+
{
31+
"indexed": true,
32+
"internalType": "address",
33+
"name": "newGovernor",
34+
"type": "address"
35+
}
36+
],
37+
"name": "PendingGovernorshipTransfer",
38+
"type": "event"
39+
},
40+
{
41+
"anonymous": false,
42+
"inputs": [
43+
{
44+
"indexed": true,
45+
"internalType": "address",
46+
"name": "implementation",
47+
"type": "address"
48+
}
49+
],
50+
"name": "Upgraded",
51+
"type": "event"
52+
},
53+
{
54+
"stateMutability": "payable",
55+
"type": "fallback"
56+
},
57+
{
58+
"inputs": [],
59+
"name": "admin",
60+
"outputs": [
61+
{
62+
"internalType": "address",
63+
"name": "",
64+
"type": "address"
65+
}
66+
],
67+
"stateMutability": "view",
68+
"type": "function"
69+
},
70+
{
71+
"inputs": [],
72+
"name": "claimGovernance",
73+
"outputs": [],
74+
"stateMutability": "nonpayable",
75+
"type": "function"
76+
},
77+
{
78+
"inputs": [],
79+
"name": "governor",
80+
"outputs": [
81+
{
82+
"internalType": "address",
83+
"name": "",
84+
"type": "address"
85+
}
86+
],
87+
"stateMutability": "view",
88+
"type": "function"
89+
},
90+
{
91+
"inputs": [],
92+
"name": "implementation",
93+
"outputs": [
94+
{
95+
"internalType": "address",
96+
"name": "",
97+
"type": "address"
98+
}
99+
],
100+
"stateMutability": "view",
101+
"type": "function"
102+
},
103+
{
104+
"inputs": [
105+
{
106+
"internalType": "address",
107+
"name": "_logic",
108+
"type": "address"
109+
},
110+
{
111+
"internalType": "address",
112+
"name": "_initGovernor",
113+
"type": "address"
114+
},
115+
{
116+
"internalType": "bytes",
117+
"name": "_data",
118+
"type": "bytes"
119+
}
120+
],
121+
"name": "initialize",
122+
"outputs": [],
123+
"stateMutability": "payable",
124+
"type": "function"
125+
},
126+
{
127+
"inputs": [],
128+
"name": "isGovernor",
129+
"outputs": [
130+
{
131+
"internalType": "bool",
132+
"name": "",
133+
"type": "bool"
134+
}
135+
],
136+
"stateMutability": "view",
137+
"type": "function"
138+
},
139+
{
140+
"inputs": [
141+
{
142+
"internalType": "address",
143+
"name": "_newGovernor",
144+
"type": "address"
145+
}
146+
],
147+
"name": "transferGovernance",
148+
"outputs": [],
149+
"stateMutability": "nonpayable",
150+
"type": "function"
151+
},
152+
{
153+
"inputs": [
154+
{
155+
"internalType": "address",
156+
"name": "newImplementation",
157+
"type": "address"
158+
}
159+
],
160+
"name": "upgradeTo",
161+
"outputs": [],
162+
"stateMutability": "nonpayable",
163+
"type": "function"
164+
},
165+
{
166+
"inputs": [
167+
{
168+
"internalType": "address",
169+
"name": "newImplementation",
170+
"type": "address"
171+
},
172+
{
173+
"internalType": "bytes",
174+
"name": "data",
175+
"type": "bytes"
176+
}
177+
],
178+
"name": "upgradeToAndCall",
179+
"outputs": [],
180+
"stateMutability": "payable",
181+
"type": "function"
182+
}
183+
]

0 commit comments

Comments
 (0)