Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
638 changes: 433 additions & 205 deletions abi/otoken-vault.json

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/REQUIREMENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ const balancerMetaStablePoolABI = [

- curvePoolBalanceMetric: `poolContract.balances(0) or poolContract.balances(1)`
- EthFrxEthPool: "0xa1f8a6807c402e4a15ef4eba36528a3fed24e577" - ETH frxETH
- REthEthPool: "0x0f3159811670c117c372428d4e69ac32325e4d0f" - ETH stETH
- EthStEthPool: "0xDC24316b9AE028F1497c275EB9192a3Ea0f67022" - rETH ETH
- REthEthPool: "0x0f3159811670c117c372428d4e69ac32325e4d0f" - ETH rETH
- EthStEthPool: "0xDC24316b9AE028F1497c275EB9192a3Ea0f67022" - ETH stETH
- WEthStEthPool: "0x828b154032950c8ff7cf8085d841723db2696056" - WETH stETH
- OEthEthPool: "0x94B17476A93b3262d87B9a326965D1E91f9c13E7" - OETH ETH

Expand Down
16 changes: 11 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,22 @@
"private": true,
"scripts": {
"codegen": "echo '# GENERATED, DO NOT MODIFY\n' > schema.graphql && cat schema-*.graphql >> schema.graphql && sqd codegen && git add src/model/generated/*",
"migration:generate": "sqd down && sqd up && sqd migration:generate",
"build": "rm -rf lib && tsc",
"prettier-check": "prettier --check **/*.ts **/*.json",
"prettier-fix": "prettier --write **/*.ts **/*.json"
},
"dependencies": {
"@subsquid/archive-registry": "^3.3.0",
"@subsquid/evm-processor": "^1.8.4",
"@subsquid/evm-processor": "^1.8.5",
"@subsquid/graphql-server": "^4.3.1",
"@subsquid/typeorm-migration": "^1.2.2",
"@subsquid/typeorm-store": "^1.2.4",
"@types/lodash": "^4.14.200",
"dayjs": "^1.11.10",
"dotenv": "^16.1.4",
"ethers": "^6.5.1",
"lodash": "^4.17.21",
"pg": "^8.11.0",
"type-graphql": "^1.2.0-rc.1",
"typeorm": "^0.3.16",
Expand Down
1 change: 0 additions & 1 deletion schema-oeth.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ type OETHBalancerMetaPoolStrategy @entity {
id: ID!
timestamp: DateTime! @index
blockNumber: Int! @index
total: BigInt!
rETH: BigInt!
weth: BigInt!
}
1 change: 0 additions & 1 deletion schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,6 @@ type OETHBalancerMetaPoolStrategy @entity {
id: ID!
timestamp: DateTime! @index
blockNumber: Int! @index
total: BigInt!
rETH: BigInt!
weth: BigInt!
}
Expand Down
2 changes: 1 addition & 1 deletion squid.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
manifestVersion: subsquid.io/v0.1
name: origin-squid
version: 0
version: 999
description: 'Origin Protocol 🦑'
build:
deploy:
Expand Down
Loading