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

Drop ComposableCoW bytecode check #151

Merged
merged 7 commits into from
May 10, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@cowprotocol/watch-tower",
"license": "GPL-3.0-or-later",
"version": "1.2.0",
"version": "1.3.0",
"description": "A standalone watch tower, keeping an eye on Composable Cows 👀🐮",
"author": {
"name": "Cow Protocol"
Expand Down
9 changes: 1 addition & 8 deletions src/domain/events/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import {
toConditionalOrderParams,
getLogger,
handleExecutionError,
isComposableCowCompatible,
metrics,
} from "../../utils";
import { BytesLike, ethers } from "ethers";
Expand Down Expand Up @@ -50,19 +49,13 @@ async function _addContract(
) {
const log = getLogger("addContract:_addContract");
const composableCow = ComposableCoW__factory.createInterface();
const { provider, registry } = context;
const { registry } = context;
const { transactionHash: tx, blockNumber } = event;

// Process the logs
let hasErrors = false;
let numContractsAdded = 0;

// Do not process logs that are not from a `ComposableCoW`-compatible contract
// This is a *normal* case, if the contract is not `ComposableCoW`-compatible
// then we do not need to do anything, and therefore don't flag as an error.
if (!isComposableCowCompatible(await provider.getCode(event.address))) {
return;
}
const { error, added } = await _registerNewOrder(
event,
composableCow,
Expand Down
31 changes: 21 additions & 10 deletions src/domain/polling/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -690,16 +690,27 @@ async function _pollLegacy(
const [{ success, returnData }] = lowLevelCall;

if (success) {
// Decode the returnData to get the order and signature tuple
const { order, signature } = contract.interface.decodeFunctionResult(
"getTradeableOrderWithSignature",
returnData
);
return {
result: PollResultCode.SUCCESS,
order,
signature,
};
try {
// Decode the returnData to get the order and signature tuple
const { order, signature } = contract.interface.decodeFunctionResult(
"getTradeableOrderWithSignature",
returnData
);
return {
result: PollResultCode.SUCCESS,
order,
signature,
};
} catch (error: any) {
log.error(`ethers/decodeFunctionResult Unexpected error`, error);
metrics.pollingOnChainEthersErrorsTotal.labels(...metricLabels).inc();
return {
result: PollResultCode.DONT_TRY_AGAIN,
reason:
"UnexpectedErrorName: Unexpected error" +
mfw78 marked this conversation as resolved.
Show resolved Hide resolved
(error.message ? `: ${error.message}` : ""),
};
}
}

// If the low-level call failed, per the `ComposableCoW` interface, the contract is attempting to
Expand Down
30 changes: 0 additions & 30 deletions src/utils/contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,6 @@ import {
import { getLogger } from "./logging";
import { metrics } from ".";

// Selectors that are required to be part of the contract's bytecode in order to be considered compatible
const REQUIRED_SELECTORS = [
"cabinet(address,bytes32)",
"getTradeableOrderWithSignature(address,(address,bytes32,bytes),bytes,bytes32[])",
];

// Define an enum for the custom error revert hints that can be returned by the ComposableCoW's interfaces.
export enum CustomErrorSelectors {
/**
Expand Down Expand Up @@ -117,30 +111,6 @@ export function abiToSelector(abi: string) {
return ethers.utils.id(abi).slice(0, 10);
}

/**
* Attempts to verify that the contract at the given address implements the interface of the `ComposableCoW`
* contract. This is done by checking that the contract contains the selectors of the functions that are
* required to be implemented by the interface.
*
* @remarks This is not a foolproof way of verifying that the contract implements the interface, but it is
* a good enough heuristic to filter out most of the contracts that do not implement the interface.
*
* @dev The selectors are:
* - `cabinet(address,bytes32)`: `1c7662c8`
* - `getTradeableOrderWithSignature(address,(address,bytes32,bytes),bytes,bytes32[])`: `26e0a196`
*
* @param code the contract's deployed bytecode as a hex string
* @returns A boolean indicating if the contract likely implements the interface
*/
export function isComposableCowCompatible(code: string): boolean {
const composableCow = ComposableCoW__factory.createInterface();

return REQUIRED_SELECTORS.every((signature) => {
const sighash = composableCow.getSighash(signature);
return code.includes(sighash.slice(2));
});
}

export function composableCowContract(
provider: ethers.providers.Provider,
chainId: SupportedChainId
Expand Down
36 changes: 0 additions & 36 deletions src/utils/utils.spec.ts
Original file line number Diff line number Diff line change
@@ -1,49 +1,13 @@
import * as composableCow from "../../abi/ComposableCoW.json";
import * as extensibleFallbackHandler from "../../abi/ExtensibleFallbackHandler.json";
import {
CUSTOM_ERROR_ABI_MAP,
CustomErrorSelectors,
abiToSelector,
handleOnChainCustomError,
initLogging,
isComposableCowCompatible,
parseCustomError,
} from ".";
import { COMPOSABLE_COW_CONTRACT_ADDRESS } from "@cowprotocol/cow-sdk";

// consts for readability
const composableCowBytecode = composableCow.deployedBytecode.object;
const failBytecode = extensibleFallbackHandler.deployedBytecode.object;

describe("test supports composable cow interface from bytecode", () => {
it("should pass", () => {
expect(isComposableCowCompatible(composableCowBytecode)).toBe(true);
});

it("should fail", () => {
expect(isComposableCowCompatible(failBytecode)).toBe(false);
});
});

describe("test against concrete examples", () => {
const signatures = ["0x1c7662c8", "0x26e0a196"];

it("should pass with both selectors", () => {
expect(isComposableCowCompatible("0x1c7662c826e0a196")).toBe(true);
});

// using `forEach` here, be careful not to do async tests.
signatures.forEach((s) => {
it(`should fail with only selector ${s}`, () => {
expect(isComposableCowCompatible(s)).toBe(false);
});
});

it("should fail with no selectors", () => {
expect(isComposableCowCompatible("0xdeadbeefdeadbeef")).toBe(false);
});
});

describe("parse custom errors (reversions)", () => {
it("should pass the SingleOrderNotAuthed selector correctly", () => {
expect(parseCustomError(SINGLE_ORDER_NOT_AUTHED_ERROR)).toMatchObject({
Expand Down
Loading