refactor: remove re-exports
This commit is contained in:
parent
b0d2dee84d
commit
6aad74a347
@ -20,7 +20,6 @@ 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';
|
||||
|
@ -3,12 +3,3 @@ export * from './wrappers';
|
||||
|
||||
import * as ReferenceFunctionsToExport from './reference_functions';
|
||||
export import ReferenceFunctions = ReferenceFunctionsToExport;
|
||||
|
||||
export {
|
||||
AuthorizableRevertErrors,
|
||||
LibAddressArrayRevertErrors,
|
||||
LibBytesRevertErrors,
|
||||
OwnableRevertErrors,
|
||||
ReentrancyGuardRevertErrors,
|
||||
SafeMathRevertErrors,
|
||||
} from '@0x/utils';
|
||||
|
@ -1,34 +1,3 @@
|
||||
export { ZeroExRevertErrors } from '@0x/utils';
|
||||
export {
|
||||
AbiDefinition,
|
||||
CompilerOpts,
|
||||
CompilerSettings,
|
||||
CompilerSettingsMetadata,
|
||||
ConstructorAbi,
|
||||
ConstructorStateMutability,
|
||||
ContractAbi,
|
||||
ContractArtifact,
|
||||
ContractChainData,
|
||||
ContractChains,
|
||||
DataItem,
|
||||
DevdocOutput,
|
||||
EventAbi,
|
||||
EventParameter,
|
||||
EvmBytecodeOutput,
|
||||
EvmBytecodeOutputLinkReferences,
|
||||
EvmOutput,
|
||||
FallbackAbi,
|
||||
FunctionAbi,
|
||||
MethodAbi,
|
||||
OptimizerSettings,
|
||||
OutputField,
|
||||
ParamDescription,
|
||||
RevertErrorAbi,
|
||||
StandardContractOutput,
|
||||
StateMutability,
|
||||
SupportedProvider,
|
||||
TupleDataItem,
|
||||
} from 'ethereum-types';
|
||||
export { artifacts } from './artifacts';
|
||||
export * from './migration';
|
||||
export * from './nonce_utils';
|
||||
@ -58,4 +27,3 @@ export {
|
||||
WethTransformerContract,
|
||||
ZeroExContract,
|
||||
} from './wrappers';
|
||||
export { EIP712TypedData } from '@0x/types';
|
||||
|
@ -19,7 +19,23 @@
|
||||
"TFillData": true,
|
||||
"IterableIterator": true,
|
||||
"Set": true,
|
||||
"Exclude": true
|
||||
"Exclude": true,
|
||||
"#": "private types below",
|
||||
"SupportedProvider": true,
|
||||
"ContractAddresses": true,
|
||||
"AbiDecoder": true,
|
||||
"TxData": true,
|
||||
"ContractAbi": true,
|
||||
"EncoderOverrides": true,
|
||||
"ContractFunctionObj": true,
|
||||
"ContractTxFunctionObj": true,
|
||||
"ContractArtifact": true,
|
||||
"SimpleContractArtifact": true,
|
||||
"DataItem": true,
|
||||
"BlockRange": true,
|
||||
"IndexedFilterValues": true,
|
||||
"EventCallback": true,
|
||||
"ContractEventArg": true
|
||||
},
|
||||
"ignoredExcessiveTypes": [
|
||||
"NonceSubproviderErrors",
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,80 +1,3 @@
|
||||
export {
|
||||
AwaitTransactionSuccessOpts,
|
||||
ContractEvent,
|
||||
ContractFunctionObj,
|
||||
ContractTxFunctionObj,
|
||||
EncoderOverrides,
|
||||
SendTransactionOpts,
|
||||
SubscriptionErrors,
|
||||
} from '@0x/base-contract';
|
||||
export { ContractAddresses } from '@0x/contract-addresses';
|
||||
export {
|
||||
DecodedLogEvent,
|
||||
EventCallback,
|
||||
IndexedFilterValues,
|
||||
SimpleContractArtifact,
|
||||
SimpleEvmBytecodeOutput,
|
||||
SimpleEvmOutput,
|
||||
SimpleStandardContractOutput,
|
||||
} from '@0x/types';
|
||||
export { AbiDecoder, AbiEncoder, DecodedCalldata, EncodingRules } from '@0x/utils';
|
||||
export {
|
||||
AbiDefinition,
|
||||
BlockParam,
|
||||
BlockParamLiteral,
|
||||
BlockRange,
|
||||
CallData,
|
||||
CompilerOpts,
|
||||
CompilerSettings,
|
||||
CompilerSettingsMetadata,
|
||||
ConstructorAbi,
|
||||
ConstructorStateMutability,
|
||||
ContractAbi,
|
||||
ContractArtifact,
|
||||
ContractChainData,
|
||||
ContractChains,
|
||||
ContractEventArg,
|
||||
DataItem,
|
||||
DecodedLogArgs,
|
||||
DecodedLogEntry,
|
||||
DecodedLogEntryEvent,
|
||||
DevdocOutput,
|
||||
EIP1193Event,
|
||||
EIP1193Provider,
|
||||
EventAbi,
|
||||
EventParameter,
|
||||
EvmBytecodeOutput,
|
||||
EvmBytecodeOutputLinkReferences,
|
||||
EvmOutput,
|
||||
FallbackAbi,
|
||||
FunctionAbi,
|
||||
GanacheProvider,
|
||||
GethCallOverrides,
|
||||
JSONRPCErrorCallback,
|
||||
JSONRPCRequestPayload,
|
||||
JSONRPCResponseError,
|
||||
JSONRPCResponsePayload,
|
||||
LogEntry,
|
||||
LogEntryEvent,
|
||||
LogWithDecodedArgs,
|
||||
MethodAbi,
|
||||
OptimizerSettings,
|
||||
OutputField,
|
||||
ParamDescription,
|
||||
RawLog,
|
||||
RevertErrorAbi,
|
||||
StandardContractOutput,
|
||||
StateMutability,
|
||||
SupportedProvider,
|
||||
TupleDataItem,
|
||||
TxData,
|
||||
TxDataPayable,
|
||||
Web3JsProvider,
|
||||
Web3JsV1Provider,
|
||||
Web3JsV2Provider,
|
||||
Web3JsV3Provider,
|
||||
ZeroExProvider,
|
||||
} from 'ethereum-types';
|
||||
export { ContractWrappers } from './contract_wrappers';
|
||||
export { CoordinatorContract } from './generated-wrappers/coordinator';
|
||||
export { DevUtilsContract } from './generated-wrappers/dev_utils';
|
||||
|
Loading…
x
Reference in New Issue
Block a user