Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deployment Updates #89

Merged
merged 37 commits into from
Jul 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
9f70d13
Merge pull request #31 from OlympusDAO/develop
0xJem May 11, 2023
d32d369
Merge pull request #33 from OlympusDAO/develop
0xJem Jun 17, 2023
9ef4ff5
Merge pull request #36 from OlympusDAO/develop
0xJem Jun 18, 2023
18d622c
Merge pull request #39 from OlympusDAO/develop
0xJem Jul 25, 2023
48266b1
Merge pull request #41 from OlympusDAO/develop
0xJem Sep 7, 2023
4faed35
Merge pull request #43 from OlympusDAO/develop
0xJem Sep 8, 2023
dfeeb96
Merge pull request #45 from OlympusDAO/develop
0xJem Sep 12, 2023
af8d704
Merge pull request #47 from OlympusDAO/develop
0xJem Sep 13, 2023
2498393
Merge pull request #49 from OlympusDAO/develop
0xJem Sep 14, 2023
b59e69f
Merge pull request #52 from OlympusDAO/develop
0xJem Sep 25, 2023
e7642d2
Merge pull request #55 from OlympusDAO/develop
0xJem Sep 25, 2023
6447d67
Merge pull request #56 from OlympusDAO/develop
0xJem Sep 26, 2023
8dcbb15
Merge pull request #58 from OlympusDAO/develop
0xJem Sep 26, 2023
452b16d
Merge pull request #61 from OlympusDAO/develop
0xJem Sep 27, 2023
6acc399
Merge pull request #62 from OlympusDAO/develop
0xJem Sep 28, 2023
65c3d28
Merge pull request #64 from OlympusDAO/develop
0xJem Sep 30, 2023
31b2ee3
Merge pull request #66 from OlympusDAO/develop
0xJem Oct 3, 2023
ec9567f
Merge pull request #68 from OlympusDAO/develop
0xJem Oct 5, 2023
b2ff388
Merge pull request #70 from OlympusDAO/develop
0xJem Oct 5, 2023
2602bca
Merge pull request #73 from OlympusDAO/develop
0xJem Oct 9, 2023
e5faf6a
Merge pull request #75 from OlympusDAO/develop
0xJem Oct 11, 2023
1e6e2b6
Merge pull request #77 from OlympusDAO/develop
0xJem Oct 12, 2023
d713098
Merge pull request #80 from OlympusDAO/develop
0xJem Oct 13, 2023
a30bf46
Merge pull request #82 from OlympusDAO/develop
0xJem Oct 17, 2023
44bac50
Merge pull request #84 from OlympusDAO/develop
0xJem Jan 26, 2024
346454c
Merge pull request #86 from OlympusDAO/develop
0xJem Jan 29, 2024
b73da63
Add upstream errors to log messages
0xJem Feb 21, 2024
08e72d1
Shift Polygon subgraph to DN version
0xJem Feb 21, 2024
43f9aa7
Shift Fantom to DN
0xJem Jun 5, 2024
ada14d8
Merge branch 'main' into logging
0xJem Jun 5, 2024
9f6b228
Use Fantom on DN. Adds Base subgraph.
0xJem Jun 5, 2024
7eb5e9b
Bump Fantom version
0xJem Jun 6, 2024
4e91940
Revert "Bump Fantom version"
0xJem Jun 6, 2024
9960f50
Merge branch 'develop' into fantom-base-deployments
0xJem Jun 7, 2024
6fc9046
Update Base and Fantom subgraph URLs
0xJem Jun 7, 2024
27da875
Add Base to metrics
0xJem Jun 7, 2024
70c0891
Bump Arbitrum deployment
0xJem Jul 25, 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
2 changes: 2 additions & 0 deletions apps/server/.wundergraph/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@ export const CHAIN_ARBITRUM = "Arbitrum";
export const CHAIN_ETHEREUM = "Ethereum";
export const CHAIN_FANTOM = "Fantom";
export const CHAIN_POLYGON = "Polygon";
export const CHAIN_BASE = "Base";

export enum Chains {
ARBITRUM = CHAIN_ARBITRUM,
ETHEREUM = CHAIN_ETHEREUM,
FANTOM = CHAIN_FANTOM,
POLYGON = CHAIN_POLYGON,
BASE = CHAIN_BASE,
};

export const TOKEN_SUPPLY_TYPE_BONDS_DEPOSITS = "OHM Bonds (Burnable Deposits)";
Expand Down
19 changes: 18 additions & 1 deletion apps/server/.wundergraph/fragments/protocolMetric.graphql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# One fragment per type
# One fragment per type

fragment Fragment_ProtocolMetricArbitrum on treasuryArbitrum_ProtocolMetric {
id
Expand Down Expand Up @@ -67,3 +67,20 @@ fragment Fragment_ProtocolMetricPolygon on treasuryPolygon_ProtocolMetric {
timestamp
totalValueLocked
}

fragment Fragment_ProtocolMetricBase on treasuryBase_ProtocolMetric {
id
block
currentAPY
currentIndex
date
gOhmPrice
gOhmTotalSupply
nextDistributedOhm
nextEpochRebase
ohmPrice
ohmTotalSupply
sOhmCirculatingSupply
timestamp
totalValueLocked
}
22 changes: 21 additions & 1 deletion apps/server/.wundergraph/fragments/tokenRecord.graphql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# One fragment per type
# One fragment per type

fragment Fragment_TokenRecordArbitrum on treasuryArbitrum_TokenRecord {
id
Expand Down Expand Up @@ -79,3 +79,23 @@ fragment Fragment_TokenRecordPolygon on treasuryPolygon_TokenRecord {
value
valueExcludingOhm
}

fragment Fragment_TokenRecordBase on treasuryBase_TokenRecord {
id
balance
block
blockchain
category
date
isBluechip
isLiquid
multiplier
rate
source
sourceAddress
timestamp
token
tokenAddress
value
valueExcludingOhm
}
19 changes: 18 additions & 1 deletion apps/server/.wundergraph/fragments/tokenSupply.graphql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# One fragment per type
# One fragment per type

fragment Fragment_TokenSupplyArbitrum on treasuryArbitrum_TokenSupply {
id
Expand Down Expand Up @@ -67,3 +67,20 @@ fragment Fragment_TokenSupplyPolygon on treasuryPolygon_TokenSupply {
tokenAddress
type
}

fragment Fragment_TokenSupplyBase on treasuryBase_TokenSupply {
id
balance
block
blockchain
date
pool
poolAddress
source
sourceAddress
supplyBalance
timestamp
token
tokenAddress
type
}
Loading
Loading