Skip to content

Commit

Permalink
fix(#patch); uniswap-v3; failed deployment for tokens with unverified…
Browse files Browse the repository at this point in the history
… ABI (#2470)
  • Loading branch information
dhruv-chauhan authored Jan 30, 2024
1 parent ae673cb commit c052e90
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 16 deletions.
8 changes: 4 additions & 4 deletions deployment/deployment.json
Original file line number Diff line number Diff line change
Expand Up @@ -3868,7 +3868,7 @@
"status": "prod",
"versions": {
"schema": "4.0.1",
"subgraph": "1.5.1",
"subgraph": "1.5.2",
"methodology": "1.0.0"
},
"files": {
Expand Down Expand Up @@ -3990,7 +3990,7 @@
"status": "prod",
"versions": {
"schema": "4.0.1",
"subgraph": "1.5.1",
"subgraph": "1.5.2",
"methodology": "1.0.0"
},
"files": {
Expand All @@ -4016,7 +4016,7 @@
"status": "prod",
"versions": {
"schema": "4.0.1",
"subgraph": "1.5.1",
"subgraph": "1.5.2",
"methodology": "1.0.0"
},
"files": {
Expand Down Expand Up @@ -4372,7 +4372,7 @@
"status": "prod",
"versions": {
"schema": "4.0.0",
"subgraph": "1.0.1",
"subgraph": "1.0.2",
"methodology": "1.0.0"
},
"files": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"nonFungiblePositionManagerAddressStartBlock": 0,
"deployment": "UNISWAP_V3_OPTIMISM",
"graftEnabled": false,
"subgraphId": "",
"graftStartBlock": 0
"subgraphId": "QmbeFnzYbtGagCVpHUvKK81gKfDA9PY9sfZkeyYyjJoNZg",
"graftStartBlock": 115331325
}
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ export class UniswapV3OptimismConfigurations implements Configurations {
return BigDecimal.fromString("100000");
}
getBrokenERC20Tokens(): Bytes[] {
return stringToBytesList(["0x000000000000be0ab658f92dddac29d6df19a3be"]);
return stringToBytesList([
"0x000000000000be0ab658f92dddac29d6df19a3be",
"0x000000000000b91b6956fead1dda24c66aa6b972",
"0x0000000000e586517bccb5ec52e70119299d2c9c",
]);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"nonFungiblePositionManagerAddressStartBlock": 172,
"deployment": "UNISWAP_V3_ARBITRUM",
"graftEnabled": false,
"subgraphId": "QmTftg7pdUQ21m2RSmYxXYmhUqYtsvD1QNMJFUJWWANxFm",
"graftStartBlock": 50045501
"subgraphId": "QmNNZNoaL5Wgafgcsqiyzivp6a1s3fYzwFUUK7oHZ3bCfQ",
"graftStartBlock": 174340924
}
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ export class UniswapV3ArbitrumConfigurations implements Configurations {
return BigDecimal.fromString("100000");
}
getBrokenERC20Tokens(): Bytes[] {
return stringToBytesList([]);
return stringToBytesList([
"0x000000000000b91b6956fead1dda24c66aa6b972",
"0x0000000000e586517bccb5ec52e70119299d2c9c",
]);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"nonFungiblePositionManagerAddressStartBlock": 0,
"deployment": "UNISWAP_V3_OPTIMISM",
"graftEnabled": false,
"subgraphId": "QmUsSW7yQjJNBekt3JobbwdCvXTA2Mj56sLFpUz5GvYp3M",
"graftStartBlock": 5340706
"subgraphId": "QmaiNqUk1diAk6bkU4dFqEAee1dJFZyC9z35H8jJTPXkxa",
"graftStartBlock": 115331325
}
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ export class UniswapV3OptimismConfigurations implements Configurations {
return BigDecimal.fromString("100000");
}
getBrokenERC20Tokens(): Bytes[] {
return stringToBytesList(["0x000000000000be0ab658f92dddac29d6df19a3be"]);
return stringToBytesList([
"0x000000000000be0ab658f92dddac29d6df19a3be",
"0x000000000000b91b6956fead1dda24c66aa6b972",
"0x0000000000e586517bccb5ec52e70119299d2c9c",
]);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"nonFungiblePositionManagerAddressStartBlock": 14582231,
"deployment": "UNISWAP_V3_POLYGON",
"graftEnabled": false,
"subgraphId": "QmbQ249g9w4Bhv2rcyvCtaMdFx2ESuYWUP4Tp4zx6QJwar",
"graftStartBlock": 32674299
"subgraphId": "Qmdri6LtxNJ4EmsQyJNHumEL23ynoVZ9DSgjfiFijUBsnm",
"graftStartBlock": 52770143
}
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,9 @@ export class UniswapV3MaticConfigurations implements Configurations {
return BigDecimal.fromString("100000");
}
getBrokenERC20Tokens(): Bytes[] {
return stringToBytesList([]);
return stringToBytesList([
"0x000000000000b91b6956fead1dda24c66aa6b972",
"0x0000000000e586517bccb5ec52e70119299d2c9c",
]);
}
}

0 comments on commit c052e90

Please sign in to comment.