Skip to content

Commit

Permalink
Merge commit 'c9daba6ca4c7a64888a4919515a4d9d1bb0a06b7'
Browse files Browse the repository at this point in the history
  • Loading branch information
apexearth committed Oct 17, 2024
2 parents 9410052 + c9daba6 commit ce18b21
Show file tree
Hide file tree
Showing 70 changed files with 13,497 additions and 1,006 deletions.
3 changes: 3 additions & 0 deletions .cursorrules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- We are a subsquid project which extracts data from EVM blockchains.
- We reference `README.md` for instructions on how to use and contribute to our project.
- When saving entities, use `.insert()` or `.upsert()`.
19 changes: 0 additions & 19 deletions CHANGELOG.md

This file was deleted.

5 changes: 3 additions & 2 deletions DEPENDENCIES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Log our important dependencies in here so that we know what should be updated when breaking changes are made for the
next version.

- https://github.com/OriginProtocol/oeth.com
- https://github.com/oplabs/oeth-new
- https://github.com/oplabs/defi-analytics
- https://github.com/OriginProtocol/origin-defi
- https://origindefi.grafana.net/dashboards
- https://origindefi.grafana.net
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

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

#### See [docs/](./docs/) for specific tasks.

## Release Checklist

Ensure we don't miss anything on a release by following this checklist.
Expand Down
183 changes: 183 additions & 0 deletions abi/governed-upgradeability-proxy.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,183 @@
[
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousGovernor",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newGovernor",
"type": "address"
}
],
"name": "GovernorshipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousGovernor",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newGovernor",
"type": "address"
}
],
"name": "PendingGovernorshipTransfer",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "implementation",
"type": "address"
}
],
"name": "Upgraded",
"type": "event"
},
{
"stateMutability": "payable",
"type": "fallback"
},
{
"inputs": [],
"name": "admin",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "claimGovernance",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "governor",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "implementation",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_logic",
"type": "address"
},
{
"internalType": "address",
"name": "_initGovernor",
"type": "address"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "initialize",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "isGovernor",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_newGovernor",
"type": "address"
}
],
"name": "transferGovernance",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newImplementation",
"type": "address"
}
],
"name": "upgradeTo",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newImplementation",
"type": "address"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "upgradeToAndCall",
"outputs": [],
"stateMutability": "payable",
"type": "function"
}
]
Loading

0 comments on commit ce18b21

Please sign in to comment.