From 3d051e454db978f58c7b38ff4484096c3eb85b94 Mon Sep 17 00:00:00 2001 From: Richard Moore Date: Sat, 3 Oct 2020 13:18:56 -0400 Subject: [PATCH] Export hexConcat in utils (#1079). --- packages/ethers/src.ts/utils.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/ethers/src.ts/utils.ts b/packages/ethers/src.ts/utils.ts index 2e09d6e9e8..3e1c4849b3 100644 --- a/packages/ethers/src.ts/utils.ts +++ b/packages/ethers/src.ts/utils.ts @@ -4,7 +4,7 @@ import { AbiCoder, checkResultErrors, defaultAbiCoder, EventFragment, FormatType import { getAddress, getCreate2Address, getContractAddress, getIcapAddress, isAddress } from "@ethersproject/address"; import * as base64 from "@ethersproject/base64"; import { Base58 as base58 } from "@ethersproject/basex"; -import { arrayify, concat, hexDataSlice, hexDataLength, hexlify, hexStripZeros, hexValue, hexZeroPad, isBytes, isBytesLike, isHexString, joinSignature, zeroPad, splitSignature, stripZeros } from "@ethersproject/bytes"; +import { arrayify, concat, hexConcat, hexDataSlice, hexDataLength, hexlify, hexStripZeros, hexValue, hexZeroPad, isBytes, isBytesLike, isHexString, joinSignature, zeroPad, splitSignature, stripZeros } from "@ethersproject/bytes"; import { hashMessage, id, isValidName, namehash } from "@ethersproject/hash"; import { defaultPath, entropyToMnemonic, HDNode, isValidMnemonic, mnemonicToEntropy, mnemonicToSeed } from "@ethersproject/hdnode"; import { getJsonWalletAddress } from "@ethersproject/json-wallets"; @@ -94,6 +94,7 @@ export { hexlify, isHexString, + hexConcat, hexStripZeros, hexValue, hexZeroPad,