Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
c51ebd7
Merge branch 'feat/cleanup-and-cumulatives'
apexearth Sep 30, 2024
52f1363
wip arm
apexearth Oct 2, 2024
5459ad8
feat: arm processing, daily state, redemption entity
apexearth Oct 4, 2024
d0fc6ce
fork deployment documentation and simplification
apexearth Oct 7, 2024
527fdf5
rename armDailyStates to armDailyStats
apexearth Oct 8, 2024
d4fef7e
fix: validation issue
apexearth Oct 8, 2024
62a2391
feat: arm
apexearth Oct 9, 2024
dad8e9c
feat: arm
apexearth Oct 9, 2024
f3a5852
feat: arm
apexearth Oct 9, 2024
caaea01
feat: arm
apexearth Oct 9, 2024
6a9a409
feat: arm
apexearth Oct 9, 2024
611d41b
feat: arm
apexearth Oct 10, 2024
d870dfc
feat: arm
apexearth Oct 11, 2024
cafb8fa
feat: arm
apexearth Oct 11, 2024
ce7ba84
feat: arm
apexearth Oct 11, 2024
c1a4336
feat: arm
apexearth Oct 11, 2024
a8a677f
feat: arm
apexearth Oct 11, 2024
ce0dffc
feat: arm
apexearth Oct 11, 2024
b6c4c3f
v999
apexearth Oct 11, 2024
7d6040d
feat: arm
apexearth Oct 11, 2024
03a5d67
feat: arm
apexearth Oct 11, 2024
d64309e
Merge branch 'main' into feat/arm
apexearth Oct 14, 2024
606d3da
feat: arm
apexearth Oct 14, 2024
13ad46f
change curve to store id as block number (tenderly fork issue)
apexearth Oct 14, 2024
299426e
ensure tenderly fork deployment options are commented out
apexearth Oct 14, 2024
a0bc3f7
feat: dripper
apexearth Oct 14, 2024
ae5eec8
fix: squid `env:`
apexearth Oct 14, 2024
1ae01ec
sqd bump
apexearth Oct 15, 2024
5b7c386
feat: oethb automation
apexearth Oct 16, 2024
2332102
feat: arm
apexearth Oct 16, 2024
02adc4d
feat: oethb automation
apexearth Oct 16, 2024
33d9f39
consolidate validation code
apexearth Oct 17, 2024
cd8a738
feat: arm
apexearth Oct 17, 2024
a99ae9b
feat: arm
apexearth Oct 17, 2024
4d2718f
feat: arm
apexearth Oct 17, 2024
c9daba6
add to addresses.ts
apexearth Oct 17, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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