2018-07-24 02:21:42 +03:00
|
|
|
import { AbiCoder, defaultAbiCoder, formatSignature, formatParamType, parseSignature, parseParamType } from './abi-coder';
|
2018-07-31 01:59:52 +03:00
|
|
|
import { getAddress, getContractAddress, getIcapAddress } from './address';
|
2018-07-24 02:21:42 +03:00
|
|
|
import * as base64 from './base64';
|
2018-07-31 01:59:52 +03:00
|
|
|
import { BigNumber, bigNumberify } from './bignumber';
|
2018-07-24 02:21:42 +03:00
|
|
|
import { arrayify, concat, hexDataSlice, hexDataLength, hexlify, hexStripZeros, hexZeroPad, joinSignature, padZeros, splitSignature, stripZeros } from './bytes';
|
|
|
|
import { hashMessage, id, namehash } from './hash';
|
|
|
|
import { getJsonWalletAddress } from './json-wallet';
|
|
|
|
import { keccak256 } from './keccak256';
|
|
|
|
import { sha256 } from './sha2';
|
|
|
|
import { keccak256 as solidityKeccak256, pack as solidityPack, sha256 as soliditySha256 } from './solidity';
|
|
|
|
import { randomBytes } from './random-bytes';
|
|
|
|
import { getNetwork } from './networks';
|
|
|
|
import { defineFrozen, defineReadOnly, resolveProperties, shallowCopy } from './properties';
|
|
|
|
import * as RLP from './rlp';
|
|
|
|
import { computePublicKey, verifyMessage } from './secp256k1';
|
|
|
|
import { parse as parseTransaction, serialize as serializeTransaction } from './transaction';
|
|
|
|
import { toUtf8Bytes, toUtf8String } from './utf8';
|
|
|
|
import { formatEther, parseEther, formatUnits, parseUnits } from './units';
|
|
|
|
import { fetchJson } from './web';
|
|
|
|
import * as errors from './errors';
|
|
|
|
declare const etherSymbol = "\u039E";
|
|
|
|
declare const constants: {
|
|
|
|
AddressZero: string;
|
|
|
|
HashZero: string;
|
2018-07-31 01:59:52 +03:00
|
|
|
NegativeOne: BigNumber;
|
|
|
|
Zero: BigNumber;
|
|
|
|
One: BigNumber;
|
|
|
|
Two: BigNumber;
|
|
|
|
WeiPerEther: BigNumber;
|
|
|
|
MaxUint256: BigNumber;
|
2018-07-24 02:21:42 +03:00
|
|
|
};
|
2018-07-31 01:59:52 +03:00
|
|
|
export { AbiCoder, defaultAbiCoder, formatSignature, formatParamType, parseSignature, parseParamType, constants, RLP, fetchJson, getNetwork, defineReadOnly, defineFrozen, resolveProperties, shallowCopy, etherSymbol, arrayify, concat, padZeros, stripZeros, base64, BigNumber, bigNumberify, hexlify, hexStripZeros, hexZeroPad, hexDataLength, hexDataSlice, toUtf8Bytes, toUtf8String, hashMessage, namehash, id, getAddress, getIcapAddress, getContractAddress, formatEther, parseEther, formatUnits, parseUnits, keccak256, sha256, randomBytes, solidityPack, solidityKeccak256, soliditySha256, splitSignature, joinSignature, parseTransaction, serializeTransaction, getJsonWalletAddress, computePublicKey, verifyMessage, errors };
|