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

Fix maker and re-deploy across #2665

Merged
merged 2 commits into from
Dec 24, 2024
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
4 changes: 2 additions & 2 deletions deployment/deployment.json
Original file line number Diff line number Diff line change
Expand Up @@ -3508,7 +3508,7 @@
"status": "prod",
"versions": {
"schema": "2.0.1",
"subgraph": "2.4.0",
"subgraph": "2.4.1",
"methodology": "1.1.0"
},
"files": {
Expand Down Expand Up @@ -8942,7 +8942,7 @@
"status": "prod",
"versions": {
"schema": "1.2.0",
"subgraph": "1.0.0",
"subgraph": "1.0.1",
"methodology": "1.0.0"
},
"services": {
Expand Down
7 changes: 6 additions & 1 deletion subgraphs/makerdao/src/mapping.ts
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,12 @@ export function handleDogBark(event: BarkEvent): void {
const art = event.params.art;
const due = event.params.due; //including interest, but not penalty

const market = getMarketFromIlk(ilk)!;
const market = getMarketFromIlk(ilk);
if (!market) {
log.warning("[handleDogBark] Failed to get market for ilk {}", [ilk.toString()]);
return;
}

const token = getOrCreateToken(market.inputToken);
const collateral = bigIntChangeDecimals(lot, WAD, token.decimals);
const collateralUSD = bigIntToBDUseDecimals(collateral, token.decimals).times(
Expand Down
Loading