ethers.js/packages/ethers/src.ts/utils.ts

182 lines
4.2 KiB
TypeScript
Raw Normal View History

2019-05-15 01:25:46 +03:00
"use strict";
2019-07-21 01:57:21 +03:00
import { AbiCoder, defaultAbiCoder, EventFragment, FormatTypes, Fragment, FunctionFragment, Indexed, Interface, ParamType } from "@ethersproject/abi";
import { getAddress, getCreate2Address, getContractAddress, getIcapAddress, isAddress } from "@ethersproject/address";
2019-05-15 01:25:46 +03:00
import * as base64 from "@ethersproject/base64";
import { arrayify, concat, hexDataSlice, hexDataLength, hexlify, hexStripZeros, hexValue, hexZeroPad, 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";
2019-05-15 01:25:46 +03:00
import { getJsonWalletAddress } from "@ethersproject/json-wallets";
import { keccak256 } from "@ethersproject/keccak256";
import { Logger } from "@ethersproject/logger";
2019-05-15 01:25:46 +03:00
import { sha256 } from "@ethersproject/sha2";
import { keccak256 as solidityKeccak256, pack as solidityPack, sha256 as soliditySha256 } from "@ethersproject/solidity";
import { randomBytes } from "@ethersproject/random";
import { checkProperties, deepCopy, defineReadOnly, getStatic, resolveProperties, shallowCopy } from "@ethersproject/properties";
2019-05-15 01:25:46 +03:00
import * as RLP from "@ethersproject/rlp";
import { computePublicKey, recoverPublicKey, SigningKey } from "@ethersproject/signing-key";
import { formatBytes32String, nameprep, parseBytes32String, _toEscapedUtf8String, toUtf8Bytes, toUtf8CodePoints, toUtf8String, Utf8ErrorFuncs } from "@ethersproject/strings";
2019-05-15 01:25:46 +03:00
import { computeAddress, parse as parseTransaction, recoverAddress, serialize as serializeTransaction } from "@ethersproject/transactions";
import { commify, formatEther, parseEther, formatUnits, parseUnits } from "@ethersproject/units";
import { verifyMessage } from "@ethersproject/wallet";
2019-06-06 04:52:09 +03:00
import { fetchJson, poll } from "@ethersproject/web";
2019-05-15 01:25:46 +03:00
////////////////////////
// Enums
import { SupportedAlgorithm } from "@ethersproject/sha2";
import { UnicodeNormalizationForm, Utf8ErrorReason } from "@ethersproject/strings";
2019-05-15 01:25:46 +03:00
////////////////////////
// Types and Interfaces
import { CoerceFunc } from "@ethersproject/abi";
import { Bytes, BytesLike, Hexable } from "@ethersproject/bytes"
2020-01-19 05:09:02 +03:00
import { Mnemonic } from "@ethersproject/hdnode";
2019-05-15 01:25:46 +03:00
import { EncryptOptions, ProgressCallback } from "@ethersproject/json-wallets";
import { Utf8ErrorFunc } from "@ethersproject/strings";
2020-01-19 05:09:02 +03:00
import { ConnectionInfo, FetchJsonResponse, OnceBlockable, PollOptions } from "@ethersproject/web";
2019-05-15 01:25:46 +03:00
////////////////////////
// Exports
export {
AbiCoder,
defaultAbiCoder,
Fragment,
EventFragment,
FunctionFragment,
ParamType,
2019-07-21 01:57:21 +03:00
FormatTypes,
2019-05-15 01:25:46 +03:00
Logger,
2019-05-15 01:25:46 +03:00
RLP,
fetchJson,
2019-06-06 04:52:09 +03:00
poll,
2019-05-15 01:25:46 +03:00
checkProperties,
deepCopy,
defineReadOnly,
getStatic,
2019-05-15 01:25:46 +03:00
resolveProperties,
shallowCopy,
arrayify,
concat,
stripZeros,
zeroPad,
defaultPath,
2019-05-15 01:25:46 +03:00
HDNode,
SigningKey,
Interface,
base64,
hexlify,
isHexString,
hexStripZeros,
hexValue,
hexZeroPad,
hexDataLength,
hexDataSlice,
nameprep,
_toEscapedUtf8String,
2019-05-15 01:25:46 +03:00
toUtf8Bytes,
toUtf8CodePoints,
2019-05-15 01:25:46 +03:00
toUtf8String,
Utf8ErrorFuncs,
2019-05-15 01:25:46 +03:00
formatBytes32String,
parseBytes32String,
hashMessage,
namehash,
isValidName,
2019-05-15 01:25:46 +03:00
id,
getAddress,
getIcapAddress,
getContractAddress,
getCreate2Address,
2019-05-15 01:25:46 +03:00
isAddress,
formatEther,
parseEther,
formatUnits,
parseUnits,
commify,
keccak256,
sha256,
randomBytes,
solidityPack,
solidityKeccak256,
soliditySha256,
splitSignature,
joinSignature,
parseTransaction,
serializeTransaction,
getJsonWalletAddress,
computeAddress,
recoverAddress,
computePublicKey,
recoverPublicKey,
verifyMessage,
mnemonicToEntropy,
entropyToMnemonic,
isValidMnemonic,
mnemonicToSeed,
////////////////////////
// Enums
SupportedAlgorithm,
2019-05-15 01:25:46 +03:00
UnicodeNormalizationForm,
Utf8ErrorReason,
2019-05-15 01:25:46 +03:00
////////////////////////
// Types
Bytes,
BytesLike,
Hexable,
CoerceFunc,
Indexed,
2020-01-19 05:09:02 +03:00
Mnemonic,
Utf8ErrorFunc,
2019-05-15 01:25:46 +03:00
ConnectionInfo,
OnceBlockable,
PollOptions,
FetchJsonResponse,
2019-05-15 01:25:46 +03:00
EncryptOptions,
ProgressCallback
}