Added FormatTypes to utils.

This commit is contained in:
Richard Moore 2019-07-20 19:57:21 -03:00
parent 5877418de9
commit a05027c744
No known key found for this signature in database
GPG Key ID: 665176BE8E9DC651
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
"use strict";
import { AbiCoder, defaultAbiCoder, EventFragment, Fragment, FunctionFragment, Indexed, Interface, ParamType } from "@ethersproject/abi";
import { AbiCoder, defaultAbiCoder, EventFragment, FormatTypes, Fragment, FunctionFragment, Indexed, Interface, ParamType } from "@ethersproject/abi";
import { getAddress, getContractAddress, getIcapAddress, isAddress } from "@ethersproject/address";
import * as base64 from "@ethersproject/base64";
import { arrayify, concat, hexDataSlice, hexDataLength, hexlify, hexStripZeros, hexValue, hexZeroPad, isHexString, joinSignature, zeroPad, splitSignature, stripZeros } from "@ethersproject/bytes";
@ -46,6 +46,7 @@ export {
EventFragment,
FunctionFragment,
ParamType,
FormatTypes,
RLP,