From 99bca0b1876326f7f134bad21acc1a5c221339f6 Mon Sep 17 00:00:00 2001
From: David Walsh <5778036+rhinodavid@users.noreply.github.com>
Date: Mon, 10 Apr 2023 21:33:34 -0600
Subject: [PATCH] refactor: Remove re-exports
---
dev-utils/docs/reference.mdx | 5048 +------------------------------
dev-utils/src/index.ts | 59 -
doc-gen-config.json | 8 +-
json-schemas/docs/reference.mdx | 8 +-
json-schemas/src/index.ts | 4 -
sol-compiler/docs/reference.mdx | 941 +-----
sol-compiler/src/index.ts | 31 -
sol-coverage/docs/reference.mdx | 239 +-
sol-coverage/src/index.ts | 4 -
sol-profiler/docs/reference.mdx | 382 +--
sol-profiler/src/index.ts | 12 -
sol-trace/docs/reference.mdx | 374 +--
sol-trace/src/index.ts | 13 -
subproviders/docs/reference.mdx | 70 +-
web3-wrapper/docs/reference.mdx | 1090 +++----
15 files changed, 744 insertions(+), 7539 deletions(-)
diff --git a/dev-utils/docs/reference.mdx b/dev-utils/docs/reference.mdx
index c3ea489310..ecc3874d96 100644
--- a/dev-utils/docs/reference.mdx
+++ b/dev-utils/docs/reference.mdx
@@ -7,7 +7,7 @@
\+ **new BlockchainLifecycle**(`web3Wrapper`: Web3Wrapper): *[BlockchainLifecycle](#class-blockchainlifecycle)*
-*Defined in [dev-utils/src/blockchain_lifecycle.ts:16](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/blockchain_lifecycle.ts#L16)*
+*Defined in [blockchain_lifecycle.ts:16](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/blockchain_lifecycle.ts#L16)*
**Parameters:**
@@ -23,7 +23,7 @@ Name | Type |
▸ **revertAsync**(): *Promise‹void›*
-*Defined in [dev-utils/src/blockchain_lifecycle.ts:48](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/blockchain_lifecycle.ts#L48)*
+*Defined in [blockchain_lifecycle.ts:48](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/blockchain_lifecycle.ts#L48)*
**Returns:** *Promise‹void›*
@@ -33,4811 +33,168 @@ ___
▸ **startAsync**(): *Promise‹void›*
-*Defined in [dev-utils/src/blockchain_lifecycle.ts:21](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/blockchain_lifecycle.ts#L21)*
+*Defined in [blockchain_lifecycle.ts:21](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/blockchain_lifecycle.ts#L21)*
**Returns:** *Promise‹void›*
-# Class: AbiDecoder
-
-AbiDecoder allows you to decode event logs given a set of supplied contract ABI's. It takes the contract's event
-signature from the ABI and attempts to decode the logs using it.
-
-
-## Constructors
-
-
-
-\+ **new AbiDecoder**(`abiArrays`: [AbiDefinition](#abidefinition)[][]): *[AbiDecoder](#class-abidecoder)*
-
-*Defined in [utils/src/abi_decoder.ts:39](https://github.com/0xProject/tools/blob/c64730cff/utils/src/abi_decoder.ts#L39)*
-
-Instantiate an AbiDecoder
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`abiArrays` | [AbiDefinition](#abidefinition)[][] | An array of contract ABI's |
-
-**Returns:** *[AbiDecoder](#class-abidecoder)*
-
-AbiDecoder instance
-
-## Methods
-
-### addABI
-
-▸ **addABI**(`abiArray`: [AbiDefinition](#abidefinition)[], `contractName?`: undefined | string): *void*
-
-*Defined in [utils/src/abi_decoder.ts:150](https://github.com/0xProject/tools/blob/c64730cff/utils/src/abi_decoder.ts#L150)*
-
-Adds a set of ABI definitions, after which calldata and logs targeting these ABI's can be decoded.
-Additional properties can be included to disambiguate similar ABI's. For example, if two functions
-have the same signature but different parameter names, then their ABI definitions can be disambiguated
-by specifying a contract name.
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`abiArray` | [AbiDefinition](#abidefinition)[] | - |
-`contractName?` | undefined | string | Name of contract that encapsulates the ABI definitions (optional). This can be used when decoding calldata to disambiguate methods with the same signature but different parameter names. |
-
-**Returns:** *void*
-
-___
-
-### decodeCalldataOrThrow
-
-▸ **decodeCalldataOrThrow**(`calldata`: string, `contractName?`: undefined | string): *DecodedCalldata*
-
-*Defined in [utils/src/abi_decoder.ts:110](https://github.com/0xProject/tools/blob/c64730cff/utils/src/abi_decoder.ts#L110)*
-
-Decodes calldata for a known ABI.
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`calldata` | string | hex-encoded calldata. |
-`contractName?` | undefined | string | used to disambiguate similar ABI's (optional). |
-
-**Returns:** *DecodedCalldata*
-
-Decoded calldata. Includes: function name and signature, along with the decoded arguments.
-
-___
-
-### tryToDecodeLogOrNoop
-
-▸ **tryToDecodeLogOrNoop**<**ArgsType**>(`log`: LogEntry): *LogWithDecodedArgs‹ArgsType› | [RawLog](#rawlog)*
-
-*Defined in [utils/src/abi_decoder.ts:55](https://github.com/0xProject/tools/blob/c64730cff/utils/src/abi_decoder.ts#L55)*
-
-Attempt to decode a log given the ABI's the AbiDecoder knows about.
-
-**Type parameters:**
-
-▪ **ArgsType**: *DecodedLogArgs*
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`log` | LogEntry | The log to attempt to decode |
-
-**Returns:** *LogWithDecodedArgs‹ArgsType› | [RawLog](#rawlog)*
-
-The decoded log if the requisite ABI was available. Otherwise the log unaltered.
-
-
-
-
-# Class: Web3Wrapper
-
-An alternative to the Web3.js library that provides a consistent, clean, promise-based interface.
-
-
-## Constructors
-
-
-
-\+ **new Web3Wrapper**(`supportedProvider`: [SupportedProvider](#supportedprovider), `callAndTxnDefaults`: Partial‹CallData›): *[Web3Wrapper](#class-web3wrapper)*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:146](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L146)*
-
-Instantiates a new Web3Wrapper.
-
-**Parameters:**
-
-Name | Type | Default | Description |
------- | ------ | ------ | ------ |
-`supportedProvider` | [SupportedProvider](#supportedprovider) | - | - |
-`callAndTxnDefaults` | Partial‹CallData› | {} | Override Call and Txn Data defaults sent with RPC requests to the backing Ethereum node. |
-
-**Returns:** *[Web3Wrapper](#class-web3wrapper)*
-
-An instance of the Web3Wrapper class.
-
-## Properties
-
-### abiDecoder
-
-• **abiDecoder**: *AbiDecoder*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:56](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L56)*
-
-___
-
-### isZeroExWeb3Wrapper
-
-• **isZeroExWeb3Wrapper**: *boolean* = true
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:55](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L55)*
-
-Flag to check if this instance is of type Web3Wrapper
-
-## Methods
-
-### awaitTransactionMinedAsync
-
-▸ **awaitTransactionMinedAsync**(`txHash`: string, `pollingIntervalMs`: number, `timeoutMs?`: undefined | number): *Promise‹TransactionReceiptWithDecodedLogs›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:664](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L664)*
-
-Waits for a transaction to be mined and returns the transaction receipt.
-Note that just because a transaction was mined does not mean it was
-successful. You need to check the status code of the transaction receipt
-to find out if it was successful, or use the helper method
-awaitTransactionSuccessAsync.
-
-**Parameters:**
-
-Name | Type | Default | Description |
------- | ------ | ------ | ------ |
-`txHash` | string | - | Transaction hash |
-`pollingIntervalMs` | number | 1000 | How often (in ms) should we check if the transaction is mined. |
-`timeoutMs?` | undefined | number | - | How long (in ms) to poll for transaction mined until aborting. |
-
-**Returns:** *Promise‹TransactionReceiptWithDecodedLogs›*
-
-Transaction receipt with decoded log args.
-
-___
-
-### awaitTransactionSuccessAsync
-
-▸ **awaitTransactionSuccessAsync**(`txHash`: string, `pollingIntervalMs`: number, `timeoutMs?`: undefined | number): *Promise‹TransactionReceiptWithDecodedLogs›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:739](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L739)*
-
-Waits for a transaction to be mined and returns the transaction receipt.
-Unlike awaitTransactionMinedAsync, it will throw if the receipt has a
-status that is not equal to 1. A status of 0 or null indicates that the
-transaction was mined, but failed. See:
-https://github.com/ethereum/wiki/wiki/JavaScript-API#web3ethgettransactionreceipt
-
-**Parameters:**
-
-Name | Type | Default | Description |
------- | ------ | ------ | ------ |
-`txHash` | string | - | Transaction hash |
-`pollingIntervalMs` | number | 1000 | How often (in ms) should we check if the transaction is mined. |
-`timeoutMs?` | undefined | number | - | How long (in ms) to poll for transaction mined until aborting. |
-
-**Returns:** *Promise‹TransactionReceiptWithDecodedLogs›*
-
-Transaction receipt with decoded log args.
-
-___
-
-### callAsync
-
-▸ **callAsync**(`callData`: CallData, `defaultBlock?`: [BlockParam](#blockparam)): *Promise‹string›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:628](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L628)*
-
-Call a smart contract method at a given block height
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`callData` | CallData | Call data |
-`defaultBlock?` | [BlockParam](#blockparam) | Block height at which to make the call. Defaults to `latest` |
-
-**Returns:** *Promise‹string›*
-
-The raw call result
-
-___
-
-### createAccessListAsync
-
-▸ **createAccessListAsync**(`callData`: CallData, `defaultBlock?`: [BlockParam](#blockparam)): *Promise‹TxAccessListWithGas›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:595](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L595)*
-
-Generate an access list for an ethereum call and also compute the gas used.
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`callData` | CallData | Call data |
-`defaultBlock?` | [BlockParam](#blockparam) | Block height at which to make the call. Defaults to 'latest'. |
-
-**Returns:** *Promise‹TxAccessListWithGas›*
-
-The access list and gas used.
-
-___
-
-### doesContractExistAtAddressAsync
-
-▸ **doesContractExistAtAddressAsync**(`address`: string): *Promise‹boolean›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:310](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L310)*
-
-Check if a contract exists at a given address
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`address` | string | Address to which to check |
-
-**Returns:** *Promise‹boolean›*
-
-Whether or not contract code was found at the supplied address
-
-___
-
-### estimateGasAsync
-
-▸ **estimateGasAsync**(`txData`: Partial‹TxData›): *Promise‹number›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:582](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L582)*
-
-Calculate the estimated gas cost for a given transaction
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`txData` | Partial‹TxData› | Transaction data |
-
-**Returns:** *Promise‹number›*
-
-Estimated gas cost
-
-___
-
-### getAccountNonceAsync
-
-▸ **getAccountNonceAsync**(`address`: string, `defaultBlock?`: [BlockParam](#blockparam)): *Promise‹number›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:412](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L412)*
-
-Fetches the nonce for an account (transaction count for EOAs).
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`address` | string | Address of account. |
-`defaultBlock?` | [BlockParam](#blockparam) | Block height at which to make the call. Defaults to `latest` |
-
-**Returns:** *Promise‹number›*
-
-Account nonce.
-
-___
-
-### getAvailableAddressesAsync
-
-▸ **getAvailableAddressesAsync**(): *Promise‹string[]›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:493](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L493)*
-
-Retrieve the user addresses available through the backing provider
-
-**Returns:** *Promise‹string[]›*
-
-Available user addresses
-
-___
-
-### getBalanceInWeiAsync
-
-▸ **getBalanceInWeiAsync**(`owner`: string, `defaultBlock?`: [BlockParam](#blockparam)): *Promise‹BigNumber›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:291](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L291)*
-
-Retrieves an accounts Ether balance in wei
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`owner` | string | Account whose balance you wish to check |
-`defaultBlock?` | [BlockParam](#blockparam) | The block depth at which to fetch the balance (default=latest) |
-
-**Returns:** *Promise‹BigNumber›*
-
-Balance in wei
-
-___
-
-### getBaseFeePerGasAsync
-
-▸ **getBaseFeePerGasAsync**(): *Promise‹BigNumber›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:233](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L233)*
-
-Fetch the base fee per gas for the pending block.
-
-**Returns:** *Promise‹BigNumber›*
-
-___
-
-### getBlockIfExistsAsync
-
-▸ **getBlockIfExistsAsync**(`blockParam`: string | [BlockParam](#blockparam)): *Promise‹BlockWithoutTransactionData | undefined›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:433](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L433)*
-
-Fetch a specific Ethereum block without transaction data
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`blockParam` | string | [BlockParam](#blockparam) | The block you wish to fetch (blockHash, blockNumber or blockLiteral) |
-
-**Returns:** *Promise‹BlockWithoutTransactionData | undefined›*
-
-The requested block without transaction data, or undefined if block was not found
-(e.g the node isn't fully synced, there was a block re-org and the requested block was uncles, etc...)
-
-___
-
-### getBlockNumberAsync
-
-▸ **getBlockNumberAsync**(): *Promise‹number›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:398](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L398)*
-
-Fetches the latest block number
-
-**Returns:** *Promise‹number›*
-
-Block number
-
-___
-
-### getBlockTimestampAsync
-
-▸ **getBlockTimestampAsync**(`blockParam`: string | [BlockParam](#blockparam)): *Promise‹number›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:481](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L481)*
-
-Fetch a block's timestamp
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`blockParam` | string | [BlockParam](#blockparam) | The block you wish to fetch (blockHash, blockNumber or blockLiteral) |
-
-**Returns:** *Promise‹number›*
-
-The block's timestamp
-
-___
-
-### getBlockWithTransactionDataAsync
-
-▸ **getBlockWithTransactionDataAsync**(`blockParam`: string | [BlockParam](#blockparam)): *Promise‹BlockWithTransactionData›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:459](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L459)*
-
-Fetch a specific Ethereum block with transaction data
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`blockParam` | string | [BlockParam](#blockparam) | The block you wish to fetch (blockHash, blockNumber or blockLiteral) |
-
-**Returns:** *Promise‹BlockWithTransactionData›*
-
-The requested block with transaction data
-
-___
-
-### getChainIdAsync
-
-▸ **getChainIdAsync**(): *Promise‹number›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:217](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L217)*
-
-Fetches the chainId of the backing Ethereum node
-
-**Returns:** *Promise‹number›*
-
-The chain id
-
-___
-
-### getContractCodeAsync
-
-▸ **getContractCodeAsync**(`address`: string, `defaultBlock?`: [BlockParam](#blockparam)): *Promise‹string›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:323](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L323)*
-
-Gets the contract code by address
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`address` | string | Address of the contract |
-`defaultBlock?` | [BlockParam](#blockparam) | Block height at which to make the call. Defaults to `latest` |
-
-**Returns:** *Promise‹string›*
-
-Code of the contract
-
-___
-
-### getContractDefaults
-
-▸ **getContractDefaults**(): *Partial‹CallData› | undefined*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:165](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L165)*
-
-Get the contract defaults set to the Web3Wrapper instance
-
-**Returns:** *Partial‹CallData› | undefined*
-
-CallAndTxnData defaults (e.g gas, gasPrice, nonce, etc...)
-
-___
-
-### getGasPriceAsync
-
-▸ **getGasPriceAsync**(): *Promise‹BigNumber›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:226](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L226)*
-
-Fetch the current gas price.
-For post-London hardfork chains, this will be baseFeePerGas + maxPriorityFeePerGas
-
-**Returns:** *Promise‹BigNumber›*
-
-___
-
-### getLogsAsync
-
-▸ **getLogsAsync**(`filter`: FilterObject): *Promise‹LogEntry[]›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:549](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L549)*
-
-Retrieve smart contract logs for a given filter
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`filter` | FilterObject | Parameters by which to filter which logs to retrieve |
-
-**Returns:** *Promise‹LogEntry[]›*
-
-The corresponding log entries
-
-___
-
-### getMaxPriorityFeePerGasAsync
-
-▸ **getMaxPriorityFeePerGasAsync**(): *Promise‹BigNumber›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:245](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L245)*
-
-Fetch the current max piority fee per gas. This is the suggested miner tip
-to get mined in the current block.
-
-**Returns:** *Promise‹BigNumber›*
-
-___
-
-### getNetworkIdAsync
-
-▸ **getNetworkIdAsync**(): *Promise‹number›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:208](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L208)*
-
-Fetches the networkId of the backing Ethereum node
-
-**Returns:** *Promise‹number›*
-
-The network id
-
-___
-
-### getNodeTypeAsync
-
-▸ **getNodeTypeAsync**(): *Promise‹[NodeType](#enumeration-nodetype)›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:797](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L797)*
-
-Returns either NodeType.Geth or NodeType.Ganache depending on the type of
-the backing Ethereum node. Throws for any other type of node.
-
-**Returns:** *Promise‹[NodeType](#enumeration-nodetype)›*
-
-___
-
-### getNodeVersionAsync
-
-▸ **getNodeVersionAsync**(): *Promise‹string›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:200](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L200)*
-
-Fetch the backing Ethereum node's version string (e.g `MetaMask/v4.2.0`)
-
-**Returns:** *Promise‹string›*
-
-Ethereum node's version string
-
-___
-
-### getProvider
-
-▸ **getProvider**(): *[SupportedProvider](#supportedprovider)*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:172](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L172)*
-
-Retrieve the Web3 provider
-
-**Returns:** *[SupportedProvider](#supportedprovider)*
-
-Web3 provider instance
-
-___
-
-### getTransactionByHashAsync
-
-▸ **getTransactionByHashAsync**(`txHash`: string): *Promise‹Transaction›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:276](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L276)*
-
-Retrieves the transaction data for a given transaction
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`txHash` | string | Transaction hash |
-
-**Returns:** *Promise‹Transaction›*
-
-The raw transaction data
-
-___
-
-### getTransactionReceiptIfExistsAsync
-
-▸ **getTransactionReceiptIfExistsAsync**(`txHash`: string): *Promise‹TransactionReceipt | undefined›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:254](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L254)*
-
-Retrieves the transaction receipt for a given transaction hash if found
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`txHash` | string | Transaction hash |
-
-**Returns:** *Promise‹TransactionReceipt | undefined›*
-
-The transaction receipt, including it's status (0: failed, 1: succeeded). Returns undefined if transaction not found.
-
-___
-
-### getTransactionTraceAsync
-
-▸ **getTransactionTraceAsync**(`txHash`: string, `traceParams`: TraceParams): *Promise‹TransactionTrace›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:342](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L342)*
-
-Gets the debug trace of a transaction
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`txHash` | string | Hash of the transactuon to get a trace for |
-`traceParams` | TraceParams | Config object allowing you to specify if you need memory/storage/stack traces. |
-
-**Returns:** *Promise‹TransactionTrace›*
-
-Transaction trace
-
-___
-
-### increaseTimeAsync
-
-▸ **increaseTimeAsync**(`timeDelta`: number): *Promise‹number›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:532](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L532)*
-
-Increase the next blocks timestamp on TestRPC/Ganache or Geth local node.
-Will throw if provider is neither TestRPC/Ganache or Geth.
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`timeDelta` | number | Amount of time to add in seconds |
-
-**Returns:** *Promise‹number›*
-
-___
-
-### isSenderAddressAvailableAsync
-
-▸ **isSenderAddressAvailableAsync**(`senderAddress`: string): *Promise‹boolean›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:190](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L190)*
-
-Check whether an address is available through the backing provider. This can be
-useful if you want to know whether a user can sign messages or transactions from
-a given Ethereum address.
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`senderAddress` | string | Address to check availability for |
-
-**Returns:** *Promise‹boolean›*
-
-Whether the address is available through the provider.
-
-___
-
-### mineBlockAsync
-
-▸ **mineBlockAsync**(): *Promise‹void›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:524](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L524)*
-
-Mine a block on a TestRPC/Ganache local node
-
-**Returns:** *Promise‹void›*
-
-___
-
-### revertSnapshotAsync
-
-▸ **revertSnapshotAsync**(`snapshotId`: number): *Promise‹boolean›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:516](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L516)*
-
-Revert the blockchain state to a previous snapshot state on TestRPC/Ganache local node
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`snapshotId` | number | snapshot id to revert to |
-
-**Returns:** *Promise‹boolean›*
-
-Whether the revert was successful
-
-___
-
-### sendRawPayloadAsync
-
-▸ **sendRawPayloadAsync**<**A**>(`payload`: Partial‹JSONRPCRequestPayload›): *Promise‹A›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:767](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L767)*
-
-Sends a raw Ethereum JSON RPC payload and returns the response's `result` key
-
-**Type parameters:**
-
-▪ **A**
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`payload` | Partial‹JSONRPCRequestPayload› | A partial JSON RPC payload. No need to include version, id, params (if none needed) |
-
-**Returns:** *Promise‹A›*
-
-The contents nested under the result key of the response body
-
-___
-
-### sendTransactionAsync
-
-▸ **sendTransactionAsync**(`txData`: TxData): *Promise‹string›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:647](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L647)*
-
-Send a transaction
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`txData` | TxData | Transaction data |
-
-**Returns:** *Promise‹string›*
-
-Transaction hash
-
-___
-
-### setHeadAsync
-
-▸ **setHeadAsync**(`blockNumber`: number): *Promise‹void›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:758](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L758)*
-
-Calls the 'debug_setHead' JSON RPC method, which sets the current head of
-the local chain by block number. Note, this is a destructive action and
-may severely damage your chain. Use with extreme caution. As of now, this
-is only supported by Geth. It sill throw if the 'debug_setHead' method is
-not supported.
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`blockNumber` | number | The block number to reset to. |
-
-**Returns:** *Promise‹void›*
-
-___
-
-### setProvider
-
-▸ **setProvider**(`supportedProvider`: [SupportedProvider](#supportedprovider)): *void*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:179](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L179)*
-
-Update the used Web3 provider
-
-**Parameters:**
-
-Name | Type |
------- | ------ |
-`supportedProvider` | [SupportedProvider](#supportedprovider) |
-
-**Returns:** *void*
-
-___
-
-### signMessageAsync
-
-▸ **signMessageAsync**(`address`: string, `message`: string): *Promise‹string›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:356](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L356)*
-
-Sign a message with a specific address's private key (`eth_sign`)
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`address` | string | Address of signer |
-`message` | string | Message to sign |
-
-**Returns:** *Promise‹string›*
-
-Signature string (might be VRS or RSV depending on the Signer)
-
-___
-
-### signTypedDataAsync
-
-▸ **signTypedDataAsync**(`address`: string, `typedData`: any): *Promise‹string›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:371](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L371)*
-
-Sign an EIP712 typed data message with a specific address's private key (`eth_signTypedData`)
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`address` | string | Address of signer |
-`typedData` | any | Typed data message to sign |
-
-**Returns:** *Promise‹string›*
-
-Signature string (as RSV)
-
-___
-
-### takeSnapshotAsync
-
-▸ **takeSnapshotAsync**(): *Promise‹number›*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:505](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L505)*
-
-Take a snapshot of the blockchain state on a TestRPC/Ganache local node
-
-**Returns:** *Promise‹number›*
-
-The snapshot id. This can be used to revert to this snapshot
-
-___
-
-### `Static` isAddress
-
-▸ **isAddress**(`address`: string): *boolean*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:67](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L67)*
-
-Check if an address is a valid Ethereum address
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`address` | string | Address to check |
-
-**Returns:** *boolean*
-
-Whether the address is a valid Ethereum address
-
-___
-
-### `Static` toBaseUnitAmount
-
-▸ **toBaseUnitAmount**(`amount`: BigNumber | number, `decimals`: number): *BigNumber*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:93](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L93)*
-
-A baseUnit is defined as the smallest denomination of a token. An amount expressed in baseUnits
-is the amount expressed in the smallest denomination.
-E.g: 1 unit of a token with 18 decimal places is expressed in baseUnits as 1000000000000000000
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`amount` | BigNumber | number | The amount of units that you would like converted to baseUnits. |
-`decimals` | number | The number of decimal places the unit amount has. |
-
-**Returns:** *BigNumber*
-
-The amount in baseUnits.
-
-___
-
-### `Static` toUnitAmount
-
-▸ **toUnitAmount**(`amount`: BigNumber, `decimals`: number): *BigNumber*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:78](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L78)*
-
-A unit amount is defined as the amount of a token above the specified decimal places (integer part).
-E.g: If a currency has 18 decimal places, 1e18 or one quintillion of the currency is equivalent
-to 1 unit.
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`amount` | BigNumber | The amount in baseUnits that you would like converted to units. |
-`decimals` | number | The number of decimal places the unit amount has. |
-
-**Returns:** *BigNumber*
-
-The amount in units.
-
-___
-
-### `Static` toWei
-
-▸ **toWei**(`ethAmount`: BigNumber): *BigNumber*
-
-*Defined in [web3-wrapper/src/web3_wrapper.ts:108](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L108)*
-
-Convert an Ether amount from ETH to Wei
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`ethAmount` | BigNumber | Amount of Ether to convert to wei |
-
-**Returns:** *BigNumber*
-
-Amount in wei
-
-
-
-
-# Enumeration: EnvVars
-
-
-## Enumeration members
-
-### SolidityCoverage
-
-• **SolidityCoverage**: = "SOLIDITY_COVERAGE"
-
-*Defined in [dev-utils/src/env.ts:5](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/env.ts#L5)*
-
-___
-
-### SolidityProfiler
-
-• **SolidityProfiler**: = "SOLIDITY_PROFILER"
-
-*Defined in [dev-utils/src/env.ts:6](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/env.ts#L6)*
-
-___
-
-### SolidityRevertTrace
-
-• **SolidityRevertTrace**: = "SOLIDITY_REVERT_TRACE"
-
-*Defined in [dev-utils/src/env.ts:7](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/env.ts#L7)*
-
-___
-
-### UnlimitedContractSize
-
-• **UnlimitedContractSize**: = "UNLIMITED_CONTRACT_SIZE"
-
-*Defined in [dev-utils/src/env.ts:9](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/env.ts#L9)*
-
-___
-
-### VerboseGanache
-
-• **VerboseGanache**: = "VERBOSE_GANACHE"
-
-*Defined in [dev-utils/src/env.ts:8](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/env.ts#L8)*
-
-
-
-
-
-
-# Enumeration: BlockParamLiteral
-
-
-## Enumeration members
-
-### Earliest
-
-• **Earliest**: = "earliest"
-
-*Defined in [ethereum-types/src/index.ts:502](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L502)*
-
-___
-
-### Latest
-
-• **Latest**: = "latest"
-
-*Defined in [ethereum-types/src/index.ts:503](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L503)*
-
-___
-
-### Pending
-
-• **Pending**: = "pending"
-
-*Defined in [ethereum-types/src/index.ts:504](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L504)*
-
-
-
-
-# Enumeration: OpCode
-
-
-## Enumeration members
-
-### Add
-
-• **Add**: = "ADD"
-
-*Defined in [ethereum-types/src/index.ts:148](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L148)*
-
-___
-
-### AddMod
-
-• **AddMod**: = "ADDMOD"
-
-*Defined in [ethereum-types/src/index.ts:155](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L155)*
-
-___
-
-### Address
-
-• **Address**: = "ADDRESS"
-
-*Defined in [ethereum-types/src/index.ts:174](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L174)*
-
-___
-
-### And
-
-• **And**: = "AND"
-
-*Defined in [ethereum-types/src/index.ts:166](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L166)*
-
-___
-
-### Balance
-
-• **Balance**: = "BALANCE"
-
-*Defined in [ethereum-types/src/index.ts:175](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L175)*
-
-___
-
-### BlockHash
-
-• **BlockHash**: = "BLOCKHASH"
-
-*Defined in [ethereum-types/src/index.ts:190](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L190)*
-
-___
-
-### Byte
-
-• **Byte**: = "BYTE"
-
-*Defined in [ethereum-types/src/index.ts:170](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L170)*
-
-___
-
-### Call
-
-• **Call**: = "CALL"
-
-*Defined in [ethereum-types/src/index.ts:283](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L283)*
-
-___
-
-### CallCode
-
-• **CallCode**: = "CALLCODE"
-
-*Defined in [ethereum-types/src/index.ts:284](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L284)*
-
-___
-
-### CallDataCopy
-
-• **CallDataCopy**: = "CALLDATACOPY"
-
-*Defined in [ethereum-types/src/index.ts:181](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L181)*
-
-___
-
-### CallDataLoad
-
-• **CallDataLoad**: = "CALLDATALOAD"
-
-*Defined in [ethereum-types/src/index.ts:179](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L179)*
-
-___
-
-### CallDataSize
-
-• **CallDataSize**: = "CALLDATASIZE"
-
-*Defined in [ethereum-types/src/index.ts:180](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L180)*
-
-___
-
-### CallValue
-
-• **CallValue**: = "CALLVALUE"
-
-*Defined in [ethereum-types/src/index.ts:178](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L178)*
-
-___
-
-### Caller
-
-• **Caller**: = "CALLER"
-
-*Defined in [ethereum-types/src/index.ts:177](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L177)*
-
-___
-
-### CodeCopy
-
-• **CodeCopy**: = "CODECOPY"
-
-*Defined in [ethereum-types/src/index.ts:183](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L183)*
-
-___
-
-### CodeSize
-
-• **CodeSize**: = "CODESIZE"
-
-*Defined in [ethereum-types/src/index.ts:182](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L182)*
-
-___
-
-### Coinbase
-
-• **Coinbase**: = "COINBASE"
-
-*Defined in [ethereum-types/src/index.ts:191](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L191)*
-
-___
-
-### Create
-
-• **Create**: = "CREATE"
-
-*Defined in [ethereum-types/src/index.ts:282](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L282)*
-
-___
-
-### DelegateCall
-
-• **DelegateCall**: = "DELEGATECALL"
-
-*Defined in [ethereum-types/src/index.ts:286](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L286)*
-
-___
-
-### Difficulty
-
-• **Difficulty**: = "DIFFICULTY"
-
-*Defined in [ethereum-types/src/index.ts:194](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L194)*
-
-___
-
-### Div
-
-• **Div**: = "DIV"
-
-*Defined in [ethereum-types/src/index.ts:151](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L151)*
-
-___
-
-### Dup1
-
-• **Dup1**: = "DUP1"
-
-*Defined in [ethereum-types/src/index.ts:243](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L243)*
-
-___
-
-### Dup10
-
-• **Dup10**: = "DUP10"
-
-*Defined in [ethereum-types/src/index.ts:252](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L252)*
-
-___
-
-### Dup11
-
-• **Dup11**: = "DUP11"
-
-*Defined in [ethereum-types/src/index.ts:253](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L253)*
-
-___
-
-### Dup12
-
-• **Dup12**: = "DUP12"
-
-*Defined in [ethereum-types/src/index.ts:254](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L254)*
-
-___
-
-### Dup13
-
-• **Dup13**: = "DUP13"
-
-*Defined in [ethereum-types/src/index.ts:255](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L255)*
-
-___
-
-### Dup14
-
-• **Dup14**: = "DUP14"
-
-*Defined in [ethereum-types/src/index.ts:256](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L256)*
-
-___
-
-### Dup15
-
-• **Dup15**: = "DUP15"
-
-*Defined in [ethereum-types/src/index.ts:257](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L257)*
-
-___
-
-### Dup16
-
-• **Dup16**: = "DUP16"
-
-*Defined in [ethereum-types/src/index.ts:258](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L258)*
-
-___
-
-### Dup2
-
-• **Dup2**: = "DUP2"
-
-*Defined in [ethereum-types/src/index.ts:244](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L244)*
-
-___
-
-### Dup3
-
-• **Dup3**: = "DUP3"
-
-*Defined in [ethereum-types/src/index.ts:245](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L245)*
-
-___
-
-### Dup4
-
-• **Dup4**: = "DUP4"
-
-*Defined in [ethereum-types/src/index.ts:246](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L246)*
-
-___
-
-### Dup5
-
-• **Dup5**: = "DUP5"
-
-*Defined in [ethereum-types/src/index.ts:247](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L247)*
-
-___
-
-### Dup6
-
-• **Dup6**: = "DUP6"
-
-*Defined in [ethereum-types/src/index.ts:248](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L248)*
-
-___
-
-### Dup7
-
-• **Dup7**: = "DUP7"
-
-*Defined in [ethereum-types/src/index.ts:249](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L249)*
-
-___
-
-### Dup8
-
-• **Dup8**: = "DUP8"
-
-*Defined in [ethereum-types/src/index.ts:250](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L250)*
-
-___
-
-### Dup9
-
-• **Dup9**: = "DUP9"
-
-*Defined in [ethereum-types/src/index.ts:251](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L251)*
-
-___
-
-### Eq
-
-• **Eq**: = "EQ"
-
-*Defined in [ethereum-types/src/index.ts:164](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L164)*
-
-___
-
-### Exp
-
-• **Exp**: = "EXP"
-
-*Defined in [ethereum-types/src/index.ts:157](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L157)*
-
-___
-
-### ExtCodeCopy
-
-• **ExtCodeCopy**: = "EXTCODECOPY"
-
-*Defined in [ethereum-types/src/index.ts:186](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L186)*
-
-___
-
-### ExtCodeSize
-
-• **ExtCodeSize**: = "EXTCODESIZE"
-
-*Defined in [ethereum-types/src/index.ts:185](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L185)*
-
-___
-
-### Gas
-
-• **Gas**: = "GAS"
-
-*Defined in [ethereum-types/src/index.ts:207](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L207)*
-
-___
-
-### GasPrice
-
-• **GasPrice**: = "GASPRICE"
-
-*Defined in [ethereum-types/src/index.ts:184](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L184)*
-
-___
-
-### Gaslimit
-
-• **Gaslimit**: = "GASLIMIT"
-
-*Defined in [ethereum-types/src/index.ts:195](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L195)*
-
-___
-
-### Gt
-
-• **Gt**: = "GT"
-
-*Defined in [ethereum-types/src/index.ts:161](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L161)*
-
-___
-
-### Invalid
-
-• **Invalid**: = "INVALID"
-
-*Defined in [ethereum-types/src/index.ts:289](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L289)*
-
-___
-
-### IsZero
-
-• **IsZero**: = "ISZERO"
-
-*Defined in [ethereum-types/src/index.ts:165](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L165)*
-
-___
-
-### Jump
-
-• **Jump**: = "JUMP"
-
-*Defined in [ethereum-types/src/index.ts:203](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L203)*
-
-___
-
-### JumpDest
-
-• **JumpDest**: = "JUMPDEST"
-
-*Defined in [ethereum-types/src/index.ts:208](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L208)*
-
-___
-
-### Jumpi
-
-• **Jumpi**: = "JUMPI"
-
-*Defined in [ethereum-types/src/index.ts:204](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L204)*
-
-___
-
-### Log1
-
-• **Log1**: = "LOG1"
-
-*Defined in [ethereum-types/src/index.ts:277](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L277)*
-
-___
-
-### Log2
-
-• **Log2**: = "LOG2"
-
-*Defined in [ethereum-types/src/index.ts:278](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L278)*
-
-___
-
-### Log3
-
-• **Log3**: = "LOG3"
-
-*Defined in [ethereum-types/src/index.ts:279](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L279)*
-
-___
-
-### Log4
-
-• **Log4**: = "LOG4"
-
-*Defined in [ethereum-types/src/index.ts:280](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L280)*
-
-___
-
-### Lt
-
-• **Lt**: = "LT"
-
-*Defined in [ethereum-types/src/index.ts:160](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L160)*
-
-___
-
-### MLoad
-
-• **MLoad**: = "MLOAD"
-
-*Defined in [ethereum-types/src/index.ts:198](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L198)*
-
-___
-
-### MSize
-
-• **MSize**: = "MSIZE"
-
-*Defined in [ethereum-types/src/index.ts:206](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L206)*
-
-___
-
-### MStore
-
-• **MStore**: = "MSTORE"
-
-*Defined in [ethereum-types/src/index.ts:199](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L199)*
-
-___
-
-### MStore8
-
-• **MStore8**: = "MSTORE8"
-
-*Defined in [ethereum-types/src/index.ts:200](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L200)*
-
-___
-
-### Mod
-
-• **Mod**: = "MOD"
-
-*Defined in [ethereum-types/src/index.ts:153](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L153)*
-
-___
-
-### Mul
-
-• **Mul**: = "MUL"
-
-*Defined in [ethereum-types/src/index.ts:149](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L149)*
-
-___
-
-### MulMod
-
-• **MulMod**: = "MULMOD"
-
-*Defined in [ethereum-types/src/index.ts:156](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L156)*
-
-___
-
-### Not
-
-• **Not**: = "NOT"
-
-*Defined in [ethereum-types/src/index.ts:169](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L169)*
-
-___
-
-### Number
-
-• **Number**: = "NUMBER"
-
-*Defined in [ethereum-types/src/index.ts:193](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L193)*
-
-___
-
-### Or
-
-• **Or**: = "OR"
-
-*Defined in [ethereum-types/src/index.ts:167](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L167)*
-
-___
-
-### Origin
-
-• **Origin**: = "ORIGIN"
-
-*Defined in [ethereum-types/src/index.ts:176](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L176)*
-
-___
-
-### Pc
-
-• **Pc**: = "PC"
-
-*Defined in [ethereum-types/src/index.ts:205](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L205)*
-
-___
-
-### Pop
-
-• **Pop**: = "POP"
-
-*Defined in [ethereum-types/src/index.ts:197](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L197)*
-
-___
-
-### Push1
-
-• **Push1**: = "PUSH1"
-
-*Defined in [ethereum-types/src/index.ts:210](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L210)*
-
-___
-
-### Push10
-
-• **Push10**: = "PUSH10"
-
-*Defined in [ethereum-types/src/index.ts:219](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L219)*
-
-___
-
-### Push11
-
-• **Push11**: = "PUSH11"
-
-*Defined in [ethereum-types/src/index.ts:220](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L220)*
-
-___
-
-### Push12
-
-• **Push12**: = "PUSH12"
-
-*Defined in [ethereum-types/src/index.ts:221](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L221)*
-
-___
-
-### Push13
-
-• **Push13**: = "PUSH13"
-
-*Defined in [ethereum-types/src/index.ts:222](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L222)*
-
-___
-
-### Push14
-
-• **Push14**: = "PUSH14"
-
-*Defined in [ethereum-types/src/index.ts:223](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L223)*
-
-___
-
-### Push15
-
-• **Push15**: = "PUSH15"
-
-*Defined in [ethereum-types/src/index.ts:224](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L224)*
-
-___
-
-### Push16
-
-• **Push16**: = "PUSH16"
-
-*Defined in [ethereum-types/src/index.ts:225](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L225)*
-
-___
-
-### Push17
-
-• **Push17**: = "PUSH17"
-
-*Defined in [ethereum-types/src/index.ts:226](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L226)*
-
-___
-
-### Push18
-
-• **Push18**: = "PUSH18"
-
-*Defined in [ethereum-types/src/index.ts:227](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L227)*
-
-___
-
-### Push19
-
-• **Push19**: = "PUSH19"
-
-*Defined in [ethereum-types/src/index.ts:228](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L228)*
-
-___
-
-### Push2
-
-• **Push2**: = "PUSH2"
-
-*Defined in [ethereum-types/src/index.ts:211](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L211)*
-
-___
-
-### Push20
-
-• **Push20**: = "PUSH20"
-
-*Defined in [ethereum-types/src/index.ts:229](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L229)*
-
-___
-
-### Push21
-
-• **Push21**: = "PUSH21"
-
-*Defined in [ethereum-types/src/index.ts:230](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L230)*
-
-___
-
-### Push22
-
-• **Push22**: = "PUSH22"
-
-*Defined in [ethereum-types/src/index.ts:231](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L231)*
-
-___
-
-### Push23
-
-• **Push23**: = "PUSH23"
-
-*Defined in [ethereum-types/src/index.ts:232](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L232)*
-
-___
-
-### Push24
-
-• **Push24**: = "PUSH24"
-
-*Defined in [ethereum-types/src/index.ts:233](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L233)*
-
-___
-
-### Push25
-
-• **Push25**: = "PUSH25"
-
-*Defined in [ethereum-types/src/index.ts:234](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L234)*
-
-___
-
-### Push26
-
-• **Push26**: = "PUSH26"
-
-*Defined in [ethereum-types/src/index.ts:235](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L235)*
-
-___
-
-### Push27
-
-• **Push27**: = "PUSH27"
-
-*Defined in [ethereum-types/src/index.ts:236](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L236)*
-
-___
-
-### Push28
-
-• **Push28**: = "PUSH28"
-
-*Defined in [ethereum-types/src/index.ts:237](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L237)*
-
-___
-
-### Push29
-
-• **Push29**: = "PUSH29"
-
-*Defined in [ethereum-types/src/index.ts:238](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L238)*
-
-___
-
-### Push3
-
-• **Push3**: = "PUSH3"
-
-*Defined in [ethereum-types/src/index.ts:212](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L212)*
-
-___
-
-### Push30
-
-• **Push30**: = "PUSH30"
-
-*Defined in [ethereum-types/src/index.ts:239](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L239)*
-
-___
-
-### Push31
-
-• **Push31**: = "PUSH31"
-
-*Defined in [ethereum-types/src/index.ts:240](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L240)*
-
-___
-
-### Push32
-
-• **Push32**: = "PUSH32"
-
-*Defined in [ethereum-types/src/index.ts:241](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L241)*
-
-___
-
-### Push4
-
-• **Push4**: = "PUSH4"
-
-*Defined in [ethereum-types/src/index.ts:213](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L213)*
-
-___
-
-### Push5
-
-• **Push5**: = "PUSH5"
-
-*Defined in [ethereum-types/src/index.ts:214](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L214)*
-
-___
-
-### Push6
-
-• **Push6**: = "PUSH6"
-
-*Defined in [ethereum-types/src/index.ts:215](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L215)*
-
-___
-
-### Push7
-
-• **Push7**: = "PUSH7"
-
-*Defined in [ethereum-types/src/index.ts:216](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L216)*
-
-___
-
-### Push8
-
-• **Push8**: = "PUSH8"
-
-*Defined in [ethereum-types/src/index.ts:217](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L217)*
-
-___
-
-### Push9
-
-• **Push9**: = "PUSH9"
-
-*Defined in [ethereum-types/src/index.ts:218](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L218)*
-
-___
-
-### Return
-
-• **Return**: = "RETURN"
-
-*Defined in [ethereum-types/src/index.ts:285](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L285)*
-
-___
-
-### ReturnDataCopy
-
-• **ReturnDataCopy**: = "RETURNDATACOPY"
-
-*Defined in [ethereum-types/src/index.ts:188](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L188)*
-
-___
-
-### ReturnDataSize
-
-• **ReturnDataSize**: = "RETURNDATASIZE"
-
-*Defined in [ethereum-types/src/index.ts:187](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L187)*
-
-___
-
-### Revert
-
-• **Revert**: = "REVERT"
-
-*Defined in [ethereum-types/src/index.ts:288](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L288)*
-
-___
-
-### SDiv
-
-• **SDiv**: = "SDIV"
-
-*Defined in [ethereum-types/src/index.ts:152](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L152)*
-
-___
-
-### SGt
-
-• **SGt**: = "SGT"
-
-*Defined in [ethereum-types/src/index.ts:163](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L163)*
-
-___
-
-### SLoad
-
-• **SLoad**: = "SLOAD"
-
-*Defined in [ethereum-types/src/index.ts:201](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L201)*
-
-___
-
-### SLt
-
-• **SLt**: = "SLT"
-
-*Defined in [ethereum-types/src/index.ts:162](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L162)*
-
-___
-
-### SMod
-
-• **SMod**: = "SMOD"
-
-*Defined in [ethereum-types/src/index.ts:154](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L154)*
-
-___
-
-### SStore
-
-• **SStore**: = "SSTORE"
-
-*Defined in [ethereum-types/src/index.ts:202](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L202)*
-
-___
-
-### SelfDestruct
-
-• **SelfDestruct**: = "SELFDESTRUCT"
-
-*Defined in [ethereum-types/src/index.ts:290](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L290)*
-
-___
-
-### Sha3
-
-• **Sha3**: = "SHA3"
-
-*Defined in [ethereum-types/src/index.ts:172](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L172)*
-
-___
-
-### SignExtend
-
-• **SignExtend**: = "SIGNEXTEND"
-
-*Defined in [ethereum-types/src/index.ts:158](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L158)*
-
-___
-
-### StaticCall
-
-• **StaticCall**: = "STATICCALL"
-
-*Defined in [ethereum-types/src/index.ts:287](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L287)*
-
-___
-
-### Stop
-
-• **Stop**: = "STOP"
-
-*Defined in [ethereum-types/src/index.ts:147](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L147)*
-
-___
-
-### Sub
-
-• **Sub**: = "SUB"
-
-*Defined in [ethereum-types/src/index.ts:150](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L150)*
-
-___
-
-### Swap1
-
-• **Swap1**: = "SWAP1"
-
-*Defined in [ethereum-types/src/index.ts:260](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L260)*
-
-___
-
-### Swap10
-
-• **Swap10**: = "SWAP10"
-
-*Defined in [ethereum-types/src/index.ts:269](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L269)*
-
-___
-
-### Swap11
-
-• **Swap11**: = "SWAP11"
-
-*Defined in [ethereum-types/src/index.ts:270](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L270)*
-
-___
-
-### Swap12
-
-• **Swap12**: = "SWAP12"
-
-*Defined in [ethereum-types/src/index.ts:271](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L271)*
-
-___
-
-### Swap13
-
-• **Swap13**: = "SWAP13"
-
-*Defined in [ethereum-types/src/index.ts:272](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L272)*
-
-___
-
-### Swap14
-
-• **Swap14**: = "SWAP14"
-
-*Defined in [ethereum-types/src/index.ts:273](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L273)*
-
-___
-
-### Swap15
-
-• **Swap15**: = "SWAP15"
-
-*Defined in [ethereum-types/src/index.ts:274](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L274)*
-
-___
-
-### Swap16
-
-• **Swap16**: = "SWAP16"
-
-*Defined in [ethereum-types/src/index.ts:275](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L275)*
-
-___
-
-### Swap2
-
-• **Swap2**: = "SWAP2"
-
-*Defined in [ethereum-types/src/index.ts:261](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L261)*
-
-___
-
-### Swap3
-
-• **Swap3**: = "SWAP3"
-
-*Defined in [ethereum-types/src/index.ts:262](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L262)*
-
-___
-
-### Swap4
-
-• **Swap4**: = "SWAP4"
-
-*Defined in [ethereum-types/src/index.ts:263](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L263)*
-
-___
-
-### Swap5
-
-• **Swap5**: = "SWAP5"
-
-*Defined in [ethereum-types/src/index.ts:264](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L264)*
-
-___
-
-### Swap6
-
-• **Swap6**: = "SWAP6"
-
-*Defined in [ethereum-types/src/index.ts:265](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L265)*
-
-___
-
-### Swap7
-
-• **Swap7**: = "SWAP7"
-
-*Defined in [ethereum-types/src/index.ts:266](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L266)*
-
-___
-
-### Swap8
-
-• **Swap8**: = "SWAP8"
-
-*Defined in [ethereum-types/src/index.ts:267](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L267)*
-
-___
-
-### Swap9
-
-• **Swap9**: = "SWAP9"
-
-*Defined in [ethereum-types/src/index.ts:268](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L268)*
-
-___
-
-### TimeStamp
-
-• **TimeStamp**: = "TimeStamp"
-
-*Defined in [ethereum-types/src/index.ts:192](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L192)*
-
-___
-
-### Xor
-
-• **Xor**: = "XOR"
-
-*Defined in [ethereum-types/src/index.ts:168](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L168)*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-# Enumeration: NodeType
-
-
-## Enumeration members
-
-### Ganache
-
-• **Ganache**: = "GANACHE"
-
-*Defined in [web3-wrapper/src/types.ts:112](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L112)*
-
-___
-
-### Geth
-
-• **Geth**: = "GETH"
-
-*Defined in [web3-wrapper/src/types.ts:111](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L111)*
-
-
-
-
-
-
-# Interface: Web3Config
-
-
-## Properties
-
-### `Optional` blockTime
-
-• **blockTime**? : *undefined | number*
-
-*Defined in [dev-utils/src/web3_factory.ts:22](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/web3_factory.ts#L22)*
-
-___
-
-### `Optional` chainId
-
-• **chainId**? : *undefined | number*
-
-*Defined in [dev-utils/src/web3_factory.ts:27](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/web3_factory.ts#L27)*
-
-___
-
-### `Optional` fork
-
-• **fork**? : *undefined | string*
-
-*Defined in [dev-utils/src/web3_factory.ts:21](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/web3_factory.ts#L21)*
-
-___
-
-### `Optional` ganacheDatabasePath
-
-• **ganacheDatabasePath**? : *undefined | string*
-
-*Defined in [dev-utils/src/web3_factory.ts:19](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/web3_factory.ts#L19)*
-
-___
-
-### `Optional` gasLimit
-
-• **gasLimit**? : *undefined | number*
-
-*Defined in [dev-utils/src/web3_factory.ts:26](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/web3_factory.ts#L26)*
-
-___
-
-### `Optional` hardfork
-
-• **hardfork**? : *undefined | string*
-
-*Defined in [dev-utils/src/web3_factory.ts:25](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/web3_factory.ts#L25)*
-
-___
-
-### `Optional` locked
-
-• **locked**? : *undefined | false | true*
-
-*Defined in [dev-utils/src/web3_factory.ts:23](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/web3_factory.ts#L23)*
-
-___
-
-### `Optional` rpcUrl
-
-• **rpcUrl**? : *undefined | string*
-
-*Defined in [dev-utils/src/web3_factory.ts:18](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/web3_factory.ts#L18)*
-
-___
-
-### `Optional` shouldAllowUnlimitedContractSize
-
-• **shouldAllowUnlimitedContractSize**? : *undefined | false | true*
-
-*Defined in [dev-utils/src/web3_factory.ts:20](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/web3_factory.ts#L20)*
-
-___
-
-### `Optional` shouldThrowErrorsOnGanacheRPCResponse
-
-• **shouldThrowErrorsOnGanacheRPCResponse**? : *undefined | false | true*
-
-*Defined in [dev-utils/src/web3_factory.ts:17](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/web3_factory.ts#L17)*
-
-___
-
-### `Optional` shouldUseInProcessGanache
-
-• **shouldUseInProcessGanache**? : *undefined | false | true*
-
-*Defined in [dev-utils/src/web3_factory.ts:16](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/web3_factory.ts#L16)*
-
-___
-
-### `Optional` total_accounts
-
-• **total_accounts**? : *undefined | number*
-
-*Defined in [dev-utils/src/web3_factory.ts:15](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/web3_factory.ts#L15)*
-
-___
-
-### `Optional` unlocked_accounts
-
-• **unlocked_accounts**? : *string[]*
-
-*Defined in [dev-utils/src/web3_factory.ts:24](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/web3_factory.ts#L24)*
-
-
-
-
-
-
-
-
-# Interface: BlockWithoutTransactionData
-
-
-## Properties
-
-### difficulty
-
-• **difficulty**: *BigNumber*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[difficulty](#difficulty)*
-
-*Defined in [ethereum-types/src/index.ts:357](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L357)*
-
-___
-
-### extraData
-
-• **extraData**: *string*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[extraData](#extradata)*
-
-*Defined in [ethereum-types/src/index.ts:359](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L359)*
-
-___
-
-### gasLimit
-
-• **gasLimit**: *number*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[gasLimit](#gaslimit)*
-
-*Defined in [ethereum-types/src/index.ts:361](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L361)*
-
-___
-
-### gasUsed
-
-• **gasUsed**: *number*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[gasUsed](#gasused)*
-
-*Defined in [ethereum-types/src/index.ts:362](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L362)*
-
-___
-
-### hash
-
-• **hash**: *string | null*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[hash](#hash)*
-
-*Defined in [ethereum-types/src/index.ts:349](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L349)*
-
-___
-
-### logsBloom
-
-• **logsBloom**: *string | null*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[logsBloom](#logsbloom)*
-
-*Defined in [ethereum-types/src/index.ts:353](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L353)*
-
-___
-
-### miner
-
-• **miner**: *string*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[miner](#miner)*
-
-*Defined in [ethereum-types/src/index.ts:356](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L356)*
-
-___
-
-### nonce
-
-• **nonce**: *string | null*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[nonce](#nonce)*
-
-*Defined in [ethereum-types/src/index.ts:351](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L351)*
-
-___
-
-### number
-
-• **number**: *number | null*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[number](#number)*
-
-*Defined in [ethereum-types/src/index.ts:348](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L348)*
-
-___
-
-### parentHash
-
-• **parentHash**: *string*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[parentHash](#parenthash)*
-
-*Defined in [ethereum-types/src/index.ts:350](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L350)*
-
-___
-
-### sha3Uncles
-
-• **sha3Uncles**: *string*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[sha3Uncles](#sha3uncles)*
-
-*Defined in [ethereum-types/src/index.ts:352](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L352)*
-
-___
-
-### size
-
-• **size**: *number*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[size](#size)*
-
-*Defined in [ethereum-types/src/index.ts:360](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L360)*
-
-___
-
-### stateRoot
-
-• **stateRoot**: *string*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[stateRoot](#stateroot)*
-
-*Defined in [ethereum-types/src/index.ts:355](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L355)*
-
-___
-
-### timestamp
-
-• **timestamp**: *number*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[timestamp](#timestamp)*
-
-*Defined in [ethereum-types/src/index.ts:363](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L363)*
-
-___
-
-### totalDifficulty
-
-• **totalDifficulty**: *BigNumber*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[totalDifficulty](#totaldifficulty)*
-
-*Defined in [ethereum-types/src/index.ts:358](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L358)*
-
-___
-
-### transactions
-
-• **transactions**: *string[]*
-
-*Defined in [ethereum-types/src/index.ts:368](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L368)*
-
-___
-
-### transactionsRoot
-
-• **transactionsRoot**: *string*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[transactionsRoot](#transactionsroot)*
-
-*Defined in [ethereum-types/src/index.ts:354](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L354)*
-
-___
-
-### uncles
-
-• **uncles**: *string[]*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[uncles](#uncles)*
-
-*Defined in [ethereum-types/src/index.ts:364](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L364)*
-
-
-
-
-# Interface: BlockWithTransactionData
-
-
-## Properties
-
-### difficulty
-
-• **difficulty**: *BigNumber*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[difficulty](#difficulty)*
-
-*Defined in [ethereum-types/src/index.ts:357](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L357)*
-
-___
-
-### extraData
-
-• **extraData**: *string*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[extraData](#extradata)*
-
-*Defined in [ethereum-types/src/index.ts:359](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L359)*
-
-___
-
-### gasLimit
-
-• **gasLimit**: *number*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[gasLimit](#gaslimit)*
-
-*Defined in [ethereum-types/src/index.ts:361](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L361)*
-
-___
-
-### gasUsed
-
-• **gasUsed**: *number*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[gasUsed](#gasused)*
-
-*Defined in [ethereum-types/src/index.ts:362](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L362)*
-
-___
-
-### hash
-
-• **hash**: *string | null*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[hash](#hash)*
-
-*Defined in [ethereum-types/src/index.ts:349](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L349)*
-
-___
-
-### logsBloom
-
-• **logsBloom**: *string | null*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[logsBloom](#logsbloom)*
-
-*Defined in [ethereum-types/src/index.ts:353](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L353)*
-
-___
-
-### miner
-
-• **miner**: *string*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[miner](#miner)*
-
-*Defined in [ethereum-types/src/index.ts:356](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L356)*
-
-___
-
-### nonce
-
-• **nonce**: *string | null*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[nonce](#nonce)*
-
-*Defined in [ethereum-types/src/index.ts:351](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L351)*
-
-___
-
-### number
-
-• **number**: *number | null*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[number](#number)*
-
-*Defined in [ethereum-types/src/index.ts:348](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L348)*
-
-___
-
-### parentHash
-
-• **parentHash**: *string*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[parentHash](#parenthash)*
-
-*Defined in [ethereum-types/src/index.ts:350](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L350)*
-
-___
-
-### sha3Uncles
-
-• **sha3Uncles**: *string*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[sha3Uncles](#sha3uncles)*
-
-*Defined in [ethereum-types/src/index.ts:352](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L352)*
-
-___
-
-### size
-
-• **size**: *number*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[size](#size)*
-
-*Defined in [ethereum-types/src/index.ts:360](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L360)*
-
-___
-
-### stateRoot
-
-• **stateRoot**: *string*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[stateRoot](#stateroot)*
-
-*Defined in [ethereum-types/src/index.ts:355](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L355)*
-
-___
-
-### timestamp
-
-• **timestamp**: *number*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[timestamp](#timestamp)*
-
-*Defined in [ethereum-types/src/index.ts:363](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L363)*
-
-___
-
-### totalDifficulty
-
-• **totalDifficulty**: *BigNumber*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[totalDifficulty](#totaldifficulty)*
-
-*Defined in [ethereum-types/src/index.ts:358](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L358)*
-
-___
-
-### transactions
-
-• **transactions**: *[Transaction](#class-transaction)[]*
-
-*Defined in [ethereum-types/src/index.ts:372](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L372)*
-
-___
-
-### transactionsRoot
-
-• **transactionsRoot**: *string*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[transactionsRoot](#transactionsroot)*
-
-*Defined in [ethereum-types/src/index.ts:354](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L354)*
-
-___
-
-### uncles
-
-• **uncles**: *string[]*
-
-*Inherited from [AbstractBlock](#interface-abstractblock).[uncles](#uncles)*
-
-*Defined in [ethereum-types/src/index.ts:364](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L364)*
-
-
-
-
-# Interface: CallData
-
-
-## Properties
-
-### `Optional` accessList
-
-• **accessList**? : *[TxAccessList](#class-txaccesslist)*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[accessList](#optional-accesslist)*
-
-*Defined in [ethereum-types/src/index.ts:400](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L400)*
-
-___
-
-### `Optional` data
-
-• **data**? : *undefined | string*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[data](#optional-data)*
-
-*Defined in [ethereum-types/src/index.ts:398](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L398)*
-
-___
-
-### `Optional` from
-
-• **from**? : *undefined | string*
-
-*Defined in [ethereum-types/src/index.ts:425](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L425)*
-
-___
-
-### `Optional` gas
-
-• **gas**? : *number | string | BigNumber*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[gas](#optional-gas)*
-
-*Defined in [ethereum-types/src/index.ts:394](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L394)*
-
-___
-
-### `Optional` gasPrice
-
-• **gasPrice**? : *number | string | BigNumber*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[gasPrice](#optional-gasprice)*
-
-*Defined in [ethereum-types/src/index.ts:395](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L395)*
-
-___
-
-### `Optional` maxFeePerGas
-
-• **maxFeePerGas**? : *number | string | BigNumber*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[maxFeePerGas](#optional-maxfeepergas)*
-
-*Defined in [ethereum-types/src/index.ts:396](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L396)*
-
-___
-
-### `Optional` maxPriorityFeePerGas
-
-• **maxPriorityFeePerGas**? : *number | string | BigNumber*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[maxPriorityFeePerGas](#optional-maxpriorityfeepergas)*
-
-*Defined in [ethereum-types/src/index.ts:397](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L397)*
-
-___
-
-### `Optional` nonce
-
-• **nonce**? : *undefined | number*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[nonce](#optional-nonce)*
-
-*Defined in [ethereum-types/src/index.ts:399](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L399)*
-
-___
-
-### `Optional` overrides
-
-• **overrides**? : *[GethCallOverrides](#class-gethcalloverrides)*
-
-*Defined in [ethereum-types/src/index.ts:426](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L426)*
-
-___
-
-### `Optional` to
-
-• **to**? : *undefined | string*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[to](#optional-to)*
-
-*Defined in [ethereum-types/src/index.ts:392](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L392)*
-
-___
-
-### `Optional` value
-
-• **value**? : *number | string | BigNumber*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[value](#optional-value)*
-
-*Defined in [ethereum-types/src/index.ts:393](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L393)*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-# Interface: ConstructorAbi
-
-
-## Properties
-
-### inputs
-
-• **inputs**: *[DataItem](#class-dataitem)[]*
-
-*Defined in [ethereum-types/src/index.ts:103](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L103)*
-
-___
-
-### `Optional` payable
-
-• **payable**? : *undefined | false | true*
-
-*Defined in [ethereum-types/src/index.ts:104](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L104)*
-
-___
-
-### stateMutability
-
-• **stateMutability**: *[ConstructorStateMutability](#constructorstatemutability)*
-
-*Defined in [ethereum-types/src/index.ts:105](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L105)*
-
-___
-
-### type
-
-• **type**: *string*
-
-*Defined in [ethereum-types/src/index.ts:102](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L102)*
-
-
-
-
-
-
-
-
-
-
-# Interface: DataItem
-
-
-## Properties
-
-### `Optional` components
-
-• **components**? : *[DataItem](#class-dataitem)[]*
-
-*Defined in [ethereum-types/src/index.ts:138](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L138)*
-
-___
-
-### `Optional` internalType
-
-• **internalType**? : *undefined | string*
-
-*Defined in [ethereum-types/src/index.ts:137](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L137)*
-
-___
-
-### name
-
-• **name**: *string*
-
-*Defined in [ethereum-types/src/index.ts:135](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L135)*
-
-___
-
-### type
-
-• **type**: *string*
-
-*Defined in [ethereum-types/src/index.ts:136](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L136)*
-
-
-
-
-# Interface: DecodedLogArgs
-
-
-## Type parameters
-
-▪ **A**
-
-
-## Properties
-
-### address
-
-• **address**: *string*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[address](#address)*
-
-*Defined in [ethereum-types/src/index.ts:458](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L458)*
-
-___
-
-### args
-
-• **args**: *A*
-
-*Defined in [ethereum-types/src/index.ts:441](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L441)*
-
-___
-
-### blockHash
-
-• **blockHash**: *string | null*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[blockHash](#blockhash)*
-
-*Defined in [ethereum-types/src/index.ts:456](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L456)*
-
-___
-
-### blockNumber
-
-• **blockNumber**: *number | null*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[blockNumber](#blocknumber)*
-
-*Defined in [ethereum-types/src/index.ts:457](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L457)*
-
-___
-
-### data
-
-• **data**: *string*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[data](#data)*
-
-*Defined in [ethereum-types/src/index.ts:459](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L459)*
-
-___
-
-### event
-
-• **event**: *string*
-
-*Defined in [ethereum-types/src/index.ts:440](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L440)*
-
-___
-
-### logIndex
-
-• **logIndex**: *number | null*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[logIndex](#logindex)*
-
-*Defined in [ethereum-types/src/index.ts:453](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L453)*
-
-___
-
-### topics
-
-• **topics**: *string[]*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[topics](#topics)*
-
-*Defined in [ethereum-types/src/index.ts:460](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L460)*
-
-___
-
-### transactionHash
-
-• **transactionHash**: *string*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[transactionHash](#transactionhash)*
-
-*Defined in [ethereum-types/src/index.ts:455](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L455)*
-
-___
-
-### transactionIndex
-
-• **transactionIndex**: *number | null*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[transactionIndex](#transactionindex)*
-
-*Defined in [ethereum-types/src/index.ts:454](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L454)*
-
-
-
-
-# Interface: DecodedLogEntryEvent <**A**>
-
-## Type parameters
-
-▪ **A**
-
-
-## Properties
-
-### address
-
-• **address**: *string*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[address](#address)*
-
-*Defined in [ethereum-types/src/index.ts:458](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L458)*
-
-___
-
-### args
-
-• **args**: *A*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[args](#args)*
-
-*Defined in [ethereum-types/src/index.ts:441](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L441)*
-
-___
-
-### blockHash
-
-• **blockHash**: *string | null*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[blockHash](#blockhash)*
-
-*Defined in [ethereum-types/src/index.ts:456](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L456)*
-
-___
-
-### blockNumber
-
-• **blockNumber**: *number | null*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[blockNumber](#blocknumber)*
-
-*Defined in [ethereum-types/src/index.ts:457](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L457)*
-
-___
-
-### data
-
-• **data**: *string*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[data](#data)*
-
-*Defined in [ethereum-types/src/index.ts:459](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L459)*
-
-___
-
-### event
-
-• **event**: *string*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[event](#event)*
-
-*Defined in [ethereum-types/src/index.ts:440](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L440)*
-
-___
-
-### logIndex
-
-• **logIndex**: *number | null*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[logIndex](#logindex)*
-
-*Defined in [ethereum-types/src/index.ts:453](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L453)*
-
-___
-
-### removed
-
-• **removed**: *boolean*
-
-*Defined in [ethereum-types/src/index.ts:445](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L445)*
-
-___
-
-### topics
-
-• **topics**: *string[]*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[topics](#topics)*
-
-*Defined in [ethereum-types/src/index.ts:460](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L460)*
-
-___
-
-### transactionHash
-
-• **transactionHash**: *string*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[transactionHash](#transactionhash)*
-
-*Defined in [ethereum-types/src/index.ts:455](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L455)*
-
-___
-
-### transactionIndex
-
-• **transactionIndex**: *number | null*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[transactionIndex](#transactionindex)*
-
-*Defined in [ethereum-types/src/index.ts:454](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L454)*
-
-
-
-
-
-
-# Interface: EIP1193Provider
-
-
-## Properties
-
-### isEIP1193
-
-• **isEIP1193**: *boolean*
-
-*Defined in [ethereum-types/src/index.ts:73](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L73)*
-
-## Methods
-
-### on
-
-▸ **on**(`event`: [EIP1193Event](#eip1193event), `listener`: function): *this*
-
-*Defined in [ethereum-types/src/index.ts:75](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L75)*
-
-**Parameters:**
-
-▪ **event**: *[EIP1193Event](#eip1193event)*
-
-▪ **listener**: *function*
-
-▸ (`result`: any): *void*
-
-**Parameters:**
-
-Name | Type |
------- | ------ |
-`result` | any |
-
-**Returns:** *this*
-
-___
-
-### send
-
-▸ **send**(`method`: string, `params?`: any[]): *Promise‹any›*
-
-*Defined in [ethereum-types/src/index.ts:74](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L74)*
-
-**Parameters:**
-
-Name | Type |
------- | ------ |
-`method` | string |
-`params?` | any[] |
-
-**Returns:** *Promise‹any›*
-
-
-
-
-
-
-
-
-
-
-
-
-# Interface: FallbackAbi
-
-
-## Properties
-
-### payable
-
-• **payable**: *boolean*
-
-*Defined in [ethereum-types/src/index.ts:112](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L112)*
-
-___
-
-### type
-
-• **type**: *string*
-
-*Defined in [ethereum-types/src/index.ts:111](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L111)*
-
-
-
-
-# Interface: FilterObject
-
-
-## Properties
-
-### `Optional` address
-
-• **address**? : *undefined | string*
-
-*Defined in [ethereum-types/src/index.ts:433](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L433)*
-
-___
-
-### `Optional` blockHash
-
-• **blockHash**? : *undefined | string*
-
-*Defined in [ethereum-types/src/index.ts:432](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L432)*
-
-___
-
-### `Optional` fromBlock
-
-• **fromBlock**? : *number | string*
-
-*Defined in [ethereum-types/src/index.ts:430](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L430)*
-
-___
-
-### `Optional` toBlock
-
-• **toBlock**? : *number | string*
-
-*Defined in [ethereum-types/src/index.ts:431](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L431)*
-
-___
-
-### `Optional` topics
-
-• **topics**? : *[LogTopic](#logtopic)[]*
-
-*Defined in [ethereum-types/src/index.ts:434](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L434)*
-
-
-
-
-# Interface: GanacheProvider
-
-
-## Methods
-
-### sendAsync
-
-▸ **sendAsync**(`payload`: [JSONRPCRequestPayload](_ethereum_types_src_index_.jsonrpcrequestpayload.md), `callback`: [JSONRPCErrorCallback](#jsonrpcerrorcallback)): *void*
-
-*Defined in [ethereum-types/src/index.ts:14](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L14)*
-
-**Parameters:**
-
-Name | Type |
------- | ------ |
-`payload` | [JSONRPCRequestPayload](#class-jsonrpcrequestpayload) |
-`callback` | [JSONRPCErrorCallback](#jsonrpcerrorcallback) |
-
-**Returns:** *void*
-
-
-
-
-
-
-# Interface: GethCallOverrides
-
-
-## Hierarchy
-
-* **JSONRPCRequestPayload**
-
-
-## Properties
-
-### id
-
-• **id**: *number*
-
-*Defined in [ethereum-types/src/index.ts:331](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L331)*
-
-___
-
-### jsonrpc
-
-• **jsonrpc**: *string*
-
-*Defined in [ethereum-types/src/index.ts:332](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L332)*
-
-___
-
-### method
-
-• **method**: *string*
-
-*Defined in [ethereum-types/src/index.ts:330](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L330)*
-
-___
-
-### params
-
-• **params**: *any[]*
-
-*Defined in [ethereum-types/src/index.ts:329](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L329)*
-
-
-
-
-# Interface: JSONRPCResponseError
-
-
-## Properties
-
-### code
-
-• **code**: *number*
-
-*Defined in [ethereum-types/src/index.ts:337](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L337)*
-
-___
-
-### message
-
-• **message**: *string*
-
-*Defined in [ethereum-types/src/index.ts:336](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L336)*
-
-
-
-
-# Interface: JSONRPCResponsePayload
-
-
-## Properties
-
-### `Optional` error
-
-• **error**? : *[JSONRPCResponseError](#class-jsonrpcresponseerror)*
-
-*Defined in [ethereum-types/src/index.ts:344](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L344)*
-
-___
-
-### id
-
-• **id**: *number*
-
-*Defined in [ethereum-types/src/index.ts:342](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L342)*
-
-___
-
-### jsonrpc
-
-• **jsonrpc**: *string*
-
-*Defined in [ethereum-types/src/index.ts:343](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L343)*
-
-___
-
-### result
-
-• **result**: *any*
-
-*Defined in [ethereum-types/src/index.ts:341](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L341)*
-
-
-
-
-# Interface: LogEntry
-
-
-## Properties
-
-### address
-
-• **address**: *string*
-
-*Defined in [ethereum-types/src/index.ts:458](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L458)*
-
-___
-
-### blockHash
-
-• **blockHash**: *string | null*
-
-*Defined in [ethereum-types/src/index.ts:456](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L456)*
-
-___
-
-### blockNumber
-
-• **blockNumber**: *number | null*
-
-*Defined in [ethereum-types/src/index.ts:457](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L457)*
-
-___
-
-### data
-
-• **data**: *string*
-
-*Defined in [ethereum-types/src/index.ts:459](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L459)*
-
-___
-
-### logIndex
-
-• **logIndex**: *number | null*
-
-*Defined in [ethereum-types/src/index.ts:453](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L453)*
-
-___
-
-### topics
-
-• **topics**: *string[]*
-
-*Defined in [ethereum-types/src/index.ts:460](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L460)*
-
-___
-
-### transactionHash
-
-• **transactionHash**: *string*
-
-*Defined in [ethereum-types/src/index.ts:455](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L455)*
-
-___
-
-### transactionIndex
-
-• **transactionIndex**: *number | null*
-
-*Defined in [ethereum-types/src/index.ts:454](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L454)*
-
-
-
-
-# Interface: LogEntryEvent
-
-
-## Properties
-
-### address
-
-• **address**: *string*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[address](#address)*
-
-*Defined in [ethereum-types/src/index.ts:458](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L458)*
-
-___
-
-### blockHash
-
-• **blockHash**: *string | null*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[blockHash](#blockhash)*
-
-*Defined in [ethereum-types/src/index.ts:456](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L456)*
-
-___
-
-### blockNumber
-
-• **blockNumber**: *number | null*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[blockNumber](#blocknumber)*
-
-*Defined in [ethereum-types/src/index.ts:457](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L457)*
-
-___
-
-### data
-
-• **data**: *string*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[data](#data)*
-
-*Defined in [ethereum-types/src/index.ts:459](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L459)*
-
-___
-
-### logIndex
-
-• **logIndex**: *number | null*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[logIndex](#logindex)*
-
-*Defined in [ethereum-types/src/index.ts:453](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L453)*
-
-___
-
-### removed
-
-• **removed**: *boolean*
-
-*Defined in [ethereum-types/src/index.ts:449](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L449)*
-
-___
-
-### topics
-
-• **topics**: *string[]*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[topics](#topics)*
-
-*Defined in [ethereum-types/src/index.ts:460](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L460)*
-
-___
-
-### transactionHash
-
-• **transactionHash**: *string*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[transactionHash](#transactionhash)*
-
-*Defined in [ethereum-types/src/index.ts:455](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L455)*
-
-___
-
-### transactionIndex
-
-• **transactionIndex**: *number | null*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[transactionIndex](#transactionindex)*
-
-*Defined in [ethereum-types/src/index.ts:454](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L454)*
-
-
-
-
-# Interface: LogWithDecodedArgs <**ArgsType**>
-
-## Type parameters
-
-▪ **ArgsType**: *[DecodedLogArgs](#class-decodedlogargs)*
-
-
-## Properties
-
-### address
-
-• **address**: *string*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[address](#address)*
-
-*Defined in [ethereum-types/src/index.ts:458](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L458)*
-
-___
-
-### args
-
-• **args**: *ArgsType*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[args](#args)*
-
-*Defined in [ethereum-types/src/index.ts:441](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L441)*
-
-___
-
-### blockHash
-
-• **blockHash**: *string | null*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[blockHash](#blockhash)*
-
-*Defined in [ethereum-types/src/index.ts:456](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L456)*
-
-___
-
-### blockNumber
-
-• **blockNumber**: *number | null*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[blockNumber](#blocknumber)*
-
-*Defined in [ethereum-types/src/index.ts:457](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L457)*
-
-___
-
-### data
-
-• **data**: *string*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[data](#data)*
-
-*Defined in [ethereum-types/src/index.ts:459](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L459)*
-
-___
-
-### event
-
-• **event**: *string*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[event](#event)*
-
-*Defined in [ethereum-types/src/index.ts:440](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L440)*
-
-___
-
-### logIndex
-
-• **logIndex**: *number | null*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[logIndex](#logindex)*
-
-*Defined in [ethereum-types/src/index.ts:453](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L453)*
-
-___
-
-### topics
-
-• **topics**: *string[]*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[topics](#topics)*
-
-*Defined in [ethereum-types/src/index.ts:460](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L460)*
-
-___
-
-### transactionHash
-
-• **transactionHash**: *string*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[transactionHash](#transactionhash)*
-
-*Defined in [ethereum-types/src/index.ts:455](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L455)*
-
-___
-
-### transactionIndex
-
-• **transactionIndex**: *number | null*
-
-*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[transactionIndex](#transactionindex)*
-
-*Defined in [ethereum-types/src/index.ts:454](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L454)*
-
-
-
-
-# Interface: MethodAbi
-
-
-## Properties
-
-### `Optional` constant
-
-• **constant**? : *undefined | false | true*
-
-*Defined in [ethereum-types/src/index.ts:94](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L94)*
-
-___
-
-### inputs
-
-• **inputs**: *[DataItem](#class-dataitem)[]*
-
-*Defined in [ethereum-types/src/index.ts:92](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L92)*
-
-___
-
-### name
-
-• **name**: *string*
-
-*Defined in [ethereum-types/src/index.ts:91](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L91)*
-
-___
-
-### outputs
-
-• **outputs**: *[DataItem](#class-dataitem)[]*
-
-*Defined in [ethereum-types/src/index.ts:93](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L93)*
-
-___
-
-### `Optional` payable
-
-• **payable**? : *undefined | false | true*
-
-*Defined in [ethereum-types/src/index.ts:96](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L96)*
-
-___
-
-### stateMutability
-
-• **stateMutability**: *[StateMutability](#statemutability)*
-
-*Defined in [ethereum-types/src/index.ts:95](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L95)*
-
-___
-
-### type
-
-• **type**: *string*
-
-*Defined in [ethereum-types/src/index.ts:90](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L90)*
-
-
-
-
-
-
-
-
-
-
-# Interface: RevertErrorAbi
-
-
-## Properties
-
-### `Optional` arguments
-
-• **arguments**? : *[DataItem](#class-dataitem)[]*
-
-*Defined in [ethereum-types/src/index.ts:122](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L122)*
-
-___
-
-### name
-
-• **name**: *string*
-
-*Defined in [ethereum-types/src/index.ts:121](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L121)*
-
-___
-
-### type
-
-• **type**: *"error"*
-
-*Defined in [ethereum-types/src/index.ts:120](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L120)*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-# Interface: StructLog
-
-
-## Properties
-
-### depth
-
-• **depth**: *number*
-
-*Defined in [ethereum-types/src/index.ts:294](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L294)*
-
-___
-
-### error
-
-• **error**: *string*
-
-*Defined in [ethereum-types/src/index.ts:295](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L295)*
-
-___
-
-### gas
-
-• **gas**: *number*
-
-*Defined in [ethereum-types/src/index.ts:296](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L296)*
-
-___
-
-### gasCost
-
-• **gasCost**: *number*
-
-*Defined in [ethereum-types/src/index.ts:297](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L297)*
-
-___
-
-### memory
-
-• **memory**: *string[]*
-
-*Defined in [ethereum-types/src/index.ts:298](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L298)*
-
-___
-
-### op
-
-• **op**: *[OpCode](#enumeration-opcode)*
-
-*Defined in [ethereum-types/src/index.ts:299](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L299)*
-
-___
-
-### pc
-
-• **pc**: *number*
-
-*Defined in [ethereum-types/src/index.ts:300](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L300)*
-
-___
-
-### stack
-
-• **stack**: *string[]*
-
-*Defined in [ethereum-types/src/index.ts:301](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L301)*
-
-___
-
-### storage
-
-• **storage**: *object*
-
-*Defined in [ethereum-types/src/index.ts:302](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L302)*
-
-#### Type declaration:
-
-* \[ **location**: *string*\]: string
-
-
-
-
-# Interface: TraceParams
-
-
-## Properties
-
-### `Optional` disableMemory
-
-• **disableMemory**? : *undefined | false | true*
-
-*Defined in [ethereum-types/src/index.ts:542](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L542)*
-
-___
-
-### `Optional` disableStack
-
-• **disableStack**? : *undefined | false | true*
-
-*Defined in [ethereum-types/src/index.ts:543](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L543)*
-
-___
-
-### `Optional` disableStorage
-
-• **disableStorage**? : *undefined | false | true*
-
-*Defined in [ethereum-types/src/index.ts:544](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L544)*
-
-___
-
-### `Optional` timeout
-
-• **timeout**? : *undefined | string*
-
-*Defined in [ethereum-types/src/index.ts:546](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L546)*
-
-___
-
-### `Optional` tracer
-
-• **tracer**? : *undefined | string*
-
-*Defined in [ethereum-types/src/index.ts:545](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L545)*
-
-
-
-
-# Interface: Transaction
-
-
-## Properties
-
-### blockHash
-
-• **blockHash**: *string | null*
-
-*Defined in [ethereum-types/src/index.ts:378](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L378)*
-
-___
-
-### blockNumber
-
-• **blockNumber**: *number | null*
-
-*Defined in [ethereum-types/src/index.ts:379](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L379)*
-
-___
-
-### from
-
-• **from**: *string*
-
-*Defined in [ethereum-types/src/index.ts:381](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L381)*
-
-___
-
-### gas
-
-• **gas**: *number*
-
-*Defined in [ethereum-types/src/index.ts:387](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L387)*
-
-___
-
-### `Optional` gasPrice
-
-• **gasPrice**? : *BigNumber*
-
-*Defined in [ethereum-types/src/index.ts:384](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L384)*
-
-___
-
-### hash
-
-• **hash**: *string*
-
-*Defined in [ethereum-types/src/index.ts:376](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L376)*
-
-___
-
-### input
-
-• **input**: *string*
-
-*Defined in [ethereum-types/src/index.ts:388](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L388)*
-
-___
-
-### `Optional` maxFeePerGas
-
-• **maxFeePerGas**? : *BigNumber*
-
-*Defined in [ethereum-types/src/index.ts:385](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L385)*
-
-___
-
-### `Optional` maxPriorityFeePerGas
-
-• **maxPriorityFeePerGas**? : *BigNumber*
-
-*Defined in [ethereum-types/src/index.ts:386](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L386)*
-
-___
-
-### nonce
-
-• **nonce**: *number*
-
-*Defined in [ethereum-types/src/index.ts:377](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L377)*
-
-___
-
-### to
-
-• **to**: *string | null*
-
-*Defined in [ethereum-types/src/index.ts:382](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L382)*
-
-___
-
-### transactionIndex
-
-• **transactionIndex**: *number | null*
-
-*Defined in [ethereum-types/src/index.ts:380](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L380)*
-
-___
-
-### value
-
-• **value**: *BigNumber*
-
-*Defined in [ethereum-types/src/index.ts:383](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L383)*
-
-
-
-
-# Interface: TransactionReceipt
-
-
-## Properties
-
-### blockHash
-
-• **blockHash**: *string*
-
-*Defined in [ethereum-types/src/index.ts:472](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L472)*
-
-___
-
-### blockNumber
-
-• **blockNumber**: *number*
-
-*Defined in [ethereum-types/src/index.ts:473](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L473)*
-
-___
-
-### contractAddress
-
-• **contractAddress**: *string | null*
-
-*Defined in [ethereum-types/src/index.ts:481](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L481)*
-
-___
-
-### cumulativeGasUsed
-
-• **cumulativeGasUsed**: *number*
-
-*Defined in [ethereum-types/src/index.ts:479](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L479)*
-
-___
-
-### from
-
-• **from**: *string*
-
-*Defined in [ethereum-types/src/index.ts:476](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L476)*
-
-___
-
-### gasUsed
-
-• **gasUsed**: *number*
-
-*Defined in [ethereum-types/src/index.ts:480](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L480)*
-
-___
-
-### logs
-
-• **logs**: *[LogEntry](#class-logentry)[]*
-
-*Defined in [ethereum-types/src/index.ts:482](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L482)*
-
-___
-
-### status
-
-• **status**: *[TransactionReceiptStatus](#transactionreceiptstatus)*
-
-*Defined in [ethereum-types/src/index.ts:478](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L478)*
-
-___
-
-### to
-
-• **to**: *string*
-
-*Defined in [ethereum-types/src/index.ts:477](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L477)*
-
-___
-
-### transactionHash
-
-• **transactionHash**: *string*
-
-*Defined in [ethereum-types/src/index.ts:474](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L474)*
-
-___
-
-### transactionIndex
-
-• **transactionIndex**: *number*
-
-*Defined in [ethereum-types/src/index.ts:475](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L475)*
-
-
-
-
-# Interface: TransactionReceiptWithDecodedLogs
-
-Contains the logs returned by a TransactionReceipt. We attempt to decode the
-logs using AbiDecoder. If we have the logs corresponding ABI, we decode it,
-otherwise we don't.
-
-
-## Properties
-
-### blockHash
-
-• **blockHash**: *string*
-
-*Inherited from [TransactionReceipt](#interface-transactionreceipt).[blockHash](#blockhash)*
-
-*Defined in [ethereum-types/src/index.ts:472](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L472)*
-
-___
-
-### blockNumber
-
-• **blockNumber**: *number*
-
-*Inherited from [TransactionReceipt](#interface-transactionreceipt).[blockNumber](#blocknumber)*
-
-*Defined in [ethereum-types/src/index.ts:473](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L473)*
-
-___
-
-### contractAddress
-
-• **contractAddress**: *string | null*
-
-*Inherited from [TransactionReceipt](#interface-transactionreceipt).[contractAddress](#contractaddress)*
-
-*Defined in [ethereum-types/src/index.ts:481](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L481)*
-
-___
-
-### cumulativeGasUsed
-
-• **cumulativeGasUsed**: *number*
-
-*Inherited from [TransactionReceipt](#interface-transactionreceipt).[cumulativeGasUsed](#cumulativegasused)*
-
-*Defined in [ethereum-types/src/index.ts:479](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L479)*
-
-___
-
-### from
-
-• **from**: *string*
-
-*Inherited from [TransactionReceipt](#interface-transactionreceipt).[from](#from)*
-
-*Defined in [ethereum-types/src/index.ts:476](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L476)*
-
-___
-
-### gasUsed
-
-• **gasUsed**: *number*
-
-*Inherited from [TransactionReceipt](#interface-transactionreceipt).[gasUsed](#gasused)*
-
-*Defined in [ethereum-types/src/index.ts:480](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L480)*
-
-___
-
-### logs
-
-• **logs**: *Array‹[LogWithDecodedArgs](_ethereum_types_src_index_.logwithdecodedargs.md)‹[DecodedLogArgs](_ethereum_types_src_index_.decodedlogargs.md)› | [LogEntry](#class-logentry)›*
-
-*Overrides [TransactionReceipt](_ethereum_types_src_index_.transactionreceipt.md).[logs](#logs)*
-
-*Defined in [ethereum-types/src/index.ts:538](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L538)*
-
-___
-
-### status
-
-• **status**: *[TransactionReceiptStatus](#transactionreceiptstatus)*
-
-*Inherited from [TransactionReceipt](#interface-transactionreceipt).[status](#status)*
-
-*Defined in [ethereum-types/src/index.ts:478](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L478)*
-
-___
-
-### to
-
-• **to**: *string*
-
-*Inherited from [TransactionReceipt](#interface-transactionreceipt).[to](#to)*
-
-*Defined in [ethereum-types/src/index.ts:477](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L477)*
-
-___
-
-### transactionHash
-
-• **transactionHash**: *string*
-
-*Inherited from [TransactionReceipt](#interface-transactionreceipt).[transactionHash](#transactionhash)*
-
-*Defined in [ethereum-types/src/index.ts:474](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L474)*
-
-___
-
-### transactionIndex
-
-• **transactionIndex**: *number*
-
-*Inherited from [TransactionReceipt](#interface-transactionreceipt).[transactionIndex](#transactionindex)*
-
-*Defined in [ethereum-types/src/index.ts:475](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L475)*
-
-
-
-
-# Interface: TransactionTrace
-
-
-## Properties
-
-### gas
-
-• **gas**: *number*
-
-*Defined in [ethereum-types/src/index.ts:306](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L306)*
-
-___
-
-### returnValue
-
-• **returnValue**: *any*
-
-*Defined in [ethereum-types/src/index.ts:307](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L307)*
-
-___
-
-### structLogs
-
-• **structLogs**: *[StructLog](#class-structlog)[]*
-
-*Defined in [ethereum-types/src/index.ts:308](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L308)*
-
-
-
-
-# Interface: TupleDataItem
-
-
-## Properties
-
-### components
-
-• **components**: *[DataItem](#class-dataitem)[]*
-
-*Overrides [EventParameter](_ethereum_types_src_index_.eventparameter.md).[components](#optional-components)*
-
-*Defined in [ethereum-types/src/index.ts:142](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L142)*
-
-___
-
-### `Optional` internalType
-
-• **internalType**? : *undefined | string*
-
-*Inherited from [EventParameter](#interface-eventparameter).[internalType](#optional-internaltype)*
-
-*Defined in [ethereum-types/src/index.ts:137](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L137)*
-
-___
-
-### name
-
-• **name**: *string*
-
-*Inherited from [EventParameter](#interface-eventparameter).[name](#name)*
-
-*Defined in [ethereum-types/src/index.ts:135](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L135)*
-
-___
-
-### type
-
-• **type**: *string*
-
-*Inherited from [EventParameter](#interface-eventparameter).[type](#type)*
-
-*Defined in [ethereum-types/src/index.ts:136](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L136)*
-
-
-
-
-# Interface: TxAccessList
-
-
-## Hierarchy
-
-* **TxAccessListWithGas**
-
-
-## Properties
-
-### accessList
-
-• **accessList**: *[TxAccessList](#class-txaccesslist)*
-
-*Defined in [ethereum-types/src/index.ts:412](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L412)*
-
-___
-
-### gasUsed
-
-• **gasUsed**: *number*
-
-*Defined in [ethereum-types/src/index.ts:413](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L413)*
-
-
-
-
-# Interface: TxData
-
-
-## Properties
-
-### `Optional` accessList
-
-• **accessList**? : *[TxAccessList](#class-txaccesslist)*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[accessList](#optional-accesslist)*
-
-*Defined in [ethereum-types/src/index.ts:400](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L400)*
-
-___
-
-### `Optional` data
-
-• **data**? : *undefined | string*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[data](#optional-data)*
-
-*Defined in [ethereum-types/src/index.ts:398](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L398)*
-
-___
-
-### from
-
-• **from**: *string*
-
-*Defined in [ethereum-types/src/index.ts:404](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L404)*
-
-___
-
-### `Optional` gas
-
-• **gas**? : *number | string | BigNumber*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[gas](#optional-gas)*
-
-*Defined in [ethereum-types/src/index.ts:394](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L394)*
-
-___
-
-### `Optional` gasPrice
-
-• **gasPrice**? : *number | string | BigNumber*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[gasPrice](#optional-gasprice)*
-
-*Defined in [ethereum-types/src/index.ts:395](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L395)*
-
-___
-
-### `Optional` maxFeePerGas
-
-• **maxFeePerGas**? : *number | string | BigNumber*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[maxFeePerGas](#optional-maxfeepergas)*
-
-*Defined in [ethereum-types/src/index.ts:396](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L396)*
-
-___
-
-### `Optional` maxPriorityFeePerGas
-
-• **maxPriorityFeePerGas**? : *number | string | BigNumber*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[maxPriorityFeePerGas](#optional-maxpriorityfeepergas)*
-
-*Defined in [ethereum-types/src/index.ts:397](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L397)*
-
-___
-
-### `Optional` nonce
-
-• **nonce**? : *undefined | number*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[nonce](#optional-nonce)*
-
-*Defined in [ethereum-types/src/index.ts:399](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L399)*
-
-___
-
-### `Optional` to
-
-• **to**? : *undefined | string*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[to](#optional-to)*
-
-*Defined in [ethereum-types/src/index.ts:392](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L392)*
-
-___
-
-### `Optional` value
-
-• **value**? : *number | string | BigNumber*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[value](#optional-value)*
-
-*Defined in [ethereum-types/src/index.ts:393](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L393)*
-
-
-
-
-# Interface: TxDataPayable
-
-
-## Properties
-
-### `Optional` accessList
-
-• **accessList**? : *[TxAccessList](#class-txaccesslist)*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[accessList](#optional-accesslist)*
-
-*Defined in [ethereum-types/src/index.ts:400](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L400)*
-
-___
-
-### `Optional` data
-
-• **data**? : *undefined | string*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[data](#optional-data)*
-
-*Defined in [ethereum-types/src/index.ts:398](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L398)*
-
-___
-
-### from
-
-• **from**: *string*
-
-*Inherited from [TxData](#interface-txdata).[from](#from)*
-
-*Defined in [ethereum-types/src/index.ts:404](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L404)*
-
-___
-
-### `Optional` gas
-
-• **gas**? : *number | string | BigNumber*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[gas](#optional-gas)*
-
-*Defined in [ethereum-types/src/index.ts:394](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L394)*
-
-___
-
-### `Optional` gasPrice
-
-• **gasPrice**? : *number | string | BigNumber*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[gasPrice](#optional-gasprice)*
-
-*Defined in [ethereum-types/src/index.ts:395](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L395)*
-
-___
-
-### `Optional` maxFeePerGas
-
-• **maxFeePerGas**? : *number | string | BigNumber*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[maxFeePerGas](#optional-maxfeepergas)*
-
-*Defined in [ethereum-types/src/index.ts:396](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L396)*
-
-___
-
-### `Optional` maxPriorityFeePerGas
-
-• **maxPriorityFeePerGas**? : *number | string | BigNumber*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[maxPriorityFeePerGas](#optional-maxpriorityfeepergas)*
-
-*Defined in [ethereum-types/src/index.ts:397](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L397)*
-
-___
-
-### `Optional` nonce
-
-• **nonce**? : *undefined | number*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[nonce](#optional-nonce)*
-
-*Defined in [ethereum-types/src/index.ts:399](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L399)*
-
-___
-
-### `Optional` to
-
-• **to**? : *undefined | string*
-
-*Inherited from [CallTxDataBase](#interface-calltxdatabase).[to](#optional-to)*
-
-*Defined in [ethereum-types/src/index.ts:392](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L392)*
-
-___
-
-### `Optional` value
-
-• **value**? : *BigNumber*
-
-*Overrides [CallTxDataBase](_ethereum_types_src_index_.calltxdatabase.md).[value](#optional-value)*
-
-*Defined in [ethereum-types/src/index.ts:466](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L466)*
-
-
-
-
-# Interface: Web3JsV1Provider
-
-Web3.js version 1 provider interface
-This provider interface was implemented in the pre-1.0Beta releases for Web3.js.
-This interface allowed sending synchonous requests, support for which was later dropped.
-
-
-## Methods
-
-### send
-
-▸ **send**(`payload`: [JSONRPCRequestPayload](_ethereum_types_src_index_.jsonrpcrequestpayload.md)): *[JSONRPCResponsePayload](#class-jsonrpcresponsepayload)*
-
-*Defined in [ethereum-types/src/index.ts:45](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L45)*
-
-**Parameters:**
-
-Name | Type |
------- | ------ |
-`payload` | [JSONRPCRequestPayload](#class-jsonrpcrequestpayload) |
-
-**Returns:** *[JSONRPCResponsePayload](#class-jsonrpcresponsepayload)*
-
-___
-
-### sendAsync
-
-▸ **sendAsync**(`payload`: [JSONRPCRequestPayload](_ethereum_types_src_index_.jsonrpcrequestpayload.md), `callback`: [JSONRPCErrorCallback](#jsonrpcerrorcallback)): *void*
-
-*Defined in [ethereum-types/src/index.ts:44](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L44)*
-
-**Parameters:**
-
-Name | Type |
------- | ------ |
-`payload` | [JSONRPCRequestPayload](#class-jsonrpcrequestpayload) |
-`callback` | [JSONRPCErrorCallback](#jsonrpcerrorcallback) |
-
-**Returns:** *void*
-
-
-
-
-# Interface: Web3JsV2Provider
-
-Web3.js version 2 provider interface
-This provider interface was used in a couple of Web3.js 1.0 beta releases
-before the first attempts to conform to EIP1193
-
-
-## Methods
-
-### send
-
-▸ **send**(`payload`: [JSONRPCRequestPayload](_ethereum_types_src_index_.jsonrpcrequestpayload.md), `callback`: [JSONRPCErrorCallback](#jsonrpcerrorcallback)): *void*
-
-*Defined in [ethereum-types/src/index.ts:54](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L54)*
-
-**Parameters:**
-
-Name | Type |
------- | ------ |
-`payload` | [JSONRPCRequestPayload](#class-jsonrpcrequestpayload) |
-`callback` | [JSONRPCErrorCallback](#jsonrpcerrorcallback) |
-
-**Returns:** *void*
-
-
-
-
-# Interface: Web3JsV3Provider
-
-Web3.js version 3 provider interface
-This provider interface was implemented with the hopes for conforming to the EIP1193 spec,
-however it does not conform entirely.
-
-
-## Methods
-
-### send
-
-▸ **send**(`method`: string, `params?`: any[]): *Promise‹any›*
-
-*Defined in [ethereum-types/src/index.ts:63](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L63)*
-
-**Parameters:**
-
-Name | Type |
------- | ------ |
-`method` | string |
-`params?` | any[] |
-
-**Returns:** *Promise‹any›*
-
-
-
-
-# Interface: ZeroExProvider
-
-The interface for the provider used internally by 0x libraries
-Any property we use from any SupportedProvider should we explicitly
-add here
-
-
-## Properties
-
-### `Optional` isMetaMask
-
-• **isMetaMask**? : *undefined | false | true*
-
-*Defined in [ethereum-types/src/index.ts:31](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L31)*
-
-___
-
-### `Optional` isParity
-
-• **isParity**? : *undefined | false | true*
-
-*Defined in [ethereum-types/src/index.ts:32](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L32)*
-
-___
-
-### `Optional` isZeroExProvider
-
-• **isZeroExProvider**? : *undefined | false | true*
-
-*Defined in [ethereum-types/src/index.ts:30](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L30)*
-
-## Methods
-
-### `Optional` enable
-
-▸ **enable**(): *Promise‹void›*
-
-*Defined in [ethereum-types/src/index.ts:34](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L34)*
-
-**Returns:** *Promise‹void›*
-
-___
-
-### sendAsync
-
-▸ **sendAsync**(`payload`: [JSONRPCRequestPayload](_ethereum_types_src_index_.jsonrpcrequestpayload.md), `callback`: [JSONRPCErrorCallback](#jsonrpcerrorcallback)): *void*
-
-*Defined in [ethereum-types/src/index.ts:35](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L35)*
-
-**Parameters:**
-
-Name | Type |
------- | ------ |
-`payload` | [JSONRPCRequestPayload](#class-jsonrpcrequestpayload) |
-`callback` | [JSONRPCErrorCallback](#jsonrpcerrorcallback) |
-
-**Returns:** *void*
-
-___
-
-### `Optional` stop
-
-▸ **stop**(): *void*
-
-*Defined in [ethereum-types/src/index.ts:33](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L33)*
-
-**Returns:** *void*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+# Enumeration: EnvVars
+## Enumeration members
+### SolidityCoverage
+• **SolidityCoverage**: = "SOLIDITY_COVERAGE"
+*Defined in [env.ts:5](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/env.ts#L5)*
+___
+### SolidityProfiler
+• **SolidityProfiler**: = "SOLIDITY_PROFILER"
+*Defined in [env.ts:6](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/env.ts#L6)*
+___
+### SolidityRevertTrace
+• **SolidityRevertTrace**: = "SOLIDITY_REVERT_TRACE"
+*Defined in [env.ts:7](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/env.ts#L7)*
+___
+### UnlimitedContractSize
+• **UnlimitedContractSize**: = "UNLIMITED_CONTRACT_SIZE"
+*Defined in [env.ts:9](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/env.ts#L9)*
+___
+### VerboseGanache
+• **VerboseGanache**: = "VERBOSE_GANACHE"
+*Defined in [env.ts:8](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/env.ts#L8)*
+
+# Interface: Web3Config
+## Properties
+### `Optional` blockTime
+• **blockTime**? : *undefined | number*
+*Defined in [web3_factory.ts:18](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/web3_factory.ts#L18)*
+___
+### `Optional` chainId
+• **chainId**? : *undefined | number*
+*Defined in [web3_factory.ts:23](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/web3_factory.ts#L23)*
+___
+### `Optional` fork
+• **fork**? : *undefined | string*
+*Defined in [web3_factory.ts:17](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/web3_factory.ts#L17)*
+___
+### `Optional` ganacheDatabasePath
+• **ganacheDatabasePath**? : *undefined | string*
+*Defined in [web3_factory.ts:15](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/web3_factory.ts#L15)*
+___
+### `Optional` gasLimit
+• **gasLimit**? : *undefined | number*
+*Defined in [web3_factory.ts:22](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/web3_factory.ts#L22)*
+___
+### `Optional` hardfork
+• **hardfork**? : *undefined | string*
+*Defined in [web3_factory.ts:21](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/web3_factory.ts#L21)*
+___
+### `Optional` locked
+• **locked**? : *undefined | false | true*
+*Defined in [web3_factory.ts:19](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/web3_factory.ts#L19)*
+___
+### `Optional` rpcUrl
+• **rpcUrl**? : *undefined | string*
+*Defined in [web3_factory.ts:14](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/web3_factory.ts#L14)*
+___
+### `Optional` shouldAllowUnlimitedContractSize
+• **shouldAllowUnlimitedContractSize**? : *undefined | false | true*
+*Defined in [web3_factory.ts:16](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/web3_factory.ts#L16)*
+___
+### `Optional` shouldThrowErrorsOnGanacheRPCResponse
+• **shouldThrowErrorsOnGanacheRPCResponse**? : *undefined | false | true*
+*Defined in [web3_factory.ts:13](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/web3_factory.ts#L13)*
+___
+### `Optional` shouldUseInProcessGanache
+• **shouldUseInProcessGanache**? : *undefined | false | true*
+*Defined in [web3_factory.ts:12](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/web3_factory.ts#L12)*
+___
+### `Optional` total_accounts
+• **total_accounts**? : *undefined | number*
+*Defined in [web3_factory.ts:11](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/web3_factory.ts#L11)*
+___
+### `Optional` unlocked_accounts
+• **unlocked_accounts**? : *string[]*
+*Defined in [web3_factory.ts:20](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/web3_factory.ts#L20)*
+
@@ -4852,19 +209,19 @@ ___
#### ▪ **callbackErrorReporter**: *object*
-*Defined in [dev-utils/src/callback_error_reporter.ts:8](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/callback_error_reporter.ts#L8)*
+*Defined in [callback_error_reporter.ts:8](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/callback_error_reporter.ts#L8)*
#### assertNodeCallbackError
-▸ **assertNodeCallbackError**(`done`: [DoneCallback](#donecallback), `errMsg`: string): *function*
+▸ **assertNodeCallbackError**(`done`: DoneCallback, `errMsg`: string): *function*
-*Defined in [dev-utils/src/callback_error_reporter.ts:59](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/callback_error_reporter.ts#L59)*
+*Defined in [callback_error_reporter.ts:59](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/callback_error_reporter.ts#L59)*
**Parameters:**
Name | Type |
------ | ------ |
-`done` | [DoneCallback](#donecallback) |
+`done` | DoneCallback |
`errMsg` | string |
**Returns:** *function*
@@ -4884,15 +241,15 @@ Name | Type |
#### reportNoErrorCallbackErrors
-▸ **reportNoErrorCallbackErrors**(`done`: [DoneCallback](#donecallback), `expectToBeCalledOnce`: boolean): *function*
+▸ **reportNoErrorCallbackErrors**(`done`: DoneCallback, `expectToBeCalledOnce`: boolean): *function*
-*Defined in [dev-utils/src/callback_error_reporter.ts:9](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/callback_error_reporter.ts#L9)*
+*Defined in [callback_error_reporter.ts:9](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/callback_error_reporter.ts#L9)*
**Parameters:**
Name | Type | Default |
------ | ------ | ------ |
-`done` | [DoneCallback](#donecallback) | - |
+`done` | DoneCallback | - |
`expectToBeCalledOnce` | boolean | true |
**Returns:** *function*
@@ -4919,15 +276,15 @@ Name | Type |
#### reportNodeCallbackErrors
-▸ **reportNodeCallbackErrors**(`done`: [DoneCallback](#donecallback), `expectToBeCalledOnce`: boolean): *function*
+▸ **reportNodeCallbackErrors**(`done`: DoneCallback, `expectToBeCalledOnce`: boolean): *function*
-*Defined in [dev-utils/src/callback_error_reporter.ts:32](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/callback_error_reporter.ts#L32)*
+*Defined in [callback_error_reporter.ts:32](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/callback_error_reporter.ts#L32)*
**Parameters:**
Name | Type | Default |
------ | ------ | ------ |
-`done` | [DoneCallback](#donecallback) | - |
+`done` | DoneCallback | - |
`expectToBeCalledOnce` | boolean | true |
**Returns:** *function*
@@ -4965,13 +322,13 @@ Name | Type |
#### ▪ **chaiSetup**: *object*
-*Defined in [dev-utils/src/chai_setup.ts:17](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/chai_setup.ts#L17)*
+*Defined in [chai_setup.ts:17](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/chai_setup.ts#L17)*
#### configure
▸ **configure**(): *void*
-*Defined in [dev-utils/src/chai_setup.ts:18](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/chai_setup.ts#L18)*
+*Defined in [chai_setup.ts:18](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/chai_setup.ts#L18)*
**Returns:** *void*
@@ -4987,31 +344,31 @@ Name | Type |
#### ▪ **constants**: *object*
-*Defined in [dev-utils/src/constants.ts:1](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/constants.ts#L1)*
+*Defined in [constants.ts:1](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/constants.ts#L1)*
#### GAS_LIMIT
• **GAS_LIMIT**: *number* = 12500000
-*Defined in [dev-utils/src/constants.ts:4](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/constants.ts#L4)*
+*Defined in [constants.ts:4](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/constants.ts#L4)*
#### RPC_PORT
• **RPC_PORT**: *number* = 8545
-*Defined in [dev-utils/src/constants.ts:3](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/constants.ts#L3)*
+*Defined in [constants.ts:3](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/constants.ts#L3)*
#### RPC_URL
• **RPC_URL**: *string* = "http://localhost:8545"
-*Defined in [dev-utils/src/constants.ts:2](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/constants.ts#L2)*
+*Defined in [constants.ts:2](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/constants.ts#L2)*
#### TESTRPC_FIRST_ADDRESS
• **TESTRPC_FIRST_ADDRESS**: *string* = "0x5409ed021d9299bf6814279a6a1411a7e866a631"
-*Defined in [dev-utils/src/constants.ts:5](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/constants.ts#L5)*
+*Defined in [constants.ts:5](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/constants.ts#L5)*
@@ -5025,13 +382,13 @@ Name | Type |
#### ▪ **env**: *object*
-*Defined in [dev-utils/src/env.ts:12](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/env.ts#L12)*
+*Defined in [env.ts:12](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/env.ts#L12)*
#### parseBoolean
▸ **parseBoolean**(`key`: string): *boolean*
-*Defined in [dev-utils/src/env.ts:13](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/env.ts#L13)*
+*Defined in [env.ts:13](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/env.ts#L13)*
**Parameters:**
@@ -5053,13 +410,13 @@ Name | Type |
#### ▪ **tokenUtils**: *object*
-*Defined in [dev-utils/src/token_utils.ts:14](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/token_utils.ts#L14)*
+*Defined in [token_utils.ts:14](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/token_utils.ts#L14)*
#### getDummyERC20TokenAddresses
▸ **getDummyERC20TokenAddresses**(): *string[]*
-*Defined in [dev-utils/src/token_utils.ts:15](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/token_utils.ts#L15)*
+*Defined in [token_utils.ts:15](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/token_utils.ts#L15)*
**Returns:** *string[]*
@@ -5067,7 +424,7 @@ Name | Type |
▸ **getDummyERC721TokenAddresses**(): *string[]*
-*Defined in [dev-utils/src/token_utils.ts:18](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/token_utils.ts#L18)*
+*Defined in [token_utils.ts:18](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/token_utils.ts#L18)*
**Returns:** *string[]*
@@ -5083,13 +440,13 @@ Name | Type |
#### ▪ **web3Factory**: *object*
-*Defined in [dev-utils/src/web3_factory.ts:30](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/web3_factory.ts#L30)*
+*Defined in [web3_factory.ts:26](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/web3_factory.ts#L26)*
#### getRpcProvider
▸ **getRpcProvider**(`config`: [Web3Config](#interface-web3config)): *Web3ProviderEngine*
-*Defined in [dev-utils/src/web3_factory.ts:31](https://github.com/0xProject/tools/blob/c64730cff/dev-utils/src/web3_factory.ts#L31)*
+*Defined in [web3_factory.ts:27](https://github.com/0xProject/tools/blob/56e66742a/dev-utils/src/web3_factory.ts#L27)*
**Parameters:**
@@ -5102,202 +459,3 @@ Name | Type | Default |
-
-
-
-## Type aliases
-
-#### AbiDefinition
-
-Ƭ **AbiDefinition**: *[FunctionAbi](_ethereum_types_src_index_.md#functionabi) | [EventAbi](#interface-eventabi) | [RevertErrorAbi](#interface-reverterrorabi)*
-
-*Defined in [ethereum-types/src/index.ts:80](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L80)*
-
-___
-
-### BlockParam
-
-Ƭ **BlockParam**: *[BlockParamLiteral](#enumeration-blockparamliteral) | number*
-
-*Defined in [ethereum-types/src/index.ts:507](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L507)*
-
-___
-
-### ConstructorStateMutability
-
-Ƭ **ConstructorStateMutability**: *"nonpayable" | "payable"*
-
-*Defined in [ethereum-types/src/index.ts:84](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L84)*
-
-___
-
-
-
-### ContractEventArg
-
-Ƭ **ContractEventArg**: *any*
-
-*Defined in [ethereum-types/src/index.ts:492](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L492)*
-
-___
-
-
-
-### EIP1193Event
-
-Ƭ **EIP1193Event**: *"accountsChanged" | "networkChanged" | "close" | "connect" | "notification"*
-
-*Defined in [ethereum-types/src/index.ts:70](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L70)*
-
-Interface for providers that conform to EIP 1193
-Source: https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1193.md
-
-___
-
-
-
-
-
-### FunctionAbi
-
-Ƭ **FunctionAbi**: *[MethodAbi](#interface-methodabi) | [ConstructorAbi](#interface-constructorabi) | [FallbackAbi](#interface-fallbackabi)*
-
-*Defined in [ethereum-types/src/index.ts:82](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L82)*
-
-___
-
-### JSONRPCErrorCallback
-
-Ƭ **JSONRPCErrorCallback**: *function*
-
-*Defined in [ethereum-types/src/index.ts:3](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L3)*
-
-#### Type declaration:
-
-▸ (`err`: Error | null, `result?`: [JSONRPCResponsePayload](#interface-jsonrpcresponsepayload)): *void*
-
-**Parameters:**
-
-Name | Type |
------- | ------ |
-`err` | Error | null |
-`result?` | [JSONRPCResponsePayload](#interface-jsonrpcresponsepayload) |
-
-___
-
-### LogTopic
-
-Ƭ **LogTopic**: *null | string | string[]*
-
-*Defined in [ethereum-types/src/index.ts:437](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L437)*
-
-___
-
-
-
-
-
-### RawLog
-
-Ƭ **RawLog**: *[LogEntry](#interface-logentry)*
-
-*Defined in [ethereum-types/src/index.ts:499](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L499)*
-
-___
-
-### StateMutability
-
-Ƭ **StateMutability**: *"pure" | "view" | [ConstructorStateMutability](#constructorstatemutability)*
-
-*Defined in [ethereum-types/src/index.ts:85](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L85)*
-
-___
-
-### SupportedProvider
-
-Ƭ **SupportedProvider**: *[Web3JsProvider](_ethereum_types_src_index_.md#web3jsprovider) | [GanacheProvider](#interface-ganacheprovider) | [EIP1193Provider](#interface-eip1193provider) | [ZeroExProvider](#interface-zeroexprovider)*
-
-*Defined in [ethereum-types/src/index.ts:9](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L9)*
-
-Do not create your own provider. Use an existing provider from a Web3 or ProviderEngine library
-Read more about Providers in the guides section of the 0x docs.
-
-___
-
-### TransactionReceiptStatus
-
-Ƭ **TransactionReceiptStatus**: *null | string | 0 | 1*
-
-*Defined in [ethereum-types/src/index.ts:469](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L469)*
-
-___
-
-
-
-### Web3JsProvider
-
-Ƭ **Web3JsProvider**: *[Web3JsV1Provider](#interface-web3jsv1provider) | [Web3JsV2Provider](#interface-web3jsv2provider) | [Web3JsV3Provider](#interface-web3jsv3provider)*
-
-*Defined in [ethereum-types/src/index.ts:11](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L11)*
-
-
-
-
-
-
-
-## Type aliases
-
-
-
-
-
-
-
-### DoneCallback
-
-Ƭ **DoneCallback**: *function*
-
-*Defined in [types/src/index.ts:137](https://github.com/0xProject/tools/blob/c64730cff/types/src/index.ts#L137)*
-
-#### Type declaration:
-
-▸ (`err?`: [Error](#error)): *void*
-
-**Parameters:**
-
-Name | Type |
------- | ------ |
-`err?` | [Error](#error) |
-
-___
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-## Type aliases
-
-
-
-
-
-
-
diff --git a/dev-utils/src/index.ts b/dev-utils/src/index.ts
index 9732dbd453..2d5b6b6c59 100644
--- a/dev-utils/src/index.ts
+++ b/dev-utils/src/index.ts
@@ -5,62 +5,3 @@ export { env, EnvVars } from './env';
export { callbackErrorReporter } from './callback_error_reporter';
export { chaiSetup } from './chai_setup';
export { tokenUtils } from './token_utils';
-export { Web3Wrapper, NodeType } from '@0x/web3-wrapper';
-export import Web3ProviderEngine = require('web3-provider-engine');
-export { DoneCallback } from '@0x/types';
-export { AbiDecoder, DecodedCalldata } from '@0x/utils';
-export {
- SupportedProvider,
- CallData,
- GethCallOverrides,
- TransactionReceiptWithDecodedLogs,
- BlockParam,
- TxData,
- BlockWithoutTransactionData,
- BlockWithTransactionData,
- FilterObject,
- LogEntry,
- Transaction,
- TransactionReceipt,
- TraceParams,
- TransactionTrace,
- JSONRPCRequestPayload,
- LogTopic,
- DecodedLogEntry,
- LogEntryEvent,
- TransactionReceiptStatus,
- StructLog,
- TxDataPayable,
- BlockParamLiteral,
- Web3JsProvider,
- GanacheProvider,
- EIP1193Provider,
- ZeroExProvider,
- AbiDefinition,
- DecodedLogArgs,
- LogWithDecodedArgs,
- RawLog,
- ContractEventArg,
- DecodedLogEntryEvent,
- EIP1193Event,
- JSONRPCErrorCallback,
- OpCode,
- FunctionAbi,
- EventAbi,
- RevertErrorAbi,
- Web3JsV1Provider,
- Web3JsV2Provider,
- Web3JsV3Provider,
- EventParameter,
- DataItem,
- JSONRPCResponsePayload,
- MethodAbi,
- ConstructorAbi,
- FallbackAbi,
- ConstructorStateMutability,
- TupleDataItem,
- JSONRPCResponseError,
- StateMutability,
- TxAccessList,
- TxAccessListWithGas,
-} from 'ethereum-types';
diff --git a/doc-gen-config.json b/doc-gen-config.json
index 21018a55f1..af89cb5b00 100644
--- a/doc-gen-config.json
+++ b/doc-gen-config.json
@@ -22,6 +22,9 @@
"Exclude": true,
"Ajv": true,
"#": "private types below",
+ "AbstractArtifactAdapter": true,
+ "CompilerOptions": true,
+ "DoneCallback": true,
"EIP712TypedData": true,
"ErrorCallback": true,
"JSONRPCErrorCallback": true,
@@ -30,7 +33,10 @@
"JSONRPCResponsePayload": true,
"MnemonicWalletSubproviderConfigs": true,
"NextCallback": true,
- "PartialTxParams": true
+ "PartialTxParams": true,
+ "StandardOutput": true,
+ "Web3ProviderEngine": true,
+ "Web3Wrapper": true
},
"ignoredExcessiveTypes": [
"NonceSubproviderErrors",
diff --git a/json-schemas/docs/reference.mdx b/json-schemas/docs/reference.mdx
index e66b9e628d..cc57f29e4f 100644
--- a/json-schemas/docs/reference.mdx
+++ b/json-schemas/docs/reference.mdx
@@ -9,7 +9,7 @@ A validator wrapping (AJV) [https://github.com/ajv-validator/ajv]
\+ **new SchemaValidator**(`newSchemas`: object[]): *[SchemaValidator](#class-schemavalidator)*
-*Defined in [schema_validator.ts:11](https://github.com/0xProject/tools/blob/c64730cff/json-schemas/src/schema_validator.ts#L11)*
+*Defined in [schema_validator.ts:11](https://github.com/0xProject/tools/blob/56e66742a/json-schemas/src/schema_validator.ts#L11)*
Instantiates a SchemaValidator instance
@@ -27,7 +27,7 @@ Name | Type | Default |
▸ **addSchema**(`schemaObjectOrArray`: object | object[]): *void*
-*Defined in [schema_validator.ts:26](https://github.com/0xProject/tools/blob/c64730cff/json-schemas/src/schema_validator.ts#L26)*
+*Defined in [schema_validator.ts:26](https://github.com/0xProject/tools/blob/56e66742a/json-schemas/src/schema_validator.ts#L26)*
Add a schema to the validator. All schemas and sub-schemas must be added to
the validator before the `validate` and `isValid` methods can be called with
@@ -47,7 +47,7 @@ ___
▸ **isValid**(`instance`: any, `schema`: object): *boolean*
-*Defined in [schema_validator.ts:59](https://github.com/0xProject/tools/blob/c64730cff/json-schemas/src/schema_validator.ts#L59)*
+*Defined in [schema_validator.ts:59](https://github.com/0xProject/tools/blob/56e66742a/json-schemas/src/schema_validator.ts#L59)*
Check whether an instance properly adheres to a JSON schema
@@ -68,7 +68,7 @@ ___
▸ **validate**(`instance`: any, `schema`: object): *Ajv*
-*Defined in [schema_validator.ts:49](https://github.com/0xProject/tools/blob/c64730cff/json-schemas/src/schema_validator.ts#L49)*
+*Defined in [schema_validator.ts:49](https://github.com/0xProject/tools/blob/56e66742a/json-schemas/src/schema_validator.ts#L49)*
Validate the JS object conforms to a specific JSON schema
diff --git a/json-schemas/src/index.ts b/json-schemas/src/index.ts
index 1112307d07..32f9c52ce2 100644
--- a/json-schemas/src/index.ts
+++ b/json-schemas/src/index.ts
@@ -1,6 +1,2 @@
export { SchemaValidator } from './schema_validator';
export { schemas } from './schemas';
-export { Ajv } from 'ajv';
-import * as AJV from 'ajv';
-export { AJV };
-module.exports.AJV = AJV;
diff --git a/sol-compiler/docs/reference.mdx b/sol-compiler/docs/reference.mdx
index 6cc245c9c2..c9bb81a985 100644
--- a/sol-compiler/docs/reference.mdx
+++ b/sol-compiler/docs/reference.mdx
@@ -10,7 +10,7 @@ to artifact files.
\+ **new Compiler**(`opts`: CompilerOptions): *[Compiler](#class-compiler)*
-*Defined in [sol-compiler/src/compiler.ts:132](https://github.com/0xProject/tools/blob/c64730cff/sol-compiler/src/compiler.ts#L132)*
+*Defined in [compiler.ts:132](https://github.com/0xProject/tools/blob/56e66742a/sol-compiler/src/compiler.ts#L132)*
Instantiates a new instance of the Compiler class.
@@ -30,7 +30,7 @@ An instance of the Compiler class.
▸ **compileAsync**(): *Promise‹void›*
-*Defined in [sol-compiler/src/compiler.ts:159](https://github.com/0xProject/tools/blob/c64730cff/sol-compiler/src/compiler.ts#L159)*
+*Defined in [compiler.ts:159](https://github.com/0xProject/tools/blob/56e66742a/sol-compiler/src/compiler.ts#L159)*
Compiles selected Solidity files found in `contractsDir` and writes JSON artifacts to `artifactsDir`.
@@ -42,7 +42,7 @@ ___
▸ **getCompilerOutputsAsync**(): *Promise‹StandardOutput[]›*
-*Defined in [sol-compiler/src/compiler.ts:176](https://github.com/0xProject/tools/blob/c64730cff/sol-compiler/src/compiler.ts#L176)*
+*Defined in [compiler.ts:176](https://github.com/0xProject/tools/blob/56e66742a/sol-compiler/src/compiler.ts#L176)*
Compiles Solidity files specified during instantiation, and returns the
compiler output given by solc. Return value is an array of outputs:
@@ -59,7 +59,7 @@ ___
▸ **getContractNamesToCompile**(): *string[]*
-*Defined in [sol-compiler/src/compiler.ts:226](https://github.com/0xProject/tools/blob/c64730cff/sol-compiler/src/compiler.ts#L226)*
+*Defined in [compiler.ts:226](https://github.com/0xProject/tools/blob/56e66742a/sol-compiler/src/compiler.ts#L226)*
Gets a list of contracts to compile.
@@ -71,7 +71,7 @@ ___
▸ **watchAsync**(): *Promise‹void›*
-*Defined in [sol-compiler/src/compiler.ts:188](https://github.com/0xProject/tools/blob/c64730cff/sol-compiler/src/compiler.ts#L188)*
+*Defined in [compiler.ts:188](https://github.com/0xProject/tools/blob/56e66742a/sol-compiler/src/compiler.ts#L188)*
Watch contracts in the current project directory and recompile on changes.
@@ -83,7 +83,7 @@ ___
▸ **getCompilerOptionsAsync**(`overrides`: Partial‹CompilerOptions›, `file`: string): *Promise‹CompilerOptions›*
-*Defined in [sol-compiler/src/compiler.ts:104](https://github.com/0xProject/tools/blob/c64730cff/sol-compiler/src/compiler.ts#L104)*
+*Defined in [compiler.ts:104](https://github.com/0xProject/tools/blob/56e66742a/sol-compiler/src/compiler.ts#L104)*
**Parameters:**
@@ -100,933 +100,6 @@ Name | Type | Default |
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-# Interface: CompilerOptions
-
-Options you can specify (as flags or in a compiler.json file) when invoking sol-compiler
-contractsDir: Directory containing your project's Solidity contracts. Can contain nested directories.
-artifactsDir: Directory where you want the generated artifacts.json written to
-compilerSettings: Desired settings to pass to the Solidity compiler during compilation.
-(http://solidity.readthedocs.io/en/v0.4.24/using-the-compiler.html#compiler-input-and-output-json-description)
-contracts: List of contract names you wish to compile, or alternatively ['*'] to compile all contracts in the
-specified directory.
-useDockerisedSolc: If set to true - sol-compiler will try calling a dockerized installations of solc to achieve faster compilation times. Otherwise and by default - solcjs will be used. Defaults to false.
-isOfflineMode: If set to true - sol-compiler will not fetch the list of solc releases from github. It will use the hardcoded list. Defaults to false.
-solcVersion: If you don't want to compile each contract with the Solidity version specified in-file, you can force all
-contracts to compile with the the version specified here.
-shouldSaveStandardInput: Write the standard JSON input in ${contractsDir}/${contractName}.input.json
-
-
-## Properties
-
-### `Optional` artifactsDir
-
-• **artifactsDir**? : *undefined | string*
-
-*Defined in [ethereum-types/src/index.ts:763](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L763)*
-
-___
-
-### `Optional` compilerSettings
-
-• **compilerSettings**? : *[CompilerSettings](#class-compilersettings)*
-
-*Defined in [ethereum-types/src/index.ts:764](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L764)*
-
-___
-
-### `Optional` contracts
-
-• **contracts**? : *string[] | "*"*
-
-*Defined in [ethereum-types/src/index.ts:765](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L765)*
-
-___
-
-### `Optional` contractsDir
-
-• **contractsDir**? : *undefined | string*
-
-*Defined in [ethereum-types/src/index.ts:762](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L762)*
-
-___
-
-### `Optional` isOfflineMode
-
-• **isOfflineMode**? : *undefined | false | true*
-
-*Defined in [ethereum-types/src/index.ts:767](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L767)*
-
-___
-
-### `Optional` shouldCompileIndependently
-
-• **shouldCompileIndependently**? : *undefined | false | true*
-
-*Defined in [ethereum-types/src/index.ts:770](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L770)*
-
-___
-
-### `Optional` shouldSaveStandardInput
-
-• **shouldSaveStandardInput**? : *undefined | false | true*
-
-*Defined in [ethereum-types/src/index.ts:769](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L769)*
-
-___
-
-### `Optional` solcVersion
-
-• **solcVersion**? : *undefined | string*
-
-*Defined in [ethereum-types/src/index.ts:768](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L768)*
-
-___
-
-### `Optional` useDockerisedSolc
-
-• **useDockerisedSolc**? : *undefined | false | true*
-
-*Defined in [ethereum-types/src/index.ts:766](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L766)*
-
-
-
-
-
-
-# Interface: CompilerSettings
-
-
-## Properties
-
-### `Optional` evmVersion
-
-• **evmVersion**? : *"homestead" | "tangerineWhistle" | "spuriousDragon" | "byzantium" | "constantinople"*
-
-*Defined in [ethereum-types/src/index.ts:720](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L720)*
-
-___
-
-### `Optional` libraries
-
-• **libraries**? : *undefined | object*
-
-*Defined in [ethereum-types/src/index.ts:722](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L722)*
-
-___
-
-### `Optional` metadata
-
-• **metadata**? : *[CompilerSettingsMetadata](#class-compilersettingsmetadata)*
-
-*Defined in [ethereum-types/src/index.ts:721](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L721)*
-
-___
-
-### `Optional` optimizer
-
-• **optimizer**? : *[OptimizerSettings](#class-optimizersettings)*
-
-*Defined in [ethereum-types/src/index.ts:719](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L719)*
-
-___
-
-### outputSelection
-
-• **outputSelection**: *object*
-
-*Defined in [ethereum-types/src/index.ts:727](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L727)*
-
-#### Type declaration:
-
-* \[ **fileName**: *string*\]: object
-
-* \[ **contractName**: *string*\]: [OutputField](#outputfield)[]
-
-___
-
-### `Optional` remappings
-
-• **remappings**? : *string[]*
-
-*Defined in [ethereum-types/src/index.ts:718](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L718)*
-
-
-
-
-# Interface: CompilerSettingsMetadata
-
-
-## Properties
-
-### useLiteralContent
-
-• **useLiteralContent**: *true*
-
-*Defined in [ethereum-types/src/index.ts:735](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L735)*
-
-
-
-
-# Interface: ConstructorAbi
-
-
-## Properties
-
-### inputs
-
-• **inputs**: *[DataItem](#class-dataitem)[]*
-
-*Defined in [ethereum-types/src/index.ts:103](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L103)*
-
-___
-
-### `Optional` payable
-
-• **payable**? : *undefined | false | true*
-
-*Defined in [ethereum-types/src/index.ts:104](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L104)*
-
-___
-
-### stateMutability
-
-• **stateMutability**: *[ConstructorStateMutability](#constructorstatemutability)*
-
-*Defined in [ethereum-types/src/index.ts:105](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L105)*
-
-___
-
-### type
-
-• **type**: *string*
-
-*Defined in [ethereum-types/src/index.ts:102](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L102)*
-
-
-
-
-
-
-
-
-
-
-# Interface: DataItem
-
-
-## Properties
-
-### `Optional` components
-
-• **components**? : *[DataItem](#class-dataitem)[]*
-
-*Defined in [ethereum-types/src/index.ts:138](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L138)*
-
-___
-
-### `Optional` internalType
-
-• **internalType**? : *undefined | string*
-
-*Defined in [ethereum-types/src/index.ts:137](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L137)*
-
-___
-
-### name
-
-• **name**: *string*
-
-*Defined in [ethereum-types/src/index.ts:135](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L135)*
-
-___
-
-### type
-
-• **type**: *string*
-
-*Defined in [ethereum-types/src/index.ts:136](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L136)*
-
-
-
-
-
-
-
-
-# Interface: DevdocOutput
-
-
-## Properties
-
-### `Optional` author
-
-• **author**? : *undefined | string*
-
-*Defined in [ethereum-types/src/index.ts:659](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L659)*
-
-___
-
-### methods
-
-• **methods**: *object*
-
-*Defined in [ethereum-types/src/index.ts:660](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L660)*
-
-#### Type declaration:
-
-* \[ **signature**: *string*\]: object
-
-* **details**? : *undefined | string*
-
-* **params**? : *undefined | object*
-
-* **return**? : *undefined | string*
-
-___
-
-### `Optional` title
-
-• **title**? : *undefined | string*
-
-*Defined in [ethereum-types/src/index.ts:658](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L658)*
-
-
-
-
-
-
-# Interface: EventAbi
-
-
-## Properties
-
-### anonymous
-
-• **anonymous**: *boolean*
-
-*Defined in [ethereum-types/src/index.ts:131](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L131)*
-
-___
-
-### inputs
-
-• **inputs**: *[EventParameter](#class-eventparameter)[]*
-
-*Defined in [ethereum-types/src/index.ts:130](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L130)*
-
-___
-
-### name
-
-• **name**: *string*
-
-*Defined in [ethereum-types/src/index.ts:129](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L129)*
-
-___
-
-### type
-
-• **type**: *string*
-
-*Defined in [ethereum-types/src/index.ts:128](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L128)*
-
-
-
-
-# Interface: EventParameter
-
-
-## Properties
-
-### `Optional` components
-
-• **components**? : *[DataItem](#class-dataitem)[]*
-
-*Inherited from [EventParameter](#interface-eventparameter).[components](#optional-components)*
-
-*Defined in [ethereum-types/src/index.ts:138](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L138)*
-
-___
-
-### indexed
-
-• **indexed**: *boolean*
-
-*Defined in [ethereum-types/src/index.ts:116](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L116)*
-
-___
-
-### `Optional` internalType
-
-• **internalType**? : *undefined | string*
-
-*Inherited from [EventParameter](#interface-eventparameter).[internalType](#optional-internaltype)*
-
-*Defined in [ethereum-types/src/index.ts:137](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L137)*
-
-___
-
-### name
-
-• **name**: *string*
-
-*Inherited from [EventParameter](#interface-eventparameter).[name](#name)*
-
-*Defined in [ethereum-types/src/index.ts:135](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L135)*
-
-___
-
-### type
-
-• **type**: *string*
-
-*Inherited from [EventParameter](#interface-eventparameter).[type](#type)*
-
-*Defined in [ethereum-types/src/index.ts:136](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L136)*
-
-
-
-
-# Interface: EvmBytecodeOutput
-
-
-## Properties
-
-### `Optional` linkReferences
-
-• **linkReferences**? : *[EvmBytecodeOutputLinkReferences](#class-evmbytecodeoutputlinkreferences)*
-
-*Defined in [ethereum-types/src/index.ts:646](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L646)*
-
-___
-
-### object
-
-• **object**: *string*
-
-*Defined in [ethereum-types/src/index.ts:647](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L647)*
-
-___
-
-### sourceMap
-
-• **sourceMap**: *string*
-
-*Defined in [ethereum-types/src/index.ts:648](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L648)*
-
-
-
-
-# Interface: EvmBytecodeOutputLinkReferences
-
-
-## Hierarchy
-
-* **EvmOutput**
-
-
-## Properties
-
-### bytecode
-
-• **bytecode**: *[EvmBytecodeOutput](#class-evmbytecodeoutput)*
-
-*Defined in [ethereum-types/src/index.ts:641](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L641)*
-
-___
-
-### deployedBytecode
-
-• **deployedBytecode**: *[EvmBytecodeOutput](#class-evmbytecodeoutput)*
-
-*Defined in [ethereum-types/src/index.ts:642](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L642)*
-
-
-
-
-# Interface: FallbackAbi
-
-
-## Properties
-
-### payable
-
-• **payable**: *boolean*
-
-*Defined in [ethereum-types/src/index.ts:112](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L112)*
-
-___
-
-### type
-
-• **type**: *string*
-
-*Defined in [ethereum-types/src/index.ts:111](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L111)*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-# Interface: MethodAbi
-
-
-## Properties
-
-### `Optional` constant
-
-• **constant**? : *undefined | false | true*
-
-*Defined in [ethereum-types/src/index.ts:94](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L94)*
-
-___
-
-### inputs
-
-• **inputs**: *[DataItem](#class-dataitem)[]*
-
-*Defined in [ethereum-types/src/index.ts:92](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L92)*
-
-___
-
-### name
-
-• **name**: *string*
-
-*Defined in [ethereum-types/src/index.ts:91](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L91)*
-
-___
-
-### outputs
-
-• **outputs**: *[DataItem](#class-dataitem)[]*
-
-*Defined in [ethereum-types/src/index.ts:93](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L93)*
-
-___
-
-### `Optional` payable
-
-• **payable**? : *undefined | false | true*
-
-*Defined in [ethereum-types/src/index.ts:96](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L96)*
-
-___
-
-### stateMutability
-
-• **stateMutability**: *[StateMutability](#statemutability)*
-
-*Defined in [ethereum-types/src/index.ts:95](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L95)*
-
-___
-
-### type
-
-• **type**: *string*
-
-*Defined in [ethereum-types/src/index.ts:90](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L90)*
-
-
-
-
-# Interface: OptimizerSettings
-
-
-## Properties
-
-### enabled
-
-• **enabled**: *boolean*
-
-*Defined in [ethereum-types/src/index.ts:739](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L739)*
-
-___
-
-### `Optional` runs
-
-• **runs**? : *undefined | number*
-
-*Defined in [ethereum-types/src/index.ts:740](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L740)*
-
-
-
-
-
-
-
-
-# Interface: RevertErrorAbi
-
-
-## Properties
-
-### `Optional` arguments
-
-• **arguments**? : *[DataItem](#class-dataitem)[]*
-
-*Defined in [ethereum-types/src/index.ts:122](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L122)*
-
-___
-
-### name
-
-• **name**: *string*
-
-*Defined in [ethereum-types/src/index.ts:121](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L121)*
-
-___
-
-### type
-
-• **type**: *"error"*
-
-*Defined in [ethereum-types/src/index.ts:120](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L120)*
-
-
-
-
-# Interface: SolcError
-
-
-## Properties
-
-### component
-
-• **component**: *"general" | "ewasm"*
-
-*Defined in [ethereum-types/src/index.ts:628](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L628)*
-
-___
-
-### `Optional` formattedMessage
-
-• **formattedMessage**? : *undefined | string*
-
-*Defined in [ethereum-types/src/index.ts:631](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L631)*
-
-___
-
-### message
-
-• **message**: *string*
-
-*Defined in [ethereum-types/src/index.ts:630](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L630)*
-
-___
-
-### severity
-
-• **severity**: *[ErrorSeverity](#errorseverity)*
-
-*Defined in [ethereum-types/src/index.ts:629](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L629)*
-
-___
-
-### `Optional` sourceLocation
-
-• **sourceLocation**? : *[SourceLocation](#class-sourcelocation)*
-
-*Defined in [ethereum-types/src/index.ts:626](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L626)*
-
-___
-
-### type
-
-• **type**: *[ErrorType](#errortype)*
-
-*Defined in [ethereum-types/src/index.ts:627](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L627)*
-
-
-
-
-
-
-
-
-# Interface: StandardContractOutput
-
-
-## Properties
-
-### abi
-
-• **abi**: *[ContractAbi](#contractabi)*
-
-*Defined in [ethereum-types/src/index.ts:588](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L588)*
-
-___
-
-### `Optional` devdoc
-
-• **devdoc**? : *[DevdocOutput](#class-devdocoutput)*
-
-*Defined in [ethereum-types/src/index.ts:590](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L590)*
-
-___
-
-### evm
-
-• **evm**: *[EvmOutput](#class-evmoutput)*
-
-*Defined in [ethereum-types/src/index.ts:589](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L589)*
-
-
-
-
-# Interface: StandardOutput
-
-
-## Properties
-
-### contracts
-
-• **contracts**: *object*
-
-*Defined in [ethereum-types/src/index.ts:602](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L602)*
-
-#### Type declaration:
-
-* \[ **fileName**: *string*\]: object
-
-* \[ **contractName**: *string*\]: [StandardContractOutput](#class-standardcontractoutput)
-
-___
-
-### errors
-
-• **errors**: *[SolcError](#class-solcerror)[]*
-
-*Defined in [ethereum-types/src/index.ts:594](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L594)*
-
-___
-
-### sources
-
-• **sources**: *object*
-
-*Defined in [ethereum-types/src/index.ts:595](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L595)*
-
-#### Type declaration:
-
-* \[ **fileName**: *string*\]: object
-
-* **ast**? : *undefined | object*
-
-* **id**: *number*
-
-* **legacyAST**? : *undefined | object*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-# Interface: TupleDataItem
-
-
-## Properties
-
-### components
-
-• **components**: *[DataItem](#class-dataitem)[]*
-
-*Overrides [EventParameter](_ethereum_types_src_index_.eventparameter.md).[components](#optional-components)*
-
-*Defined in [ethereum-types/src/index.ts:142](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L142)*
-
-___
-
-### `Optional` internalType
-
-• **internalType**? : *undefined | string*
-
-*Inherited from [EventParameter](#interface-eventparameter).[internalType](#optional-internaltype)*
-
-*Defined in [ethereum-types/src/index.ts:137](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L137)*
-
-___
-
-### name
-
-• **name**: *string*
-
-*Inherited from [EventParameter](#interface-eventparameter).[name](#name)*
-
-*Defined in [ethereum-types/src/index.ts:135](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L135)*
-
-___
-
-### type
-
-• **type**: *string*
-
-*Inherited from [EventParameter](#interface-eventparameter).[type](#type)*
-
-*Defined in [ethereum-types/src/index.ts:136](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L136)*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-## Type aliases
-
-### AbiDefinition
-
-Ƭ **AbiDefinition**: *[FunctionAbi](_ethereum_types_src_index_.md#functionabi) | [EventAbi](#interface-eventabi) | [RevertErrorAbi](#interface-reverterrorabi)*
-
-*Defined in [ethereum-types/src/index.ts:80](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L80)*
-
-___
-
-
-
-### ConstructorStateMutability
-
-Ƭ **ConstructorStateMutability**: *"nonpayable" | "payable"*
-
-*Defined in [ethereum-types/src/index.ts:84](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L84)*
-
-___
-
-### ContractAbi
-
-Ƭ **ContractAbi**: *[AbiDefinition](#abidefinition)[]*
-
-*Defined in [ethereum-types/src/index.ts:78](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L78)*
-
-___
-
-
-
-
-
-
-
-### ErrorSeverity
-
-Ƭ **ErrorSeverity**: *"error" | "warning"*
-
-*Defined in [ethereum-types/src/index.ts:623](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L623)*
-
-___
-
-### ErrorType
-
-Ƭ **ErrorType**: *"JSONError" | "IOError" | "ParserError" | "DocstringParsingError" | "SyntaxError" | "DeclarationError" | "TypeError" | "UnimplementedFeatureError" | "InternalCompilerError" | "Exception" | "CompilerError" | "FatalError" | "Warning"*
-
-*Defined in [ethereum-types/src/index.ts:609](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L609)*
-
-___
-
-### FunctionAbi
-
-Ƭ **FunctionAbi**: *[MethodAbi](#interface-methodabi) | [ConstructorAbi](#interface-constructorabi) | [FallbackAbi](#interface-fallbackabi)*
-
-*Defined in [ethereum-types/src/index.ts:82](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L82)*
-
-___
-
-
-
-
-
-### OutputField
-
-Ƭ **OutputField**: *"*" | "ast" | "legacyAST" | "abi" | "devdoc" | "userdoc" | "metadata" | "ir" | "evm.assembly" | "evm.legacyAssembly" | "evm.bytecode.object" | "evm.bytecode.opcodes" | "evm.bytecode.sourceMap" | "evm.bytecode.linkReferences" | "evm.deployedBytecode.object" | "evm.deployedBytecode.opcodes" | "evm.deployedBytecode.sourceMap" | "evm.deployedBytecode.linkReferences" | "evm.methodIdentifiers" | "evm.gasEstimates" | "ewasm.wast" | "ewasm.wasm"*
-
-*Defined in [ethereum-types/src/index.ts:549](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L549)*
-
-___
-
-### ParamDescription
-
-Ƭ **ParamDescription**: *string*
-
-*Defined in [ethereum-types/src/index.ts:585](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L585)*
-
-___
-
-
-
-### StateMutability
-
-Ƭ **StateMutability**: *"pure" | "view" | [ConstructorStateMutability](#constructorstatemutability)*
-
-*Defined in [ethereum-types/src/index.ts:85](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L85)*
-
-___
-
-
-
-
-
-
-
-
-
-
-
-
## Type aliases
@@ -1035,7 +108,7 @@ ___
• **ALL_FILES_IDENTIFIER**: *"*"* = "*"
-*Defined in [sol-compiler/src/compiler.ts:51](https://github.com/0xProject/tools/blob/c64730cff/sol-compiler/src/compiler.ts#L51)*
+*Defined in [compiler.ts:51](https://github.com/0xProject/tools/blob/56e66742a/sol-compiler/src/compiler.ts#L51)*
diff --git a/sol-compiler/src/index.ts b/sol-compiler/src/index.ts
index 38e3b15987..2a9c746813 100644
--- a/sol-compiler/src/index.ts
+++ b/sol-compiler/src/index.ts
@@ -1,32 +1 @@
export { Compiler } from './compiler';
-export {
- AbiDefinition,
- CompilerOptions,
- CompilerSettings,
- DataItem,
- TupleDataItem,
- DevdocOutput,
- ErrorSeverity,
- ErrorType,
- EventAbi,
- EventParameter,
- EvmBytecodeOutput,
- EvmBytecodeOutputLinkReferences,
- EvmOutput,
- FallbackAbi,
- FunctionAbi,
- MethodAbi,
- ConstructorAbi,
- ConstructorStateMutability,
- ContractAbi,
- OutputField,
- CompilerSettingsMetadata,
- OptimizerSettings,
- ParamDescription,
- SolcError,
- StandardContractOutput,
- StandardOutput,
- StateMutability,
- SourceLocation,
- RevertErrorAbi,
-} from 'ethereum-types';
diff --git a/sol-coverage/docs/reference.mdx b/sol-coverage/docs/reference.mdx
index 852f1d85a0..85c17f7108 100644
--- a/sol-coverage/docs/reference.mdx
+++ b/sol-coverage/docs/reference.mdx
@@ -12,7 +12,7 @@ It's used to compute your code coverage while running solidity tests.
*Overrides void*
-*Defined in [sol-coverage/src/coverage_subprovider.ts:44](https://github.com/0xProject/tools/blob/c64730cff/sol-coverage/src/coverage_subprovider.ts#L44)*
+*Defined in [sol-coverage/src/coverage_subprovider.ts:44](https://github.com/0xProject/tools/blob/56e66742a/sol-coverage/src/coverage_subprovider.ts#L44)*
Instantiates a CoverageSubprovider instance
@@ -134,7 +134,7 @@ ___
▸ **writeCoverageAsync**(): *Promise‹void›*
-*Defined in [sol-coverage/src/coverage_subprovider.ts:78](https://github.com/0xProject/tools/blob/c64730cff/sol-coverage/src/coverage_subprovider.ts#L78)*
+*Defined in [sol-coverage/src/coverage_subprovider.ts:78](https://github.com/0xProject/tools/blob/56e66742a/sol-coverage/src/coverage_subprovider.ts#L78)*
Write the test coverage results to a file in Istanbul format.
@@ -152,7 +152,7 @@ Write the test coverage results to a file in Istanbul format.
▸ **collectContractsDataAsync**(): *Promise‹[ContractData](#interface-contractdata)[]›*
-*Defined in [sol-tracing-utils/src/artifact_adapters/abstract_artifact_adapter.ts:4](https://github.com/0xProject/tools/blob/c64730cff/sol-tracing-utils/src/artifact_adapters/abstract_artifact_adapter.ts#L4)*
+*Defined in [sol-tracing-utils/src/artifact_adapters/abstract_artifact_adapter.ts:4](https://github.com/0xProject/tools/blob/56e66742a/sol-tracing-utils/src/artifact_adapters/abstract_artifact_adapter.ts#L4)*
**Returns:** *Promise‹[ContractData](#interface-contractdata)[]›*
@@ -168,7 +168,7 @@ Write the test coverage results to a file in Istanbul format.
\+ **new SolCompilerArtifactAdapter**(`artifactsPath?`: undefined | string, `sourcesPath?`: undefined | string): *[SolCompilerArtifactAdapter](#class-solcompilerartifactadapter)*
-*Defined in [sol-tracing-utils/src/artifact_adapters/sol_compiler_artifact_adapter.ts:25](https://github.com/0xProject/tools/blob/c64730cff/sol-tracing-utils/src/artifact_adapters/sol_compiler_artifact_adapter.ts#L25)*
+*Defined in [sol-tracing-utils/src/artifact_adapters/sol_compiler_artifact_adapter.ts:25](https://github.com/0xProject/tools/blob/56e66742a/sol-tracing-utils/src/artifact_adapters/sol_compiler_artifact_adapter.ts#L25)*
Instantiates a SolCompilerArtifactAdapter
@@ -189,7 +189,7 @@ Name | Type | Description |
*Overrides [AbstractArtifactAdapter](_sol_tracing_utils_src_artifact_adapters_abstract_artifact_adapter_.abstractartifactadapter.md).[collectContractsDataAsync](#abstract-collectcontractsdataasync)*
-*Defined in [sol-tracing-utils/src/artifact_adapters/sol_compiler_artifact_adapter.ts:52](https://github.com/0xProject/tools/blob/c64730cff/sol-tracing-utils/src/artifact_adapters/sol_compiler_artifact_adapter.ts#L52)*
+*Defined in [sol-tracing-utils/src/artifact_adapters/sol_compiler_artifact_adapter.ts:52](https://github.com/0xProject/tools/blob/56e66742a/sol-tracing-utils/src/artifact_adapters/sol_compiler_artifact_adapter.ts#L52)*
**Returns:** *Promise‹[ContractData](#interface-contractdata)[]›*
@@ -205,7 +205,7 @@ Name | Type | Description |
\+ **new TruffleArtifactAdapter**(`projectRoot`: string, `solcVersion`: string): *[TruffleArtifactAdapter](#class-truffleartifactadapter)*
-*Defined in [sol-tracing-utils/src/artifact_adapters/truffle_artifact_adapter.ts:29](https://github.com/0xProject/tools/blob/c64730cff/sol-tracing-utils/src/artifact_adapters/truffle_artifact_adapter.ts#L29)*
+*Defined in [sol-tracing-utils/src/artifact_adapters/truffle_artifact_adapter.ts:29](https://github.com/0xProject/tools/blob/56e66742a/sol-tracing-utils/src/artifact_adapters/truffle_artifact_adapter.ts#L29)*
Instantiates a TruffleArtifactAdapter
@@ -226,7 +226,7 @@ Name | Type | Description |
*Overrides [AbstractArtifactAdapter](_sol_tracing_utils_src_artifact_adapters_abstract_artifact_adapter_.abstractartifactadapter.md).[collectContractsDataAsync](#abstract-collectcontractsdataasync)*
-*Defined in [sol-tracing-utils/src/artifact_adapters/truffle_artifact_adapter.ts:40](https://github.com/0xProject/tools/blob/c64730cff/sol-tracing-utils/src/artifact_adapters/truffle_artifact_adapter.ts#L40)*
+*Defined in [sol-tracing-utils/src/artifact_adapters/truffle_artifact_adapter.ts:40](https://github.com/0xProject/tools/blob/56e66742a/sol-tracing-utils/src/artifact_adapters/truffle_artifact_adapter.ts#L40)*
**Returns:** *Promise‹[ContractData](#interface-contractdata)[]›*
@@ -243,246 +243,81 @@ Name | Type | Description |
+
+
+
+# Interface: SourceCodes
+## Hierarchy
+* **SourceRange**
+## Properties
+### fileName
+• **fileName**: *string*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-# Interface: JSONRPCResponseError
-
-
-## Properties
-
-### code
-
-• **code**: *number*
-
-*Defined in [ethereum-types/src/index.ts:337](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L337)*
+*Defined in [sol-tracing-utils/src/types.ts:10](https://github.com/0xProject/tools/blob/56e66742a/sol-tracing-utils/src/types.ts#L10)*
___
-### message
+### location
-• **message**: *string*
+• **location**: *[SingleFileSourceRange](#class-singlefilesourcerange)*
-*Defined in [ethereum-types/src/index.ts:336](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L336)*
+*Defined in [sol-tracing-utils/src/types.ts:9](https://github.com/0xProject/tools/blob/56e66742a/sol-tracing-utils/src/types.ts#L9)*
-# Interface: JSONRPCResponsePayload
-
+# Interface: Sources
-## Properties
-### `Optional` error
+## Hierarchy
-• **error**? : *[JSONRPCResponseError](#class-jsonrpcresponseerror)*
+* **SourceSnippet**
-*Defined in [ethereum-types/src/index.ts:344](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L344)*
-___
+## Properties
-### id
+### fileName
-• **id**: *number*
+• **fileName**: *string*
-*Defined in [ethereum-types/src/index.ts:342](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L342)*
+*Defined in [sol-tracing-utils/src/types.ts:136](https://github.com/0xProject/tools/blob/56e66742a/sol-tracing-utils/src/types.ts#L136)*
___
-### jsonrpc
+### range
-• **jsonrpc**: *string*
+• **range**: *[SingleFileSourceRange](#class-singlefilesourcerange)*
-*Defined in [ethereum-types/src/index.ts:343](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L343)*
+*Defined in [sol-tracing-utils/src/types.ts:137](https://github.com/0xProject/tools/blob/56e66742a/sol-tracing-utils/src/types.ts#L137)*
___
-### result
+### source
-• **result**: *any*
+• **source**: *string*
-*Defined in [ethereum-types/src/index.ts:341](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L341)*
+*Defined in [sol-tracing-utils/src/types.ts:135](https://github.com/0xProject/tools/blob/56e66742a/sol-tracing-utils/src/types.ts#L135)*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-## Type aliases
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -501,7 +336,7 @@ ___
Ƭ **CoverageSubproviderPartialConfig**: *Partial‹[CoverageSubproviderConfig](#interface-coveragesubproviderconfig)›*
-*Defined in [sol-coverage/src/coverage_subprovider.ts:31](https://github.com/0xProject/tools/blob/c64730cff/sol-coverage/src/coverage_subprovider.ts#L31)*
+*Defined in [sol-coverage/src/coverage_subprovider.ts:31](https://github.com/0xProject/tools/blob/56e66742a/sol-coverage/src/coverage_subprovider.ts#L31)*
## Object literals
@@ -509,19 +344,19 @@ ___
#### ▪ **DEFAULT_COVERAGE_SUBPROVIDER_CONFIG**: *object*
-*Defined in [sol-coverage/src/coverage_subprovider.ts:33](https://github.com/0xProject/tools/blob/c64730cff/sol-coverage/src/coverage_subprovider.ts#L33)*
+*Defined in [sol-coverage/src/coverage_subprovider.ts:33](https://github.com/0xProject/tools/blob/56e66742a/sol-coverage/src/coverage_subprovider.ts#L33)*
#### ignoreFilesGlobs
• **ignoreFilesGlobs**: *never[]* = []
-*Defined in [sol-coverage/src/coverage_subprovider.ts:35](https://github.com/0xProject/tools/blob/c64730cff/sol-coverage/src/coverage_subprovider.ts#L35)*
+*Defined in [sol-coverage/src/coverage_subprovider.ts:35](https://github.com/0xProject/tools/blob/56e66742a/sol-coverage/src/coverage_subprovider.ts#L35)*
#### isVerbose
• **isVerbose**: *boolean* = true
-*Defined in [sol-coverage/src/coverage_subprovider.ts:34](https://github.com/0xProject/tools/blob/c64730cff/sol-coverage/src/coverage_subprovider.ts#L34)*
+*Defined in [sol-coverage/src/coverage_subprovider.ts:34](https://github.com/0xProject/tools/blob/56e66742a/sol-coverage/src/coverage_subprovider.ts#L34)*
diff --git a/sol-coverage/src/index.ts b/sol-coverage/src/index.ts
index 4a7ea9fabe..bbe70ffaf3 100644
--- a/sol-coverage/src/index.ts
+++ b/sol-coverage/src/index.ts
@@ -12,7 +12,3 @@ export {
SourceCodes,
Sources,
} from '@0x/sol-tracing-utils';
-
-export { JSONRPCRequestPayload, JSONRPCResponsePayload, JSONRPCResponseError } from 'ethereum-types';
-
-export import Web3ProviderEngine = require('web3-provider-engine');
diff --git a/sol-profiler/docs/reference.mdx b/sol-profiler/docs/reference.mdx
index 065aacb3aa..5621fef0c7 100644
--- a/sol-profiler/docs/reference.mdx
+++ b/sol-profiler/docs/reference.mdx
@@ -12,7 +12,7 @@ ProfilerSubprovider is used to profile Solidity code while running tests.
*Overrides void*
-*Defined in [sol-profiler/src/profiler_subprovider.ts:30](https://github.com/0xProject/tools/blob/c64730cff/sol-profiler/src/profiler_subprovider.ts#L30)*
+*Defined in [sol-profiler/src/profiler_subprovider.ts:30](https://github.com/0xProject/tools/blob/56e66742a/sol-profiler/src/profiler_subprovider.ts#L30)*
Instantiates a ProfilerSubprovider instance
@@ -134,7 +134,7 @@ ___
▸ **writeProfilerOutputAsync**(): *Promise‹void›*
-*Defined in [sol-profiler/src/profiler_subprovider.ts:104](https://github.com/0xProject/tools/blob/c64730cff/sol-profiler/src/profiler_subprovider.ts#L104)*
+*Defined in [sol-profiler/src/profiler_subprovider.ts:104](https://github.com/0xProject/tools/blob/56e66742a/sol-profiler/src/profiler_subprovider.ts#L104)*
Write the test profiler results to a file in Istanbul format.
@@ -142,353 +142,6 @@ Write the test profiler results to a file in Istanbul format.
-
-# Class: AbstractArtifactAdapter
-
-
-## Methods
-
-### `Abstract` collectContractsDataAsync
-
-▸ **collectContractsDataAsync**(): *Promise‹[ContractData](#interface-contractdata)[]›*
-
-*Defined in [sol-tracing-utils/src/artifact_adapters/abstract_artifact_adapter.ts:4](https://github.com/0xProject/tools/blob/c64730cff/sol-tracing-utils/src/artifact_adapters/abstract_artifact_adapter.ts#L4)*
-
-**Returns:** *Promise‹[ContractData](#interface-contractdata)[]›*
-
-
-
-
-# Class: SolCompilerArtifactAdapter
-
-
-## Constructors
-
-
-
-\+ **new SolCompilerArtifactAdapter**(`artifactsPath?`: undefined | string, `sourcesPath?`: undefined | string): *[SolCompilerArtifactAdapter](#class-solcompilerartifactadapter)*
-
-*Defined in [sol-tracing-utils/src/artifact_adapters/sol_compiler_artifact_adapter.ts:25](https://github.com/0xProject/tools/blob/c64730cff/sol-tracing-utils/src/artifact_adapters/sol_compiler_artifact_adapter.ts#L25)*
-
-Instantiates a SolCompilerArtifactAdapter
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`artifactsPath?` | undefined | string | Path to your artifacts directory |
-`sourcesPath?` | undefined | string | Path to your contract sources directory |
-
-**Returns:** *[SolCompilerArtifactAdapter](#class-solcompilerartifactadapter)*
-
-## Methods
-
-### collectContractsDataAsync
-
-▸ **collectContractsDataAsync**(): *Promise‹[ContractData](#interface-contractdata)[]›*
-
-*Overrides [AbstractArtifactAdapter](_sol_tracing_utils_src_artifact_adapters_abstract_artifact_adapter_.abstractartifactadapter.md).[collectContractsDataAsync](#abstract-collectcontractsdataasync)*
-
-*Defined in [sol-tracing-utils/src/artifact_adapters/sol_compiler_artifact_adapter.ts:52](https://github.com/0xProject/tools/blob/c64730cff/sol-tracing-utils/src/artifact_adapters/sol_compiler_artifact_adapter.ts#L52)*
-
-**Returns:** *Promise‹[ContractData](#interface-contractdata)[]›*
-
-
-
-
-# Class: TruffleArtifactAdapter
-
-
-## Constructors
-
-
-
-\+ **new TruffleArtifactAdapter**(`projectRoot`: string, `solcVersion`: string): *[TruffleArtifactAdapter](#class-truffleartifactadapter)*
-
-*Defined in [sol-tracing-utils/src/artifact_adapters/truffle_artifact_adapter.ts:29](https://github.com/0xProject/tools/blob/c64730cff/sol-tracing-utils/src/artifact_adapters/truffle_artifact_adapter.ts#L29)*
-
-Instantiates a TruffleArtifactAdapter
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`projectRoot` | string | Path to the truffle project's root directory |
-`solcVersion` | string | Solidity version with which to compile all the contracts |
-
-**Returns:** *[TruffleArtifactAdapter](#class-truffleartifactadapter)*
-
-## Methods
-
-### collectContractsDataAsync
-
-▸ **collectContractsDataAsync**(): *Promise‹[ContractData](#interface-contractdata)[]›*
-
-*Overrides [AbstractArtifactAdapter](_sol_tracing_utils_src_artifact_adapters_abstract_artifact_adapter_.abstractartifactadapter.md).[collectContractsDataAsync](#abstract-collectcontractsdataasync)*
-
-*Defined in [sol-tracing-utils/src/artifact_adapters/truffle_artifact_adapter.ts:40](https://github.com/0xProject/tools/blob/c64730cff/sol-tracing-utils/src/artifact_adapters/truffle_artifact_adapter.ts#L40)*
-
-**Returns:** *Promise‹[ContractData](#interface-contractdata)[]›*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-# Interface: JSONRPCResponseError
-
-
-## Properties
-
-### code
-
-• **code**: *number*
-
-*Defined in [ethereum-types/src/index.ts:337](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L337)*
-
-___
-
-### message
-
-• **message**: *string*
-
-*Defined in [ethereum-types/src/index.ts:336](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L336)*
-
-
-
-
-# Interface: JSONRPCResponsePayload
-
-
-## Properties
-
-### `Optional` error
-
-• **error**? : *[JSONRPCResponseError](#class-jsonrpcresponseerror)*
-
-*Defined in [ethereum-types/src/index.ts:344](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L344)*
-
-___
-
-### id
-
-• **id**: *number*
-
-*Defined in [ethereum-types/src/index.ts:342](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L342)*
-
-___
-
-### jsonrpc
-
-• **jsonrpc**: *string*
-
-*Defined in [ethereum-types/src/index.ts:343](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L343)*
-
-___
-
-### result
-
-• **result**: *any*
-
-*Defined in [ethereum-types/src/index.ts:341](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L341)*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-## Type aliases
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -497,9 +150,9 @@ ___
### `Const` profilerHandler
-▸ **profilerHandler**(`contractData`: ContractData, `subtrace`: [Subtrace](#subtrace), `pcToSourceRange`: object, `fileIndex`: number): *Coverage*
+▸ **profilerHandler**(`contractData`: ContractData, `subtrace`: Subtrace, `pcToSourceRange`: object, `fileIndex`: number): *Coverage*
-*Defined in [sol-profiler/src/profiler_subprovider.ts:118](https://github.com/0xProject/tools/blob/c64730cff/sol-profiler/src/profiler_subprovider.ts#L118)*
+*Defined in [sol-profiler/src/profiler_subprovider.ts:118](https://github.com/0xProject/tools/blob/56e66742a/sol-profiler/src/profiler_subprovider.ts#L118)*
Computed partial coverage for a single file & subtrace for the purposes of
gas profiling.
@@ -509,7 +162,7 @@ gas profiling.
Name | Type | Description |
------ | ------ | ------ |
`contractData` | ContractData | Contract metadata (source, srcMap, bytecode) |
-`subtrace` | [Subtrace](#subtrace) | A subset of a transcation/call trace that was executed within that contract |
+`subtrace` | Subtrace | A subset of a transcation/call trace that was executed within that contract |
`pcToSourceRange` | object | A mapping from program counters to source ranges |
`fileIndex` | number | Index of a file to compute coverage for |
@@ -520,28 +173,3 @@ Partial istanbul coverage for that file & subtrace
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-## Type aliases
-
-
-
-
-
-
-
-
-
diff --git a/sol-profiler/src/index.ts b/sol-profiler/src/index.ts
index dcc4518524..e082fbba27 100644
--- a/sol-profiler/src/index.ts
+++ b/sol-profiler/src/index.ts
@@ -1,15 +1,3 @@
-export {
- AbstractArtifactAdapter,
- SolCompilerArtifactAdapter,
- TruffleArtifactAdapter,
- ContractData,
- SourceCodes,
- Sources,
-} from '@0x/sol-tracing-utils';
-
// HACK: ProfilerSubprovider is a hacky way to do profiling using coverage tools. Not production ready
export { ProfilerSubprovider } from './profiler_subprovider';
-export { JSONRPCRequestPayload, JSONRPCResponsePayload, JSONRPCResponseError } from 'ethereum-types';
-
-export import Web3ProviderEngine = require('web3-provider-engine');
diff --git a/sol-trace/docs/reference.mdx b/sol-trace/docs/reference.mdx
index a2e282b571..50bb53a1cc 100644
--- a/sol-trace/docs/reference.mdx
+++ b/sol-trace/docs/reference.mdx
@@ -12,7 +12,7 @@ It is used to report call stack traces whenever a revert occurs.
*Overrides void*
-*Defined in [sol-trace/src/revert_trace_subprovider.ts:27](https://github.com/0xProject/tools/blob/c64730cff/sol-trace/src/revert_trace_subprovider.ts#L27)*
+*Defined in [sol-trace/src/revert_trace_subprovider.ts:27](https://github.com/0xProject/tools/blob/56e66742a/sol-trace/src/revert_trace_subprovider.ts#L27)*
Instantiates a RevertTraceSubprovider instance
@@ -130,380 +130,8 @@ Stops trace collection
-
-# Class: AbstractArtifactAdapter
-
-
-## Methods
-
-### `Abstract` collectContractsDataAsync
-
-▸ **collectContractsDataAsync**(): *Promise‹[ContractData](#interface-contractdata)[]›*
-
-*Defined in [sol-tracing-utils/src/artifact_adapters/abstract_artifact_adapter.ts:4](https://github.com/0xProject/tools/blob/c64730cff/sol-tracing-utils/src/artifact_adapters/abstract_artifact_adapter.ts#L4)*
-
-**Returns:** *Promise‹[ContractData](#interface-contractdata)[]›*
-
-
-
-
-# Class: SolCompilerArtifactAdapter
-
-
-## Constructors
-
-
-
-\+ **new SolCompilerArtifactAdapter**(`artifactsPath?`: undefined | string, `sourcesPath?`: undefined | string): *[SolCompilerArtifactAdapter](#class-solcompilerartifactadapter)*
-
-*Defined in [sol-tracing-utils/src/artifact_adapters/sol_compiler_artifact_adapter.ts:25](https://github.com/0xProject/tools/blob/c64730cff/sol-tracing-utils/src/artifact_adapters/sol_compiler_artifact_adapter.ts#L25)*
-
-Instantiates a SolCompilerArtifactAdapter
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`artifactsPath?` | undefined | string | Path to your artifacts directory |
-`sourcesPath?` | undefined | string | Path to your contract sources directory |
-
-**Returns:** *[SolCompilerArtifactAdapter](#class-solcompilerartifactadapter)*
-
-## Methods
-
-### collectContractsDataAsync
-
-▸ **collectContractsDataAsync**(): *Promise‹[ContractData](#interface-contractdata)[]›*
-
-*Overrides [AbstractArtifactAdapter](_sol_tracing_utils_src_artifact_adapters_abstract_artifact_adapter_.abstractartifactadapter.md).[collectContractsDataAsync](#abstract-collectcontractsdataasync)*
-
-*Defined in [sol-tracing-utils/src/artifact_adapters/sol_compiler_artifact_adapter.ts:52](https://github.com/0xProject/tools/blob/c64730cff/sol-tracing-utils/src/artifact_adapters/sol_compiler_artifact_adapter.ts#L52)*
-
-**Returns:** *Promise‹[ContractData](#interface-contractdata)[]›*
-
-
-
-
-# Class: TruffleArtifactAdapter
-
-
-## Constructors
-
-
-
-\+ **new TruffleArtifactAdapter**(`projectRoot`: string, `solcVersion`: string): *[TruffleArtifactAdapter](#class-truffleartifactadapter)*
-
-*Defined in [sol-tracing-utils/src/artifact_adapters/truffle_artifact_adapter.ts:29](https://github.com/0xProject/tools/blob/c64730cff/sol-tracing-utils/src/artifact_adapters/truffle_artifact_adapter.ts#L29)*
-
-Instantiates a TruffleArtifactAdapter
-
-**Parameters:**
-
-Name | Type | Description |
------- | ------ | ------ |
-`projectRoot` | string | Path to the truffle project's root directory |
-`solcVersion` | string | Solidity version with which to compile all the contracts |
-
-**Returns:** *[TruffleArtifactAdapter](#class-truffleartifactadapter)*
-
-## Methods
-
-### collectContractsDataAsync
-
-▸ **collectContractsDataAsync**(): *Promise‹[ContractData](#interface-contractdata)[]›*
-
-*Overrides [AbstractArtifactAdapter](_sol_tracing_utils_src_artifact_adapters_abstract_artifact_adapter_.abstractartifactadapter.md).[collectContractsDataAsync](#abstract-collectcontractsdataasync)*
-
-*Defined in [sol-tracing-utils/src/artifact_adapters/truffle_artifact_adapter.ts:40](https://github.com/0xProject/tools/blob/c64730cff/sol-tracing-utils/src/artifact_adapters/truffle_artifact_adapter.ts#L40)*
-
-**Returns:** *Promise‹[ContractData](#interface-contractdata)[]›*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-# Interface: JSONRPCResponseError
-
-
-## Properties
-
-### code
-
-• **code**: *number*
-
-*Defined in [ethereum-types/src/index.ts:337](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L337)*
-
-___
-
-### message
-
-• **message**: *string*
-
-*Defined in [ethereum-types/src/index.ts:336](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L336)*
-
-
-
-
-# Interface: JSONRPCResponsePayload
-
-
-## Properties
-
-### `Optional` error
-
-• **error**? : *[JSONRPCResponseError](#class-jsonrpcresponseerror)*
-
-*Defined in [ethereum-types/src/index.ts:344](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L344)*
-
-___
-
-### id
-
-• **id**: *number*
-
-*Defined in [ethereum-types/src/index.ts:342](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L342)*
-
-___
-
-### jsonrpc
-
-• **jsonrpc**: *string*
-
-*Defined in [ethereum-types/src/index.ts:343](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L343)*
-
-___
-
-### result
-
-• **result**: *any*
-
-*Defined in [ethereum-types/src/index.ts:341](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L341)*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-## Type aliases
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-## Type aliases
-
-
-
-
-
-
-
-
-
diff --git a/sol-trace/src/index.ts b/sol-trace/src/index.ts
index 52474f6e59..9562bc8931 100644
--- a/sol-trace/src/index.ts
+++ b/sol-trace/src/index.ts
@@ -1,14 +1 @@
-export {
- AbstractArtifactAdapter,
- TruffleArtifactAdapter,
- SolCompilerArtifactAdapter,
- ContractData,
- SourceCodes,
- Sources,
-} from '@0x/sol-tracing-utils';
-
export { RevertTraceSubprovider } from './revert_trace_subprovider';
-
-export { JSONRPCRequestPayload, JSONRPCResponsePayload, JSONRPCResponseError } from 'ethereum-types';
-
-export import Web3ProviderEngine = require('web3-provider-engine');
diff --git a/subproviders/docs/reference.mdx b/subproviders/docs/reference.mdx
index e0550677c1..c67cc0c7b0 100644
--- a/subproviders/docs/reference.mdx
+++ b/subproviders/docs/reference.mdx
@@ -12,7 +12,7 @@ It intercepts the `eth_accounts` JSON RPC requests and never returns any address
*Inherited from [Subprovider](#interface-subprovider).[emitPayloadAsync](#emitpayloadasync)*
-*Defined in [subproviders/subprovider.ts:55](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/subprovider.ts#L55)*
+*Defined in [subproviders/subprovider.ts:55](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/subprovider.ts#L55)*
Emits a JSON RPC payload that will then be handled by the ProviderEngine instance
this subprovider is a part of. The payload will cascade down the subprovider middleware
@@ -36,7 +36,7 @@ ___
*Overrides [Subprovider](_subproviders_subprovider_.subprovider.md).[handleRequest](#abstract-handlerequest)*
-*Defined in [subproviders/empty_wallet_subprovider.ts:19](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/empty_wallet_subprovider.ts#L19)*
+*Defined in [subproviders/empty_wallet_subprovider.ts:19](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/empty_wallet_subprovider.ts#L19)*
This method conforms to the web3-provider-engine interface.
It is called internally by the ProviderEngine when it is this subproviders
@@ -77,7 +77,7 @@ ___
*Inherited from [Subprovider](#interface-subprovider).[setEngine](#setengine)*
-*Defined in [subproviders/subprovider.ts:67](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/subprovider.ts#L67)*
+*Defined in [subproviders/subprovider.ts:67](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/subprovider.ts#L67)*
Set's the subprovider's engine to the ProviderEngine it is added to.
This is only called within the ProviderEngine source code, do not call
@@ -106,7 +106,7 @@ It intercepts all JSON RPC requests and relays them to an in-process ganache ins
\+ **new GanacheSubprovider**(`opts`: [GanacheOpts](#interface-ganacheopts)): *[GanacheSubprovider](#class-ganachesubprovider)*
-*Defined in [subproviders/ganache.ts:35](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/ganache.ts#L35)*
+*Defined in [subproviders/ganache.ts:35](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/ganache.ts#L35)*
Instantiates a GanacheSubprovider
@@ -126,7 +126,7 @@ Name | Type | Description |
*Inherited from [Subprovider](#interface-subprovider).[emitPayloadAsync](#emitpayloadasync)*
-*Defined in [subproviders/subprovider.ts:55](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/subprovider.ts#L55)*
+*Defined in [subproviders/subprovider.ts:55](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/subprovider.ts#L55)*
Emits a JSON RPC payload that will then be handled by the ProviderEngine instance
this subprovider is a part of. The payload will cascade down the subprovider middleware
@@ -150,7 +150,7 @@ ___
*Overrides [Subprovider](_subproviders_subprovider_.subprovider.md).[handleRequest](#abstract-handlerequest)*
-*Defined in [subproviders/ganache.ts:80](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/ganache.ts#L80)*
+*Defined in [subproviders/ganache.ts:80](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/ganache.ts#L80)*
This method conforms to the web3-provider-engine interface.
It is called internally by the ProviderEngine when it is this subproviders
@@ -191,7 +191,7 @@ ___
*Inherited from [Subprovider](#interface-subprovider).[setEngine](#setengine)*
-*Defined in [subproviders/subprovider.ts:67](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/subprovider.ts#L67)*
+*Defined in [subproviders/subprovider.ts:67](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/subprovider.ts#L67)*
Set's the subprovider's engine to the ProviderEngine it is added to.
This is only called within the ProviderEngine source code, do not call
@@ -221,7 +221,7 @@ all requests with accounts derived from the supplied mnemonic.
\+ **new MnemonicWalletSubprovider**(`config`: MnemonicWalletSubproviderConfigs): *[MnemonicWalletSubprovider](#class-mnemonicwalletsubprovider)*
-*Defined in [subproviders/mnemonic_wallet.ts:30](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/mnemonic_wallet.ts#L30)*
+*Defined in [subproviders/mnemonic_wallet.ts:30](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/mnemonic_wallet.ts#L30)*
Instantiates a MnemonicWalletSubprovider. Defaults to baseDerivationPath set to `44'/60'/0'/0`.
This is the default in TestRPC/Ganache, it can be overridden if desired.
@@ -242,7 +242,7 @@ MnemonicWalletSubprovider instance
• **chainId**: *number*
-*Defined in [subproviders/mnemonic_wallet.ts:25](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/mnemonic_wallet.ts#L25)*
+*Defined in [subproviders/mnemonic_wallet.ts:25](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/mnemonic_wallet.ts#L25)*
___
@@ -250,7 +250,7 @@ ___
• **hardfork**? : *Hardfork*
-*Defined in [subproviders/mnemonic_wallet.ts:26](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/mnemonic_wallet.ts#L26)*
+*Defined in [subproviders/mnemonic_wallet.ts:26](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/mnemonic_wallet.ts#L26)*
## Methods
@@ -260,7 +260,7 @@ ___
*Inherited from [Subprovider](#interface-subprovider).[emitPayloadAsync](#emitpayloadasync)*
-*Defined in [subproviders/subprovider.ts:55](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/subprovider.ts#L55)*
+*Defined in [subproviders/subprovider.ts:55](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/subprovider.ts#L55)*
Emits a JSON RPC payload that will then be handled by the ProviderEngine instance
this subprovider is a part of. The payload will cascade down the subprovider middleware
@@ -284,7 +284,7 @@ ___
*Overrides void*
-*Defined in [subproviders/mnemonic_wallet.ts:75](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/mnemonic_wallet.ts#L75)*
+*Defined in [subproviders/mnemonic_wallet.ts:75](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/mnemonic_wallet.ts#L75)*
Retrieve the accounts associated with the mnemonic.
This method is implicitly called when issuing a `eth_accounts` JSON RPC request
@@ -306,7 +306,7 @@ ___
▸ **getPath**(): *string*
-*Defined in [subproviders/mnemonic_wallet.ts:57](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/mnemonic_wallet.ts#L57)*
+*Defined in [subproviders/mnemonic_wallet.ts:57](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/mnemonic_wallet.ts#L57)*
Retrieve the set derivation path
@@ -324,7 +324,7 @@ ___
*Overrides [Subprovider](_subproviders_subprovider_.subprovider.md).[handleRequest](#abstract-handlerequest)*
-*Defined in [subproviders/base_wallet_subprovider.ts:37](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/base_wallet_subprovider.ts#L37)*
+*Defined in [subproviders/base_wallet_subprovider.ts:37](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/base_wallet_subprovider.ts#L37)*
This method conforms to the web3-provider-engine interface.
It is called internally by the ProviderEngine when it is this subproviders
@@ -365,7 +365,7 @@ ___
*Inherited from [Subprovider](#interface-subprovider).[setEngine](#setengine)*
-*Defined in [subproviders/subprovider.ts:67](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/subprovider.ts#L67)*
+*Defined in [subproviders/subprovider.ts:67](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/subprovider.ts#L67)*
Set's the subprovider's engine to the ProviderEngine it is added to.
This is only called within the ProviderEngine source code, do not call
@@ -385,7 +385,7 @@ ___
▸ **setPath**(`baseDerivationPath`: string): *void*
-*Defined in [subproviders/mnemonic_wallet.ts:64](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/mnemonic_wallet.ts#L64)*
+*Defined in [subproviders/mnemonic_wallet.ts:64](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/mnemonic_wallet.ts#L64)*
Set a desired derivation path when computing the available user addresses
@@ -405,7 +405,7 @@ ___
*Overrides void*
-*Defined in [subproviders/mnemonic_wallet.ts:107](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/mnemonic_wallet.ts#L107)*
+*Defined in [subproviders/mnemonic_wallet.ts:107](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/mnemonic_wallet.ts#L107)*
Sign a personal Ethereum signed message. The signing account will be the account
associated with the provided address. If you've added the MnemonicWalletSubprovider to
@@ -432,7 +432,7 @@ ___
*Overrides void*
-*Defined in [subproviders/mnemonic_wallet.ts:89](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/mnemonic_wallet.ts#L89)*
+*Defined in [subproviders/mnemonic_wallet.ts:89](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/mnemonic_wallet.ts#L89)*
Signs a transaction with the account specificed by the `from` field in txParams.
If you've added this Subprovider to your app's provider, you can simply send
@@ -457,7 +457,7 @@ ___
*Overrides void*
-*Defined in [subproviders/mnemonic_wallet.ts:127](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/mnemonic_wallet.ts#L127)*
+*Defined in [subproviders/mnemonic_wallet.ts:127](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/mnemonic_wallet.ts#L127)*
Sign an EIP712 Typed Data message. The signing account will be the account
associated with the provided address. If you've added this MnemonicWalletSubprovider to
@@ -492,7 +492,7 @@ all requests with the supplied Ethereum private key.
\+ **new PrivateKeyWalletSubprovider**(`privateKey`: string, `chainId`: number, `hardfork?`: Hardfork): *[PrivateKeyWalletSubprovider](#class-privatekeywalletsubprovider)*
-*Defined in [subproviders/private_key_wallet.ts:25](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/private_key_wallet.ts#L25)*
+*Defined in [subproviders/private_key_wallet.ts:25](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/private_key_wallet.ts#L25)*
Instantiates a PrivateKeyWalletSubprovider.
@@ -516,7 +516,7 @@ PrivateKeyWalletSubprovider instance
*Inherited from [Subprovider](#interface-subprovider).[emitPayloadAsync](#emitpayloadasync)*
-*Defined in [subproviders/subprovider.ts:55](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/subprovider.ts#L55)*
+*Defined in [subproviders/subprovider.ts:55](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/subprovider.ts#L55)*
Emits a JSON RPC payload that will then be handled by the ProviderEngine instance
this subprovider is a part of. The payload will cascade down the subprovider middleware
@@ -540,7 +540,7 @@ ___
*Overrides void*
-*Defined in [subproviders/private_key_wallet.ts:45](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/private_key_wallet.ts#L45)*
+*Defined in [subproviders/private_key_wallet.ts:45](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/private_key_wallet.ts#L45)*
Retrieve the account associated with the supplied private key.
This method is implicitly called when issuing a `eth_accounts` JSON RPC request
@@ -560,7 +560,7 @@ ___
*Overrides [Subprovider](_subproviders_subprovider_.subprovider.md).[handleRequest](#abstract-handlerequest)*
-*Defined in [subproviders/base_wallet_subprovider.ts:37](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/base_wallet_subprovider.ts#L37)*
+*Defined in [subproviders/base_wallet_subprovider.ts:37](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/base_wallet_subprovider.ts#L37)*
This method conforms to the web3-provider-engine interface.
It is called internally by the ProviderEngine when it is this subproviders
@@ -601,7 +601,7 @@ ___
*Inherited from [Subprovider](#interface-subprovider).[setEngine](#setengine)*
-*Defined in [subproviders/subprovider.ts:67](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/subprovider.ts#L67)*
+*Defined in [subproviders/subprovider.ts:67](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/subprovider.ts#L67)*
Set's the subprovider's engine to the ProviderEngine it is added to.
This is only called within the ProviderEngine source code, do not call
@@ -623,7 +623,7 @@ ___
*Overrides void*
-*Defined in [subproviders/private_key_wallet.ts:77](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/private_key_wallet.ts#L77)*
+*Defined in [subproviders/private_key_wallet.ts:77](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/private_key_wallet.ts#L77)*
Sign a personal Ethereum signed message. The signing address will be calculated from the private key.
The address must be provided it must match the address calculated from the private key.
@@ -650,7 +650,7 @@ ___
*Overrides void*
-*Defined in [subproviders/private_key_wallet.ts:56](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/private_key_wallet.ts#L56)*
+*Defined in [subproviders/private_key_wallet.ts:56](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/private_key_wallet.ts#L56)*
Sign a transaction with the private key. If you've added this Subprovider to your
app's provider, you can simply send an `eth_sendTransaction` JSON RPC request, and
@@ -675,7 +675,7 @@ ___
*Overrides void*
-*Defined in [subproviders/private_key_wallet.ts:104](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/private_key_wallet.ts#L104)*
+*Defined in [subproviders/private_key_wallet.ts:104](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/private_key_wallet.ts#L104)*
Sign an EIP712 Typed Data message. The signing address will be calculated from the private key.
The address must be provided it must match the address calculated from the private key.
@@ -709,7 +709,7 @@ It forwards on JSON RPC requests to the supplied `rpcUrl` endpoint
\+ **new RPCSubprovider**(`rpcUrl`: string, `requestTimeoutMs`: number): *[RPCSubprovider](#class-rpcsubprovider)*
-*Defined in [subproviders/rpc_subprovider.ts:15](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/rpc_subprovider.ts#L15)*
+*Defined in [subproviders/rpc_subprovider.ts:15](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/rpc_subprovider.ts#L15)*
**Parameters:**
@@ -728,7 +728,7 @@ Name | Type | Default | Description |
*Inherited from [Subprovider](#interface-subprovider).[emitPayloadAsync](#emitpayloadasync)*
-*Defined in [subproviders/subprovider.ts:55](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/subprovider.ts#L55)*
+*Defined in [subproviders/subprovider.ts:55](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/subprovider.ts#L55)*
Emits a JSON RPC payload that will then be handled by the ProviderEngine instance
this subprovider is a part of. The payload will cascade down the subprovider middleware
@@ -752,7 +752,7 @@ ___
*Overrides [Subprovider](_subproviders_subprovider_.subprovider.md).[handleRequest](#abstract-handlerequest)*
-*Defined in [subproviders/rpc_subprovider.ts:36](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/rpc_subprovider.ts#L36)*
+*Defined in [subproviders/rpc_subprovider.ts:36](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/rpc_subprovider.ts#L36)*
This method conforms to the web3-provider-engine interface.
It is called internally by the ProviderEngine when it is this subproviders
@@ -793,7 +793,7 @@ ___
*Inherited from [Subprovider](#interface-subprovider).[setEngine](#setengine)*
-*Defined in [subproviders/subprovider.ts:67](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/subprovider.ts#L67)*
+*Defined in [subproviders/subprovider.ts:67](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/subprovider.ts#L67)*
Set's the subprovider's engine to the ProviderEngine it is added to.
This is only called within the ProviderEngine source code, do not call
@@ -822,7 +822,7 @@ This one has an async/await `emitPayloadAsync` and also defined types.
▸ **emitPayloadAsync**(`payload`: Partial‹JSONRPCRequestPayloadWithMethod›): *Promise‹JSONRPCResponsePayload›*
-*Defined in [subproviders/subprovider.ts:55](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/subprovider.ts#L55)*
+*Defined in [subproviders/subprovider.ts:55](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/subprovider.ts#L55)*
Emits a JSON RPC payload that will then be handled by the ProviderEngine instance
this subprovider is a part of. The payload will cascade down the subprovider middleware
@@ -844,7 +844,7 @@ ___
▸ **handleRequest**(`payload`: JSONRPCRequestPayload, `next`: function, `end`: function): *Promise‹void›*
-*Defined in [subproviders/subprovider.ts:42](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/subprovider.ts#L42)*
+*Defined in [subproviders/subprovider.ts:42](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/subprovider.ts#L42)*
**Parameters:**
@@ -879,7 +879,7 @@ ___
▸ **setEngine**(`engine`: Web3ProviderEngine): *void*
-*Defined in [subproviders/subprovider.ts:67](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/subproviders/subprovider.ts#L67)*
+*Defined in [subproviders/subprovider.ts:67](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/subproviders/subprovider.ts#L67)*
Set's the subprovider's engine to the ProviderEngine it is added to.
This is only called within the ProviderEngine source code, do not call
@@ -931,7 +931,7 @@ Name | Type | Description |
▸ **prependSubprovider**(`provider`: Web3ProviderEngine, `subprovider`: [Subprovider](#class-subprovider)): *void*
-*Defined in [utils/subprovider_utils.ts:10](https://github.com/0xProject/tools/blob/c64730cff/subproviders/src/utils/subprovider_utils.ts#L10)*
+*Defined in [utils/subprovider_utils.ts:10](https://github.com/0xProject/tools/blob/56e66742a/subproviders/src/utils/subprovider_utils.ts#L10)*
Prepends a subprovider to a provider
diff --git a/web3-wrapper/docs/reference.mdx b/web3-wrapper/docs/reference.mdx
index a7d7017dd6..328c80b88f 100644
--- a/web3-wrapper/docs/reference.mdx
+++ b/web3-wrapper/docs/reference.mdx
@@ -10,7 +10,7 @@ signature from the ABI and attempts to decode the logs using it.
\+ **new AbiDecoder**(`abiArrays`: [AbiDefinition](#abidefinition)[][]): *[AbiDecoder](#class-abidecoder)*
-*Defined in [utils/src/abi_decoder.ts:39](https://github.com/0xProject/tools/blob/c64730cff/utils/src/abi_decoder.ts#L39)*
+*Defined in [utils/src/abi_decoder.ts:39](https://github.com/0xProject/tools/blob/56e66742a/utils/src/abi_decoder.ts#L39)*
Instantiate an AbiDecoder
@@ -30,7 +30,7 @@ AbiDecoder instance
▸ **addABI**(`abiArray`: [AbiDefinition](#abidefinition)[], `contractName?`: undefined | string): *void*
-*Defined in [utils/src/abi_decoder.ts:150](https://github.com/0xProject/tools/blob/c64730cff/utils/src/abi_decoder.ts#L150)*
+*Defined in [utils/src/abi_decoder.ts:150](https://github.com/0xProject/tools/blob/56e66742a/utils/src/abi_decoder.ts#L150)*
Adds a set of ABI definitions, after which calldata and logs targeting these ABI's can be decoded.
Additional properties can be included to disambiguate similar ABI's. For example, if two functions
@@ -52,7 +52,7 @@ ___
▸ **decodeCalldataOrThrow**(`calldata`: string, `contractName?`: undefined | string): *DecodedCalldata*
-*Defined in [utils/src/abi_decoder.ts:110](https://github.com/0xProject/tools/blob/c64730cff/utils/src/abi_decoder.ts#L110)*
+*Defined in [utils/src/abi_decoder.ts:110](https://github.com/0xProject/tools/blob/56e66742a/utils/src/abi_decoder.ts#L110)*
Decodes calldata for a known ABI.
@@ -73,7 +73,7 @@ ___
▸ **tryToDecodeLogOrNoop**<**ArgsType**>(`log`: LogEntry): *LogWithDecodedArgs‹ArgsType› | [RawLog](#rawlog)*
-*Defined in [utils/src/abi_decoder.ts:55](https://github.com/0xProject/tools/blob/c64730cff/utils/src/abi_decoder.ts#L55)*
+*Defined in [utils/src/abi_decoder.ts:55](https://github.com/0xProject/tools/blob/56e66742a/utils/src/abi_decoder.ts#L55)*
Attempt to decode a log given the ABI's the AbiDecoder knows about.
@@ -105,7 +105,7 @@ An alternative to the Web3.js library that provides a consistent, clean, promise
\+ **new Web3Wrapper**(`supportedProvider`: [SupportedProvider](#supportedprovider), `callAndTxnDefaults`: Partial‹CallData›): *[Web3Wrapper](#class-web3wrapper)*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:146](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L146)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:146](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L146)*
Instantiates a new Web3Wrapper.
@@ -126,7 +126,7 @@ An instance of the Web3Wrapper class.
• **abiDecoder**: *AbiDecoder*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:56](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L56)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:56](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L56)*
___
@@ -134,7 +134,7 @@ ___
• **isZeroExWeb3Wrapper**: *boolean* = true
-*Defined in [web3-wrapper/src/web3_wrapper.ts:55](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L55)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:55](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L55)*
Flag to check if this instance is of type Web3Wrapper
@@ -144,7 +144,7 @@ Flag to check if this instance is of type Web3Wrapper
▸ **awaitTransactionMinedAsync**(`txHash`: string, `pollingIntervalMs`: number, `timeoutMs?`: undefined | number): *Promise‹TransactionReceiptWithDecodedLogs›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:664](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L664)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:664](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L664)*
Waits for a transaction to be mined and returns the transaction receipt.
Note that just because a transaction was mined does not mean it was
@@ -170,7 +170,7 @@ ___
▸ **awaitTransactionSuccessAsync**(`txHash`: string, `pollingIntervalMs`: number, `timeoutMs?`: undefined | number): *Promise‹TransactionReceiptWithDecodedLogs›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:739](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L739)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:739](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L739)*
Waits for a transaction to be mined and returns the transaction receipt.
Unlike awaitTransactionMinedAsync, it will throw if the receipt has a
@@ -196,7 +196,7 @@ ___
▸ **callAsync**(`callData`: CallData, `defaultBlock?`: [BlockParam](#blockparam)): *Promise‹string›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:628](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L628)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:628](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L628)*
Call a smart contract method at a given block height
@@ -217,7 +217,7 @@ ___
▸ **createAccessListAsync**(`callData`: CallData, `defaultBlock?`: [BlockParam](#blockparam)): *Promise‹TxAccessListWithGas›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:595](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L595)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:595](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L595)*
Generate an access list for an ethereum call and also compute the gas used.
@@ -238,7 +238,7 @@ ___
▸ **doesContractExistAtAddressAsync**(`address`: string): *Promise‹boolean›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:310](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L310)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:310](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L310)*
Check if a contract exists at a given address
@@ -258,7 +258,7 @@ ___
▸ **estimateGasAsync**(`txData`: Partial‹TxData›): *Promise‹number›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:582](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L582)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:582](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L582)*
Calculate the estimated gas cost for a given transaction
@@ -278,7 +278,7 @@ ___
▸ **getAccountNonceAsync**(`address`: string, `defaultBlock?`: [BlockParam](#blockparam)): *Promise‹number›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:412](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L412)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:412](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L412)*
Fetches the nonce for an account (transaction count for EOAs).
@@ -299,7 +299,7 @@ ___
▸ **getAvailableAddressesAsync**(): *Promise‹string[]›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:493](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L493)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:493](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L493)*
Retrieve the user addresses available through the backing provider
@@ -313,7 +313,7 @@ ___
▸ **getBalanceInWeiAsync**(`owner`: string, `defaultBlock?`: [BlockParam](#blockparam)): *Promise‹BigNumber›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:291](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L291)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:291](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L291)*
Retrieves an accounts Ether balance in wei
@@ -334,7 +334,7 @@ ___
▸ **getBaseFeePerGasAsync**(): *Promise‹BigNumber›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:233](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L233)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:233](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L233)*
Fetch the base fee per gas for the pending block.
@@ -346,7 +346,7 @@ ___
▸ **getBlockIfExistsAsync**(`blockParam`: string | [BlockParam](#blockparam)): *Promise‹BlockWithoutTransactionData | undefined›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:433](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L433)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:433](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L433)*
Fetch a specific Ethereum block without transaction data
@@ -367,7 +367,7 @@ ___
▸ **getBlockNumberAsync**(): *Promise‹number›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:398](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L398)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:398](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L398)*
Fetches the latest block number
@@ -381,7 +381,7 @@ ___
▸ **getBlockTimestampAsync**(`blockParam`: string | [BlockParam](#blockparam)): *Promise‹number›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:481](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L481)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:481](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L481)*
Fetch a block's timestamp
@@ -401,7 +401,7 @@ ___
▸ **getBlockWithTransactionDataAsync**(`blockParam`: string | [BlockParam](#blockparam)): *Promise‹BlockWithTransactionData›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:459](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L459)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:459](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L459)*
Fetch a specific Ethereum block with transaction data
@@ -421,7 +421,7 @@ ___
▸ **getChainIdAsync**(): *Promise‹number›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:217](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L217)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:217](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L217)*
Fetches the chainId of the backing Ethereum node
@@ -435,7 +435,7 @@ ___
▸ **getContractCodeAsync**(`address`: string, `defaultBlock?`: [BlockParam](#blockparam)): *Promise‹string›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:323](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L323)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:323](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L323)*
Gets the contract code by address
@@ -456,7 +456,7 @@ ___
▸ **getContractDefaults**(): *Partial‹CallData› | undefined*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:165](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L165)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:165](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L165)*
Get the contract defaults set to the Web3Wrapper instance
@@ -470,7 +470,7 @@ ___
▸ **getGasPriceAsync**(): *Promise‹BigNumber›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:226](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L226)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:226](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L226)*
Fetch the current gas price.
For post-London hardfork chains, this will be baseFeePerGas + maxPriorityFeePerGas
@@ -483,7 +483,7 @@ ___
▸ **getLogsAsync**(`filter`: FilterObject): *Promise‹LogEntry[]›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:549](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L549)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:549](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L549)*
Retrieve smart contract logs for a given filter
@@ -503,7 +503,7 @@ ___
▸ **getMaxPriorityFeePerGasAsync**(): *Promise‹BigNumber›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:245](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L245)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:245](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L245)*
Fetch the current max piority fee per gas. This is the suggested miner tip
to get mined in the current block.
@@ -516,7 +516,7 @@ ___
▸ **getNetworkIdAsync**(): *Promise‹number›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:208](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L208)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:208](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L208)*
Fetches the networkId of the backing Ethereum node
@@ -530,7 +530,7 @@ ___
▸ **getNodeTypeAsync**(): *Promise‹[NodeType](#enumeration-nodetype)›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:797](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L797)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:797](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L797)*
Returns either NodeType.Geth or NodeType.Ganache depending on the type of
the backing Ethereum node. Throws for any other type of node.
@@ -543,7 +543,7 @@ ___
▸ **getNodeVersionAsync**(): *Promise‹string›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:200](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L200)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:200](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L200)*
Fetch the backing Ethereum node's version string (e.g `MetaMask/v4.2.0`)
@@ -557,7 +557,7 @@ ___
▸ **getProvider**(): *[SupportedProvider](#supportedprovider)*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:172](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L172)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:172](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L172)*
Retrieve the Web3 provider
@@ -571,7 +571,7 @@ ___
▸ **getTransactionByHashAsync**(`txHash`: string): *Promise‹Transaction›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:276](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L276)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:276](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L276)*
Retrieves the transaction data for a given transaction
@@ -591,7 +591,7 @@ ___
▸ **getTransactionReceiptIfExistsAsync**(`txHash`: string): *Promise‹TransactionReceipt | undefined›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:254](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L254)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:254](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L254)*
Retrieves the transaction receipt for a given transaction hash if found
@@ -611,7 +611,7 @@ ___
▸ **getTransactionTraceAsync**(`txHash`: string, `traceParams`: TraceParams): *Promise‹TransactionTrace›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:342](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L342)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:342](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L342)*
Gets the debug trace of a transaction
@@ -632,7 +632,7 @@ ___
▸ **increaseTimeAsync**(`timeDelta`: number): *Promise‹number›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:532](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L532)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:532](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L532)*
Increase the next blocks timestamp on TestRPC/Ganache or Geth local node.
Will throw if provider is neither TestRPC/Ganache or Geth.
@@ -651,7 +651,7 @@ ___
▸ **isSenderAddressAvailableAsync**(`senderAddress`: string): *Promise‹boolean›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:190](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L190)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:190](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L190)*
Check whether an address is available through the backing provider. This can be
useful if you want to know whether a user can sign messages or transactions from
@@ -673,7 +673,7 @@ ___
▸ **mineBlockAsync**(): *Promise‹void›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:524](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L524)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:524](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L524)*
Mine a block on a TestRPC/Ganache local node
@@ -685,7 +685,7 @@ ___
▸ **revertSnapshotAsync**(`snapshotId`: number): *Promise‹boolean›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:516](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L516)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:516](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L516)*
Revert the blockchain state to a previous snapshot state on TestRPC/Ganache local node
@@ -705,7 +705,7 @@ ___
▸ **sendRawPayloadAsync**<**A**>(`payload`: Partial‹JSONRPCRequestPayload›): *Promise‹A›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:767](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L767)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:767](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L767)*
Sends a raw Ethereum JSON RPC payload and returns the response's `result` key
@@ -729,7 +729,7 @@ ___
▸ **sendTransactionAsync**(`txData`: TxData): *Promise‹string›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:647](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L647)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:647](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L647)*
Send a transaction
@@ -749,7 +749,7 @@ ___
▸ **setHeadAsync**(`blockNumber`: number): *Promise‹void›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:758](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L758)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:758](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L758)*
Calls the 'debug_setHead' JSON RPC method, which sets the current head of
the local chain by block number. Note, this is a destructive action and
@@ -771,7 +771,7 @@ ___
▸ **setProvider**(`supportedProvider`: [SupportedProvider](#supportedprovider)): *void*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:179](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L179)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:179](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L179)*
Update the used Web3 provider
@@ -789,7 +789,7 @@ ___
▸ **signMessageAsync**(`address`: string, `message`: string): *Promise‹string›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:356](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L356)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:356](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L356)*
Sign a message with a specific address's private key (`eth_sign`)
@@ -810,7 +810,7 @@ ___
▸ **signTypedDataAsync**(`address`: string, `typedData`: any): *Promise‹string›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:371](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L371)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:371](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L371)*
Sign an EIP712 typed data message with a specific address's private key (`eth_signTypedData`)
@@ -831,7 +831,7 @@ ___
▸ **takeSnapshotAsync**(): *Promise‹number›*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:505](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L505)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:505](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L505)*
Take a snapshot of the blockchain state on a TestRPC/Ganache local node
@@ -845,7 +845,7 @@ ___
▸ **isAddress**(`address`: string): *boolean*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:67](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L67)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:67](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L67)*
Check if an address is a valid Ethereum address
@@ -865,7 +865,7 @@ ___
▸ **toBaseUnitAmount**(`amount`: BigNumber | number, `decimals`: number): *BigNumber*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:93](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L93)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:93](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L93)*
A baseUnit is defined as the smallest denomination of a token. An amount expressed in baseUnits
is the amount expressed in the smallest denomination.
@@ -888,7 +888,7 @@ ___
▸ **toUnitAmount**(`amount`: BigNumber, `decimals`: number): *BigNumber*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:78](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L78)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:78](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L78)*
A unit amount is defined as the amount of a token above the specified decimal places (integer part).
E.g: If a currency has 18 decimal places, 1e18 or one quintillion of the currency is equivalent
@@ -911,7 +911,7 @@ ___
▸ **toWei**(`ethAmount`: BigNumber): *BigNumber*
-*Defined in [web3-wrapper/src/web3_wrapper.ts:108](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/web3_wrapper.ts#L108)*
+*Defined in [web3-wrapper/src/web3_wrapper.ts:108](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/web3_wrapper.ts#L108)*
Convert an Ether amount from ETH to Wei
@@ -939,7 +939,7 @@ Amount in wei
• **Earliest**: = "earliest"
-*Defined in [ethereum-types/src/index.ts:502](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L502)*
+*Defined in [ethereum-types/src/index.ts:502](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L502)*
___
@@ -947,7 +947,7 @@ ___
• **Latest**: = "latest"
-*Defined in [ethereum-types/src/index.ts:503](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L503)*
+*Defined in [ethereum-types/src/index.ts:503](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L503)*
___
@@ -955,7 +955,7 @@ ___
• **Pending**: = "pending"
-*Defined in [ethereum-types/src/index.ts:504](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L504)*
+*Defined in [ethereum-types/src/index.ts:504](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L504)*
@@ -969,7 +969,7 @@ ___
• **Add**: = "ADD"
-*Defined in [ethereum-types/src/index.ts:148](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L148)*
+*Defined in [ethereum-types/src/index.ts:148](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L148)*
___
@@ -977,7 +977,7 @@ ___
• **AddMod**: = "ADDMOD"
-*Defined in [ethereum-types/src/index.ts:155](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L155)*
+*Defined in [ethereum-types/src/index.ts:155](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L155)*
___
@@ -985,7 +985,7 @@ ___
• **Address**: = "ADDRESS"
-*Defined in [ethereum-types/src/index.ts:174](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L174)*
+*Defined in [ethereum-types/src/index.ts:174](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L174)*
___
@@ -993,7 +993,7 @@ ___
• **And**: = "AND"
-*Defined in [ethereum-types/src/index.ts:166](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L166)*
+*Defined in [ethereum-types/src/index.ts:166](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L166)*
___
@@ -1001,7 +1001,7 @@ ___
• **Balance**: = "BALANCE"
-*Defined in [ethereum-types/src/index.ts:175](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L175)*
+*Defined in [ethereum-types/src/index.ts:175](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L175)*
___
@@ -1009,7 +1009,7 @@ ___
• **BlockHash**: = "BLOCKHASH"
-*Defined in [ethereum-types/src/index.ts:190](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L190)*
+*Defined in [ethereum-types/src/index.ts:190](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L190)*
___
@@ -1017,7 +1017,7 @@ ___
• **Byte**: = "BYTE"
-*Defined in [ethereum-types/src/index.ts:170](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L170)*
+*Defined in [ethereum-types/src/index.ts:170](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L170)*
___
@@ -1025,7 +1025,7 @@ ___
• **Call**: = "CALL"
-*Defined in [ethereum-types/src/index.ts:283](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L283)*
+*Defined in [ethereum-types/src/index.ts:283](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L283)*
___
@@ -1033,7 +1033,7 @@ ___
• **CallCode**: = "CALLCODE"
-*Defined in [ethereum-types/src/index.ts:284](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L284)*
+*Defined in [ethereum-types/src/index.ts:284](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L284)*
___
@@ -1041,7 +1041,7 @@ ___
• **CallDataCopy**: = "CALLDATACOPY"
-*Defined in [ethereum-types/src/index.ts:181](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L181)*
+*Defined in [ethereum-types/src/index.ts:181](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L181)*
___
@@ -1049,7 +1049,7 @@ ___
• **CallDataLoad**: = "CALLDATALOAD"
-*Defined in [ethereum-types/src/index.ts:179](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L179)*
+*Defined in [ethereum-types/src/index.ts:179](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L179)*
___
@@ -1057,7 +1057,7 @@ ___
• **CallDataSize**: = "CALLDATASIZE"
-*Defined in [ethereum-types/src/index.ts:180](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L180)*
+*Defined in [ethereum-types/src/index.ts:180](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L180)*
___
@@ -1065,7 +1065,7 @@ ___
• **CallValue**: = "CALLVALUE"
-*Defined in [ethereum-types/src/index.ts:178](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L178)*
+*Defined in [ethereum-types/src/index.ts:178](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L178)*
___
@@ -1073,7 +1073,7 @@ ___
• **Caller**: = "CALLER"
-*Defined in [ethereum-types/src/index.ts:177](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L177)*
+*Defined in [ethereum-types/src/index.ts:177](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L177)*
___
@@ -1081,7 +1081,7 @@ ___
• **CodeCopy**: = "CODECOPY"
-*Defined in [ethereum-types/src/index.ts:183](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L183)*
+*Defined in [ethereum-types/src/index.ts:183](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L183)*
___
@@ -1089,7 +1089,7 @@ ___
• **CodeSize**: = "CODESIZE"
-*Defined in [ethereum-types/src/index.ts:182](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L182)*
+*Defined in [ethereum-types/src/index.ts:182](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L182)*
___
@@ -1097,7 +1097,7 @@ ___
• **Coinbase**: = "COINBASE"
-*Defined in [ethereum-types/src/index.ts:191](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L191)*
+*Defined in [ethereum-types/src/index.ts:191](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L191)*
___
@@ -1105,7 +1105,7 @@ ___
• **Create**: = "CREATE"
-*Defined in [ethereum-types/src/index.ts:282](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L282)*
+*Defined in [ethereum-types/src/index.ts:282](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L282)*
___
@@ -1113,7 +1113,7 @@ ___
• **DelegateCall**: = "DELEGATECALL"
-*Defined in [ethereum-types/src/index.ts:286](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L286)*
+*Defined in [ethereum-types/src/index.ts:286](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L286)*
___
@@ -1121,7 +1121,7 @@ ___
• **Difficulty**: = "DIFFICULTY"
-*Defined in [ethereum-types/src/index.ts:194](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L194)*
+*Defined in [ethereum-types/src/index.ts:194](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L194)*
___
@@ -1129,7 +1129,7 @@ ___
• **Div**: = "DIV"
-*Defined in [ethereum-types/src/index.ts:151](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L151)*
+*Defined in [ethereum-types/src/index.ts:151](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L151)*
___
@@ -1137,7 +1137,7 @@ ___
• **Dup1**: = "DUP1"
-*Defined in [ethereum-types/src/index.ts:243](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L243)*
+*Defined in [ethereum-types/src/index.ts:243](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L243)*
___
@@ -1145,7 +1145,7 @@ ___
• **Dup10**: = "DUP10"
-*Defined in [ethereum-types/src/index.ts:252](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L252)*
+*Defined in [ethereum-types/src/index.ts:252](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L252)*
___
@@ -1153,7 +1153,7 @@ ___
• **Dup11**: = "DUP11"
-*Defined in [ethereum-types/src/index.ts:253](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L253)*
+*Defined in [ethereum-types/src/index.ts:253](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L253)*
___
@@ -1161,7 +1161,7 @@ ___
• **Dup12**: = "DUP12"
-*Defined in [ethereum-types/src/index.ts:254](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L254)*
+*Defined in [ethereum-types/src/index.ts:254](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L254)*
___
@@ -1169,7 +1169,7 @@ ___
• **Dup13**: = "DUP13"
-*Defined in [ethereum-types/src/index.ts:255](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L255)*
+*Defined in [ethereum-types/src/index.ts:255](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L255)*
___
@@ -1177,7 +1177,7 @@ ___
• **Dup14**: = "DUP14"
-*Defined in [ethereum-types/src/index.ts:256](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L256)*
+*Defined in [ethereum-types/src/index.ts:256](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L256)*
___
@@ -1185,7 +1185,7 @@ ___
• **Dup15**: = "DUP15"
-*Defined in [ethereum-types/src/index.ts:257](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L257)*
+*Defined in [ethereum-types/src/index.ts:257](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L257)*
___
@@ -1193,7 +1193,7 @@ ___
• **Dup16**: = "DUP16"
-*Defined in [ethereum-types/src/index.ts:258](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L258)*
+*Defined in [ethereum-types/src/index.ts:258](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L258)*
___
@@ -1201,7 +1201,7 @@ ___
• **Dup2**: = "DUP2"
-*Defined in [ethereum-types/src/index.ts:244](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L244)*
+*Defined in [ethereum-types/src/index.ts:244](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L244)*
___
@@ -1209,7 +1209,7 @@ ___
• **Dup3**: = "DUP3"
-*Defined in [ethereum-types/src/index.ts:245](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L245)*
+*Defined in [ethereum-types/src/index.ts:245](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L245)*
___
@@ -1217,7 +1217,7 @@ ___
• **Dup4**: = "DUP4"
-*Defined in [ethereum-types/src/index.ts:246](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L246)*
+*Defined in [ethereum-types/src/index.ts:246](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L246)*
___
@@ -1225,7 +1225,7 @@ ___
• **Dup5**: = "DUP5"
-*Defined in [ethereum-types/src/index.ts:247](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L247)*
+*Defined in [ethereum-types/src/index.ts:247](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L247)*
___
@@ -1233,7 +1233,7 @@ ___
• **Dup6**: = "DUP6"
-*Defined in [ethereum-types/src/index.ts:248](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L248)*
+*Defined in [ethereum-types/src/index.ts:248](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L248)*
___
@@ -1241,7 +1241,7 @@ ___
• **Dup7**: = "DUP7"
-*Defined in [ethereum-types/src/index.ts:249](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L249)*
+*Defined in [ethereum-types/src/index.ts:249](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L249)*
___
@@ -1249,7 +1249,7 @@ ___
• **Dup8**: = "DUP8"
-*Defined in [ethereum-types/src/index.ts:250](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L250)*
+*Defined in [ethereum-types/src/index.ts:250](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L250)*
___
@@ -1257,7 +1257,7 @@ ___
• **Dup9**: = "DUP9"
-*Defined in [ethereum-types/src/index.ts:251](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L251)*
+*Defined in [ethereum-types/src/index.ts:251](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L251)*
___
@@ -1265,7 +1265,7 @@ ___
• **Eq**: = "EQ"
-*Defined in [ethereum-types/src/index.ts:164](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L164)*
+*Defined in [ethereum-types/src/index.ts:164](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L164)*
___
@@ -1273,7 +1273,7 @@ ___
• **Exp**: = "EXP"
-*Defined in [ethereum-types/src/index.ts:157](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L157)*
+*Defined in [ethereum-types/src/index.ts:157](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L157)*
___
@@ -1281,7 +1281,7 @@ ___
• **ExtCodeCopy**: = "EXTCODECOPY"
-*Defined in [ethereum-types/src/index.ts:186](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L186)*
+*Defined in [ethereum-types/src/index.ts:186](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L186)*
___
@@ -1289,7 +1289,7 @@ ___
• **ExtCodeSize**: = "EXTCODESIZE"
-*Defined in [ethereum-types/src/index.ts:185](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L185)*
+*Defined in [ethereum-types/src/index.ts:185](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L185)*
___
@@ -1297,7 +1297,7 @@ ___
• **Gas**: = "GAS"
-*Defined in [ethereum-types/src/index.ts:207](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L207)*
+*Defined in [ethereum-types/src/index.ts:207](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L207)*
___
@@ -1305,7 +1305,7 @@ ___
• **GasPrice**: = "GASPRICE"
-*Defined in [ethereum-types/src/index.ts:184](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L184)*
+*Defined in [ethereum-types/src/index.ts:184](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L184)*
___
@@ -1313,7 +1313,7 @@ ___
• **Gaslimit**: = "GASLIMIT"
-*Defined in [ethereum-types/src/index.ts:195](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L195)*
+*Defined in [ethereum-types/src/index.ts:195](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L195)*
___
@@ -1321,7 +1321,7 @@ ___
• **Gt**: = "GT"
-*Defined in [ethereum-types/src/index.ts:161](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L161)*
+*Defined in [ethereum-types/src/index.ts:161](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L161)*
___
@@ -1329,7 +1329,7 @@ ___
• **Invalid**: = "INVALID"
-*Defined in [ethereum-types/src/index.ts:289](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L289)*
+*Defined in [ethereum-types/src/index.ts:289](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L289)*
___
@@ -1337,7 +1337,7 @@ ___
• **IsZero**: = "ISZERO"
-*Defined in [ethereum-types/src/index.ts:165](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L165)*
+*Defined in [ethereum-types/src/index.ts:165](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L165)*
___
@@ -1345,7 +1345,7 @@ ___
• **Jump**: = "JUMP"
-*Defined in [ethereum-types/src/index.ts:203](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L203)*
+*Defined in [ethereum-types/src/index.ts:203](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L203)*
___
@@ -1353,7 +1353,7 @@ ___
• **JumpDest**: = "JUMPDEST"
-*Defined in [ethereum-types/src/index.ts:208](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L208)*
+*Defined in [ethereum-types/src/index.ts:208](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L208)*
___
@@ -1361,7 +1361,7 @@ ___
• **Jumpi**: = "JUMPI"
-*Defined in [ethereum-types/src/index.ts:204](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L204)*
+*Defined in [ethereum-types/src/index.ts:204](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L204)*
___
@@ -1369,7 +1369,7 @@ ___
• **Log1**: = "LOG1"
-*Defined in [ethereum-types/src/index.ts:277](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L277)*
+*Defined in [ethereum-types/src/index.ts:277](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L277)*
___
@@ -1377,7 +1377,7 @@ ___
• **Log2**: = "LOG2"
-*Defined in [ethereum-types/src/index.ts:278](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L278)*
+*Defined in [ethereum-types/src/index.ts:278](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L278)*
___
@@ -1385,7 +1385,7 @@ ___
• **Log3**: = "LOG3"
-*Defined in [ethereum-types/src/index.ts:279](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L279)*
+*Defined in [ethereum-types/src/index.ts:279](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L279)*
___
@@ -1393,7 +1393,7 @@ ___
• **Log4**: = "LOG4"
-*Defined in [ethereum-types/src/index.ts:280](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L280)*
+*Defined in [ethereum-types/src/index.ts:280](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L280)*
___
@@ -1401,7 +1401,7 @@ ___
• **Lt**: = "LT"
-*Defined in [ethereum-types/src/index.ts:160](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L160)*
+*Defined in [ethereum-types/src/index.ts:160](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L160)*
___
@@ -1409,7 +1409,7 @@ ___
• **MLoad**: = "MLOAD"
-*Defined in [ethereum-types/src/index.ts:198](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L198)*
+*Defined in [ethereum-types/src/index.ts:198](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L198)*
___
@@ -1417,7 +1417,7 @@ ___
• **MSize**: = "MSIZE"
-*Defined in [ethereum-types/src/index.ts:206](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L206)*
+*Defined in [ethereum-types/src/index.ts:206](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L206)*
___
@@ -1425,7 +1425,7 @@ ___
• **MStore**: = "MSTORE"
-*Defined in [ethereum-types/src/index.ts:199](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L199)*
+*Defined in [ethereum-types/src/index.ts:199](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L199)*
___
@@ -1433,7 +1433,7 @@ ___
• **MStore8**: = "MSTORE8"
-*Defined in [ethereum-types/src/index.ts:200](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L200)*
+*Defined in [ethereum-types/src/index.ts:200](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L200)*
___
@@ -1441,7 +1441,7 @@ ___
• **Mod**: = "MOD"
-*Defined in [ethereum-types/src/index.ts:153](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L153)*
+*Defined in [ethereum-types/src/index.ts:153](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L153)*
___
@@ -1449,7 +1449,7 @@ ___
• **Mul**: = "MUL"
-*Defined in [ethereum-types/src/index.ts:149](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L149)*
+*Defined in [ethereum-types/src/index.ts:149](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L149)*
___
@@ -1457,7 +1457,7 @@ ___
• **MulMod**: = "MULMOD"
-*Defined in [ethereum-types/src/index.ts:156](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L156)*
+*Defined in [ethereum-types/src/index.ts:156](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L156)*
___
@@ -1465,7 +1465,7 @@ ___
• **Not**: = "NOT"
-*Defined in [ethereum-types/src/index.ts:169](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L169)*
+*Defined in [ethereum-types/src/index.ts:169](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L169)*
___
@@ -1473,7 +1473,7 @@ ___
• **Number**: = "NUMBER"
-*Defined in [ethereum-types/src/index.ts:193](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L193)*
+*Defined in [ethereum-types/src/index.ts:193](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L193)*
___
@@ -1481,7 +1481,7 @@ ___
• **Or**: = "OR"
-*Defined in [ethereum-types/src/index.ts:167](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L167)*
+*Defined in [ethereum-types/src/index.ts:167](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L167)*
___
@@ -1489,7 +1489,7 @@ ___
• **Origin**: = "ORIGIN"
-*Defined in [ethereum-types/src/index.ts:176](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L176)*
+*Defined in [ethereum-types/src/index.ts:176](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L176)*
___
@@ -1497,7 +1497,7 @@ ___
• **Pc**: = "PC"
-*Defined in [ethereum-types/src/index.ts:205](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L205)*
+*Defined in [ethereum-types/src/index.ts:205](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L205)*
___
@@ -1505,7 +1505,7 @@ ___
• **Pop**: = "POP"
-*Defined in [ethereum-types/src/index.ts:197](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L197)*
+*Defined in [ethereum-types/src/index.ts:197](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L197)*
___
@@ -1513,7 +1513,7 @@ ___
• **Push1**: = "PUSH1"
-*Defined in [ethereum-types/src/index.ts:210](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L210)*
+*Defined in [ethereum-types/src/index.ts:210](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L210)*
___
@@ -1521,7 +1521,7 @@ ___
• **Push10**: = "PUSH10"
-*Defined in [ethereum-types/src/index.ts:219](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L219)*
+*Defined in [ethereum-types/src/index.ts:219](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L219)*
___
@@ -1529,7 +1529,7 @@ ___
• **Push11**: = "PUSH11"
-*Defined in [ethereum-types/src/index.ts:220](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L220)*
+*Defined in [ethereum-types/src/index.ts:220](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L220)*
___
@@ -1537,7 +1537,7 @@ ___
• **Push12**: = "PUSH12"
-*Defined in [ethereum-types/src/index.ts:221](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L221)*
+*Defined in [ethereum-types/src/index.ts:221](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L221)*
___
@@ -1545,7 +1545,7 @@ ___
• **Push13**: = "PUSH13"
-*Defined in [ethereum-types/src/index.ts:222](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L222)*
+*Defined in [ethereum-types/src/index.ts:222](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L222)*
___
@@ -1553,7 +1553,7 @@ ___
• **Push14**: = "PUSH14"
-*Defined in [ethereum-types/src/index.ts:223](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L223)*
+*Defined in [ethereum-types/src/index.ts:223](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L223)*
___
@@ -1561,7 +1561,7 @@ ___
• **Push15**: = "PUSH15"
-*Defined in [ethereum-types/src/index.ts:224](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L224)*
+*Defined in [ethereum-types/src/index.ts:224](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L224)*
___
@@ -1569,7 +1569,7 @@ ___
• **Push16**: = "PUSH16"
-*Defined in [ethereum-types/src/index.ts:225](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L225)*
+*Defined in [ethereum-types/src/index.ts:225](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L225)*
___
@@ -1577,7 +1577,7 @@ ___
• **Push17**: = "PUSH17"
-*Defined in [ethereum-types/src/index.ts:226](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L226)*
+*Defined in [ethereum-types/src/index.ts:226](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L226)*
___
@@ -1585,7 +1585,7 @@ ___
• **Push18**: = "PUSH18"
-*Defined in [ethereum-types/src/index.ts:227](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L227)*
+*Defined in [ethereum-types/src/index.ts:227](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L227)*
___
@@ -1593,7 +1593,7 @@ ___
• **Push19**: = "PUSH19"
-*Defined in [ethereum-types/src/index.ts:228](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L228)*
+*Defined in [ethereum-types/src/index.ts:228](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L228)*
___
@@ -1601,7 +1601,7 @@ ___
• **Push2**: = "PUSH2"
-*Defined in [ethereum-types/src/index.ts:211](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L211)*
+*Defined in [ethereum-types/src/index.ts:211](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L211)*
___
@@ -1609,7 +1609,7 @@ ___
• **Push20**: = "PUSH20"
-*Defined in [ethereum-types/src/index.ts:229](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L229)*
+*Defined in [ethereum-types/src/index.ts:229](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L229)*
___
@@ -1617,7 +1617,7 @@ ___
• **Push21**: = "PUSH21"
-*Defined in [ethereum-types/src/index.ts:230](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L230)*
+*Defined in [ethereum-types/src/index.ts:230](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L230)*
___
@@ -1625,7 +1625,7 @@ ___
• **Push22**: = "PUSH22"
-*Defined in [ethereum-types/src/index.ts:231](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L231)*
+*Defined in [ethereum-types/src/index.ts:231](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L231)*
___
@@ -1633,7 +1633,7 @@ ___
• **Push23**: = "PUSH23"
-*Defined in [ethereum-types/src/index.ts:232](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L232)*
+*Defined in [ethereum-types/src/index.ts:232](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L232)*
___
@@ -1641,7 +1641,7 @@ ___
• **Push24**: = "PUSH24"
-*Defined in [ethereum-types/src/index.ts:233](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L233)*
+*Defined in [ethereum-types/src/index.ts:233](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L233)*
___
@@ -1649,7 +1649,7 @@ ___
• **Push25**: = "PUSH25"
-*Defined in [ethereum-types/src/index.ts:234](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L234)*
+*Defined in [ethereum-types/src/index.ts:234](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L234)*
___
@@ -1657,7 +1657,7 @@ ___
• **Push26**: = "PUSH26"
-*Defined in [ethereum-types/src/index.ts:235](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L235)*
+*Defined in [ethereum-types/src/index.ts:235](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L235)*
___
@@ -1665,7 +1665,7 @@ ___
• **Push27**: = "PUSH27"
-*Defined in [ethereum-types/src/index.ts:236](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L236)*
+*Defined in [ethereum-types/src/index.ts:236](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L236)*
___
@@ -1673,7 +1673,7 @@ ___
• **Push28**: = "PUSH28"
-*Defined in [ethereum-types/src/index.ts:237](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L237)*
+*Defined in [ethereum-types/src/index.ts:237](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L237)*
___
@@ -1681,7 +1681,7 @@ ___
• **Push29**: = "PUSH29"
-*Defined in [ethereum-types/src/index.ts:238](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L238)*
+*Defined in [ethereum-types/src/index.ts:238](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L238)*
___
@@ -1689,7 +1689,7 @@ ___
• **Push3**: = "PUSH3"
-*Defined in [ethereum-types/src/index.ts:212](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L212)*
+*Defined in [ethereum-types/src/index.ts:212](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L212)*
___
@@ -1697,7 +1697,7 @@ ___
• **Push30**: = "PUSH30"
-*Defined in [ethereum-types/src/index.ts:239](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L239)*
+*Defined in [ethereum-types/src/index.ts:239](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L239)*
___
@@ -1705,7 +1705,7 @@ ___
• **Push31**: = "PUSH31"
-*Defined in [ethereum-types/src/index.ts:240](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L240)*
+*Defined in [ethereum-types/src/index.ts:240](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L240)*
___
@@ -1713,7 +1713,7 @@ ___
• **Push32**: = "PUSH32"
-*Defined in [ethereum-types/src/index.ts:241](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L241)*
+*Defined in [ethereum-types/src/index.ts:241](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L241)*
___
@@ -1721,7 +1721,7 @@ ___
• **Push4**: = "PUSH4"
-*Defined in [ethereum-types/src/index.ts:213](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L213)*
+*Defined in [ethereum-types/src/index.ts:213](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L213)*
___
@@ -1729,7 +1729,7 @@ ___
• **Push5**: = "PUSH5"
-*Defined in [ethereum-types/src/index.ts:214](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L214)*
+*Defined in [ethereum-types/src/index.ts:214](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L214)*
___
@@ -1737,7 +1737,7 @@ ___
• **Push6**: = "PUSH6"
-*Defined in [ethereum-types/src/index.ts:215](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L215)*
+*Defined in [ethereum-types/src/index.ts:215](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L215)*
___
@@ -1745,7 +1745,7 @@ ___
• **Push7**: = "PUSH7"
-*Defined in [ethereum-types/src/index.ts:216](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L216)*
+*Defined in [ethereum-types/src/index.ts:216](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L216)*
___
@@ -1753,7 +1753,7 @@ ___
• **Push8**: = "PUSH8"
-*Defined in [ethereum-types/src/index.ts:217](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L217)*
+*Defined in [ethereum-types/src/index.ts:217](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L217)*
___
@@ -1761,7 +1761,7 @@ ___
• **Push9**: = "PUSH9"
-*Defined in [ethereum-types/src/index.ts:218](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L218)*
+*Defined in [ethereum-types/src/index.ts:218](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L218)*
___
@@ -1769,7 +1769,7 @@ ___
• **Return**: = "RETURN"
-*Defined in [ethereum-types/src/index.ts:285](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L285)*
+*Defined in [ethereum-types/src/index.ts:285](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L285)*
___
@@ -1777,7 +1777,7 @@ ___
• **ReturnDataCopy**: = "RETURNDATACOPY"
-*Defined in [ethereum-types/src/index.ts:188](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L188)*
+*Defined in [ethereum-types/src/index.ts:188](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L188)*
___
@@ -1785,7 +1785,7 @@ ___
• **ReturnDataSize**: = "RETURNDATASIZE"
-*Defined in [ethereum-types/src/index.ts:187](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L187)*
+*Defined in [ethereum-types/src/index.ts:187](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L187)*
___
@@ -1793,7 +1793,7 @@ ___
• **Revert**: = "REVERT"
-*Defined in [ethereum-types/src/index.ts:288](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L288)*
+*Defined in [ethereum-types/src/index.ts:288](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L288)*
___
@@ -1801,7 +1801,7 @@ ___
• **SDiv**: = "SDIV"
-*Defined in [ethereum-types/src/index.ts:152](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L152)*
+*Defined in [ethereum-types/src/index.ts:152](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L152)*
___
@@ -1809,7 +1809,7 @@ ___
• **SGt**: = "SGT"
-*Defined in [ethereum-types/src/index.ts:163](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L163)*
+*Defined in [ethereum-types/src/index.ts:163](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L163)*
___
@@ -1817,7 +1817,7 @@ ___
• **SLoad**: = "SLOAD"
-*Defined in [ethereum-types/src/index.ts:201](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L201)*
+*Defined in [ethereum-types/src/index.ts:201](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L201)*
___
@@ -1825,7 +1825,7 @@ ___
• **SLt**: = "SLT"
-*Defined in [ethereum-types/src/index.ts:162](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L162)*
+*Defined in [ethereum-types/src/index.ts:162](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L162)*
___
@@ -1833,7 +1833,7 @@ ___
• **SMod**: = "SMOD"
-*Defined in [ethereum-types/src/index.ts:154](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L154)*
+*Defined in [ethereum-types/src/index.ts:154](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L154)*
___
@@ -1841,7 +1841,7 @@ ___
• **SStore**: = "SSTORE"
-*Defined in [ethereum-types/src/index.ts:202](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L202)*
+*Defined in [ethereum-types/src/index.ts:202](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L202)*
___
@@ -1849,7 +1849,7 @@ ___
• **SelfDestruct**: = "SELFDESTRUCT"
-*Defined in [ethereum-types/src/index.ts:290](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L290)*
+*Defined in [ethereum-types/src/index.ts:290](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L290)*
___
@@ -1857,7 +1857,7 @@ ___
• **Sha3**: = "SHA3"
-*Defined in [ethereum-types/src/index.ts:172](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L172)*
+*Defined in [ethereum-types/src/index.ts:172](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L172)*
___
@@ -1865,7 +1865,7 @@ ___
• **SignExtend**: = "SIGNEXTEND"
-*Defined in [ethereum-types/src/index.ts:158](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L158)*
+*Defined in [ethereum-types/src/index.ts:158](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L158)*
___
@@ -1873,7 +1873,7 @@ ___
• **StaticCall**: = "STATICCALL"
-*Defined in [ethereum-types/src/index.ts:287](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L287)*
+*Defined in [ethereum-types/src/index.ts:287](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L287)*
___
@@ -1881,7 +1881,7 @@ ___
• **Stop**: = "STOP"
-*Defined in [ethereum-types/src/index.ts:147](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L147)*
+*Defined in [ethereum-types/src/index.ts:147](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L147)*
___
@@ -1889,7 +1889,7 @@ ___
• **Sub**: = "SUB"
-*Defined in [ethereum-types/src/index.ts:150](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L150)*
+*Defined in [ethereum-types/src/index.ts:150](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L150)*
___
@@ -1897,7 +1897,7 @@ ___
• **Swap1**: = "SWAP1"
-*Defined in [ethereum-types/src/index.ts:260](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L260)*
+*Defined in [ethereum-types/src/index.ts:260](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L260)*
___
@@ -1905,7 +1905,7 @@ ___
• **Swap10**: = "SWAP10"
-*Defined in [ethereum-types/src/index.ts:269](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L269)*
+*Defined in [ethereum-types/src/index.ts:269](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L269)*
___
@@ -1913,7 +1913,7 @@ ___
• **Swap11**: = "SWAP11"
-*Defined in [ethereum-types/src/index.ts:270](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L270)*
+*Defined in [ethereum-types/src/index.ts:270](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L270)*
___
@@ -1921,7 +1921,7 @@ ___
• **Swap12**: = "SWAP12"
-*Defined in [ethereum-types/src/index.ts:271](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L271)*
+*Defined in [ethereum-types/src/index.ts:271](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L271)*
___
@@ -1929,7 +1929,7 @@ ___
• **Swap13**: = "SWAP13"
-*Defined in [ethereum-types/src/index.ts:272](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L272)*
+*Defined in [ethereum-types/src/index.ts:272](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L272)*
___
@@ -1937,7 +1937,7 @@ ___
• **Swap14**: = "SWAP14"
-*Defined in [ethereum-types/src/index.ts:273](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L273)*
+*Defined in [ethereum-types/src/index.ts:273](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L273)*
___
@@ -1945,7 +1945,7 @@ ___
• **Swap15**: = "SWAP15"
-*Defined in [ethereum-types/src/index.ts:274](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L274)*
+*Defined in [ethereum-types/src/index.ts:274](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L274)*
___
@@ -1953,7 +1953,7 @@ ___
• **Swap16**: = "SWAP16"
-*Defined in [ethereum-types/src/index.ts:275](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L275)*
+*Defined in [ethereum-types/src/index.ts:275](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L275)*
___
@@ -1961,7 +1961,7 @@ ___
• **Swap2**: = "SWAP2"
-*Defined in [ethereum-types/src/index.ts:261](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L261)*
+*Defined in [ethereum-types/src/index.ts:261](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L261)*
___
@@ -1969,7 +1969,7 @@ ___
• **Swap3**: = "SWAP3"
-*Defined in [ethereum-types/src/index.ts:262](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L262)*
+*Defined in [ethereum-types/src/index.ts:262](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L262)*
___
@@ -1977,7 +1977,7 @@ ___
• **Swap4**: = "SWAP4"
-*Defined in [ethereum-types/src/index.ts:263](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L263)*
+*Defined in [ethereum-types/src/index.ts:263](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L263)*
___
@@ -1985,7 +1985,7 @@ ___
• **Swap5**: = "SWAP5"
-*Defined in [ethereum-types/src/index.ts:264](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L264)*
+*Defined in [ethereum-types/src/index.ts:264](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L264)*
___
@@ -1993,7 +1993,7 @@ ___
• **Swap6**: = "SWAP6"
-*Defined in [ethereum-types/src/index.ts:265](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L265)*
+*Defined in [ethereum-types/src/index.ts:265](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L265)*
___
@@ -2001,7 +2001,7 @@ ___
• **Swap7**: = "SWAP7"
-*Defined in [ethereum-types/src/index.ts:266](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L266)*
+*Defined in [ethereum-types/src/index.ts:266](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L266)*
___
@@ -2009,7 +2009,7 @@ ___
• **Swap8**: = "SWAP8"
-*Defined in [ethereum-types/src/index.ts:267](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L267)*
+*Defined in [ethereum-types/src/index.ts:267](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L267)*
___
@@ -2017,7 +2017,7 @@ ___
• **Swap9**: = "SWAP9"
-*Defined in [ethereum-types/src/index.ts:268](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L268)*
+*Defined in [ethereum-types/src/index.ts:268](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L268)*
___
@@ -2025,7 +2025,7 @@ ___
• **TimeStamp**: = "TimeStamp"
-*Defined in [ethereum-types/src/index.ts:192](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L192)*
+*Defined in [ethereum-types/src/index.ts:192](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L192)*
___
@@ -2033,7 +2033,7 @@ ___
• **Xor**: = "XOR"
-*Defined in [ethereum-types/src/index.ts:168](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L168)*
+*Defined in [ethereum-types/src/index.ts:168](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L168)*
@@ -2049,7 +2049,7 @@ ___
• **Ganache**: = "GANACHE"
-*Defined in [web3-wrapper/src/types.ts:112](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L112)*
+*Defined in [web3-wrapper/src/types.ts:112](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L112)*
___
@@ -2057,7 +2057,7 @@ ___
• **Geth**: = "GETH"
-*Defined in [web3-wrapper/src/types.ts:111](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L111)*
+*Defined in [web3-wrapper/src/types.ts:111](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L111)*
@@ -2071,7 +2071,7 @@ ___
• **TransactionMiningTimeout**: = "TRANSACTION_MINING_TIMEOUT"
-*Defined in [web3-wrapper/src/types.ts:2](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L2)*
+*Defined in [web3-wrapper/src/types.ts:2](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L2)*
@@ -2091,7 +2091,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[difficulty](#difficulty)*
-*Defined in [ethereum-types/src/index.ts:357](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L357)*
+*Defined in [ethereum-types/src/index.ts:357](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L357)*
___
@@ -2101,7 +2101,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[extraData](#extradata)*
-*Defined in [ethereum-types/src/index.ts:359](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L359)*
+*Defined in [ethereum-types/src/index.ts:359](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L359)*
___
@@ -2111,7 +2111,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[gasLimit](#gaslimit)*
-*Defined in [ethereum-types/src/index.ts:361](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L361)*
+*Defined in [ethereum-types/src/index.ts:361](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L361)*
___
@@ -2121,7 +2121,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[gasUsed](#gasused)*
-*Defined in [ethereum-types/src/index.ts:362](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L362)*
+*Defined in [ethereum-types/src/index.ts:362](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L362)*
___
@@ -2131,7 +2131,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[hash](#hash)*
-*Defined in [ethereum-types/src/index.ts:349](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L349)*
+*Defined in [ethereum-types/src/index.ts:349](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L349)*
___
@@ -2141,7 +2141,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[logsBloom](#logsbloom)*
-*Defined in [ethereum-types/src/index.ts:353](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L353)*
+*Defined in [ethereum-types/src/index.ts:353](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L353)*
___
@@ -2151,7 +2151,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[miner](#miner)*
-*Defined in [ethereum-types/src/index.ts:356](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L356)*
+*Defined in [ethereum-types/src/index.ts:356](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L356)*
___
@@ -2161,7 +2161,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[nonce](#nonce)*
-*Defined in [ethereum-types/src/index.ts:351](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L351)*
+*Defined in [ethereum-types/src/index.ts:351](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L351)*
___
@@ -2171,7 +2171,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[number](#number)*
-*Defined in [ethereum-types/src/index.ts:348](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L348)*
+*Defined in [ethereum-types/src/index.ts:348](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L348)*
___
@@ -2181,7 +2181,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[parentHash](#parenthash)*
-*Defined in [ethereum-types/src/index.ts:350](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L350)*
+*Defined in [ethereum-types/src/index.ts:350](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L350)*
___
@@ -2191,7 +2191,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[sha3Uncles](#sha3uncles)*
-*Defined in [ethereum-types/src/index.ts:352](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L352)*
+*Defined in [ethereum-types/src/index.ts:352](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L352)*
___
@@ -2201,7 +2201,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[size](#size)*
-*Defined in [ethereum-types/src/index.ts:360](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L360)*
+*Defined in [ethereum-types/src/index.ts:360](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L360)*
___
@@ -2211,7 +2211,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[stateRoot](#stateroot)*
-*Defined in [ethereum-types/src/index.ts:355](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L355)*
+*Defined in [ethereum-types/src/index.ts:355](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L355)*
___
@@ -2221,7 +2221,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[timestamp](#timestamp)*
-*Defined in [ethereum-types/src/index.ts:363](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L363)*
+*Defined in [ethereum-types/src/index.ts:363](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L363)*
___
@@ -2231,7 +2231,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[totalDifficulty](#totaldifficulty)*
-*Defined in [ethereum-types/src/index.ts:358](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L358)*
+*Defined in [ethereum-types/src/index.ts:358](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L358)*
___
@@ -2239,7 +2239,7 @@ ___
• **transactions**: *string[]*
-*Defined in [ethereum-types/src/index.ts:368](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L368)*
+*Defined in [ethereum-types/src/index.ts:368](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L368)*
___
@@ -2249,7 +2249,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[transactionsRoot](#transactionsroot)*
-*Defined in [ethereum-types/src/index.ts:354](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L354)*
+*Defined in [ethereum-types/src/index.ts:354](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L354)*
___
@@ -2259,7 +2259,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[uncles](#uncles)*
-*Defined in [ethereum-types/src/index.ts:364](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L364)*
+*Defined in [ethereum-types/src/index.ts:364](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L364)*
@@ -2275,7 +2275,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[difficulty](#difficulty)*
-*Defined in [ethereum-types/src/index.ts:357](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L357)*
+*Defined in [ethereum-types/src/index.ts:357](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L357)*
___
@@ -2285,7 +2285,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[extraData](#extradata)*
-*Defined in [ethereum-types/src/index.ts:359](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L359)*
+*Defined in [ethereum-types/src/index.ts:359](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L359)*
___
@@ -2295,7 +2295,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[gasLimit](#gaslimit)*
-*Defined in [ethereum-types/src/index.ts:361](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L361)*
+*Defined in [ethereum-types/src/index.ts:361](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L361)*
___
@@ -2305,7 +2305,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[gasUsed](#gasused)*
-*Defined in [ethereum-types/src/index.ts:362](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L362)*
+*Defined in [ethereum-types/src/index.ts:362](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L362)*
___
@@ -2315,7 +2315,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[hash](#hash)*
-*Defined in [ethereum-types/src/index.ts:349](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L349)*
+*Defined in [ethereum-types/src/index.ts:349](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L349)*
___
@@ -2325,7 +2325,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[logsBloom](#logsbloom)*
-*Defined in [ethereum-types/src/index.ts:353](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L353)*
+*Defined in [ethereum-types/src/index.ts:353](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L353)*
___
@@ -2335,7 +2335,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[miner](#miner)*
-*Defined in [ethereum-types/src/index.ts:356](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L356)*
+*Defined in [ethereum-types/src/index.ts:356](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L356)*
___
@@ -2345,7 +2345,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[nonce](#nonce)*
-*Defined in [ethereum-types/src/index.ts:351](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L351)*
+*Defined in [ethereum-types/src/index.ts:351](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L351)*
___
@@ -2355,7 +2355,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[number](#number)*
-*Defined in [ethereum-types/src/index.ts:348](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L348)*
+*Defined in [ethereum-types/src/index.ts:348](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L348)*
___
@@ -2365,7 +2365,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[parentHash](#parenthash)*
-*Defined in [ethereum-types/src/index.ts:350](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L350)*
+*Defined in [ethereum-types/src/index.ts:350](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L350)*
___
@@ -2375,7 +2375,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[sha3Uncles](#sha3uncles)*
-*Defined in [ethereum-types/src/index.ts:352](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L352)*
+*Defined in [ethereum-types/src/index.ts:352](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L352)*
___
@@ -2385,7 +2385,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[size](#size)*
-*Defined in [ethereum-types/src/index.ts:360](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L360)*
+*Defined in [ethereum-types/src/index.ts:360](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L360)*
___
@@ -2395,7 +2395,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[stateRoot](#stateroot)*
-*Defined in [ethereum-types/src/index.ts:355](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L355)*
+*Defined in [ethereum-types/src/index.ts:355](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L355)*
___
@@ -2405,7 +2405,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[timestamp](#timestamp)*
-*Defined in [ethereum-types/src/index.ts:363](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L363)*
+*Defined in [ethereum-types/src/index.ts:363](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L363)*
___
@@ -2415,7 +2415,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[totalDifficulty](#totaldifficulty)*
-*Defined in [ethereum-types/src/index.ts:358](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L358)*
+*Defined in [ethereum-types/src/index.ts:358](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L358)*
___
@@ -2423,7 +2423,7 @@ ___
• **transactions**: *[Transaction](#class-transaction)[]*
-*Defined in [ethereum-types/src/index.ts:372](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L372)*
+*Defined in [ethereum-types/src/index.ts:372](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L372)*
___
@@ -2433,7 +2433,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[transactionsRoot](#transactionsroot)*
-*Defined in [ethereum-types/src/index.ts:354](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L354)*
+*Defined in [ethereum-types/src/index.ts:354](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L354)*
___
@@ -2443,7 +2443,7 @@ ___
*Inherited from [AbstractBlock](#interface-abstractblock).[uncles](#uncles)*
-*Defined in [ethereum-types/src/index.ts:364](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L364)*
+*Defined in [ethereum-types/src/index.ts:364](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L364)*
@@ -2459,7 +2459,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[accessList](#optional-accesslist)*
-*Defined in [ethereum-types/src/index.ts:400](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L400)*
+*Defined in [ethereum-types/src/index.ts:400](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L400)*
___
@@ -2469,7 +2469,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[data](#optional-data)*
-*Defined in [ethereum-types/src/index.ts:398](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L398)*
+*Defined in [ethereum-types/src/index.ts:398](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L398)*
___
@@ -2477,7 +2477,7 @@ ___
• **from**? : *undefined | string*
-*Defined in [ethereum-types/src/index.ts:425](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L425)*
+*Defined in [ethereum-types/src/index.ts:425](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L425)*
___
@@ -2487,7 +2487,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[gas](#optional-gas)*
-*Defined in [ethereum-types/src/index.ts:394](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L394)*
+*Defined in [ethereum-types/src/index.ts:394](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L394)*
___
@@ -2497,7 +2497,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[gasPrice](#optional-gasprice)*
-*Defined in [ethereum-types/src/index.ts:395](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L395)*
+*Defined in [ethereum-types/src/index.ts:395](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L395)*
___
@@ -2507,7 +2507,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[maxFeePerGas](#optional-maxfeepergas)*
-*Defined in [ethereum-types/src/index.ts:396](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L396)*
+*Defined in [ethereum-types/src/index.ts:396](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L396)*
___
@@ -2517,7 +2517,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[maxPriorityFeePerGas](#optional-maxpriorityfeepergas)*
-*Defined in [ethereum-types/src/index.ts:397](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L397)*
+*Defined in [ethereum-types/src/index.ts:397](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L397)*
___
@@ -2527,7 +2527,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[nonce](#optional-nonce)*
-*Defined in [ethereum-types/src/index.ts:399](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L399)*
+*Defined in [ethereum-types/src/index.ts:399](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L399)*
___
@@ -2535,7 +2535,7 @@ ___
• **overrides**? : *[GethCallOverrides](#class-gethcalloverrides)*
-*Defined in [ethereum-types/src/index.ts:426](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L426)*
+*Defined in [ethereum-types/src/index.ts:426](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L426)*
___
@@ -2545,7 +2545,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[to](#optional-to)*
-*Defined in [ethereum-types/src/index.ts:392](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L392)*
+*Defined in [ethereum-types/src/index.ts:392](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L392)*
___
@@ -2555,7 +2555,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[value](#optional-value)*
-*Defined in [ethereum-types/src/index.ts:393](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L393)*
+*Defined in [ethereum-types/src/index.ts:393](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L393)*
@@ -2579,7 +2579,7 @@ ___
• **inputs**: *[DataItem](#class-dataitem)[]*
-*Defined in [ethereum-types/src/index.ts:103](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L103)*
+*Defined in [ethereum-types/src/index.ts:103](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L103)*
___
@@ -2587,7 +2587,7 @@ ___
• **payable**? : *undefined | false | true*
-*Defined in [ethereum-types/src/index.ts:104](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L104)*
+*Defined in [ethereum-types/src/index.ts:104](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L104)*
___
@@ -2595,7 +2595,7 @@ ___
• **stateMutability**: *[ConstructorStateMutability](#constructorstatemutability)*
-*Defined in [ethereum-types/src/index.ts:105](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L105)*
+*Defined in [ethereum-types/src/index.ts:105](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L105)*
___
@@ -2603,7 +2603,7 @@ ___
• **type**: *string*
-*Defined in [ethereum-types/src/index.ts:102](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L102)*
+*Defined in [ethereum-types/src/index.ts:102](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L102)*
@@ -2623,7 +2623,7 @@ ___
• **components**? : *[DataItem](#class-dataitem)[]*
-*Defined in [ethereum-types/src/index.ts:138](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L138)*
+*Defined in [ethereum-types/src/index.ts:138](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L138)*
___
@@ -2631,7 +2631,7 @@ ___
• **internalType**? : *undefined | string*
-*Defined in [ethereum-types/src/index.ts:137](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L137)*
+*Defined in [ethereum-types/src/index.ts:137](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L137)*
___
@@ -2639,7 +2639,7 @@ ___
• **name**: *string*
-*Defined in [ethereum-types/src/index.ts:135](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L135)*
+*Defined in [ethereum-types/src/index.ts:135](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L135)*
___
@@ -2647,7 +2647,7 @@ ___
• **type**: *string*
-*Defined in [ethereum-types/src/index.ts:136](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L136)*
+*Defined in [ethereum-types/src/index.ts:136](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L136)*
@@ -2668,7 +2668,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[address](#address)*
-*Defined in [ethereum-types/src/index.ts:458](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L458)*
+*Defined in [ethereum-types/src/index.ts:458](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L458)*
___
@@ -2676,7 +2676,7 @@ ___
• **args**: *A*
-*Defined in [ethereum-types/src/index.ts:441](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L441)*
+*Defined in [ethereum-types/src/index.ts:441](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L441)*
___
@@ -2686,7 +2686,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[blockHash](#blockhash)*
-*Defined in [ethereum-types/src/index.ts:456](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L456)*
+*Defined in [ethereum-types/src/index.ts:456](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L456)*
___
@@ -2696,7 +2696,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[blockNumber](#blocknumber)*
-*Defined in [ethereum-types/src/index.ts:457](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L457)*
+*Defined in [ethereum-types/src/index.ts:457](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L457)*
___
@@ -2706,7 +2706,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[data](#data)*
-*Defined in [ethereum-types/src/index.ts:459](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L459)*
+*Defined in [ethereum-types/src/index.ts:459](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L459)*
___
@@ -2714,7 +2714,7 @@ ___
• **event**: *string*
-*Defined in [ethereum-types/src/index.ts:440](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L440)*
+*Defined in [ethereum-types/src/index.ts:440](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L440)*
___
@@ -2724,7 +2724,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[logIndex](#logindex)*
-*Defined in [ethereum-types/src/index.ts:453](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L453)*
+*Defined in [ethereum-types/src/index.ts:453](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L453)*
___
@@ -2734,7 +2734,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[topics](#topics)*
-*Defined in [ethereum-types/src/index.ts:460](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L460)*
+*Defined in [ethereum-types/src/index.ts:460](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L460)*
___
@@ -2744,7 +2744,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[transactionHash](#transactionhash)*
-*Defined in [ethereum-types/src/index.ts:455](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L455)*
+*Defined in [ethereum-types/src/index.ts:455](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L455)*
___
@@ -2754,7 +2754,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[transactionIndex](#transactionindex)*
-*Defined in [ethereum-types/src/index.ts:454](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L454)*
+*Defined in [ethereum-types/src/index.ts:454](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L454)*
@@ -2774,7 +2774,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[address](#address)*
-*Defined in [ethereum-types/src/index.ts:458](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L458)*
+*Defined in [ethereum-types/src/index.ts:458](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L458)*
___
@@ -2784,7 +2784,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[args](#args)*
-*Defined in [ethereum-types/src/index.ts:441](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L441)*
+*Defined in [ethereum-types/src/index.ts:441](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L441)*
___
@@ -2794,7 +2794,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[blockHash](#blockhash)*
-*Defined in [ethereum-types/src/index.ts:456](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L456)*
+*Defined in [ethereum-types/src/index.ts:456](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L456)*
___
@@ -2804,7 +2804,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[blockNumber](#blocknumber)*
-*Defined in [ethereum-types/src/index.ts:457](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L457)*
+*Defined in [ethereum-types/src/index.ts:457](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L457)*
___
@@ -2814,7 +2814,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[data](#data)*
-*Defined in [ethereum-types/src/index.ts:459](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L459)*
+*Defined in [ethereum-types/src/index.ts:459](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L459)*
___
@@ -2824,7 +2824,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[event](#event)*
-*Defined in [ethereum-types/src/index.ts:440](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L440)*
+*Defined in [ethereum-types/src/index.ts:440](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L440)*
___
@@ -2834,7 +2834,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[logIndex](#logindex)*
-*Defined in [ethereum-types/src/index.ts:453](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L453)*
+*Defined in [ethereum-types/src/index.ts:453](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L453)*
___
@@ -2842,7 +2842,7 @@ ___
• **removed**: *boolean*
-*Defined in [ethereum-types/src/index.ts:445](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L445)*
+*Defined in [ethereum-types/src/index.ts:445](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L445)*
___
@@ -2852,7 +2852,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[topics](#topics)*
-*Defined in [ethereum-types/src/index.ts:460](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L460)*
+*Defined in [ethereum-types/src/index.ts:460](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L460)*
___
@@ -2862,7 +2862,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[transactionHash](#transactionhash)*
-*Defined in [ethereum-types/src/index.ts:455](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L455)*
+*Defined in [ethereum-types/src/index.ts:455](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L455)*
___
@@ -2872,7 +2872,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[transactionIndex](#transactionindex)*
-*Defined in [ethereum-types/src/index.ts:454](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L454)*
+*Defined in [ethereum-types/src/index.ts:454](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L454)*
@@ -2888,7 +2888,7 @@ ___
• **isEIP1193**: *boolean*
-*Defined in [ethereum-types/src/index.ts:73](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L73)*
+*Defined in [ethereum-types/src/index.ts:73](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L73)*
## Methods
@@ -2896,7 +2896,7 @@ ___
▸ **on**(`event`: [EIP1193Event](#eip1193event), `listener`: function): *this*
-*Defined in [ethereum-types/src/index.ts:75](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L75)*
+*Defined in [ethereum-types/src/index.ts:75](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L75)*
**Parameters:**
@@ -2920,7 +2920,7 @@ ___
▸ **send**(`method`: string, `params?`: any[]): *Promise‹any›*
-*Defined in [ethereum-types/src/index.ts:74](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L74)*
+*Defined in [ethereum-types/src/index.ts:74](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L74)*
**Parameters:**
@@ -2943,7 +2943,7 @@ Name | Type |
• **anonymous**: *boolean*
-*Defined in [ethereum-types/src/index.ts:131](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L131)*
+*Defined in [ethereum-types/src/index.ts:131](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L131)*
___
@@ -2951,7 +2951,7 @@ ___
• **inputs**: *[EventParameter](#class-eventparameter)[]*
-*Defined in [ethereum-types/src/index.ts:130](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L130)*
+*Defined in [ethereum-types/src/index.ts:130](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L130)*
___
@@ -2959,7 +2959,7 @@ ___
• **name**: *string*
-*Defined in [ethereum-types/src/index.ts:129](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L129)*
+*Defined in [ethereum-types/src/index.ts:129](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L129)*
___
@@ -2967,7 +2967,7 @@ ___
• **type**: *string*
-*Defined in [ethereum-types/src/index.ts:128](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L128)*
+*Defined in [ethereum-types/src/index.ts:128](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L128)*
@@ -2983,7 +2983,7 @@ ___
*Inherited from [EventParameter](#interface-eventparameter).[components](#optional-components)*
-*Defined in [ethereum-types/src/index.ts:138](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L138)*
+*Defined in [ethereum-types/src/index.ts:138](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L138)*
___
@@ -2991,7 +2991,7 @@ ___
• **indexed**: *boolean*
-*Defined in [ethereum-types/src/index.ts:116](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L116)*
+*Defined in [ethereum-types/src/index.ts:116](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L116)*
___
@@ -3001,7 +3001,7 @@ ___
*Inherited from [EventParameter](#interface-eventparameter).[internalType](#optional-internaltype)*
-*Defined in [ethereum-types/src/index.ts:137](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L137)*
+*Defined in [ethereum-types/src/index.ts:137](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L137)*
___
@@ -3011,7 +3011,7 @@ ___
*Inherited from [EventParameter](#interface-eventparameter).[name](#name)*
-*Defined in [ethereum-types/src/index.ts:135](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L135)*
+*Defined in [ethereum-types/src/index.ts:135](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L135)*
___
@@ -3021,7 +3021,7 @@ ___
*Inherited from [EventParameter](#interface-eventparameter).[type](#type)*
-*Defined in [ethereum-types/src/index.ts:136](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L136)*
+*Defined in [ethereum-types/src/index.ts:136](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L136)*
@@ -3039,7 +3039,7 @@ ___
• **payable**: *boolean*
-*Defined in [ethereum-types/src/index.ts:112](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L112)*
+*Defined in [ethereum-types/src/index.ts:112](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L112)*
___
@@ -3047,7 +3047,7 @@ ___
• **type**: *string*
-*Defined in [ethereum-types/src/index.ts:111](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L111)*
+*Defined in [ethereum-types/src/index.ts:111](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L111)*
@@ -3061,7 +3061,7 @@ ___
• **address**? : *undefined | string*
-*Defined in [ethereum-types/src/index.ts:433](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L433)*
+*Defined in [ethereum-types/src/index.ts:433](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L433)*
___
@@ -3069,7 +3069,7 @@ ___
• **blockHash**? : *undefined | string*
-*Defined in [ethereum-types/src/index.ts:432](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L432)*
+*Defined in [ethereum-types/src/index.ts:432](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L432)*
___
@@ -3077,7 +3077,7 @@ ___
• **fromBlock**? : *number | string*
-*Defined in [ethereum-types/src/index.ts:430](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L430)*
+*Defined in [ethereum-types/src/index.ts:430](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L430)*
___
@@ -3085,7 +3085,7 @@ ___
• **toBlock**? : *number | string*
-*Defined in [ethereum-types/src/index.ts:431](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L431)*
+*Defined in [ethereum-types/src/index.ts:431](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L431)*
___
@@ -3093,7 +3093,7 @@ ___
• **topics**? : *[LogTopic](#logtopic)[]*
-*Defined in [ethereum-types/src/index.ts:434](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L434)*
+*Defined in [ethereum-types/src/index.ts:434](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L434)*
@@ -3107,7 +3107,7 @@ ___
▸ **sendAsync**(`payload`: [JSONRPCRequestPayload](_ethereum_types_src_index_.jsonrpcrequestpayload.md), `callback`: [JSONRPCErrorCallback](#jsonrpcerrorcallback)): *void*
-*Defined in [ethereum-types/src/index.ts:14](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L14)*
+*Defined in [ethereum-types/src/index.ts:14](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L14)*
**Parameters:**
@@ -3137,7 +3137,7 @@ Name | Type |
• **id**: *number*
-*Defined in [ethereum-types/src/index.ts:331](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L331)*
+*Defined in [ethereum-types/src/index.ts:331](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L331)*
___
@@ -3145,7 +3145,7 @@ ___
• **jsonrpc**: *string*
-*Defined in [ethereum-types/src/index.ts:332](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L332)*
+*Defined in [ethereum-types/src/index.ts:332](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L332)*
___
@@ -3153,7 +3153,7 @@ ___
• **method**: *string*
-*Defined in [ethereum-types/src/index.ts:330](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L330)*
+*Defined in [ethereum-types/src/index.ts:330](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L330)*
___
@@ -3161,7 +3161,7 @@ ___
• **params**: *any[]*
-*Defined in [ethereum-types/src/index.ts:329](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L329)*
+*Defined in [ethereum-types/src/index.ts:329](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L329)*
@@ -3175,7 +3175,7 @@ ___
• **code**: *number*
-*Defined in [ethereum-types/src/index.ts:337](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L337)*
+*Defined in [ethereum-types/src/index.ts:337](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L337)*
___
@@ -3183,7 +3183,7 @@ ___
• **message**: *string*
-*Defined in [ethereum-types/src/index.ts:336](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L336)*
+*Defined in [ethereum-types/src/index.ts:336](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L336)*
@@ -3197,7 +3197,7 @@ ___
• **error**? : *[JSONRPCResponseError](#class-jsonrpcresponseerror)*
-*Defined in [ethereum-types/src/index.ts:344](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L344)*
+*Defined in [ethereum-types/src/index.ts:344](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L344)*
___
@@ -3205,7 +3205,7 @@ ___
• **id**: *number*
-*Defined in [ethereum-types/src/index.ts:342](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L342)*
+*Defined in [ethereum-types/src/index.ts:342](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L342)*
___
@@ -3213,7 +3213,7 @@ ___
• **jsonrpc**: *string*
-*Defined in [ethereum-types/src/index.ts:343](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L343)*
+*Defined in [ethereum-types/src/index.ts:343](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L343)*
___
@@ -3221,7 +3221,7 @@ ___
• **result**: *any*
-*Defined in [ethereum-types/src/index.ts:341](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L341)*
+*Defined in [ethereum-types/src/index.ts:341](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L341)*
@@ -3235,7 +3235,7 @@ ___
• **address**: *string*
-*Defined in [ethereum-types/src/index.ts:458](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L458)*
+*Defined in [ethereum-types/src/index.ts:458](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L458)*
___
@@ -3243,7 +3243,7 @@ ___
• **blockHash**: *string | null*
-*Defined in [ethereum-types/src/index.ts:456](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L456)*
+*Defined in [ethereum-types/src/index.ts:456](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L456)*
___
@@ -3251,7 +3251,7 @@ ___
• **blockNumber**: *number | null*
-*Defined in [ethereum-types/src/index.ts:457](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L457)*
+*Defined in [ethereum-types/src/index.ts:457](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L457)*
___
@@ -3259,7 +3259,7 @@ ___
• **data**: *string*
-*Defined in [ethereum-types/src/index.ts:459](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L459)*
+*Defined in [ethereum-types/src/index.ts:459](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L459)*
___
@@ -3267,7 +3267,7 @@ ___
• **logIndex**: *number | null*
-*Defined in [ethereum-types/src/index.ts:453](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L453)*
+*Defined in [ethereum-types/src/index.ts:453](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L453)*
___
@@ -3275,7 +3275,7 @@ ___
• **topics**: *string[]*
-*Defined in [ethereum-types/src/index.ts:460](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L460)*
+*Defined in [ethereum-types/src/index.ts:460](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L460)*
___
@@ -3283,7 +3283,7 @@ ___
• **transactionHash**: *string*
-*Defined in [ethereum-types/src/index.ts:455](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L455)*
+*Defined in [ethereum-types/src/index.ts:455](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L455)*
___
@@ -3291,7 +3291,7 @@ ___
• **transactionIndex**: *number | null*
-*Defined in [ethereum-types/src/index.ts:454](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L454)*
+*Defined in [ethereum-types/src/index.ts:454](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L454)*
@@ -3307,7 +3307,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[address](#address)*
-*Defined in [ethereum-types/src/index.ts:458](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L458)*
+*Defined in [ethereum-types/src/index.ts:458](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L458)*
___
@@ -3317,7 +3317,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[blockHash](#blockhash)*
-*Defined in [ethereum-types/src/index.ts:456](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L456)*
+*Defined in [ethereum-types/src/index.ts:456](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L456)*
___
@@ -3327,7 +3327,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[blockNumber](#blocknumber)*
-*Defined in [ethereum-types/src/index.ts:457](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L457)*
+*Defined in [ethereum-types/src/index.ts:457](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L457)*
___
@@ -3337,7 +3337,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[data](#data)*
-*Defined in [ethereum-types/src/index.ts:459](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L459)*
+*Defined in [ethereum-types/src/index.ts:459](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L459)*
___
@@ -3347,7 +3347,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[logIndex](#logindex)*
-*Defined in [ethereum-types/src/index.ts:453](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L453)*
+*Defined in [ethereum-types/src/index.ts:453](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L453)*
___
@@ -3355,7 +3355,7 @@ ___
• **removed**: *boolean*
-*Defined in [ethereum-types/src/index.ts:449](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L449)*
+*Defined in [ethereum-types/src/index.ts:449](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L449)*
___
@@ -3365,7 +3365,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[topics](#topics)*
-*Defined in [ethereum-types/src/index.ts:460](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L460)*
+*Defined in [ethereum-types/src/index.ts:460](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L460)*
___
@@ -3375,7 +3375,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[transactionHash](#transactionhash)*
-*Defined in [ethereum-types/src/index.ts:455](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L455)*
+*Defined in [ethereum-types/src/index.ts:455](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L455)*
___
@@ -3385,7 +3385,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[transactionIndex](#transactionindex)*
-*Defined in [ethereum-types/src/index.ts:454](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L454)*
+*Defined in [ethereum-types/src/index.ts:454](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L454)*
@@ -3405,7 +3405,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[address](#address)*
-*Defined in [ethereum-types/src/index.ts:458](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L458)*
+*Defined in [ethereum-types/src/index.ts:458](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L458)*
___
@@ -3415,7 +3415,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[args](#args)*
-*Defined in [ethereum-types/src/index.ts:441](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L441)*
+*Defined in [ethereum-types/src/index.ts:441](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L441)*
___
@@ -3425,7 +3425,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[blockHash](#blockhash)*
-*Defined in [ethereum-types/src/index.ts:456](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L456)*
+*Defined in [ethereum-types/src/index.ts:456](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L456)*
___
@@ -3435,7 +3435,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[blockNumber](#blocknumber)*
-*Defined in [ethereum-types/src/index.ts:457](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L457)*
+*Defined in [ethereum-types/src/index.ts:457](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L457)*
___
@@ -3445,7 +3445,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[data](#data)*
-*Defined in [ethereum-types/src/index.ts:459](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L459)*
+*Defined in [ethereum-types/src/index.ts:459](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L459)*
___
@@ -3455,7 +3455,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[event](#event)*
-*Defined in [ethereum-types/src/index.ts:440](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L440)*
+*Defined in [ethereum-types/src/index.ts:440](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L440)*
___
@@ -3465,7 +3465,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[logIndex](#logindex)*
-*Defined in [ethereum-types/src/index.ts:453](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L453)*
+*Defined in [ethereum-types/src/index.ts:453](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L453)*
___
@@ -3475,7 +3475,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[topics](#topics)*
-*Defined in [ethereum-types/src/index.ts:460](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L460)*
+*Defined in [ethereum-types/src/index.ts:460](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L460)*
___
@@ -3485,7 +3485,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[transactionHash](#transactionhash)*
-*Defined in [ethereum-types/src/index.ts:455](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L455)*
+*Defined in [ethereum-types/src/index.ts:455](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L455)*
___
@@ -3495,7 +3495,7 @@ ___
*Inherited from [DecodedLogEntry](#interface-decodedlogentry).[transactionIndex](#transactionindex)*
-*Defined in [ethereum-types/src/index.ts:454](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L454)*
+*Defined in [ethereum-types/src/index.ts:454](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L454)*
@@ -3509,7 +3509,7 @@ ___
• **constant**? : *undefined | false | true*
-*Defined in [ethereum-types/src/index.ts:94](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L94)*
+*Defined in [ethereum-types/src/index.ts:94](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L94)*
___
@@ -3517,7 +3517,7 @@ ___
• **inputs**: *[DataItem](#class-dataitem)[]*
-*Defined in [ethereum-types/src/index.ts:92](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L92)*
+*Defined in [ethereum-types/src/index.ts:92](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L92)*
___
@@ -3525,7 +3525,7 @@ ___
• **name**: *string*
-*Defined in [ethereum-types/src/index.ts:91](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L91)*
+*Defined in [ethereum-types/src/index.ts:91](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L91)*
___
@@ -3533,7 +3533,7 @@ ___
• **outputs**: *[DataItem](#class-dataitem)[]*
-*Defined in [ethereum-types/src/index.ts:93](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L93)*
+*Defined in [ethereum-types/src/index.ts:93](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L93)*
___
@@ -3541,7 +3541,7 @@ ___
• **payable**? : *undefined | false | true*
-*Defined in [ethereum-types/src/index.ts:96](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L96)*
+*Defined in [ethereum-types/src/index.ts:96](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L96)*
___
@@ -3549,7 +3549,7 @@ ___
• **stateMutability**: *[StateMutability](#statemutability)*
-*Defined in [ethereum-types/src/index.ts:95](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L95)*
+*Defined in [ethereum-types/src/index.ts:95](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L95)*
___
@@ -3557,7 +3557,7 @@ ___
• **type**: *string*
-*Defined in [ethereum-types/src/index.ts:90](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L90)*
+*Defined in [ethereum-types/src/index.ts:90](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L90)*
@@ -3575,7 +3575,7 @@ ___
• **address**: *string*
-*Defined in [ethereum-types/src/index.ts:515](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L515)*
+*Defined in [ethereum-types/src/index.ts:515](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L515)*
___
@@ -3583,7 +3583,7 @@ ___
• **blockHash**: *string | null*
-*Defined in [ethereum-types/src/index.ts:513](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L513)*
+*Defined in [ethereum-types/src/index.ts:513](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L513)*
___
@@ -3591,7 +3591,7 @@ ___
• **blockNumber**: *string | null*
-*Defined in [ethereum-types/src/index.ts:514](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L514)*
+*Defined in [ethereum-types/src/index.ts:514](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L514)*
___
@@ -3599,7 +3599,7 @@ ___
• **data**: *string*
-*Defined in [ethereum-types/src/index.ts:516](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L516)*
+*Defined in [ethereum-types/src/index.ts:516](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L516)*
___
@@ -3607,7 +3607,7 @@ ___
• **logIndex**: *string | null*
-*Defined in [ethereum-types/src/index.ts:510](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L510)*
+*Defined in [ethereum-types/src/index.ts:510](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L510)*
___
@@ -3615,7 +3615,7 @@ ___
• **topics**: *string[]*
-*Defined in [ethereum-types/src/index.ts:517](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L517)*
+*Defined in [ethereum-types/src/index.ts:517](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L517)*
___
@@ -3623,7 +3623,7 @@ ___
• **transactionHash**: *string*
-*Defined in [ethereum-types/src/index.ts:512](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L512)*
+*Defined in [ethereum-types/src/index.ts:512](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L512)*
___
@@ -3631,7 +3631,7 @@ ___
• **transactionIndex**: *string | null*
-*Defined in [ethereum-types/src/index.ts:511](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L511)*
+*Defined in [ethereum-types/src/index.ts:511](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L511)*
@@ -3645,7 +3645,7 @@ ___
• **arguments**? : *[DataItem](#class-dataitem)[]*
-*Defined in [ethereum-types/src/index.ts:122](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L122)*
+*Defined in [ethereum-types/src/index.ts:122](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L122)*
___
@@ -3653,7 +3653,7 @@ ___
• **name**: *string*
-*Defined in [ethereum-types/src/index.ts:121](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L121)*
+*Defined in [ethereum-types/src/index.ts:121](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L121)*
___
@@ -3661,7 +3661,7 @@ ___
• **type**: *"error"*
-*Defined in [ethereum-types/src/index.ts:120](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L120)*
+*Defined in [ethereum-types/src/index.ts:120](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L120)*
@@ -3685,7 +3685,7 @@ ___
• **depth**: *number*
-*Defined in [ethereum-types/src/index.ts:294](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L294)*
+*Defined in [ethereum-types/src/index.ts:294](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L294)*
___
@@ -3693,7 +3693,7 @@ ___
• **error**: *string*
-*Defined in [ethereum-types/src/index.ts:295](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L295)*
+*Defined in [ethereum-types/src/index.ts:295](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L295)*
___
@@ -3701,7 +3701,7 @@ ___
• **gas**: *number*
-*Defined in [ethereum-types/src/index.ts:296](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L296)*
+*Defined in [ethereum-types/src/index.ts:296](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L296)*
___
@@ -3709,7 +3709,7 @@ ___
• **gasCost**: *number*
-*Defined in [ethereum-types/src/index.ts:297](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L297)*
+*Defined in [ethereum-types/src/index.ts:297](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L297)*
___
@@ -3717,7 +3717,7 @@ ___
• **memory**: *string[]*
-*Defined in [ethereum-types/src/index.ts:298](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L298)*
+*Defined in [ethereum-types/src/index.ts:298](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L298)*
___
@@ -3725,7 +3725,7 @@ ___
• **op**: *[OpCode](#enumeration-opcode)*
-*Defined in [ethereum-types/src/index.ts:299](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L299)*
+*Defined in [ethereum-types/src/index.ts:299](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L299)*
___
@@ -3733,7 +3733,7 @@ ___
• **pc**: *number*
-*Defined in [ethereum-types/src/index.ts:300](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L300)*
+*Defined in [ethereum-types/src/index.ts:300](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L300)*
___
@@ -3741,7 +3741,7 @@ ___
• **stack**: *string[]*
-*Defined in [ethereum-types/src/index.ts:301](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L301)*
+*Defined in [ethereum-types/src/index.ts:301](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L301)*
___
@@ -3749,7 +3749,7 @@ ___
• **storage**: *object*
-*Defined in [ethereum-types/src/index.ts:302](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L302)*
+*Defined in [ethereum-types/src/index.ts:302](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L302)*
#### Type declaration:
@@ -3767,7 +3767,7 @@ ___
• **disableMemory**? : *undefined | false | true*
-*Defined in [ethereum-types/src/index.ts:542](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L542)*
+*Defined in [ethereum-types/src/index.ts:542](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L542)*
___
@@ -3775,7 +3775,7 @@ ___
• **disableStack**? : *undefined | false | true*
-*Defined in [ethereum-types/src/index.ts:543](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L543)*
+*Defined in [ethereum-types/src/index.ts:543](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L543)*
___
@@ -3783,7 +3783,7 @@ ___
• **disableStorage**? : *undefined | false | true*
-*Defined in [ethereum-types/src/index.ts:544](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L544)*
+*Defined in [ethereum-types/src/index.ts:544](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L544)*
___
@@ -3791,7 +3791,7 @@ ___
• **timeout**? : *undefined | string*
-*Defined in [ethereum-types/src/index.ts:546](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L546)*
+*Defined in [ethereum-types/src/index.ts:546](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L546)*
___
@@ -3799,7 +3799,7 @@ ___
• **tracer**? : *undefined | string*
-*Defined in [ethereum-types/src/index.ts:545](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L545)*
+*Defined in [ethereum-types/src/index.ts:545](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L545)*
@@ -3813,7 +3813,7 @@ ___
• **blockHash**: *string | null*
-*Defined in [ethereum-types/src/index.ts:378](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L378)*
+*Defined in [ethereum-types/src/index.ts:378](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L378)*
___
@@ -3821,7 +3821,7 @@ ___
• **blockNumber**: *number | null*
-*Defined in [ethereum-types/src/index.ts:379](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L379)*
+*Defined in [ethereum-types/src/index.ts:379](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L379)*
___
@@ -3829,7 +3829,7 @@ ___
• **from**: *string*
-*Defined in [ethereum-types/src/index.ts:381](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L381)*
+*Defined in [ethereum-types/src/index.ts:381](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L381)*
___
@@ -3837,7 +3837,7 @@ ___
• **gas**: *number*
-*Defined in [ethereum-types/src/index.ts:387](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L387)*
+*Defined in [ethereum-types/src/index.ts:387](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L387)*
___
@@ -3845,7 +3845,7 @@ ___
• **gasPrice**? : *BigNumber*
-*Defined in [ethereum-types/src/index.ts:384](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L384)*
+*Defined in [ethereum-types/src/index.ts:384](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L384)*
___
@@ -3853,7 +3853,7 @@ ___
• **hash**: *string*
-*Defined in [ethereum-types/src/index.ts:376](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L376)*
+*Defined in [ethereum-types/src/index.ts:376](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L376)*
___
@@ -3861,7 +3861,7 @@ ___
• **input**: *string*
-*Defined in [ethereum-types/src/index.ts:388](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L388)*
+*Defined in [ethereum-types/src/index.ts:388](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L388)*
___
@@ -3869,7 +3869,7 @@ ___
• **maxFeePerGas**? : *BigNumber*
-*Defined in [ethereum-types/src/index.ts:385](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L385)*
+*Defined in [ethereum-types/src/index.ts:385](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L385)*
___
@@ -3877,7 +3877,7 @@ ___
• **maxPriorityFeePerGas**? : *BigNumber*
-*Defined in [ethereum-types/src/index.ts:386](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L386)*
+*Defined in [ethereum-types/src/index.ts:386](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L386)*
___
@@ -3885,7 +3885,7 @@ ___
• **nonce**: *number*
-*Defined in [ethereum-types/src/index.ts:377](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L377)*
+*Defined in [ethereum-types/src/index.ts:377](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L377)*
___
@@ -3893,7 +3893,7 @@ ___
• **to**: *string | null*
-*Defined in [ethereum-types/src/index.ts:382](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L382)*
+*Defined in [ethereum-types/src/index.ts:382](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L382)*
___
@@ -3901,7 +3901,7 @@ ___
• **transactionIndex**: *number | null*
-*Defined in [ethereum-types/src/index.ts:380](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L380)*
+*Defined in [ethereum-types/src/index.ts:380](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L380)*
___
@@ -3909,7 +3909,7 @@ ___
• **value**: *BigNumber*
-*Defined in [ethereum-types/src/index.ts:383](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L383)*
+*Defined in [ethereum-types/src/index.ts:383](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L383)*
@@ -3923,7 +3923,7 @@ ___
• **blockHash**: *string*
-*Defined in [ethereum-types/src/index.ts:472](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L472)*
+*Defined in [ethereum-types/src/index.ts:472](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L472)*
___
@@ -3931,7 +3931,7 @@ ___
• **blockNumber**: *number*
-*Defined in [ethereum-types/src/index.ts:473](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L473)*
+*Defined in [ethereum-types/src/index.ts:473](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L473)*
___
@@ -3939,7 +3939,7 @@ ___
• **contractAddress**: *string | null*
-*Defined in [ethereum-types/src/index.ts:481](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L481)*
+*Defined in [ethereum-types/src/index.ts:481](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L481)*
___
@@ -3947,7 +3947,7 @@ ___
• **cumulativeGasUsed**: *number*
-*Defined in [ethereum-types/src/index.ts:479](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L479)*
+*Defined in [ethereum-types/src/index.ts:479](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L479)*
___
@@ -3955,7 +3955,7 @@ ___
• **from**: *string*
-*Defined in [ethereum-types/src/index.ts:476](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L476)*
+*Defined in [ethereum-types/src/index.ts:476](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L476)*
___
@@ -3963,7 +3963,7 @@ ___
• **gasUsed**: *number*
-*Defined in [ethereum-types/src/index.ts:480](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L480)*
+*Defined in [ethereum-types/src/index.ts:480](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L480)*
___
@@ -3971,7 +3971,7 @@ ___
• **logs**: *[LogEntry](#class-logentry)[]*
-*Defined in [ethereum-types/src/index.ts:482](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L482)*
+*Defined in [ethereum-types/src/index.ts:482](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L482)*
___
@@ -3979,7 +3979,7 @@ ___
• **status**: *[TransactionReceiptStatus](#transactionreceiptstatus)*
-*Defined in [ethereum-types/src/index.ts:478](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L478)*
+*Defined in [ethereum-types/src/index.ts:478](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L478)*
___
@@ -3987,7 +3987,7 @@ ___
• **to**: *string*
-*Defined in [ethereum-types/src/index.ts:477](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L477)*
+*Defined in [ethereum-types/src/index.ts:477](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L477)*
___
@@ -3995,7 +3995,7 @@ ___
• **transactionHash**: *string*
-*Defined in [ethereum-types/src/index.ts:474](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L474)*
+*Defined in [ethereum-types/src/index.ts:474](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L474)*
___
@@ -4003,7 +4003,7 @@ ___
• **transactionIndex**: *number*
-*Defined in [ethereum-types/src/index.ts:475](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L475)*
+*Defined in [ethereum-types/src/index.ts:475](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L475)*
@@ -4023,7 +4023,7 @@ otherwise we don't.
*Inherited from [TransactionReceipt](#interface-transactionreceipt).[blockHash](#blockhash)*
-*Defined in [ethereum-types/src/index.ts:472](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L472)*
+*Defined in [ethereum-types/src/index.ts:472](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L472)*
___
@@ -4033,7 +4033,7 @@ ___
*Inherited from [TransactionReceipt](#interface-transactionreceipt).[blockNumber](#blocknumber)*
-*Defined in [ethereum-types/src/index.ts:473](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L473)*
+*Defined in [ethereum-types/src/index.ts:473](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L473)*
___
@@ -4043,7 +4043,7 @@ ___
*Inherited from [TransactionReceipt](#interface-transactionreceipt).[contractAddress](#contractaddress)*
-*Defined in [ethereum-types/src/index.ts:481](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L481)*
+*Defined in [ethereum-types/src/index.ts:481](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L481)*
___
@@ -4053,7 +4053,7 @@ ___
*Inherited from [TransactionReceipt](#interface-transactionreceipt).[cumulativeGasUsed](#cumulativegasused)*
-*Defined in [ethereum-types/src/index.ts:479](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L479)*
+*Defined in [ethereum-types/src/index.ts:479](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L479)*
___
@@ -4063,7 +4063,7 @@ ___
*Inherited from [TransactionReceipt](#interface-transactionreceipt).[from](#from)*
-*Defined in [ethereum-types/src/index.ts:476](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L476)*
+*Defined in [ethereum-types/src/index.ts:476](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L476)*
___
@@ -4073,7 +4073,7 @@ ___
*Inherited from [TransactionReceipt](#interface-transactionreceipt).[gasUsed](#gasused)*
-*Defined in [ethereum-types/src/index.ts:480](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L480)*
+*Defined in [ethereum-types/src/index.ts:480](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L480)*
___
@@ -4083,7 +4083,7 @@ ___
*Overrides [TransactionReceipt](_ethereum_types_src_index_.transactionreceipt.md).[logs](#logs)*
-*Defined in [ethereum-types/src/index.ts:538](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L538)*
+*Defined in [ethereum-types/src/index.ts:538](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L538)*
___
@@ -4093,7 +4093,7 @@ ___
*Inherited from [TransactionReceipt](#interface-transactionreceipt).[status](#status)*
-*Defined in [ethereum-types/src/index.ts:478](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L478)*
+*Defined in [ethereum-types/src/index.ts:478](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L478)*
___
@@ -4103,7 +4103,7 @@ ___
*Inherited from [TransactionReceipt](#interface-transactionreceipt).[to](#to)*
-*Defined in [ethereum-types/src/index.ts:477](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L477)*
+*Defined in [ethereum-types/src/index.ts:477](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L477)*
___
@@ -4113,7 +4113,7 @@ ___
*Inherited from [TransactionReceipt](#interface-transactionreceipt).[transactionHash](#transactionhash)*
-*Defined in [ethereum-types/src/index.ts:474](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L474)*
+*Defined in [ethereum-types/src/index.ts:474](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L474)*
___
@@ -4123,7 +4123,7 @@ ___
*Inherited from [TransactionReceipt](#interface-transactionreceipt).[transactionIndex](#transactionindex)*
-*Defined in [ethereum-types/src/index.ts:475](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L475)*
+*Defined in [ethereum-types/src/index.ts:475](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L475)*
@@ -4137,7 +4137,7 @@ ___
• **gas**: *number*
-*Defined in [ethereum-types/src/index.ts:306](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L306)*
+*Defined in [ethereum-types/src/index.ts:306](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L306)*
___
@@ -4145,7 +4145,7 @@ ___
• **returnValue**: *any*
-*Defined in [ethereum-types/src/index.ts:307](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L307)*
+*Defined in [ethereum-types/src/index.ts:307](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L307)*
___
@@ -4153,7 +4153,7 @@ ___
• **structLogs**: *[StructLog](#class-structlog)[]*
-*Defined in [ethereum-types/src/index.ts:308](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L308)*
+*Defined in [ethereum-types/src/index.ts:308](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L308)*
@@ -4169,7 +4169,7 @@ ___
*Overrides [EventParameter](_ethereum_types_src_index_.eventparameter.md).[components](#optional-components)*
-*Defined in [ethereum-types/src/index.ts:142](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L142)*
+*Defined in [ethereum-types/src/index.ts:142](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L142)*
___
@@ -4179,7 +4179,7 @@ ___
*Inherited from [EventParameter](#interface-eventparameter).[internalType](#optional-internaltype)*
-*Defined in [ethereum-types/src/index.ts:137](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L137)*
+*Defined in [ethereum-types/src/index.ts:137](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L137)*
___
@@ -4189,7 +4189,7 @@ ___
*Inherited from [EventParameter](#interface-eventparameter).[name](#name)*
-*Defined in [ethereum-types/src/index.ts:135](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L135)*
+*Defined in [ethereum-types/src/index.ts:135](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L135)*
___
@@ -4199,7 +4199,7 @@ ___
*Inherited from [EventParameter](#interface-eventparameter).[type](#type)*
-*Defined in [ethereum-types/src/index.ts:136](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L136)*
+*Defined in [ethereum-types/src/index.ts:136](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L136)*
@@ -4218,7 +4218,7 @@ ___
• **accessList**: *[TxAccessList](#class-txaccesslist)*
-*Defined in [ethereum-types/src/index.ts:412](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L412)*
+*Defined in [ethereum-types/src/index.ts:412](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L412)*
___
@@ -4226,7 +4226,7 @@ ___
• **gasUsed**: *number*
-*Defined in [ethereum-types/src/index.ts:413](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L413)*
+*Defined in [ethereum-types/src/index.ts:413](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L413)*
@@ -4242,7 +4242,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[accessList](#optional-accesslist)*
-*Defined in [ethereum-types/src/index.ts:400](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L400)*
+*Defined in [ethereum-types/src/index.ts:400](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L400)*
___
@@ -4252,7 +4252,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[data](#optional-data)*
-*Defined in [ethereum-types/src/index.ts:398](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L398)*
+*Defined in [ethereum-types/src/index.ts:398](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L398)*
___
@@ -4260,7 +4260,7 @@ ___
• **from**: *string*
-*Defined in [ethereum-types/src/index.ts:404](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L404)*
+*Defined in [ethereum-types/src/index.ts:404](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L404)*
___
@@ -4270,7 +4270,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[gas](#optional-gas)*
-*Defined in [ethereum-types/src/index.ts:394](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L394)*
+*Defined in [ethereum-types/src/index.ts:394](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L394)*
___
@@ -4280,7 +4280,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[gasPrice](#optional-gasprice)*
-*Defined in [ethereum-types/src/index.ts:395](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L395)*
+*Defined in [ethereum-types/src/index.ts:395](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L395)*
___
@@ -4290,7 +4290,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[maxFeePerGas](#optional-maxfeepergas)*
-*Defined in [ethereum-types/src/index.ts:396](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L396)*
+*Defined in [ethereum-types/src/index.ts:396](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L396)*
___
@@ -4300,7 +4300,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[maxPriorityFeePerGas](#optional-maxpriorityfeepergas)*
-*Defined in [ethereum-types/src/index.ts:397](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L397)*
+*Defined in [ethereum-types/src/index.ts:397](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L397)*
___
@@ -4310,7 +4310,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[nonce](#optional-nonce)*
-*Defined in [ethereum-types/src/index.ts:399](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L399)*
+*Defined in [ethereum-types/src/index.ts:399](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L399)*
___
@@ -4320,7 +4320,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[to](#optional-to)*
-*Defined in [ethereum-types/src/index.ts:392](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L392)*
+*Defined in [ethereum-types/src/index.ts:392](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L392)*
___
@@ -4330,7 +4330,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[value](#optional-value)*
-*Defined in [ethereum-types/src/index.ts:393](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L393)*
+*Defined in [ethereum-types/src/index.ts:393](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L393)*
@@ -4346,7 +4346,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[accessList](#optional-accesslist)*
-*Defined in [ethereum-types/src/index.ts:400](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L400)*
+*Defined in [ethereum-types/src/index.ts:400](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L400)*
___
@@ -4356,7 +4356,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[data](#optional-data)*
-*Defined in [ethereum-types/src/index.ts:398](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L398)*
+*Defined in [ethereum-types/src/index.ts:398](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L398)*
___
@@ -4366,7 +4366,7 @@ ___
*Inherited from [TxData](#interface-txdata).[from](#from)*
-*Defined in [ethereum-types/src/index.ts:404](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L404)*
+*Defined in [ethereum-types/src/index.ts:404](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L404)*
___
@@ -4376,7 +4376,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[gas](#optional-gas)*
-*Defined in [ethereum-types/src/index.ts:394](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L394)*
+*Defined in [ethereum-types/src/index.ts:394](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L394)*
___
@@ -4386,7 +4386,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[gasPrice](#optional-gasprice)*
-*Defined in [ethereum-types/src/index.ts:395](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L395)*
+*Defined in [ethereum-types/src/index.ts:395](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L395)*
___
@@ -4396,7 +4396,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[maxFeePerGas](#optional-maxfeepergas)*
-*Defined in [ethereum-types/src/index.ts:396](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L396)*
+*Defined in [ethereum-types/src/index.ts:396](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L396)*
___
@@ -4406,7 +4406,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[maxPriorityFeePerGas](#optional-maxpriorityfeepergas)*
-*Defined in [ethereum-types/src/index.ts:397](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L397)*
+*Defined in [ethereum-types/src/index.ts:397](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L397)*
___
@@ -4416,7 +4416,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[nonce](#optional-nonce)*
-*Defined in [ethereum-types/src/index.ts:399](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L399)*
+*Defined in [ethereum-types/src/index.ts:399](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L399)*
___
@@ -4426,7 +4426,7 @@ ___
*Inherited from [CallTxDataBase](#interface-calltxdatabase).[to](#optional-to)*
-*Defined in [ethereum-types/src/index.ts:392](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L392)*
+*Defined in [ethereum-types/src/index.ts:392](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L392)*
___
@@ -4436,7 +4436,7 @@ ___
*Overrides [CallTxDataBase](_ethereum_types_src_index_.calltxdatabase.md).[value](#optional-value)*
-*Defined in [ethereum-types/src/index.ts:466](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L466)*
+*Defined in [ethereum-types/src/index.ts:466](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L466)*
@@ -4454,7 +4454,7 @@ This interface allowed sending synchonous requests, support for which was later
▸ **send**(`payload`: [JSONRPCRequestPayload](_ethereum_types_src_index_.jsonrpcrequestpayload.md)): *[JSONRPCResponsePayload](#class-jsonrpcresponsepayload)*
-*Defined in [ethereum-types/src/index.ts:45](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L45)*
+*Defined in [ethereum-types/src/index.ts:45](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L45)*
**Parameters:**
@@ -4470,7 +4470,7 @@ ___
▸ **sendAsync**(`payload`: [JSONRPCRequestPayload](_ethereum_types_src_index_.jsonrpcrequestpayload.md), `callback`: [JSONRPCErrorCallback](#jsonrpcerrorcallback)): *void*
-*Defined in [ethereum-types/src/index.ts:44](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L44)*
+*Defined in [ethereum-types/src/index.ts:44](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L44)*
**Parameters:**
@@ -4497,7 +4497,7 @@ before the first attempts to conform to EIP1193
▸ **send**(`payload`: [JSONRPCRequestPayload](_ethereum_types_src_index_.jsonrpcrequestpayload.md), `callback`: [JSONRPCErrorCallback](#jsonrpcerrorcallback)): *void*
-*Defined in [ethereum-types/src/index.ts:54](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L54)*
+*Defined in [ethereum-types/src/index.ts:54](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L54)*
**Parameters:**
@@ -4524,7 +4524,7 @@ however it does not conform entirely.
▸ **send**(`method`: string, `params?`: any[]): *Promise‹any›*
-*Defined in [ethereum-types/src/index.ts:63](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L63)*
+*Defined in [ethereum-types/src/index.ts:63](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L63)*
**Parameters:**
@@ -4551,7 +4551,7 @@ add here
• **isMetaMask**? : *undefined | false | true*
-*Defined in [ethereum-types/src/index.ts:31](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L31)*
+*Defined in [ethereum-types/src/index.ts:31](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L31)*
___
@@ -4559,7 +4559,7 @@ ___
• **isParity**? : *undefined | false | true*
-*Defined in [ethereum-types/src/index.ts:32](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L32)*
+*Defined in [ethereum-types/src/index.ts:32](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L32)*
___
@@ -4567,7 +4567,7 @@ ___
• **isZeroExProvider**? : *undefined | false | true*
-*Defined in [ethereum-types/src/index.ts:30](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L30)*
+*Defined in [ethereum-types/src/index.ts:30](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L30)*
## Methods
@@ -4575,7 +4575,7 @@ ___
▸ **enable**(): *Promise‹void›*
-*Defined in [ethereum-types/src/index.ts:34](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L34)*
+*Defined in [ethereum-types/src/index.ts:34](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L34)*
**Returns:** *Promise‹void›*
@@ -4585,7 +4585,7 @@ ___
▸ **sendAsync**(`payload`: [JSONRPCRequestPayload](_ethereum_types_src_index_.jsonrpcrequestpayload.md), `callback`: [JSONRPCErrorCallback](#jsonrpcerrorcallback)): *void*
-*Defined in [ethereum-types/src/index.ts:35](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L35)*
+*Defined in [ethereum-types/src/index.ts:35](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L35)*
**Parameters:**
@@ -4602,7 +4602,7 @@ ___
▸ **stop**(): *void*
-*Defined in [ethereum-types/src/index.ts:33](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L33)*
+*Defined in [ethereum-types/src/index.ts:33](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L33)*
**Returns:** *void*
@@ -4622,7 +4622,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[difficulty](#difficulty)*
-*Defined in [web3-wrapper/src/types.ts:15](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L15)*
+*Defined in [web3-wrapper/src/types.ts:15](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L15)*
___
@@ -4632,7 +4632,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[extraData](#extradata)*
-*Defined in [web3-wrapper/src/types.ts:17](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L17)*
+*Defined in [web3-wrapper/src/types.ts:17](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L17)*
___
@@ -4642,7 +4642,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[gasLimit](#gaslimit)*
-*Defined in [web3-wrapper/src/types.ts:19](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L19)*
+*Defined in [web3-wrapper/src/types.ts:19](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L19)*
___
@@ -4652,7 +4652,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[gasUsed](#gasused)*
-*Defined in [web3-wrapper/src/types.ts:20](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L20)*
+*Defined in [web3-wrapper/src/types.ts:20](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L20)*
___
@@ -4662,7 +4662,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[hash](#hash)*
-*Defined in [web3-wrapper/src/types.ts:7](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L7)*
+*Defined in [web3-wrapper/src/types.ts:7](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L7)*
___
@@ -4672,7 +4672,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[logsBloom](#logsbloom)*
-*Defined in [web3-wrapper/src/types.ts:11](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L11)*
+*Defined in [web3-wrapper/src/types.ts:11](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L11)*
___
@@ -4682,7 +4682,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[miner](#miner)*
-*Defined in [web3-wrapper/src/types.ts:14](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L14)*
+*Defined in [web3-wrapper/src/types.ts:14](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L14)*
___
@@ -4692,7 +4692,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[nonce](#nonce)*
-*Defined in [web3-wrapper/src/types.ts:9](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L9)*
+*Defined in [web3-wrapper/src/types.ts:9](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L9)*
___
@@ -4702,7 +4702,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[number](#number)*
-*Defined in [web3-wrapper/src/types.ts:6](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L6)*
+*Defined in [web3-wrapper/src/types.ts:6](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L6)*
___
@@ -4712,7 +4712,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[parentHash](#parenthash)*
-*Defined in [web3-wrapper/src/types.ts:8](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L8)*
+*Defined in [web3-wrapper/src/types.ts:8](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L8)*
___
@@ -4722,7 +4722,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[sha3Uncles](#sha3uncles)*
-*Defined in [web3-wrapper/src/types.ts:10](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L10)*
+*Defined in [web3-wrapper/src/types.ts:10](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L10)*
___
@@ -4732,7 +4732,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[size](#size)*
-*Defined in [web3-wrapper/src/types.ts:18](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L18)*
+*Defined in [web3-wrapper/src/types.ts:18](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L18)*
___
@@ -4742,7 +4742,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[stateRoot](#stateroot)*
-*Defined in [web3-wrapper/src/types.ts:13](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L13)*
+*Defined in [web3-wrapper/src/types.ts:13](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L13)*
___
@@ -4752,7 +4752,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[timestamp](#timestamp)*
-*Defined in [web3-wrapper/src/types.ts:21](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L21)*
+*Defined in [web3-wrapper/src/types.ts:21](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L21)*
___
@@ -4762,7 +4762,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[totalDifficulty](#totaldifficulty)*
-*Defined in [web3-wrapper/src/types.ts:16](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L16)*
+*Defined in [web3-wrapper/src/types.ts:16](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L16)*
___
@@ -4770,7 +4770,7 @@ ___
• **transactions**: *string[]*
-*Defined in [web3-wrapper/src/types.ts:25](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L25)*
+*Defined in [web3-wrapper/src/types.ts:25](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L25)*
___
@@ -4780,7 +4780,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[transactionsRoot](#transactionsroot)*
-*Defined in [web3-wrapper/src/types.ts:12](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L12)*
+*Defined in [web3-wrapper/src/types.ts:12](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L12)*
___
@@ -4790,7 +4790,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[uncles](#uncles)*
-*Defined in [web3-wrapper/src/types.ts:22](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L22)*
+*Defined in [web3-wrapper/src/types.ts:22](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L22)*
@@ -4806,7 +4806,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[difficulty](#difficulty)*
-*Defined in [web3-wrapper/src/types.ts:15](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L15)*
+*Defined in [web3-wrapper/src/types.ts:15](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L15)*
___
@@ -4816,7 +4816,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[extraData](#extradata)*
-*Defined in [web3-wrapper/src/types.ts:17](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L17)*
+*Defined in [web3-wrapper/src/types.ts:17](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L17)*
___
@@ -4826,7 +4826,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[gasLimit](#gaslimit)*
-*Defined in [web3-wrapper/src/types.ts:19](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L19)*
+*Defined in [web3-wrapper/src/types.ts:19](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L19)*
___
@@ -4836,7 +4836,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[gasUsed](#gasused)*
-*Defined in [web3-wrapper/src/types.ts:20](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L20)*
+*Defined in [web3-wrapper/src/types.ts:20](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L20)*
___
@@ -4846,7 +4846,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[hash](#hash)*
-*Defined in [web3-wrapper/src/types.ts:7](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L7)*
+*Defined in [web3-wrapper/src/types.ts:7](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L7)*
___
@@ -4856,7 +4856,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[logsBloom](#logsbloom)*
-*Defined in [web3-wrapper/src/types.ts:11](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L11)*
+*Defined in [web3-wrapper/src/types.ts:11](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L11)*
___
@@ -4866,7 +4866,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[miner](#miner)*
-*Defined in [web3-wrapper/src/types.ts:14](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L14)*
+*Defined in [web3-wrapper/src/types.ts:14](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L14)*
___
@@ -4876,7 +4876,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[nonce](#nonce)*
-*Defined in [web3-wrapper/src/types.ts:9](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L9)*
+*Defined in [web3-wrapper/src/types.ts:9](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L9)*
___
@@ -4886,7 +4886,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[number](#number)*
-*Defined in [web3-wrapper/src/types.ts:6](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L6)*
+*Defined in [web3-wrapper/src/types.ts:6](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L6)*
___
@@ -4896,7 +4896,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[parentHash](#parenthash)*
-*Defined in [web3-wrapper/src/types.ts:8](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L8)*
+*Defined in [web3-wrapper/src/types.ts:8](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L8)*
___
@@ -4906,7 +4906,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[sha3Uncles](#sha3uncles)*
-*Defined in [web3-wrapper/src/types.ts:10](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L10)*
+*Defined in [web3-wrapper/src/types.ts:10](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L10)*
___
@@ -4916,7 +4916,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[size](#size)*
-*Defined in [web3-wrapper/src/types.ts:18](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L18)*
+*Defined in [web3-wrapper/src/types.ts:18](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L18)*
___
@@ -4926,7 +4926,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[stateRoot](#stateroot)*
-*Defined in [web3-wrapper/src/types.ts:13](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L13)*
+*Defined in [web3-wrapper/src/types.ts:13](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L13)*
___
@@ -4936,7 +4936,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[timestamp](#timestamp)*
-*Defined in [web3-wrapper/src/types.ts:21](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L21)*
+*Defined in [web3-wrapper/src/types.ts:21](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L21)*
___
@@ -4946,7 +4946,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[totalDifficulty](#totaldifficulty)*
-*Defined in [web3-wrapper/src/types.ts:16](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L16)*
+*Defined in [web3-wrapper/src/types.ts:16](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L16)*
___
@@ -4954,7 +4954,7 @@ ___
• **transactions**: *[TransactionRPC](#class-transactionrpc)[]*
-*Defined in [web3-wrapper/src/types.ts:28](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L28)*
+*Defined in [web3-wrapper/src/types.ts:28](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L28)*
___
@@ -4964,7 +4964,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[transactionsRoot](#transactionsroot)*
-*Defined in [web3-wrapper/src/types.ts:12](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L12)*
+*Defined in [web3-wrapper/src/types.ts:12](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L12)*
___
@@ -4974,7 +4974,7 @@ ___
*Inherited from [AbstractBlockRPC](#interface-abstractblockrpc).[uncles](#uncles)*
-*Defined in [web3-wrapper/src/types.ts:22](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L22)*
+*Defined in [web3-wrapper/src/types.ts:22](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L22)*
@@ -4990,7 +4990,7 @@ ___
*Inherited from [CallTxDataBaseRPC](#interface-calltxdatabaserpc).[accessList](#optional-accesslist)*
-*Defined in [web3-wrapper/src/types.ts:83](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L83)*
+*Defined in [web3-wrapper/src/types.ts:83](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L83)*
___
@@ -5000,7 +5000,7 @@ ___
*Inherited from [CallTxDataBaseRPC](#interface-calltxdatabaserpc).[data](#optional-data)*
-*Defined in [web3-wrapper/src/types.ts:80](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L80)*
+*Defined in [web3-wrapper/src/types.ts:80](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L80)*
___
@@ -5008,7 +5008,7 @@ ___
• **from**? : *undefined | string*
-*Defined in [web3-wrapper/src/types.ts:89](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L89)*
+*Defined in [web3-wrapper/src/types.ts:89](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L89)*
___
@@ -5018,7 +5018,7 @@ ___
*Inherited from [CallTxDataBaseRPC](#interface-calltxdatabaserpc).[gas](#optional-gas)*
-*Defined in [web3-wrapper/src/types.ts:76](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L76)*
+*Defined in [web3-wrapper/src/types.ts:76](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L76)*
___
@@ -5028,7 +5028,7 @@ ___
*Inherited from [CallTxDataBaseRPC](#interface-calltxdatabaserpc).[gasPrice](#optional-gasprice)*
-*Defined in [web3-wrapper/src/types.ts:77](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L77)*
+*Defined in [web3-wrapper/src/types.ts:77](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L77)*
___
@@ -5038,7 +5038,7 @@ ___
*Inherited from [CallTxDataBaseRPC](#interface-calltxdatabaserpc).[maxFeePerGas](#optional-maxfeepergas)*
-*Defined in [web3-wrapper/src/types.ts:78](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L78)*
+*Defined in [web3-wrapper/src/types.ts:78](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L78)*
___
@@ -5048,7 +5048,7 @@ ___
*Inherited from [CallTxDataBaseRPC](#interface-calltxdatabaserpc).[maxPriorityFeePerGas](#optional-maxpriorityfeepergas)*
-*Defined in [web3-wrapper/src/types.ts:79](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L79)*
+*Defined in [web3-wrapper/src/types.ts:79](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L79)*
___
@@ -5058,7 +5058,7 @@ ___
*Inherited from [CallTxDataBaseRPC](#interface-calltxdatabaserpc).[nonce](#optional-nonce)*
-*Defined in [web3-wrapper/src/types.ts:81](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L81)*
+*Defined in [web3-wrapper/src/types.ts:81](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L81)*
___
@@ -5068,7 +5068,7 @@ ___
*Inherited from [CallTxDataBaseRPC](#interface-calltxdatabaserpc).[to](#optional-to)*
-*Defined in [web3-wrapper/src/types.ts:74](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L74)*
+*Defined in [web3-wrapper/src/types.ts:74](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L74)*
___
@@ -5078,7 +5078,7 @@ ___
*Inherited from [CallTxDataBaseRPC](#interface-calltxdatabaserpc).[type](#optional-type)*
-*Defined in [web3-wrapper/src/types.ts:82](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L82)*
+*Defined in [web3-wrapper/src/types.ts:82](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L82)*
___
@@ -5088,7 +5088,7 @@ ___
*Inherited from [CallTxDataBaseRPC](#interface-calltxdatabaserpc).[value](#optional-value)*
-*Defined in [web3-wrapper/src/types.ts:75](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L75)*
+*Defined in [web3-wrapper/src/types.ts:75](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L75)*
@@ -5111,7 +5111,7 @@ ___
• **address**: *string*
-*Defined in [web3-wrapper/src/types.ts:66](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L66)*
+*Defined in [web3-wrapper/src/types.ts:66](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L66)*
___
@@ -5119,7 +5119,7 @@ ___
• **blockHash**: *string | null*
-*Defined in [web3-wrapper/src/types.ts:64](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L64)*
+*Defined in [web3-wrapper/src/types.ts:64](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L64)*
___
@@ -5127,7 +5127,7 @@ ___
• **blockNumber**: *string | null*
-*Defined in [web3-wrapper/src/types.ts:65](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L65)*
+*Defined in [web3-wrapper/src/types.ts:65](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L65)*
___
@@ -5135,7 +5135,7 @@ ___
• **data**: *string*
-*Defined in [web3-wrapper/src/types.ts:67](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L67)*
+*Defined in [web3-wrapper/src/types.ts:67](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L67)*
___
@@ -5143,7 +5143,7 @@ ___
• **logIndex**: *string | null*
-*Defined in [web3-wrapper/src/types.ts:61](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L61)*
+*Defined in [web3-wrapper/src/types.ts:61](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L61)*
___
@@ -5151,7 +5151,7 @@ ___
• **topics**: *string[]*
-*Defined in [web3-wrapper/src/types.ts:68](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L68)*
+*Defined in [web3-wrapper/src/types.ts:68](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L68)*
___
@@ -5159,7 +5159,7 @@ ___
• **transactionHash**: *string*
-*Defined in [web3-wrapper/src/types.ts:63](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L63)*
+*Defined in [web3-wrapper/src/types.ts:63](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L63)*
___
@@ -5167,7 +5167,7 @@ ___
• **transactionIndex**: *string | null*
-*Defined in [web3-wrapper/src/types.ts:62](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L62)*
+*Defined in [web3-wrapper/src/types.ts:62](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L62)*
@@ -5181,7 +5181,7 @@ ___
• **blockHash**: *string*
-*Defined in [web3-wrapper/src/types.ts:47](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L47)*
+*Defined in [web3-wrapper/src/types.ts:47](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L47)*
___
@@ -5189,7 +5189,7 @@ ___
• **blockNumber**: *string*
-*Defined in [web3-wrapper/src/types.ts:48](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L48)*
+*Defined in [web3-wrapper/src/types.ts:48](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L48)*
___
@@ -5197,7 +5197,7 @@ ___
• **contractAddress**: *string | null*
-*Defined in [web3-wrapper/src/types.ts:56](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L56)*
+*Defined in [web3-wrapper/src/types.ts:56](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L56)*
___
@@ -5205,7 +5205,7 @@ ___
• **cumulativeGasUsed**: *string*
-*Defined in [web3-wrapper/src/types.ts:54](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L54)*
+*Defined in [web3-wrapper/src/types.ts:54](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L54)*
___
@@ -5213,7 +5213,7 @@ ___
• **from**: *string*
-*Defined in [web3-wrapper/src/types.ts:51](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L51)*
+*Defined in [web3-wrapper/src/types.ts:51](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L51)*
___
@@ -5221,7 +5221,7 @@ ___
• **gasUsed**: *string*
-*Defined in [web3-wrapper/src/types.ts:55](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L55)*
+*Defined in [web3-wrapper/src/types.ts:55](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L55)*
___
@@ -5229,7 +5229,7 @@ ___
• **logs**: *[LogEntryRPC](#class-logentryrpc)[]*
-*Defined in [web3-wrapper/src/types.ts:57](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L57)*
+*Defined in [web3-wrapper/src/types.ts:57](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L57)*
___
@@ -5237,7 +5237,7 @@ ___
• **status**: *[TransactionReceiptStatusRPC](#transactionreceiptstatusrpc)*
-*Defined in [web3-wrapper/src/types.ts:53](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L53)*
+*Defined in [web3-wrapper/src/types.ts:53](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L53)*
___
@@ -5245,7 +5245,7 @@ ___
• **to**: *string*
-*Defined in [web3-wrapper/src/types.ts:52](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L52)*
+*Defined in [web3-wrapper/src/types.ts:52](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L52)*
___
@@ -5253,7 +5253,7 @@ ___
• **transactionHash**: *string*
-*Defined in [web3-wrapper/src/types.ts:49](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L49)*
+*Defined in [web3-wrapper/src/types.ts:49](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L49)*
___
@@ -5261,7 +5261,7 @@ ___
• **transactionIndex**: *string*
-*Defined in [web3-wrapper/src/types.ts:50](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L50)*
+*Defined in [web3-wrapper/src/types.ts:50](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L50)*
@@ -5275,7 +5275,7 @@ ___
• **blockHash**: *string | null*
-*Defined in [web3-wrapper/src/types.ts:33](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L33)*
+*Defined in [web3-wrapper/src/types.ts:33](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L33)*
___
@@ -5283,7 +5283,7 @@ ___
• **blockNumber**: *string | null*
-*Defined in [web3-wrapper/src/types.ts:34](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L34)*
+*Defined in [web3-wrapper/src/types.ts:34](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L34)*
___
@@ -5291,7 +5291,7 @@ ___
• **from**: *string*
-*Defined in [web3-wrapper/src/types.ts:36](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L36)*
+*Defined in [web3-wrapper/src/types.ts:36](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L36)*
___
@@ -5299,7 +5299,7 @@ ___
• **gas**: *string*
-*Defined in [web3-wrapper/src/types.ts:42](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L42)*
+*Defined in [web3-wrapper/src/types.ts:42](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L42)*
___
@@ -5307,7 +5307,7 @@ ___
• **gasPrice**? : *undefined | string*
-*Defined in [web3-wrapper/src/types.ts:39](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L39)*
+*Defined in [web3-wrapper/src/types.ts:39](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L39)*
___
@@ -5315,7 +5315,7 @@ ___
• **hash**: *string*
-*Defined in [web3-wrapper/src/types.ts:31](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L31)*
+*Defined in [web3-wrapper/src/types.ts:31](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L31)*
___
@@ -5323,7 +5323,7 @@ ___
• **input**: *string*
-*Defined in [web3-wrapper/src/types.ts:43](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L43)*
+*Defined in [web3-wrapper/src/types.ts:43](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L43)*
___
@@ -5331,7 +5331,7 @@ ___
• **maxFeePerGas**? : *undefined | string*
-*Defined in [web3-wrapper/src/types.ts:40](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L40)*
+*Defined in [web3-wrapper/src/types.ts:40](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L40)*
___
@@ -5339,7 +5339,7 @@ ___
• **maxPriorityFeePerGas**? : *undefined | string*
-*Defined in [web3-wrapper/src/types.ts:41](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L41)*
+*Defined in [web3-wrapper/src/types.ts:41](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L41)*
___
@@ -5347,7 +5347,7 @@ ___
• **nonce**: *string*
-*Defined in [web3-wrapper/src/types.ts:32](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L32)*
+*Defined in [web3-wrapper/src/types.ts:32](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L32)*
___
@@ -5355,7 +5355,7 @@ ___
• **to**: *string | null*
-*Defined in [web3-wrapper/src/types.ts:37](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L37)*
+*Defined in [web3-wrapper/src/types.ts:37](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L37)*
___
@@ -5363,7 +5363,7 @@ ___
• **transactionIndex**: *string | null*
-*Defined in [web3-wrapper/src/types.ts:35](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L35)*
+*Defined in [web3-wrapper/src/types.ts:35](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L35)*
___
@@ -5371,7 +5371,7 @@ ___
• **value**: *string*
-*Defined in [web3-wrapper/src/types.ts:38](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L38)*
+*Defined in [web3-wrapper/src/types.ts:38](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L38)*
@@ -5387,7 +5387,7 @@ ___
*Inherited from [CallTxDataBaseRPC](#interface-calltxdatabaserpc).[accessList](#optional-accesslist)*
-*Defined in [web3-wrapper/src/types.ts:83](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L83)*
+*Defined in [web3-wrapper/src/types.ts:83](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L83)*
___
@@ -5397,7 +5397,7 @@ ___
*Inherited from [CallTxDataBaseRPC](#interface-calltxdatabaserpc).[data](#optional-data)*
-*Defined in [web3-wrapper/src/types.ts:80](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L80)*
+*Defined in [web3-wrapper/src/types.ts:80](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L80)*
___
@@ -5407,7 +5407,7 @@ ___
*Inherited from [TxDataRPC](#interface-txdatarpc).[from](#optional-from)*
-*Defined in [web3-wrapper/src/types.ts:89](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L89)*
+*Defined in [web3-wrapper/src/types.ts:89](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L89)*
___
@@ -5417,7 +5417,7 @@ ___
*Inherited from [CallTxDataBaseRPC](#interface-calltxdatabaserpc).[gas](#optional-gas)*
-*Defined in [web3-wrapper/src/types.ts:76](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L76)*
+*Defined in [web3-wrapper/src/types.ts:76](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L76)*
___
@@ -5427,7 +5427,7 @@ ___
*Inherited from [CallTxDataBaseRPC](#interface-calltxdatabaserpc).[gasPrice](#optional-gasprice)*
-*Defined in [web3-wrapper/src/types.ts:77](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L77)*
+*Defined in [web3-wrapper/src/types.ts:77](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L77)*
___
@@ -5437,7 +5437,7 @@ ___
*Inherited from [CallTxDataBaseRPC](#interface-calltxdatabaserpc).[maxFeePerGas](#optional-maxfeepergas)*
-*Defined in [web3-wrapper/src/types.ts:78](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L78)*
+*Defined in [web3-wrapper/src/types.ts:78](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L78)*
___
@@ -5447,7 +5447,7 @@ ___
*Inherited from [CallTxDataBaseRPC](#interface-calltxdatabaserpc).[maxPriorityFeePerGas](#optional-maxpriorityfeepergas)*
-*Defined in [web3-wrapper/src/types.ts:79](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L79)*
+*Defined in [web3-wrapper/src/types.ts:79](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L79)*
___
@@ -5457,7 +5457,7 @@ ___
*Inherited from [CallTxDataBaseRPC](#interface-calltxdatabaserpc).[nonce](#optional-nonce)*
-*Defined in [web3-wrapper/src/types.ts:81](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L81)*
+*Defined in [web3-wrapper/src/types.ts:81](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L81)*
___
@@ -5467,7 +5467,7 @@ ___
*Inherited from [CallTxDataBaseRPC](#interface-calltxdatabaserpc).[to](#optional-to)*
-*Defined in [web3-wrapper/src/types.ts:74](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L74)*
+*Defined in [web3-wrapper/src/types.ts:74](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L74)*
___
@@ -5477,7 +5477,7 @@ ___
*Inherited from [CallTxDataBaseRPC](#interface-calltxdatabaserpc).[type](#optional-type)*
-*Defined in [web3-wrapper/src/types.ts:82](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L82)*
+*Defined in [web3-wrapper/src/types.ts:82](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L82)*
___
@@ -5487,7 +5487,7 @@ ___
*Inherited from [CallTxDataBaseRPC](#interface-calltxdatabaserpc).[value](#optional-value)*
-*Defined in [web3-wrapper/src/types.ts:75](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L75)*
+*Defined in [web3-wrapper/src/types.ts:75](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L75)*
@@ -5501,7 +5501,7 @@ ___
Ƭ **AbiDefinition**: *[FunctionAbi](_ethereum_types_src_index_.md#functionabi) | [EventAbi](#interface-eventabi) | [RevertErrorAbi](#interface-reverterrorabi)*
-*Defined in [ethereum-types/src/index.ts:80](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L80)*
+*Defined in [ethereum-types/src/index.ts:80](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L80)*
___
@@ -5509,7 +5509,7 @@ ___
Ƭ **BlockParam**: *[BlockParamLiteral](#enumeration-blockparamliteral) | number*
-*Defined in [ethereum-types/src/index.ts:507](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L507)*
+*Defined in [ethereum-types/src/index.ts:507](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L507)*
___
@@ -5517,7 +5517,7 @@ ___
Ƭ **ConstructorStateMutability**: *"nonpayable" | "payable"*
-*Defined in [ethereum-types/src/index.ts:84](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L84)*
+*Defined in [ethereum-types/src/index.ts:84](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L84)*
___
@@ -5527,7 +5527,7 @@ ___
Ƭ **ContractEventArg**: *any*
-*Defined in [ethereum-types/src/index.ts:492](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L492)*
+*Defined in [ethereum-types/src/index.ts:492](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L492)*
___
@@ -5537,7 +5537,7 @@ ___
Ƭ **EIP1193Event**: *"accountsChanged" | "networkChanged" | "close" | "connect" | "notification"*
-*Defined in [ethereum-types/src/index.ts:70](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L70)*
+*Defined in [ethereum-types/src/index.ts:70](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L70)*
Interface for providers that conform to EIP 1193
Source: https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1193.md
@@ -5552,7 +5552,7 @@ ___
Ƭ **FunctionAbi**: *[MethodAbi](#interface-methodabi) | [ConstructorAbi](#interface-constructorabi) | [FallbackAbi](#interface-fallbackabi)*
-*Defined in [ethereum-types/src/index.ts:82](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L82)*
+*Defined in [ethereum-types/src/index.ts:82](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L82)*
___
@@ -5560,7 +5560,7 @@ ___
Ƭ **JSONRPCErrorCallback**: *function*
-*Defined in [ethereum-types/src/index.ts:3](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L3)*
+*Defined in [ethereum-types/src/index.ts:3](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L3)*
#### Type declaration:
@@ -5579,7 +5579,7 @@ ___
Ƭ **LogTopic**: *null | string | string[]*
-*Defined in [ethereum-types/src/index.ts:437](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L437)*
+*Defined in [ethereum-types/src/index.ts:437](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L437)*
___
@@ -5591,7 +5591,7 @@ ___
Ƭ **RawLog**: *[LogEntry](#interface-logentry)*
-*Defined in [ethereum-types/src/index.ts:499](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L499)*
+*Defined in [ethereum-types/src/index.ts:499](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L499)*
___
@@ -5599,7 +5599,7 @@ ___
Ƭ **StateMutability**: *"pure" | "view" | [ConstructorStateMutability](#constructorstatemutability)*
-*Defined in [ethereum-types/src/index.ts:85](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L85)*
+*Defined in [ethereum-types/src/index.ts:85](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L85)*
___
@@ -5607,7 +5607,7 @@ ___
Ƭ **SupportedProvider**: *[Web3JsProvider](_ethereum_types_src_index_.md#web3jsprovider) | [GanacheProvider](#interface-ganacheprovider) | [EIP1193Provider](#interface-eip1193provider) | [ZeroExProvider](#interface-zeroexprovider)*
-*Defined in [ethereum-types/src/index.ts:9](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L9)*
+*Defined in [ethereum-types/src/index.ts:9](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L9)*
Do not create your own provider. Use an existing provider from a Web3 or ProviderEngine library
Read more about Providers in the guides section of the 0x docs.
@@ -5618,7 +5618,7 @@ ___
Ƭ **TransactionReceiptStatus**: *null | string | 0 | 1*
-*Defined in [ethereum-types/src/index.ts:469](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L469)*
+*Defined in [ethereum-types/src/index.ts:469](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L469)*
___
@@ -5628,7 +5628,7 @@ ___
Ƭ **Web3JsProvider**: *[Web3JsV1Provider](#interface-web3jsv1provider) | [Web3JsV2Provider](#interface-web3jsv2provider) | [Web3JsV3Provider](#interface-web3jsv3provider)*
-*Defined in [ethereum-types/src/index.ts:11](https://github.com/0xProject/tools/blob/c64730cff/ethereum-types/src/index.ts#L11)*
+*Defined in [ethereum-types/src/index.ts:11](https://github.com/0xProject/tools/blob/56e66742a/ethereum-types/src/index.ts#L11)*
@@ -5646,7 +5646,7 @@ ___
#### ▪ **marshaller**: *object*
-*Defined in [web3-wrapper/src/marshaller.ts:34](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/marshaller.ts#L34)*
+*Defined in [web3-wrapper/src/marshaller.ts:34](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/marshaller.ts#L34)*
Utils to convert ethereum structures from user-space format to RPC format. (marshall/unmarshall)
@@ -5654,7 +5654,7 @@ Utils to convert ethereum structures from user-space format to RPC format. (mars
▸ **_marshalCallTxDataBase**(`callTxDataBase`: Partial‹CallTxDataBase›): *Partial‹[CallTxDataBaseRPC](#interface-calltxdatabaserpc)›*
-*Defined in [web3-wrapper/src/marshaller.ts:256](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/marshaller.ts#L256)*
+*Defined in [web3-wrapper/src/marshaller.ts:256](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/marshaller.ts#L256)*
**Parameters:**
@@ -5668,7 +5668,7 @@ Name | Type |
▸ **marshalAddress**(`address`: string): *string*
-*Defined in [web3-wrapper/src/marshaller.ts:224](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/marshaller.ts#L224)*
+*Defined in [web3-wrapper/src/marshaller.ts:224](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/marshaller.ts#L224)*
Marshall address
@@ -5686,7 +5686,7 @@ marshalled address
▸ **marshalBlockParam**(`blockParam`: [BlockParam](#blockparam) | string | number | undefined): *string | undefined*
-*Defined in [web3-wrapper/src/marshaller.ts:235](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/marshaller.ts#L235)*
+*Defined in [web3-wrapper/src/marshaller.ts:235](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/marshaller.ts#L235)*
Marshall block param
@@ -5704,7 +5704,7 @@ marshalled block param
▸ **marshalCallData**(`callData`: Partial‹CallData›): *Partial‹[CallDataRPC](#interface-calldatarpc)›*
-*Defined in [web3-wrapper/src/marshaller.ts:176](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/marshaller.ts#L176)*
+*Defined in [web3-wrapper/src/marshaller.ts:176](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/marshaller.ts#L176)*
Marshall call data
@@ -5722,7 +5722,7 @@ marshalled call data
▸ **marshalCallOverrides**(`overrides`: GethCallOverrides): *[GethCallOverridesRPC](#interface-gethcalloverridesrpc)*
-*Defined in [web3-wrapper/src/marshaller.ts:194](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/marshaller.ts#L194)*
+*Defined in [web3-wrapper/src/marshaller.ts:194](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/marshaller.ts#L194)*
Marshall call overrides parameter for for a geth eth_call.
@@ -5740,7 +5740,7 @@ marshalled overrides
▸ **marshalTxData**(`txData`: Partial‹TxData›): *Partial‹[TxDataRPC](#interface-txdatarpc)›*
-*Defined in [web3-wrapper/src/marshaller.ts:150](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/marshaller.ts#L150)*
+*Defined in [web3-wrapper/src/marshaller.ts:150](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/marshaller.ts#L150)*
Marshall transaction data
@@ -5758,7 +5758,7 @@ marshalled transaction data
▸ **unmarshalIntoBlockWithTransactionData**(`blockWithHexValues`: [BlockWithTransactionDataRPC](#interface-blockwithtransactiondatarpc)): *BlockWithTransactionData*
-*Defined in [web3-wrapper/src/marshaller.ts:60](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/marshaller.ts#L60)*
+*Defined in [web3-wrapper/src/marshaller.ts:60](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/marshaller.ts#L60)*
Unmarshall block with transaction data
@@ -5776,7 +5776,7 @@ unmarshalled block with transaction data
▸ **unmarshalIntoBlockWithoutTransactionData**(`blockWithHexValues`: [BlockWithoutTransactionDataRPC](#interface-blockwithouttransactiondatarpc)): *BlockWithoutTransactionData*
-*Defined in [web3-wrapper/src/marshaller.ts:40](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/marshaller.ts#L40)*
+*Defined in [web3-wrapper/src/marshaller.ts:40](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/marshaller.ts#L40)*
Unmarshall block without transaction data
@@ -5794,7 +5794,7 @@ unmarshalled block without transaction data
▸ **unmarshalLog**(`rawLog`: RawLogEntry): *LogEntry*
-*Defined in [web3-wrapper/src/marshaller.ts:247](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/marshaller.ts#L247)*
+*Defined in [web3-wrapper/src/marshaller.ts:247](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/marshaller.ts#L247)*
Unmarshall log
@@ -5812,7 +5812,7 @@ unmarshalled log
▸ **unmarshalTransaction**(`txRpc`: [TransactionRPC](#interface-transactionrpc)): *Transaction*
-*Defined in [web3-wrapper/src/marshaller.ts:83](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/marshaller.ts#L83)*
+*Defined in [web3-wrapper/src/marshaller.ts:83](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/marshaller.ts#L83)*
Unmarshall transaction
@@ -5830,7 +5830,7 @@ unmarshalled transaction
▸ **unmarshalTransactionReceipt**(`txReceiptRpc`: [TransactionReceiptRPC](#interface-transactionreceiptrpc)): *TransactionReceipt*
-*Defined in [web3-wrapper/src/marshaller.ts:106](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/marshaller.ts#L106)*
+*Defined in [web3-wrapper/src/marshaller.ts:106](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/marshaller.ts#L106)*
Unmarshall transaction receipt
@@ -5848,7 +5848,7 @@ unmarshalled transaction receipt
▸ **unmarshalTxData**(`txDataRpc`: [TxDataRPC](#interface-txdatarpc)): *TxData*
-*Defined in [web3-wrapper/src/marshaller.ts:122](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/marshaller.ts#L122)*
+*Defined in [web3-wrapper/src/marshaller.ts:122](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/marshaller.ts#L122)*
Unmarshall transaction data
@@ -5874,7 +5874,7 @@ unmarshalled transaction data
Ƭ **TransactionReceiptStatusRPC**: *null | string | 0 | 1*
-*Defined in [web3-wrapper/src/types.ts:71](https://github.com/0xProject/tools/blob/c64730cff/web3-wrapper/src/types.ts#L71)*
+*Defined in [web3-wrapper/src/types.ts:71](https://github.com/0xProject/tools/blob/56e66742a/web3-wrapper/src/types.ts#L71)*