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(#patch); uniswap-v2-ethereum; add broken ERC20 tokens #2445

Merged
merged 1 commit into from
Dec 25, 2023
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 @@ -5428,7 +5428,7 @@
"status": "dev",
"versions": {
"schema": "1.3.2",
"subgraph": "1.1.11",
"subgraph": "1.1.12",
"methodology": "1.0.0"
},
"files": {
Expand Down Expand Up @@ -5488,7 +5488,7 @@
"status": "prod",
"versions": {
"schema": "1.3.2",
"subgraph": "1.1.0",
"subgraph": "1.1.1",
"methodology": "1.0.0"
},
"files": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"startBlock": 10000834
},
"graftEnabled": false,
"subgraphId": "",
"graftStartBlock": 0
"subgraphId": "QmZA6EuUgDPd5KnsefSxJw7RwiYyfTa4FK413eqGtBXD5M",
"graftStartBlock": 18746197
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ export class UniswapV2MainnetConfigurations implements Configurations {
return "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f";
}
getBrokenERC20Tokens(): string[] {
return ["0x0000000000bf2686748e1c0255036e7617e7e8a5"];
return [
"0x0000000000bf2686748e1c0255036e7617e7e8a5",
"0x000000000000b91b6956fead1dda24c66aa6b972",
];
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"startBlock": 10000834
},
"graftEnabled": false,
"subgraphId": "QmXztbk3JGtTdqnRSuQEtw5hRHzBNaB323D81hRXnrJvuM",
"graftStartBlock": 13148001
"subgraphId": "QmbAreB7zPavfTrKQawXJLFqytcqq9bC5WxqBC2b6L5JLR",
"graftStartBlock": 17308396
}
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,10 @@ export class UniswapV2MainnetConfigurations implements Configurations {
];
}
getBrokenERC20Tokens(): string[] {
return ["0x0000000000bf2686748e1c0255036e7617e7e8a5"];
return [
"0x0000000000bf2686748e1c0255036e7617e7e8a5",
"0x000000000000b91b6956fead1dda24c66aa6b972",
];
}
getMinimumLiquidityThresholdTrackVolume(): BigDecimal {
return MINIMUM_LIQUIDITY_FOUR_HUNDRED_THOUSAND;
Expand Down
Loading