From 82a93263fae330ae39a7212e74d973fa9f820f64 Mon Sep 17 00:00:00 2001 From: Richard Moore Date: Tue, 12 May 2020 17:25:02 -0400 Subject: [PATCH] Added missing Interface exports to umbrella utils. --- packages/ethers/src.ts/utils.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/ethers/src.ts/utils.ts b/packages/ethers/src.ts/utils.ts index adc3b52ab9..065cf5455e 100644 --- a/packages/ethers/src.ts/utils.ts +++ b/packages/ethers/src.ts/utils.ts @@ -1,6 +1,6 @@ "use strict"; -import { AbiCoder, checkResultErrors, defaultAbiCoder, EventFragment, FormatTypes, Fragment, FunctionFragment, Indexed, Interface, ParamType, Result } from "@ethersproject/abi"; +import { AbiCoder, checkResultErrors, defaultAbiCoder, EventFragment, FormatTypes, Fragment, FunctionFragment, Indexed, Interface, LogDescription, ParamType, Result, TransactionDescription }from "@ethersproject/abi"; import { getAddress, getCreate2Address, getContractAddress, getIcapAddress, isAddress } from "@ethersproject/address"; import * as base64 from "@ethersproject/base64"; import { arrayify, concat, hexDataSlice, hexDataLength, hexlify, hexStripZeros, hexValue, hexZeroPad, isBytes, isBytesLike, isHexString, joinSignature, zeroPad, splitSignature, stripZeros } from "@ethersproject/bytes"; @@ -83,6 +83,9 @@ export { Interface, + LogDescription, + TransactionDescription, + base64, hexlify,