* Update coveralls link to point to protocol repo coverage * Remove obsoleted ignores in .gitignore * Run forge coverage in CI and upload results to coveralls * Remove unused wrapper * Remove legacy coverage setup * Remove lcov-result-merger * Add base-path setting to coverallsapp in CI
63 lines
2.3 KiB
TypeScript
63 lines
2.3 KiB
TypeScript
export { AbstractAssetWrapper } from './abstract_asset_wrapper';
|
|
export { constants } from './constants';
|
|
export {
|
|
expectContractCallFailedAsync,
|
|
expectContractCallFailedWithoutReasonAsync,
|
|
expectContractCreationFailedAsync,
|
|
expectContractCreationFailedWithoutReasonAsync,
|
|
expectInsufficientFundsAsync,
|
|
expectTransactionFailedAsync,
|
|
sendTransactionResult,
|
|
expectTransactionFailedWithoutReasonAsync,
|
|
getInvalidOpcodeErrorMessageForCallAsync,
|
|
getRevertReasonOrErrorMessageForSendTransactionAsync,
|
|
} from './assertions';
|
|
export { getLatestBlockTimestampAsync, increaseTimeAndMineBlockAsync } from './block_timestamp';
|
|
export { provider, txDefaults, web3Wrapper } from './web3_wrapper';
|
|
export { LogDecoder } from './log_decoder';
|
|
export { filterLogs, filterLogsToArguments, verifyEvents, verifyEventsFromLogs } from './log_utils';
|
|
export { signingUtils } from './signing_utils';
|
|
export { orderUtils } from './order_utils';
|
|
export { typeEncodingUtils } from './type_encoding_utils';
|
|
export { profiler } from './profiler';
|
|
export { Web3ProviderEngine } from '@0x/subproviders';
|
|
export { randomAddress } from './address_utils';
|
|
export { OrderFactory } from './order_factory';
|
|
export { bytes32Values, testCombinatoriallyWithReferenceFunc, uint256Values } from './combinatorial_utils';
|
|
export { TransactionFactory } from './transaction_factory';
|
|
export { testWithReferenceFuncAsync } from './test_with_reference';
|
|
export {
|
|
BatchMatchOrder,
|
|
ContractName,
|
|
ERC20BalancesByOwner,
|
|
EthBalancesByOwner,
|
|
FillEventArgs,
|
|
MarketBuyOrders,
|
|
MarketSellOrders,
|
|
Numberish,
|
|
OrderStatus,
|
|
Token,
|
|
TokenBalances,
|
|
TransactionDataParams,
|
|
ExchangeFunctionName,
|
|
} from './types';
|
|
export { blockchainTests, BlockchainTestsEnvironment, describe } from './mocha_blockchain';
|
|
export { chaiSetup, expect } from './chai_setup';
|
|
export { getCodesizeFromArtifact } from './codesize';
|
|
export { replaceKeysDeep, shortZip } from './lang_utils';
|
|
export {
|
|
assertIntegerRoughlyEquals,
|
|
assertRoughlyEquals,
|
|
fromFixed,
|
|
getRandomFloat,
|
|
getRandomInteger,
|
|
getRandomPortion,
|
|
getNumericalDivergence,
|
|
getPercentageOfValue,
|
|
toBaseUnitAmount,
|
|
toDecimal,
|
|
toFixed,
|
|
} from './number_utils';
|
|
export { orderHashUtils } from './order_hash';
|
|
export { transactionHashUtils } from './transaction_hash';
|