Fix type of ActionData.encodedFunction

This commit is contained in:
Andrew Morris
2022-11-14 17:46:16 +11:00
parent 02298b8029
commit 940dd11de9

View File

@@ -1,9 +1,9 @@
import { BigNumberish } from "ethers";
import { BigNumberish, BytesLike } from "ethers";
export type ActionData = {
ethValue: BigNumberish;
contractAddress: string;
encodedFunction: string;
encodedFunction: BytesLike;
};
export type Operation = {