diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0f05225b0..f43087a12 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,14 @@
This changelog is a work in progress and may contain notes for versions which have not actually been released. Check the [Releases](https://github.com/0xProject/0x-mesh/releases) page to see full release notes and more information about the latest released versions.
+
+## v8.1.1
+
+### Bug fixes 🐞
+
+- Fixed a regression which can result in memory leaks. ([#650](https://github.com/0xProject/0x-mesh/pull/650)).
+
+
## v8.1.0
### Features ✅
diff --git a/README.md b/README.md
index 27393db62..99ee810d0 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-[![Version](https://img.shields.io/badge/version-8.1.0-orange.svg)](https://github.com/0xProject/0x-mesh/releases)
+[![Version](https://img.shields.io/badge/version-8.1.1-orange.svg)](https://github.com/0xProject/0x-mesh/releases)
[![Docs](https://img.shields.io/badge/docs-website-yellow.svg)](https://0x-org.gitbook.io/mesh)
[![Chat with us on Discord](https://img.shields.io/badge/chat-Discord-blueViolet.svg)](https://discord.gg/HF7fHwk)
[![Circle CI](https://img.shields.io/circleci/project/0xProject/0x-mesh/master.svg)](https://circleci.com/gh/0xProject/0x-mesh/tree/master)
diff --git a/browser/package.json b/browser/package.json
index 8f5ae676f..0ce2e0171 100644
--- a/browser/package.json
+++ b/browser/package.json
@@ -1,6 +1,6 @@
{
"name": "@0x/mesh-browser",
- "version": "8.1.0",
+ "version": "8.1.1",
"description": "TypeScript and JavaScript bindings for running Mesh directly in the browser.",
"main": "./lib/index.js",
"license": "Apache-2.0",
diff --git a/core/core.go b/core/core.go
index 3f0241153..044e83cd1 100644
--- a/core/core.go
+++ b/core/core.go
@@ -57,7 +57,7 @@ const (
estimatedNonPollingEthereumRPCRequestsPer24Hrs = 50000
// logStatsInterval is how often to log stats for this node.
logStatsInterval = 5 * time.Minute
- version = "8.1.0"
+ version = "8.1.1"
)
// Note(albrow): The Config type is currently copied to browser/ts/index.ts. We
diff --git a/docs/browser/reference.md b/docs/browser/reference.md
index 6d52aa5b2..506ce833d 100644
--- a/docs/browser/reference.md
+++ b/docs/browser/reference.md
@@ -14,7 +14,7 @@ sending orders through the 0x Mesh network.
\+ **new Mesh**(`config`: [Config](#interface-config)): *[Mesh](#class-mesh)*
-*Defined in [index.ts:576](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L576)*
+*Defined in [index.ts:576](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L576)*
Instantiates a new Mesh instance.
@@ -34,7 +34,7 @@ An instance of Mesh
▸ **addOrdersAsync**(`orders`: SignedOrder[], `pinned`: boolean): *Promise‹[ValidationResults](#interface-validationresults)›*
-*Defined in [index.ts:650](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L650)*
+*Defined in [index.ts:650](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L650)*
Validates and adds the given orders to Mesh. If an order is successfully
added, Mesh will share it with any peers in the network and start
@@ -61,7 +61,7 @@ ___
▸ **onError**(`handler`: function): *void*
-*Defined in [index.ts:596](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L596)*
+*Defined in [index.ts:596](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L596)*
Registers a handler which will be called in the event of a critical
error. Note that the handler will not be called for non-critical errors.
@@ -90,7 +90,7 @@ ___
▸ **onOrderEvents**(`handler`: function): *void*
-*Defined in [index.ts:611](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L611)*
+*Defined in [index.ts:611](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L611)*
Registers a handler which will be called for any incoming order events.
Order events are fired whenver an order is added, canceled, expired, or
@@ -119,7 +119,7 @@ ___
▸ **startAsync**(): *Promise‹void›*
-*Defined in [index.ts:622](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L622)*
+*Defined in [index.ts:622](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L622)*
Starts the Mesh node in the background. Mesh will automatically find
peers in the network and begin receiving orders from them.
@@ -138,7 +138,7 @@ peers in the network and begin receiving orders from them.
• **Added**: = "ADDED"
-*Defined in [index.ts:439](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L439)*
+*Defined in [index.ts:439](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L439)*
___
@@ -146,7 +146,7 @@ ___
• **Cancelled**: = "CANCELLED"
-*Defined in [index.ts:442](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L442)*
+*Defined in [index.ts:442](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L442)*
___
@@ -154,7 +154,7 @@ ___
• **Expired**: = "EXPIRED"
-*Defined in [index.ts:443](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L443)*
+*Defined in [index.ts:443](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L443)*
___
@@ -162,7 +162,7 @@ ___
• **FillabilityIncreased**: = "FILLABILITY_INCREASED"
-*Defined in [index.ts:446](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L446)*
+*Defined in [index.ts:446](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L446)*
___
@@ -170,7 +170,7 @@ ___
• **Filled**: = "FILLED"
-*Defined in [index.ts:440](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L440)*
+*Defined in [index.ts:440](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L440)*
___
@@ -178,7 +178,7 @@ ___
• **FullyFilled**: = "FULLY_FILLED"
-*Defined in [index.ts:441](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L441)*
+*Defined in [index.ts:441](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L441)*
___
@@ -186,7 +186,7 @@ ___
• **Invalid**: = "INVALID"
-*Defined in [index.ts:438](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L438)*
+*Defined in [index.ts:438](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L438)*
___
@@ -194,7 +194,7 @@ ___
• **StoppedWatching**: = "STOPPED_WATCHING"
-*Defined in [index.ts:447](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L447)*
+*Defined in [index.ts:447](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L447)*
___
@@ -202,7 +202,7 @@ ___
• **Unexpired**: = "UNEXPIRED"
-*Defined in [index.ts:444](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L444)*
+*Defined in [index.ts:444](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L444)*
___
@@ -210,7 +210,7 @@ ___
• **Unfunded**: = "UNFUNDED"
-*Defined in [index.ts:445](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L445)*
+*Defined in [index.ts:445](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L445)*
@@ -226,7 +226,7 @@ A set of categories for rejected orders.
• **CoordinatorError**: = "COORDINATOR_ERROR"
-*Defined in [index.ts:530](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L530)*
+*Defined in [index.ts:530](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L530)*
___
@@ -234,7 +234,7 @@ ___
• **MeshError**: = "MESH_ERROR"
-*Defined in [index.ts:528](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L528)*
+*Defined in [index.ts:528](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L528)*
___
@@ -242,7 +242,7 @@ ___
• **MeshValidation**: = "MESH_VALIDATION"
-*Defined in [index.ts:529](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L529)*
+*Defined in [index.ts:529](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L529)*
___
@@ -250,7 +250,7 @@ ___
• **ZeroExValidation**: = "ZEROEX_VALIDATION"
-*Defined in [index.ts:527](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L527)*
+*Defined in [index.ts:527](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L527)*
@@ -264,7 +264,7 @@ ___
• **Debug**: = 5
-*Defined in [index.ts:149](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L149)*
+*Defined in [index.ts:149](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L149)*
___
@@ -272,7 +272,7 @@ ___
• **Error**: = 2
-*Defined in [index.ts:146](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L146)*
+*Defined in [index.ts:146](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L146)*
___
@@ -280,7 +280,7 @@ ___
• **Fatal**: = 1
-*Defined in [index.ts:145](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L145)*
+*Defined in [index.ts:145](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L145)*
___
@@ -288,7 +288,7 @@ ___
• **Info**: = 4
-*Defined in [index.ts:148](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L148)*
+*Defined in [index.ts:148](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L148)*
___
@@ -296,7 +296,7 @@ ___
• **Panic**: = 0
-*Defined in [index.ts:144](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L144)*
+*Defined in [index.ts:144](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L144)*
___
@@ -304,7 +304,7 @@ ___
• **Trace**: = 6
-*Defined in [index.ts:150](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L150)*
+*Defined in [index.ts:150](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L150)*
___
@@ -312,7 +312,7 @@ ___
• **Warn**: = 3
-*Defined in [index.ts:147](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L147)*
+*Defined in [index.ts:147](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L147)*
@@ -332,7 +332,7 @@ Info for any orders that were accepted.
• **fillableTakerAssetAmount**: *BigNumber*
-*Defined in [index.ts:508](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L508)*
+*Defined in [index.ts:508](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L508)*
___
@@ -340,7 +340,7 @@ ___
• **isNew**: *boolean*
-*Defined in [index.ts:509](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L509)*
+*Defined in [index.ts:509](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L509)*
___
@@ -348,7 +348,7 @@ ___
• **orderHash**: *string*
-*Defined in [index.ts:506](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L506)*
+*Defined in [index.ts:506](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L506)*
___
@@ -356,7 +356,7 @@ ___
• **signedOrder**: *SignedOrder*
-*Defined in [index.ts:507](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L507)*
+*Defined in [index.ts:507](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L507)*
@@ -376,7 +376,7 @@ A set of configuration options for Mesh.
• **blockPollingIntervalSeconds**? : *undefined | number*
-*Defined in [index.ts:79](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L79)*
+*Defined in [index.ts:79](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L79)*
___
@@ -384,7 +384,7 @@ ___
• **bootstrapList**? : *string[]*
-*Defined in [index.ts:72](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L72)*
+*Defined in [index.ts:72](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L72)*
___
@@ -392,7 +392,7 @@ ___
• **customContractAddresses**? : *[ContractAddresses](#class-contractaddresses)*
-*Defined in [index.ts:123](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L123)*
+*Defined in [index.ts:123](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L123)*
___
@@ -400,7 +400,7 @@ ___
• **enableEthereumRPCRateLimiting**? : *undefined | false | true*
-*Defined in [index.ts:96](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L96)*
+*Defined in [index.ts:96](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L96)*
___
@@ -408,7 +408,7 @@ ___
• **ethereumChainID**: *number*
-*Defined in [index.ts:64](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L64)*
+*Defined in [index.ts:64](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L64)*
___
@@ -416,7 +416,7 @@ ___
• **ethereumRPCMaxContentLength**? : *undefined | number*
-*Defined in [index.ts:88](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L88)*
+*Defined in [index.ts:88](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L88)*
___
@@ -424,7 +424,7 @@ ___
• **ethereumRPCMaxRequestsPer24HrUTC**? : *undefined | number*
-*Defined in [index.ts:101](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L101)*
+*Defined in [index.ts:101](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L101)*
___
@@ -432,7 +432,7 @@ ___
• **ethereumRPCMaxRequestsPerSecond**? : *undefined | number*
-*Defined in [index.ts:107](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L107)*
+*Defined in [index.ts:107](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L107)*
___
@@ -440,7 +440,7 @@ ___
• **ethereumRPCURL**: *string*
-*Defined in [index.ts:61](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L61)*
+*Defined in [index.ts:61](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L61)*
___
@@ -448,7 +448,7 @@ ___
• **maxOrdersInStorage**? : *undefined | number*
-*Defined in [index.ts:128](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L128)*
+*Defined in [index.ts:128](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L128)*
___
@@ -456,7 +456,7 @@ ___
• **useBootstrapList**? : *undefined | false | true*
-*Defined in [index.ts:67](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L67)*
+*Defined in [index.ts:67](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L67)*
___
@@ -464,7 +464,7 @@ ___
• **verbosity**? : *[Verbosity](#enumeration-verbosity)*
-*Defined in [index.ts:58](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L58)*
+*Defined in [index.ts:58](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L58)*
@@ -482,7 +482,7 @@ ___
• **coordinator**? : *undefined | string*
-*Defined in [index.ts:137](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L137)*
+*Defined in [index.ts:137](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L137)*
___
@@ -490,7 +490,7 @@ ___
• **coordinatorRegistry**? : *undefined | string*
-*Defined in [index.ts:138](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L138)*
+*Defined in [index.ts:138](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L138)*
___
@@ -498,7 +498,7 @@ ___
• **devUtils**: *string*
-*Defined in [index.ts:133](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L133)*
+*Defined in [index.ts:133](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L133)*
___
@@ -506,7 +506,7 @@ ___
• **erc1155Proxy**: *string*
-*Defined in [index.ts:136](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L136)*
+*Defined in [index.ts:136](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L136)*
___
@@ -514,7 +514,7 @@ ___
• **erc20Proxy**: *string*
-*Defined in [index.ts:134](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L134)*
+*Defined in [index.ts:134](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L134)*
___
@@ -522,7 +522,7 @@ ___
• **erc721Proxy**: *string*
-*Defined in [index.ts:135](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L135)*
+*Defined in [index.ts:135](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L135)*
___
@@ -530,7 +530,7 @@ ___
• **exchange**: *string*
-*Defined in [index.ts:132](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L132)*
+*Defined in [index.ts:132](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L132)*
___
@@ -538,7 +538,7 @@ ___
• **weth9**? : *undefined | string*
-*Defined in [index.ts:139](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L139)*
+*Defined in [index.ts:139](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L139)*
___
@@ -546,7 +546,7 @@ ___
• **zrxToken**? : *undefined | string*
-*Defined in [index.ts:140](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L140)*
+*Defined in [index.ts:140](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L140)*
@@ -564,7 +564,7 @@ ___
• **address**: *string*
-*Defined in [index.ts:420](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L420)*
+*Defined in [index.ts:420](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L420)*
___
@@ -572,7 +572,7 @@ ___
• **blockHash**: *string*
-*Defined in [index.ts:415](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L415)*
+*Defined in [index.ts:415](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L415)*
___
@@ -580,7 +580,7 @@ ___
• **isRemoved**: *string*
-*Defined in [index.ts:419](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L419)*
+*Defined in [index.ts:419](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L419)*
___
@@ -588,7 +588,7 @@ ___
• **kind**: *ContractEventKind*
-*Defined in [index.ts:421](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L421)*
+*Defined in [index.ts:421](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L421)*
___
@@ -596,7 +596,7 @@ ___
• **logIndex**: *number*
-*Defined in [index.ts:418](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L418)*
+*Defined in [index.ts:418](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L418)*
___
@@ -604,7 +604,7 @@ ___
• **parameters**: *ContractEventParameters*
-*Defined in [index.ts:422](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L422)*
+*Defined in [index.ts:422](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L422)*
___
@@ -612,7 +612,7 @@ ___
• **txHash**: *string*
-*Defined in [index.ts:416](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L416)*
+*Defined in [index.ts:416](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L416)*
___
@@ -620,7 +620,7 @@ ___
• **txIndex**: *number*
-*Defined in [index.ts:417](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L417)*
+*Defined in [index.ts:417](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L417)*
@@ -638,7 +638,7 @@ ___
• **approved**: *boolean*
-*Defined in [index.ts:296](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L296)*
+*Defined in [index.ts:296](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L296)*
___
@@ -646,7 +646,7 @@ ___
• **operator**: *string*
-*Defined in [index.ts:295](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L295)*
+*Defined in [index.ts:295](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L295)*
___
@@ -654,7 +654,7 @@ ___
• **owner**: *string*
-*Defined in [index.ts:294](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L294)*
+*Defined in [index.ts:294](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L294)*
@@ -672,7 +672,7 @@ ___
• **from**: *string*
-*Defined in [index.ts:279](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L279)*
+*Defined in [index.ts:279](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L279)*
___
@@ -680,7 +680,7 @@ ___
• **ids**: *BigNumber[]*
-*Defined in [index.ts:281](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L281)*
+*Defined in [index.ts:281](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L281)*
___
@@ -688,7 +688,7 @@ ___
• **operator**: *string*
-*Defined in [index.ts:278](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L278)*
+*Defined in [index.ts:278](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L278)*
___
@@ -696,7 +696,7 @@ ___
• **to**: *string*
-*Defined in [index.ts:280](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L280)*
+*Defined in [index.ts:280](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L280)*
___
@@ -704,7 +704,7 @@ ___
• **values**: *BigNumber[]*
-*Defined in [index.ts:282](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L282)*
+*Defined in [index.ts:282](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L282)*
@@ -722,7 +722,7 @@ ___
• **from**: *string*
-*Defined in [index.ts:263](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L263)*
+*Defined in [index.ts:263](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L263)*
___
@@ -730,7 +730,7 @@ ___
• **id**: *BigNumber*
-*Defined in [index.ts:265](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L265)*
+*Defined in [index.ts:265](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L265)*
___
@@ -738,7 +738,7 @@ ___
• **operator**: *string*
-*Defined in [index.ts:262](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L262)*
+*Defined in [index.ts:262](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L262)*
___
@@ -746,7 +746,7 @@ ___
• **to**: *string*
-*Defined in [index.ts:264](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L264)*
+*Defined in [index.ts:264](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L264)*
___
@@ -754,7 +754,7 @@ ___
• **value**: *BigNumber*
-*Defined in [index.ts:266](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L266)*
+*Defined in [index.ts:266](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L266)*
@@ -772,7 +772,7 @@ ___
• **owner**: *string*
-*Defined in [index.ts:220](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L220)*
+*Defined in [index.ts:220](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L220)*
___
@@ -780,7 +780,7 @@ ___
• **spender**: *string*
-*Defined in [index.ts:221](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L221)*
+*Defined in [index.ts:221](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L221)*
___
@@ -788,7 +788,7 @@ ___
• **value**: *BigNumber*
-*Defined in [index.ts:222](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L222)*
+*Defined in [index.ts:222](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L222)*
@@ -806,7 +806,7 @@ ___
• **from**: *string*
-*Defined in [index.ts:208](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L208)*
+*Defined in [index.ts:208](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L208)*
___
@@ -814,7 +814,7 @@ ___
• **to**: *string*
-*Defined in [index.ts:209](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L209)*
+*Defined in [index.ts:209](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L209)*
___
@@ -822,7 +822,7 @@ ___
• **value**: *BigNumber*
-*Defined in [index.ts:210](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L210)*
+*Defined in [index.ts:210](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L210)*
@@ -840,7 +840,7 @@ ___
• **approved**: *string*
-*Defined in [index.ts:245](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L245)*
+*Defined in [index.ts:245](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L245)*
___
@@ -848,7 +848,7 @@ ___
• **owner**: *string*
-*Defined in [index.ts:244](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L244)*
+*Defined in [index.ts:244](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L244)*
___
@@ -856,7 +856,7 @@ ___
• **tokenId**: *BigNumber*
-*Defined in [index.ts:246](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L246)*
+*Defined in [index.ts:246](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L246)*
@@ -874,7 +874,7 @@ ___
• **approved**: *boolean*
-*Defined in [index.ts:258](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L258)*
+*Defined in [index.ts:258](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L258)*
___
@@ -882,7 +882,7 @@ ___
• **operator**: *string*
-*Defined in [index.ts:257](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L257)*
+*Defined in [index.ts:257](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L257)*
___
@@ -890,7 +890,7 @@ ___
• **owner**: *string*
-*Defined in [index.ts:256](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L256)*
+*Defined in [index.ts:256](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L256)*
@@ -908,7 +908,7 @@ ___
• **from**: *string*
-*Defined in [index.ts:232](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L232)*
+*Defined in [index.ts:232](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L232)*
___
@@ -916,7 +916,7 @@ ___
• **to**: *string*
-*Defined in [index.ts:233](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L233)*
+*Defined in [index.ts:233](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L233)*
___
@@ -924,7 +924,7 @@ ___
• **tokenId**: *BigNumber*
-*Defined in [index.ts:234](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L234)*
+*Defined in [index.ts:234](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L234)*
@@ -942,7 +942,7 @@ ___
• **feeRecipientAddress**: *string*
-*Defined in [index.ts:330](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L330)*
+*Defined in [index.ts:330](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L330)*
___
@@ -950,7 +950,7 @@ ___
• **makerAddress**: *string*
-*Defined in [index.ts:328](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L328)*
+*Defined in [index.ts:328](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L328)*
___
@@ -958,7 +958,7 @@ ___
• **makerAssetData**: *string*
-*Defined in [index.ts:332](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L332)*
+*Defined in [index.ts:332](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L332)*
___
@@ -966,7 +966,7 @@ ___
• **orderHash**: *string*
-*Defined in [index.ts:331](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L331)*
+*Defined in [index.ts:331](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L331)*
___
@@ -974,7 +974,7 @@ ___
• **senderAddress**: *string*
-*Defined in [index.ts:329](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L329)*
+*Defined in [index.ts:329](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L329)*
___
@@ -982,7 +982,7 @@ ___
• **takerAssetData**: *string*
-*Defined in [index.ts:333](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L333)*
+*Defined in [index.ts:333](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L333)*
@@ -1000,7 +1000,7 @@ ___
• **makerAddress**: *string*
-*Defined in [index.ts:337](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L337)*
+*Defined in [index.ts:337](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L337)*
___
@@ -1008,7 +1008,7 @@ ___
• **orderEpoch**: *BigNumber*
-*Defined in [index.ts:339](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L339)*
+*Defined in [index.ts:339](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L339)*
___
@@ -1016,7 +1016,7 @@ ___
• **senderAddress**: *string*
-*Defined in [index.ts:338](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L338)*
+*Defined in [index.ts:338](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L338)*
@@ -1034,7 +1034,7 @@ ___
• **feeRecipientAddress**: *string*
-*Defined in [index.ts:303](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L303)*
+*Defined in [index.ts:303](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L303)*
___
@@ -1042,7 +1042,7 @@ ___
• **makerAddress**: *string*
-*Defined in [index.ts:300](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L300)*
+*Defined in [index.ts:300](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L300)*
___
@@ -1050,7 +1050,7 @@ ___
• **makerAssetData**: *string*
-*Defined in [index.ts:309](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L309)*
+*Defined in [index.ts:309](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L309)*
___
@@ -1058,7 +1058,7 @@ ___
• **makerAssetFilledAmount**: *BigNumber*
-*Defined in [index.ts:304](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L304)*
+*Defined in [index.ts:304](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L304)*
___
@@ -1066,7 +1066,7 @@ ___
• **makerFeePaid**: *BigNumber*
-*Defined in [index.ts:306](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L306)*
+*Defined in [index.ts:306](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L306)*
___
@@ -1074,7 +1074,7 @@ ___
• **orderHash**: *string*
-*Defined in [index.ts:308](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L308)*
+*Defined in [index.ts:308](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L308)*
___
@@ -1082,7 +1082,7 @@ ___
• **senderAddress**: *string*
-*Defined in [index.ts:302](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L302)*
+*Defined in [index.ts:302](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L302)*
___
@@ -1090,7 +1090,7 @@ ___
• **takerAddress**: *string*
-*Defined in [index.ts:301](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L301)*
+*Defined in [index.ts:301](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L301)*
___
@@ -1098,7 +1098,7 @@ ___
• **takerAssetData**: *string*
-*Defined in [index.ts:310](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L310)*
+*Defined in [index.ts:310](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L310)*
___
@@ -1106,7 +1106,7 @@ ___
• **takerAssetFilledAmount**: *BigNumber*
-*Defined in [index.ts:305](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L305)*
+*Defined in [index.ts:305](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L305)*
___
@@ -1114,7 +1114,7 @@ ___
• **takerFeePaid**: *BigNumber*
-*Defined in [index.ts:307](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L307)*
+*Defined in [index.ts:307](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L307)*
@@ -1135,7 +1135,7 @@ or filled.
• **contractEvents**: *[ContractEvent](#class-contractevent)[]*
-*Defined in [index.ts:469](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L469)*
+*Defined in [index.ts:469](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L469)*
___
@@ -1143,7 +1143,7 @@ ___
• **endState**: *[OrderEventEndState](#enumeration-ordereventendstate)*
-*Defined in [index.ts:467](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L467)*
+*Defined in [index.ts:467](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L467)*
___
@@ -1151,7 +1151,7 @@ ___
• **fillableTakerAssetAmount**: *BigNumber*
-*Defined in [index.ts:468](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L468)*
+*Defined in [index.ts:468](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L468)*
___
@@ -1159,7 +1159,7 @@ ___
• **orderHash**: *string*
-*Defined in [index.ts:465](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L465)*
+*Defined in [index.ts:465](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L465)*
___
@@ -1167,7 +1167,7 @@ ___
• **signedOrder**: *SignedOrder*
-*Defined in [index.ts:466](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L466)*
+*Defined in [index.ts:466](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L466)*
___
@@ -1175,7 +1175,7 @@ ___
• **timestampMs**: *number*
-*Defined in [index.ts:464](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L464)*
+*Defined in [index.ts:464](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L464)*
@@ -1196,7 +1196,7 @@ rejected.
• **kind**: *[RejectedOrderKind](#enumeration-rejectedorderkind)*
-*Defined in [index.ts:519](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L519)*
+*Defined in [index.ts:519](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L519)*
___
@@ -1204,7 +1204,7 @@ ___
• **orderHash**: *string*
-*Defined in [index.ts:517](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L517)*
+*Defined in [index.ts:517](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L517)*
___
@@ -1212,7 +1212,7 @@ ___
• **signedOrder**: *SignedOrder*
-*Defined in [index.ts:518](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L518)*
+*Defined in [index.ts:518](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L518)*
___
@@ -1220,7 +1220,7 @@ ___
• **status**: *[RejectedOrderStatus](#class-rejectedorderstatus)*
-*Defined in [index.ts:520](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L520)*
+*Defined in [index.ts:520](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L520)*
@@ -1240,7 +1240,7 @@ Provides more information about why an order was rejected.
• **code**: *string*
-*Defined in [index.ts:537](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L537)*
+*Defined in [index.ts:537](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L537)*
___
@@ -1248,7 +1248,7 @@ ___
• **message**: *string*
-*Defined in [index.ts:538](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L538)*
+*Defined in [index.ts:538](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L538)*
@@ -1268,7 +1268,7 @@ Indicates which orders where accepted, which were rejected, and why.
• **accepted**: *[AcceptedOrderInfo](#class-acceptedorderinfo)[]*
-*Defined in [index.ts:498](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L498)*
+*Defined in [index.ts:498](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L498)*
___
@@ -1276,7 +1276,7 @@ ___
• **rejected**: *[RejectedOrderInfo](#class-rejectedorderinfo)[]*
-*Defined in [index.ts:499](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L499)*
+*Defined in [index.ts:499](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L499)*
@@ -1294,7 +1294,7 @@ ___
• **owner**: *string*
-*Defined in [index.ts:359](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L359)*
+*Defined in [index.ts:359](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L359)*
___
@@ -1302,7 +1302,7 @@ ___
• **value**: *BigNumber*
-*Defined in [index.ts:360](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L360)*
+*Defined in [index.ts:360](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L360)*
@@ -1320,7 +1320,7 @@ ___
• **owner**: *string*
-*Defined in [index.ts:349](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L349)*
+*Defined in [index.ts:349](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L349)*
___
@@ -1328,7 +1328,7 @@ ___
• **value**: *BigNumber*
-*Defined in [index.ts:350](https://github.com/0xProject/0x-mesh/blob/47da994/browser/ts/index.ts#L350)*
+*Defined in [index.ts:350](https://github.com/0xProject/0x-mesh/blob/1593c46/browser/ts/index.ts#L350)*
diff --git a/docs/deployment.md b/docs/deployment.md
index a29a6a722..c2ab1f265 100644
--- a/docs/deployment.md
+++ b/docs/deployment.md
@@ -1,4 +1,4 @@
-[![Version](https://img.shields.io/badge/version-8.1.0-orange.svg)](https://github.com/0xProject/0x-mesh/releases)
+[![Version](https://img.shields.io/badge/version-8.1.1-orange.svg)](https://github.com/0xProject/0x-mesh/releases)
# 0x Mesh Deployment Guide
diff --git a/docs/deployment_with_telemetry.md b/docs/deployment_with_telemetry.md
index 48cc3ed05..9cc819d85 100644
--- a/docs/deployment_with_telemetry.md
+++ b/docs/deployment_with_telemetry.md
@@ -1,4 +1,4 @@
-[![Version](https://img.shields.io/badge/version-8.1.0-orange.svg)](https://github.com/0xProject/0x-mesh/releases)
+[![Version](https://img.shields.io/badge/version-8.1.1-orange.svg)](https://github.com/0xProject/0x-mesh/releases)
## Deploying a Telemetry-Enabled Mesh Node
diff --git a/docs/json_rpc_clients/typescript/reference.md b/docs/json_rpc_clients/typescript/reference.md
index d7ee758f1..0e1bf6d23 100644
--- a/docs/json_rpc_clients/typescript/reference.md
+++ b/docs/json_rpc_clients/typescript/reference.md
@@ -30,7 +30,7 @@ websocket endpoint.
\+ **new WSClient**(`url`: string, `wsOpts?`: [WSOpts](#interface-wsopts)): *[WSClient](#class-wsclient)*
-*Defined in [ws_client.ts:252](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/ws_client.ts#L252)*
+*Defined in [ws_client.ts:252](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/ws_client.ts#L252)*
Instantiates a new WSClient instance
@@ -51,7 +51,7 @@ An instance of WSClient
▸ **addOrdersAsync**(`signedOrders`: `SignedOrder`[], `pinned`: boolean): *`Promise`*
-*Defined in [ws_client.ts:281](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/ws_client.ts#L281)*
+*Defined in [ws_client.ts:281](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/ws_client.ts#L281)*
Adds an array of 0x signed orders to the Mesh node.
@@ -72,7 +72,7 @@ ___
▸ **destroy**(): *void*
-*Defined in [ws_client.ts:403](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/ws_client.ts#L403)*
+*Defined in [ws_client.ts:403](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/ws_client.ts#L403)*
destroy unsubscribes all active subscriptions, closes the websocket connection
and stops the internal heartbeat connection liveness check.
@@ -85,7 +85,7 @@ ___
▸ **getOrdersAsync**(`perPage`: number): *`Promise`*
-*Defined in [ws_client.ts:311](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/ws_client.ts#L311)*
+*Defined in [ws_client.ts:311](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/ws_client.ts#L311)*
Get all 0x signed orders currently stored in the Mesh node
@@ -105,7 +105,7 @@ ___
▸ **getStatsAsync**(): *`Promise`*
-*Defined in [ws_client.ts:302](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/ws_client.ts#L302)*
+*Defined in [ws_client.ts:302](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/ws_client.ts#L302)*
**Returns:** *`Promise`*
@@ -115,7 +115,7 @@ ___
▸ **onClose**(`cb`: function): *void*
-*Defined in [ws_client.ts:385](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/ws_client.ts#L385)*
+*Defined in [ws_client.ts:385](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/ws_client.ts#L385)*
Get notified when the underlying WS connection closes normally. If it closes with an
error, WSClient automatically attempts to re-connect without emitting a `close` event.
@@ -136,7 +136,7 @@ ___
▸ **onReconnected**(`cb`: function): *void*
-*Defined in [ws_client.ts:394](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/ws_client.ts#L394)*
+*Defined in [ws_client.ts:394](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/ws_client.ts#L394)*
Get notified when a connection to the underlying WS connection is re-established
@@ -156,7 +156,7 @@ ___
▸ **subscribeToOrdersAsync**(`cb`: function): *`Promise`*
-*Defined in [ws_client.ts:345](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/ws_client.ts#L345)*
+*Defined in [ws_client.ts:345](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/ws_client.ts#L345)*
Subscribe to the 'orders' topic and receive order events from Mesh. This method returns a
subscriptionId that can be used to `unsubscribe()` from this subscription.
@@ -185,7 +185,7 @@ ___
▸ **unsubscribeAsync**(`subscriptionId`: string): *`Promise`*
-*Defined in [ws_client.ts:375](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/ws_client.ts#L375)*
+*Defined in [ws_client.ts:375](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/ws_client.ts#L375)*
Unsubscribe from a subscription
@@ -225,7 +225,7 @@ Name | Type | Description |
• **ERC1155ApprovalForAllEvent**: = "ERC1155ApprovalForAllEvent"
-*Defined in [types.ts:222](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L222)*
+*Defined in [types.ts:222](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L222)*
___
@@ -233,7 +233,7 @@ ___
• **ERC1155TransferBatchEvent**: = "ERC1155TransferBatchEvent"
-*Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L224)*
+*Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L224)*
___
@@ -241,7 +241,7 @@ ___
• **ERC1155TransferSingleEvent**: = "ERC1155TransferSingleEvent"
-*Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L223)*
+*Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L223)*
___
@@ -249,7 +249,7 @@ ___
• **ERC20ApprovalEvent**: = "ERC20ApprovalEvent"
-*Defined in [types.ts:218](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L218)*
+*Defined in [types.ts:218](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L218)*
___
@@ -257,7 +257,7 @@ ___
• **ERC20TransferEvent**: = "ERC20TransferEvent"
-*Defined in [types.ts:217](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L217)*
+*Defined in [types.ts:217](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L217)*
___
@@ -265,7 +265,7 @@ ___
• **ERC721ApprovalEvent**: = "ERC721ApprovalEvent"
-*Defined in [types.ts:220](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L220)*
+*Defined in [types.ts:220](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L220)*
___
@@ -273,7 +273,7 @@ ___
• **ERC721ApprovalForAllEvent**: = "ERC721ApprovalForAllEvent"
-*Defined in [types.ts:221](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L221)*
+*Defined in [types.ts:221](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L221)*
___
@@ -281,7 +281,7 @@ ___
• **ERC721TransferEvent**: = "ERC721TransferEvent"
-*Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L219)*
+*Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L219)*
___
@@ -289,7 +289,7 @@ ___
• **ExchangeCancelEvent**: = "ExchangeCancelEvent"
-*Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L226)*
+*Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L226)*
___
@@ -297,7 +297,7 @@ ___
• **ExchangeCancelUpToEvent**: = "ExchangeCancelUpToEvent"
-*Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L227)*
+*Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L227)*
___
@@ -305,7 +305,7 @@ ___
• **ExchangeFillEvent**: = "ExchangeFillEvent"
-*Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L225)*
+*Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L225)*
___
@@ -313,7 +313,7 @@ ___
• **WethDepositEvent**: = "WethDepositEvent"
-*Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L228)*
+*Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L228)*
___
@@ -321,7 +321,7 @@ ___
• **WethWithdrawalEvent**: = "WethWithdrawalEvent"
-*Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L229)*
+*Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L229)*
@@ -348,7 +348,7 @@ ___
• **Added**: = "ADDED"
-*Defined in [types.ts:286](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L286)*
+*Defined in [types.ts:286](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L286)*
___
@@ -356,7 +356,7 @@ ___
• **Cancelled**: = "CANCELLED"
-*Defined in [types.ts:289](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L289)*
+*Defined in [types.ts:289](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L289)*
___
@@ -364,7 +364,7 @@ ___
• **Expired**: = "EXPIRED"
-*Defined in [types.ts:290](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L290)*
+*Defined in [types.ts:290](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L290)*
___
@@ -372,7 +372,7 @@ ___
• **FillabilityIncreased**: = "FILLABILITY_INCREASED"
-*Defined in [types.ts:294](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L294)*
+*Defined in [types.ts:294](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L294)*
___
@@ -380,7 +380,7 @@ ___
• **Filled**: = "FILLED"
-*Defined in [types.ts:287](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L287)*
+*Defined in [types.ts:287](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L287)*
___
@@ -388,7 +388,7 @@ ___
• **FullyFilled**: = "FULLY_FILLED"
-*Defined in [types.ts:288](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L288)*
+*Defined in [types.ts:288](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L288)*
___
@@ -396,7 +396,7 @@ ___
• **Invalid**: = "INVALID"
-*Defined in [types.ts:285](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L285)*
+*Defined in [types.ts:285](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L285)*
___
@@ -404,7 +404,7 @@ ___
• **StoppedWatching**: = "STOPPED_WATCHING"
-*Defined in [types.ts:292](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L292)*
+*Defined in [types.ts:292](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L292)*
___
@@ -412,7 +412,7 @@ ___
• **Unexpired**: = "UNEXPIRED"
-*Defined in [types.ts:291](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L291)*
+*Defined in [types.ts:291](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L291)*
___
@@ -420,7 +420,7 @@ ___
• **Unfunded**: = "UNFUNDED"
-*Defined in [types.ts:293](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L293)*
+*Defined in [types.ts:293](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L293)*
@@ -451,7 +451,7 @@ ___
• **InternalError**: = "InternalError"
-*Defined in [types.ts:358](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L358)*
+*Defined in [types.ts:358](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L358)*
___
@@ -459,7 +459,7 @@ ___
• **MaxOrderSizeExceeded**: = "MaxOrderSizeExceeded"
-*Defined in [types.ts:359](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L359)*
+*Defined in [types.ts:359](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L359)*
___
@@ -467,7 +467,7 @@ ___
• **NetworkRequestFailed**: = "NetworkRequestFailed"
-*Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L362)*
+*Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L362)*
___
@@ -475,7 +475,7 @@ ___
• **OrderAlreadyStored**: = "OrderAlreadyStored"
-*Defined in [types.ts:360](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L360)*
+*Defined in [types.ts:360](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L360)*
___
@@ -483,7 +483,7 @@ ___
• **OrderCancelled**: = "OrderCancelled"
-*Defined in [types.ts:367](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L367)*
+*Defined in [types.ts:367](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L367)*
___
@@ -491,7 +491,7 @@ ___
• **OrderExpired**: = "OrderExpired"
-*Defined in [types.ts:365](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L365)*
+*Defined in [types.ts:365](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L365)*
___
@@ -499,7 +499,7 @@ ___
• **OrderForIncorrectChain**: = "OrderForIncorrectChain"
-*Defined in [types.ts:361](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L361)*
+*Defined in [types.ts:361](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L361)*
___
@@ -507,7 +507,7 @@ ___
• **OrderFullyFilled**: = "OrderFullyFilled"
-*Defined in [types.ts:366](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L366)*
+*Defined in [types.ts:366](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L366)*
___
@@ -515,7 +515,7 @@ ___
• **OrderHasInvalidMakerAssetAmount**: = "OrderHasInvalidMakerAssetAmount"
-*Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L363)*
+*Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L363)*
___
@@ -523,7 +523,7 @@ ___
• **OrderHasInvalidMakerAssetData**: = "OrderHasInvalidMakerAssetData"
-*Defined in [types.ts:369](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L369)*
+*Defined in [types.ts:369](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L369)*
___
@@ -531,7 +531,7 @@ ___
• **OrderHasInvalidSignature**: = "OrderHasInvalidSignature"
-*Defined in [types.ts:371](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L371)*
+*Defined in [types.ts:371](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L371)*
___
@@ -539,7 +539,7 @@ ___
• **OrderHasInvalidTakerAssetAmount**: = "OrderHasInvalidTakerAssetAmount"
-*Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L364)*
+*Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L364)*
___
@@ -547,7 +547,7 @@ ___
• **OrderHasInvalidTakerAssetData**: = "OrderHasInvalidTakerAssetData"
-*Defined in [types.ts:370](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L370)*
+*Defined in [types.ts:370](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L370)*
___
@@ -555,7 +555,7 @@ ___
• **OrderUnfunded**: = "OrderUnfunded"
-*Defined in [types.ts:368](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L368)*
+*Defined in [types.ts:368](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L368)*
@@ -575,7 +575,7 @@ ___
• **MeshError**: = "MESH_ERROR"
-*Defined in [types.ts:353](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L353)*
+*Defined in [types.ts:353](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L353)*
___
@@ -583,7 +583,7 @@ ___
• **MeshValidation**: = "MESH_VALIDATION"
-*Defined in [types.ts:354](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L354)*
+*Defined in [types.ts:354](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L354)*
___
@@ -591,7 +591,7 @@ ___
• **ZeroexValidation**: = "ZEROEX_VALIDATION"
-*Defined in [types.ts:352](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L352)*
+*Defined in [types.ts:352](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L352)*
@@ -616,7 +616,7 @@ ___
• **fillableTakerAssetAmount**: *`BigNumber`*
-*Defined in [types.ts:335](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L335)*
+*Defined in [types.ts:335](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L335)*
___
@@ -624,7 +624,7 @@ ___
• **isNew**: *boolean*
-*Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L336)*
+*Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L336)*
___
@@ -632,7 +632,7 @@ ___
• **orderHash**: *string*
-*Defined in [types.ts:333](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L333)*
+*Defined in [types.ts:333](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L333)*
___
@@ -640,7 +640,7 @@ ___
• **signedOrder**: *`SignedOrder`*
-*Defined in [types.ts:334](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L334)*
+*Defined in [types.ts:334](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L334)*
@@ -672,7 +672,7 @@ Source: https://github.com/theturtle32/WebSocket-Node/blob/master/docs/WebSocket
• **assembleFragments**? : *undefined | false | true*
-*Defined in [types.ts:16](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L16)*
+*Defined in [types.ts:16](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L16)*
___
@@ -680,7 +680,7 @@ ___
• **closeTimeout**? : *undefined | number*
-*Defined in [types.ts:17](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L17)*
+*Defined in [types.ts:17](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L17)*
___
@@ -688,7 +688,7 @@ ___
• **fragmentOutgoingMessages**? : *undefined | false | true*
-*Defined in [types.ts:14](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L14)*
+*Defined in [types.ts:14](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L14)*
___
@@ -696,7 +696,7 @@ ___
• **fragmentationThreshold**? : *undefined | number*
-*Defined in [types.ts:15](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L15)*
+*Defined in [types.ts:15](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L15)*
___
@@ -704,7 +704,7 @@ ___
• **maxReceivedFrameSize**? : *undefined | number*
-*Defined in [types.ts:12](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L12)*
+*Defined in [types.ts:12](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L12)*
___
@@ -712,7 +712,7 @@ ___
• **maxReceivedMessageSize**? : *undefined | number*
-*Defined in [types.ts:13](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L13)*
+*Defined in [types.ts:13](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L13)*
___
@@ -720,7 +720,7 @@ ___
• **tlsOptions**? : *any*
-*Defined in [types.ts:18](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L18)*
+*Defined in [types.ts:18](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L18)*
___
@@ -728,7 +728,7 @@ ___
• **webSocketVersion**? : *undefined | number*
-*Defined in [types.ts:11](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L11)*
+*Defined in [types.ts:11](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L11)*
@@ -757,7 +757,7 @@ ___
• **address**: *string*
-*Defined in [types.ts:279](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L279)*
+*Defined in [types.ts:279](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L279)*
___
@@ -765,7 +765,7 @@ ___
• **blockHash**: *string*
-*Defined in [types.ts:274](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L274)*
+*Defined in [types.ts:274](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L274)*
___
@@ -773,7 +773,7 @@ ___
• **isRemoved**: *string*
-*Defined in [types.ts:278](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L278)*
+*Defined in [types.ts:278](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L278)*
___
@@ -781,7 +781,7 @@ ___
• **kind**: *[ContractEventKind](#enumeration-contracteventkind)*
-*Defined in [types.ts:280](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L280)*
+*Defined in [types.ts:280](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L280)*
___
@@ -789,7 +789,7 @@ ___
• **logIndex**: *number*
-*Defined in [types.ts:277](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L277)*
+*Defined in [types.ts:277](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L277)*
___
@@ -797,7 +797,7 @@ ___
• **parameters**: *[ContractEventParameters](#contracteventparameters)*
-*Defined in [types.ts:281](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L281)*
+*Defined in [types.ts:281](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L281)*
___
@@ -805,7 +805,7 @@ ___
• **txHash**: *string*
-*Defined in [types.ts:275](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L275)*
+*Defined in [types.ts:275](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L275)*
___
@@ -813,7 +813,7 @@ ___
• **txIndex**: *number*
-*Defined in [types.ts:276](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L276)*
+*Defined in [types.ts:276](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L276)*
@@ -837,7 +837,7 @@ ___
• **approved**: *boolean*
-*Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L144)*
+*Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L144)*
___
@@ -845,7 +845,7 @@ ___
• **operator**: *string*
-*Defined in [types.ts:143](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L143)*
+*Defined in [types.ts:143](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L143)*
___
@@ -853,7 +853,7 @@ ___
• **owner**: *string*
-*Defined in [types.ts:142](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L142)*
+*Defined in [types.ts:142](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L142)*
@@ -879,7 +879,7 @@ ___
• **from**: *string*
-*Defined in [types.ts:127](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L127)*
+*Defined in [types.ts:127](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L127)*
___
@@ -887,7 +887,7 @@ ___
• **ids**: *`BigNumber`[]*
-*Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L129)*
+*Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L129)*
___
@@ -895,7 +895,7 @@ ___
• **operator**: *string*
-*Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L126)*
+*Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L126)*
___
@@ -903,7 +903,7 @@ ___
• **to**: *string*
-*Defined in [types.ts:128](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L128)*
+*Defined in [types.ts:128](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L128)*
___
@@ -911,7 +911,7 @@ ___
• **values**: *`BigNumber`[]*
-*Defined in [types.ts:130](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L130)*
+*Defined in [types.ts:130](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L130)*
@@ -937,7 +937,7 @@ ___
• **from**: *string*
-*Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L111)*
+*Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L111)*
___
@@ -945,7 +945,7 @@ ___
• **id**: *`BigNumber`*
-*Defined in [types.ts:113](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L113)*
+*Defined in [types.ts:113](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L113)*
___
@@ -953,7 +953,7 @@ ___
• **operator**: *string*
-*Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L110)*
+*Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L110)*
___
@@ -961,7 +961,7 @@ ___
• **to**: *string*
-*Defined in [types.ts:112](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L112)*
+*Defined in [types.ts:112](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L112)*
___
@@ -969,7 +969,7 @@ ___
• **value**: *`BigNumber`*
-*Defined in [types.ts:114](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L114)*
+*Defined in [types.ts:114](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L114)*
@@ -993,7 +993,7 @@ ___
• **owner**: *string*
-*Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L68)*
+*Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L68)*
___
@@ -1001,7 +1001,7 @@ ___
• **spender**: *string*
-*Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L69)*
+*Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L69)*
___
@@ -1009,7 +1009,7 @@ ___
• **value**: *`BigNumber`*
-*Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L70)*
+*Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L70)*
@@ -1033,7 +1033,7 @@ ___
• **from**: *string*
-*Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L56)*
+*Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L56)*
___
@@ -1041,7 +1041,7 @@ ___
• **to**: *string*
-*Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L57)*
+*Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L57)*
___
@@ -1049,7 +1049,7 @@ ___
• **value**: *`BigNumber`*
-*Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L58)*
+*Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L58)*
@@ -1073,7 +1073,7 @@ ___
• **approved**: *string*
-*Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L93)*
+*Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L93)*
___
@@ -1081,7 +1081,7 @@ ___
• **owner**: *string*
-*Defined in [types.ts:92](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L92)*
+*Defined in [types.ts:92](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L92)*
___
@@ -1089,7 +1089,7 @@ ___
• **tokenId**: *`BigNumber`*
-*Defined in [types.ts:94](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L94)*
+*Defined in [types.ts:94](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L94)*
@@ -1113,7 +1113,7 @@ ___
• **approved**: *boolean*
-*Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L106)*
+*Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L106)*
___
@@ -1121,7 +1121,7 @@ ___
• **operator**: *string*
-*Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L105)*
+*Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L105)*
___
@@ -1129,7 +1129,7 @@ ___
• **owner**: *string*
-*Defined in [types.ts:104](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L104)*
+*Defined in [types.ts:104](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L104)*
@@ -1153,7 +1153,7 @@ ___
• **from**: *string*
-*Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L80)*
+*Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L80)*
___
@@ -1161,7 +1161,7 @@ ___
• **to**: *string*
-*Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L81)*
+*Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L81)*
___
@@ -1169,7 +1169,7 @@ ___
• **tokenId**: *`BigNumber`*
-*Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L82)*
+*Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L82)*
@@ -1196,7 +1196,7 @@ ___
• **feeRecipientAddress**: *string*
-*Defined in [types.ts:178](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L178)*
+*Defined in [types.ts:178](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L178)*
___
@@ -1204,7 +1204,7 @@ ___
• **makerAddress**: *string*
-*Defined in [types.ts:176](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L176)*
+*Defined in [types.ts:176](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L176)*
___
@@ -1212,7 +1212,7 @@ ___
• **makerAssetData**: *string*
-*Defined in [types.ts:180](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L180)*
+*Defined in [types.ts:180](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L180)*
___
@@ -1220,7 +1220,7 @@ ___
• **orderHash**: *string*
-*Defined in [types.ts:179](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L179)*
+*Defined in [types.ts:179](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L179)*
___
@@ -1228,7 +1228,7 @@ ___
• **senderAddress**: *string*
-*Defined in [types.ts:177](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L177)*
+*Defined in [types.ts:177](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L177)*
___
@@ -1236,7 +1236,7 @@ ___
• **takerAssetData**: *string*
-*Defined in [types.ts:181](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L181)*
+*Defined in [types.ts:181](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L181)*
@@ -1260,7 +1260,7 @@ ___
• **makerAddress**: *string*
-*Defined in [types.ts:185](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L185)*
+*Defined in [types.ts:185](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L185)*
___
@@ -1268,7 +1268,7 @@ ___
• **orderEpoch**: *`BigNumber`*
-*Defined in [types.ts:187](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L187)*
+*Defined in [types.ts:187](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L187)*
___
@@ -1276,7 +1276,7 @@ ___
• **senderAddress**: *string*
-*Defined in [types.ts:186](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L186)*
+*Defined in [types.ts:186](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L186)*
@@ -1308,7 +1308,7 @@ ___
• **feeRecipientAddress**: *string*
-*Defined in [types.ts:151](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L151)*
+*Defined in [types.ts:151](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L151)*
___
@@ -1316,7 +1316,7 @@ ___
• **makerAddress**: *string*
-*Defined in [types.ts:148](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L148)*
+*Defined in [types.ts:148](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L148)*
___
@@ -1324,7 +1324,7 @@ ___
• **makerAssetData**: *string*
-*Defined in [types.ts:157](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L157)*
+*Defined in [types.ts:157](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L157)*
___
@@ -1332,7 +1332,7 @@ ___
• **makerAssetFilledAmount**: *`BigNumber`*
-*Defined in [types.ts:152](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L152)*
+*Defined in [types.ts:152](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L152)*
___
@@ -1340,7 +1340,7 @@ ___
• **makerFeePaid**: *`BigNumber`*
-*Defined in [types.ts:154](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L154)*
+*Defined in [types.ts:154](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L154)*
___
@@ -1348,7 +1348,7 @@ ___
• **orderHash**: *string*
-*Defined in [types.ts:156](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L156)*
+*Defined in [types.ts:156](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L156)*
___
@@ -1356,7 +1356,7 @@ ___
• **senderAddress**: *string*
-*Defined in [types.ts:150](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L150)*
+*Defined in [types.ts:150](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L150)*
___
@@ -1364,7 +1364,7 @@ ___
• **takerAddress**: *string*
-*Defined in [types.ts:149](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L149)*
+*Defined in [types.ts:149](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L149)*
___
@@ -1372,7 +1372,7 @@ ___
• **takerAssetData**: *string*
-*Defined in [types.ts:158](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L158)*
+*Defined in [types.ts:158](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L158)*
___
@@ -1380,7 +1380,7 @@ ___
• **takerAssetFilledAmount**: *`BigNumber`*
-*Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L153)*
+*Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L153)*
___
@@ -1388,7 +1388,7 @@ ___
• **takerFeePaid**: *`BigNumber`*
-*Defined in [types.ts:155](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L155)*
+*Defined in [types.ts:155](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L155)*
@@ -1412,7 +1412,7 @@ ___
• **ordersInfos**: *[OrderInfo](#interface-orderinfo)[]*
-*Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L415)*
+*Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L415)*
___
@@ -1420,7 +1420,7 @@ ___
• **snapshotID**: *string*
-*Defined in [types.ts:413](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L413)*
+*Defined in [types.ts:413](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L413)*
___
@@ -1428,7 +1428,7 @@ ___
• **snapshotTimestamp**: *number*
-*Defined in [types.ts:414](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L414)*
+*Defined in [types.ts:414](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L414)*
@@ -1463,7 +1463,7 @@ ___
• **ethRPCRateLimitExpiredRequests**: *number*
-*Defined in [types.ts:442](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L442)*
+*Defined in [types.ts:442](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L442)*
___
@@ -1471,7 +1471,7 @@ ___
• **ethRPCRequestsSentInCurrentUTCDay**: *number*
-*Defined in [types.ts:441](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L441)*
+*Defined in [types.ts:441](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L441)*
___
@@ -1479,7 +1479,7 @@ ___
• **ethereumChainID**: *number*
-*Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L433)*
+*Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L433)*
___
@@ -1487,7 +1487,7 @@ ___
• **latestBlock**: *[LatestBlock](#interface-latestblock)*
-*Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L434)*
+*Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L434)*
___
@@ -1495,7 +1495,7 @@ ___
• **maxExpirationTime**: *string*
-*Defined in [types.ts:439](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L439)*
+*Defined in [types.ts:439](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L439)*
___
@@ -1503,7 +1503,7 @@ ___
• **numOrders**: *number*
-*Defined in [types.ts:436](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L436)*
+*Defined in [types.ts:436](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L436)*
___
@@ -1511,7 +1511,7 @@ ___
• **numOrdersIncludingRemoved**: *number*
-*Defined in [types.ts:437](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L437)*
+*Defined in [types.ts:437](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L437)*
___
@@ -1519,7 +1519,7 @@ ___
• **numPeers**: *number*
-*Defined in [types.ts:435](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L435)*
+*Defined in [types.ts:435](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L435)*
___
@@ -1527,7 +1527,7 @@ ___
• **numPinnedOrders**: *number*
-*Defined in [types.ts:438](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L438)*
+*Defined in [types.ts:438](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L438)*
___
@@ -1535,7 +1535,7 @@ ___
• **peerID**: *string*
-*Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L432)*
+*Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L432)*
___
@@ -1543,7 +1543,7 @@ ___
• **pubSubTopic**: *string*
-*Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L430)*
+*Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L430)*
___
@@ -1551,7 +1551,7 @@ ___
• **rendezvous**: *string*
-*Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L431)*
+*Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L431)*
___
@@ -1559,7 +1559,7 @@ ___
• **startOfCurrentUTCDay**: *string*
-*Defined in [types.ts:440](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L440)*
+*Defined in [types.ts:440](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L440)*
___
@@ -1567,7 +1567,7 @@ ___
• **version**: *string*
-*Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L429)*
+*Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L429)*
@@ -1590,7 +1590,7 @@ ___
• **result**: *string*
-*Defined in [types.ts:304](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L304)*
+*Defined in [types.ts:304](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L304)*
___
@@ -1598,7 +1598,7 @@ ___
• **subscription**: *string*
-*Defined in [types.ts:303](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L303)*
+*Defined in [types.ts:303](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L303)*
@@ -1621,7 +1621,7 @@ ___
• **hash**: *string*
-*Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L425)*
+*Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L425)*
___
@@ -1629,7 +1629,7 @@ ___
• **number**: *number*
-*Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L424)*
+*Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L424)*
@@ -1656,7 +1656,7 @@ ___
• **contractEvents**: *[ContractEvent](#interface-contractevent)[]*
-*Defined in [types.ts:322](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L322)*
+*Defined in [types.ts:322](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L322)*
___
@@ -1664,7 +1664,7 @@ ___
• **endState**: *[OrderEventEndState](#enumeration-ordereventendstate)*
-*Defined in [types.ts:320](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L320)*
+*Defined in [types.ts:320](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L320)*
___
@@ -1672,7 +1672,7 @@ ___
• **fillableTakerAssetAmount**: *`BigNumber`*
-*Defined in [types.ts:321](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L321)*
+*Defined in [types.ts:321](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L321)*
___
@@ -1680,7 +1680,7 @@ ___
• **orderHash**: *string*
-*Defined in [types.ts:318](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L318)*
+*Defined in [types.ts:318](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L318)*
___
@@ -1688,7 +1688,7 @@ ___
• **signedOrder**: *`SignedOrder`*
-*Defined in [types.ts:319](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L319)*
+*Defined in [types.ts:319](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L319)*
___
@@ -1696,7 +1696,7 @@ ___
• **timestampMs**: *number*
-*Defined in [types.ts:317](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L317)*
+*Defined in [types.ts:317](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L317)*
@@ -1719,7 +1719,7 @@ ___
• **result**: *[RawOrderEvent](#interface-raworderevent)[]*
-*Defined in [types.ts:299](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L299)*
+*Defined in [types.ts:299](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L299)*
___
@@ -1727,7 +1727,7 @@ ___
• **subscription**: *string*
-*Defined in [types.ts:298](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L298)*
+*Defined in [types.ts:298](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L298)*
@@ -1751,7 +1751,7 @@ ___
• **fillableTakerAssetAmount**: *`BigNumber`*
-*Defined in [types.ts:348](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L348)*
+*Defined in [types.ts:348](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L348)*
___
@@ -1759,7 +1759,7 @@ ___
• **orderHash**: *string*
-*Defined in [types.ts:346](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L346)*
+*Defined in [types.ts:346](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L346)*
___
@@ -1767,7 +1767,7 @@ ___
• **signedOrder**: *`SignedOrder`*
-*Defined in [types.ts:347](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L347)*
+*Defined in [types.ts:347](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L347)*
@@ -1792,7 +1792,7 @@ ___
• **fillableTakerAssetAmount**: *string*
-*Defined in [types.ts:328](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L328)*
+*Defined in [types.ts:328](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L328)*
___
@@ -1800,7 +1800,7 @@ ___
• **isNew**: *boolean*
-*Defined in [types.ts:329](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L329)*
+*Defined in [types.ts:329](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L329)*
___
@@ -1808,7 +1808,7 @@ ___
• **orderHash**: *string*
-*Defined in [types.ts:326](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L326)*
+*Defined in [types.ts:326](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L326)*
___
@@ -1816,7 +1816,7 @@ ___
• **signedOrder**: *[StringifiedSignedOrder](#interface-stringifiedsignedorder)*
-*Defined in [types.ts:327](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L327)*
+*Defined in [types.ts:327](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L327)*
@@ -1840,7 +1840,7 @@ ___
• **ordersInfos**: *[RawAcceptedOrderInfo](#interface-rawacceptedorderinfo)[]*
-*Defined in [types.ts:406](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L406)*
+*Defined in [types.ts:406](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L406)*
___
@@ -1848,7 +1848,7 @@ ___
• **snapshotID**: *string*
-*Defined in [types.ts:404](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L404)*
+*Defined in [types.ts:404](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L404)*
___
@@ -1856,7 +1856,7 @@ ___
• **snapshotTimestamp**: *string*
-*Defined in [types.ts:405](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L405)*
+*Defined in [types.ts:405](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L405)*
@@ -1883,7 +1883,7 @@ ___
• **contractEvents**: *[StringifiedContractEvent](#interface-stringifiedcontractevent)[]*
-*Defined in [types.ts:313](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L313)*
+*Defined in [types.ts:313](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L313)*
___
@@ -1891,7 +1891,7 @@ ___
• **endState**: *[OrderEventEndState](#enumeration-ordereventendstate)*
-*Defined in [types.ts:311](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L311)*
+*Defined in [types.ts:311](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L311)*
___
@@ -1899,7 +1899,7 @@ ___
• **fillableTakerAssetAmount**: *string*
-*Defined in [types.ts:312](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L312)*
+*Defined in [types.ts:312](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L312)*
___
@@ -1907,7 +1907,7 @@ ___
• **orderHash**: *string*
-*Defined in [types.ts:309](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L309)*
+*Defined in [types.ts:309](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L309)*
___
@@ -1915,7 +1915,7 @@ ___
• **signedOrder**: *[StringifiedSignedOrder](#interface-stringifiedsignedorder)*
-*Defined in [types.ts:310](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L310)*
+*Defined in [types.ts:310](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L310)*
___
@@ -1923,7 +1923,7 @@ ___
• **timestamp**: *string*
-*Defined in [types.ts:308](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L308)*
+*Defined in [types.ts:308](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L308)*
@@ -1947,7 +1947,7 @@ ___
• **fillableTakerAssetAmount**: *string*
-*Defined in [types.ts:342](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L342)*
+*Defined in [types.ts:342](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L342)*
___
@@ -1955,7 +1955,7 @@ ___
• **orderHash**: *string*
-*Defined in [types.ts:340](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L340)*
+*Defined in [types.ts:340](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L340)*
___
@@ -1963,7 +1963,7 @@ ___
• **signedOrder**: *[StringifiedSignedOrder](#interface-stringifiedsignedorder)*
-*Defined in [types.ts:341](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L341)*
+*Defined in [types.ts:341](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L341)*
@@ -1988,7 +1988,7 @@ ___
• **kind**: *[RejectedKind](#enumeration-rejectedkind)*
-*Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L382)*
+*Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L382)*
___
@@ -1996,7 +1996,7 @@ ___
• **orderHash**: *string*
-*Defined in [types.ts:380](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L380)*
+*Defined in [types.ts:380](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L380)*
___
@@ -2004,7 +2004,7 @@ ___
• **signedOrder**: *[StringifiedSignedOrder](#interface-stringifiedsignedorder)*
-*Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L381)*
+*Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L381)*
___
@@ -2012,7 +2012,7 @@ ___
• **status**: *[RejectedStatus](#interface-rejectedstatus)*
-*Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L383)*
+*Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L383)*
@@ -2035,7 +2035,7 @@ ___
• **accepted**: *[RawAcceptedOrderInfo](#interface-rawacceptedorderinfo)[]*
-*Defined in [types.ts:394](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L394)*
+*Defined in [types.ts:394](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L394)*
___
@@ -2043,7 +2043,7 @@ ___
• **rejected**: *[RawRejectedOrderInfo](#interface-rawrejectedorderinfo)[]*
-*Defined in [types.ts:395](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L395)*
+*Defined in [types.ts:395](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L395)*
@@ -2068,7 +2068,7 @@ ___
• **kind**: *[RejectedKind](#enumeration-rejectedkind)*
-*Defined in [types.ts:389](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L389)*
+*Defined in [types.ts:389](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L389)*
___
@@ -2076,7 +2076,7 @@ ___
• **orderHash**: *string*
-*Defined in [types.ts:387](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L387)*
+*Defined in [types.ts:387](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L387)*
___
@@ -2084,7 +2084,7 @@ ___
• **signedOrder**: *`SignedOrder`*
-*Defined in [types.ts:388](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L388)*
+*Defined in [types.ts:388](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L388)*
___
@@ -2092,7 +2092,7 @@ ___
• **status**: *[RejectedStatus](#interface-rejectedstatus)*
-*Defined in [types.ts:390](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L390)*
+*Defined in [types.ts:390](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L390)*
@@ -2115,7 +2115,7 @@ ___
• **code**: *[RejectedCode](#enumeration-rejectedcode)*
-*Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L375)*
+*Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L375)*
___
@@ -2123,7 +2123,7 @@ ___
• **message**: *string*
-*Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L376)*
+*Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L376)*
@@ -2152,7 +2152,7 @@ ___
• **address**: *string*
-*Defined in [types.ts:253](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L253)*
+*Defined in [types.ts:253](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L253)*
___
@@ -2160,7 +2160,7 @@ ___
• **blockHash**: *string*
-*Defined in [types.ts:248](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L248)*
+*Defined in [types.ts:248](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L248)*
___
@@ -2168,7 +2168,7 @@ ___
• **isRemoved**: *string*
-*Defined in [types.ts:252](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L252)*
+*Defined in [types.ts:252](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L252)*
___
@@ -2176,7 +2176,7 @@ ___
• **kind**: *string*
-*Defined in [types.ts:254](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L254)*
+*Defined in [types.ts:254](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L254)*
___
@@ -2184,7 +2184,7 @@ ___
• **logIndex**: *number*
-*Defined in [types.ts:251](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L251)*
+*Defined in [types.ts:251](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L251)*
___
@@ -2192,7 +2192,7 @@ ___
• **parameters**: *[StringifiedContractEventParameters](#stringifiedcontracteventparameters)*
-*Defined in [types.ts:255](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L255)*
+*Defined in [types.ts:255](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L255)*
___
@@ -2200,7 +2200,7 @@ ___
• **txHash**: *string*
-*Defined in [types.ts:249](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L249)*
+*Defined in [types.ts:249](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L249)*
___
@@ -2208,7 +2208,7 @@ ___
• **txIndex**: *number*
-*Defined in [types.ts:250](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L250)*
+*Defined in [types.ts:250](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L250)*
@@ -2234,7 +2234,7 @@ ___
• **from**: *string*
-*Defined in [types.ts:135](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L135)*
+*Defined in [types.ts:135](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L135)*
___
@@ -2242,7 +2242,7 @@ ___
• **ids**: *string[]*
-*Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L137)*
+*Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L137)*
___
@@ -2250,7 +2250,7 @@ ___
• **operator**: *string*
-*Defined in [types.ts:134](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L134)*
+*Defined in [types.ts:134](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L134)*
___
@@ -2258,7 +2258,7 @@ ___
• **to**: *string*
-*Defined in [types.ts:136](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L136)*
+*Defined in [types.ts:136](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L136)*
___
@@ -2266,7 +2266,7 @@ ___
• **values**: *string[]*
-*Defined in [types.ts:138](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L138)*
+*Defined in [types.ts:138](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L138)*
@@ -2292,7 +2292,7 @@ ___
• **from**: *string*
-*Defined in [types.ts:119](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L119)*
+*Defined in [types.ts:119](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L119)*
___
@@ -2300,7 +2300,7 @@ ___
• **id**: *string*
-*Defined in [types.ts:121](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L121)*
+*Defined in [types.ts:121](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L121)*
___
@@ -2308,7 +2308,7 @@ ___
• **operator**: *string*
-*Defined in [types.ts:118](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L118)*
+*Defined in [types.ts:118](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L118)*
___
@@ -2316,7 +2316,7 @@ ___
• **to**: *string*
-*Defined in [types.ts:120](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L120)*
+*Defined in [types.ts:120](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L120)*
___
@@ -2324,7 +2324,7 @@ ___
• **value**: *string*
-*Defined in [types.ts:122](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L122)*
+*Defined in [types.ts:122](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L122)*
@@ -2348,7 +2348,7 @@ ___
• **owner**: *string*
-*Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L74)*
+*Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L74)*
___
@@ -2356,7 +2356,7 @@ ___
• **spender**: *string*
-*Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L75)*
+*Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L75)*
___
@@ -2364,7 +2364,7 @@ ___
• **value**: *string*
-*Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L76)*
+*Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L76)*
@@ -2388,7 +2388,7 @@ ___
• **from**: *string*
-*Defined in [types.ts:62](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L62)*
+*Defined in [types.ts:62](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L62)*
___
@@ -2396,7 +2396,7 @@ ___
• **to**: *string*
-*Defined in [types.ts:63](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L63)*
+*Defined in [types.ts:63](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L63)*
___
@@ -2404,7 +2404,7 @@ ___
• **value**: *string*
-*Defined in [types.ts:64](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L64)*
+*Defined in [types.ts:64](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L64)*
@@ -2428,7 +2428,7 @@ ___
• **approved**: *string*
-*Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L99)*
+*Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L99)*
___
@@ -2436,7 +2436,7 @@ ___
• **owner**: *string*
-*Defined in [types.ts:98](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L98)*
+*Defined in [types.ts:98](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L98)*
___
@@ -2444,7 +2444,7 @@ ___
• **tokenId**: *string*
-*Defined in [types.ts:100](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L100)*
+*Defined in [types.ts:100](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L100)*
@@ -2468,7 +2468,7 @@ ___
• **from**: *string*
-*Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L86)*
+*Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L86)*
___
@@ -2476,7 +2476,7 @@ ___
• **to**: *string*
-*Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L87)*
+*Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L87)*
___
@@ -2484,7 +2484,7 @@ ___
• **tokenId**: *string*
-*Defined in [types.ts:88](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L88)*
+*Defined in [types.ts:88](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L88)*
@@ -2508,7 +2508,7 @@ ___
• **makerAddress**: *string*
-*Defined in [types.ts:191](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L191)*
+*Defined in [types.ts:191](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L191)*
___
@@ -2516,7 +2516,7 @@ ___
• **orderEpoch**: *string*
-*Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L193)*
+*Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L193)*
___
@@ -2524,7 +2524,7 @@ ___
• **senderAddress**: *string*
-*Defined in [types.ts:192](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L192)*
+*Defined in [types.ts:192](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L192)*
@@ -2556,7 +2556,7 @@ ___
• **feeRecipientAddress**: *string*
-*Defined in [types.ts:165](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L165)*
+*Defined in [types.ts:165](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L165)*
___
@@ -2564,7 +2564,7 @@ ___
• **makerAddress**: *string*
-*Defined in [types.ts:162](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L162)*
+*Defined in [types.ts:162](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L162)*
___
@@ -2572,7 +2572,7 @@ ___
• **makerAssetData**: *string*
-*Defined in [types.ts:171](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L171)*
+*Defined in [types.ts:171](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L171)*
___
@@ -2580,7 +2580,7 @@ ___
• **makerAssetFilledAmount**: *string*
-*Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L166)*
+*Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L166)*
___
@@ -2588,7 +2588,7 @@ ___
• **makerFeePaid**: *string*
-*Defined in [types.ts:168](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L168)*
+*Defined in [types.ts:168](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L168)*
___
@@ -2596,7 +2596,7 @@ ___
• **orderHash**: *string*
-*Defined in [types.ts:170](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L170)*
+*Defined in [types.ts:170](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L170)*
___
@@ -2604,7 +2604,7 @@ ___
• **senderAddress**: *string*
-*Defined in [types.ts:164](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L164)*
+*Defined in [types.ts:164](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L164)*
___
@@ -2612,7 +2612,7 @@ ___
• **takerAddress**: *string*
-*Defined in [types.ts:163](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L163)*
+*Defined in [types.ts:163](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L163)*
___
@@ -2620,7 +2620,7 @@ ___
• **takerAssetData**: *string*
-*Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L172)*
+*Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L172)*
___
@@ -2628,7 +2628,7 @@ ___
• **takerAssetFilledAmount**: *string*
-*Defined in [types.ts:167](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L167)*
+*Defined in [types.ts:167](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L167)*
___
@@ -2636,7 +2636,7 @@ ___
• **takerFeePaid**: *string*
-*Defined in [types.ts:169](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L169)*
+*Defined in [types.ts:169](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L169)*
@@ -2671,7 +2671,7 @@ ___
• **exchangeAddress**: *string*
-*Defined in [types.ts:49](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L49)*
+*Defined in [types.ts:49](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L49)*
___
@@ -2679,7 +2679,7 @@ ___
• **expirationTimeSeconds**: *string*
-*Defined in [types.ts:51](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L51)*
+*Defined in [types.ts:51](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L51)*
___
@@ -2687,7 +2687,7 @@ ___
• **feeRecipientAddress**: *string*
-*Defined in [types.ts:50](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L50)*
+*Defined in [types.ts:50](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L50)*
___
@@ -2695,7 +2695,7 @@ ___
• **makerAddress**: *string*
-*Defined in [types.ts:40](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L40)*
+*Defined in [types.ts:40](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L40)*
___
@@ -2703,7 +2703,7 @@ ___
• **makerAssetAmount**: *string*
-*Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L44)*
+*Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L44)*
___
@@ -2711,7 +2711,7 @@ ___
• **makerAssetData**: *string*
-*Defined in [types.ts:46](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L46)*
+*Defined in [types.ts:46](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L46)*
___
@@ -2719,7 +2719,7 @@ ___
• **makerFee**: *string*
-*Defined in [types.ts:42](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L42)*
+*Defined in [types.ts:42](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L42)*
___
@@ -2727,7 +2727,7 @@ ___
• **salt**: *string*
-*Defined in [types.ts:48](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L48)*
+*Defined in [types.ts:48](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L48)*
___
@@ -2735,7 +2735,7 @@ ___
• **senderAddress**: *string*
-*Defined in [types.ts:39](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L39)*
+*Defined in [types.ts:39](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L39)*
___
@@ -2743,7 +2743,7 @@ ___
• **signature**: *string*
-*Defined in [types.ts:52](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L52)*
+*Defined in [types.ts:52](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L52)*
___
@@ -2751,7 +2751,7 @@ ___
• **takerAddress**: *string*
-*Defined in [types.ts:41](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L41)*
+*Defined in [types.ts:41](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L41)*
___
@@ -2759,7 +2759,7 @@ ___
• **takerAssetAmount**: *string*
-*Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L45)*
+*Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L45)*
___
@@ -2767,7 +2767,7 @@ ___
• **takerAssetData**: *string*
-*Defined in [types.ts:47](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L47)*
+*Defined in [types.ts:47](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L47)*
___
@@ -2775,7 +2775,7 @@ ___
• **takerFee**: *string*
-*Defined in [types.ts:43](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L43)*
+*Defined in [types.ts:43](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L43)*
@@ -2798,7 +2798,7 @@ ___
• **owner**: *string*
-*Defined in [types.ts:212](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L212)*
+*Defined in [types.ts:212](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L212)*
___
@@ -2806,7 +2806,7 @@ ___
• **value**: *string*
-*Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L213)*
+*Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L213)*
@@ -2829,7 +2829,7 @@ ___
• **owner**: *string*
-*Defined in [types.ts:202](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L202)*
+*Defined in [types.ts:202](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L202)*
___
@@ -2837,7 +2837,7 @@ ___
• **value**: *string*
-*Defined in [types.ts:203](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L203)*
+*Defined in [types.ts:203](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L203)*
@@ -2860,7 +2860,7 @@ ___
• **accepted**: *[AcceptedOrderInfo](#interface-acceptedorderinfo)[]*
-*Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L399)*
+*Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L399)*
___
@@ -2868,7 +2868,7 @@ ___
• **rejected**: *[RejectedOrderInfo](#interface-rejectedorderinfo)[]*
-*Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L400)*
+*Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L400)*
@@ -2891,7 +2891,7 @@ ___
• **owner**: *string*
-*Defined in [types.ts:207](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L207)*
+*Defined in [types.ts:207](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L207)*
___
@@ -2899,7 +2899,7 @@ ___
• **value**: *`BigNumber`*
-*Defined in [types.ts:208](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L208)*
+*Defined in [types.ts:208](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L208)*
@@ -2922,7 +2922,7 @@ ___
• **owner**: *string*
-*Defined in [types.ts:197](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L197)*
+*Defined in [types.ts:197](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L197)*
___
@@ -2930,7 +2930,7 @@ ___
• **value**: *`BigNumber`*
-*Defined in [types.ts:198](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L198)*
+*Defined in [types.ts:198](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L198)*
@@ -2953,7 +2953,7 @@ ___
• **type**: *string*
-*Defined in [types.ts:419](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L419)*
+*Defined in [types.ts:419](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L419)*
___
@@ -2961,7 +2961,7 @@ ___
• **utf8Data**: *string*
-*Defined in [types.ts:420](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L420)*
+*Defined in [types.ts:420](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L420)*
@@ -2995,7 +2995,7 @@ reconnectDelay: time in milliseconds after which to attempt to reconnect to WS s
• **clientConfig**? : *[ClientConfig](#interface-clientconfig)*
-*Defined in [types.ts:34](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L34)*
+*Defined in [types.ts:34](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L34)*
___
@@ -3003,7 +3003,7 @@ ___
• **headers**? : *undefined | `__type`*
-*Defined in [types.ts:32](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L32)*
+*Defined in [types.ts:32](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L32)*
___
@@ -3011,7 +3011,7 @@ ___
• **protocol**? : *undefined | string*
-*Defined in [types.ts:33](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L33)*
+*Defined in [types.ts:33](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L33)*
___
@@ -3019,7 +3019,7 @@ ___
• **reconnectDelay**? : *undefined | number*
-*Defined in [types.ts:35](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L35)*
+*Defined in [types.ts:35](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L35)*
___
@@ -3027,7 +3027,7 @@ ___
• **timeout**? : *undefined | number*
-*Defined in [types.ts:31](https://github.com/0xProject/0x-mesh/blob/47da994/rpc/clients/typescript/src/types.ts#L31)*
+*Defined in [types.ts:31](https://github.com/0xProject/0x-mesh/blob/1593c46/rpc/clients/typescript/src/types.ts#L31)*
diff --git a/docs/rpc_api.md b/docs/rpc_api.md
index e5862e913..e158ce147 100644
--- a/docs/rpc_api.md
+++ b/docs/rpc_api.md
@@ -1,4 +1,4 @@
-[![Version](https://img.shields.io/badge/version-8.1.0-orange.svg)](https://github.com/0xProject/0x-mesh/releases)
+[![Version](https://img.shields.io/badge/version-8.1.1-orange.svg)](https://github.com/0xProject/0x-mesh/releases)
# 0x Mesh JSON-RPC API Documentation
diff --git a/go.mod b/go.mod
index fb0a4dc09..15abe0195 100644
--- a/go.mod
+++ b/go.mod
@@ -66,17 +66,8 @@ require (
github.com/libp2p/go-libp2p-connmgr v0.1.1
github.com/libp2p/go-libp2p-core v0.2.4
github.com/libp2p/go-libp2p-crypto v0.1.0
- github.com/libp2p/go-libp2p-discovery v0.1.0
- github.com/libp2p/go-libp2p-host v0.0.0-20190226202054-2aa838333967 // indirect
- github.com/libp2p/go-libp2p-interface-connmgr v0.0.0-20190226202048-6a96ea29ac65 // indirect
- github.com/libp2p/go-libp2p-interface-pnet v0.0.0-20180919000501-d240acf619f6 // indirect
- github.com/libp2p/go-libp2p-kad-dht v0.2.1
- github.com/libp2p/go-libp2p-kbucket v0.2.1
- github.com/libp2p/go-libp2p-loggables v0.1.0
- github.com/libp2p/go-libp2p-metrics v0.0.0-20190226174147-1f0f4db04727 // indirect
- github.com/libp2p/go-libp2p-mplex v0.2.1
- github.com/libp2p/go-libp2p-nat v0.0.4
- github.com/libp2p/go-libp2p-net v0.0.0-20190226201932-e71fff5ba6e9 // indirect
+ github.com/libp2p/go-libp2p-discovery v0.2.0
+ github.com/libp2p/go-libp2p-kad-dht v0.3.0
github.com/libp2p/go-libp2p-peer v0.2.0
github.com/libp2p/go-libp2p-peerstore v0.1.3
github.com/libp2p/go-libp2p-protocol v0.0.0-20171212212132-b29f3d97e3a2 // indirect
@@ -157,6 +148,7 @@ require (
golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a
golang.org/x/text v0.3.2
golang.org/x/time v0.0.0-20191024005414-555d28b269f0
- golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898
- gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce
+ gopkg.in/karlseguin/expect.v1 v1.0.1 // indirect
+ gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce // indirect
+ gopkg.in/olebedev/go-duktape.v3 v3.0.0-20190709231704-1e4459ed25ff // indirect
)
diff --git a/go.sum b/go.sum
index 7bfea285e..1a2fbe74a 100644
--- a/go.sum
+++ b/go.sum
@@ -310,6 +310,7 @@ github.com/libp2p/go-libp2p-discovery v0.0.4/go.mod h1:ReQGiv7QTtza8FUWzewfuMmRD
github.com/libp2p/go-libp2p-discovery v0.0.5/go.mod h1:YtF20GUxjgoKZ4zmXj8j3Nb2TUSBHFlOCetzYdbZL5I=
github.com/libp2p/go-libp2p-discovery v0.1.0 h1:j+R6cokKcGbnZLf4kcNwpx6mDEUPF3N6SrqMymQhmvs=
github.com/libp2p/go-libp2p-discovery v0.1.0/go.mod h1:4F/x+aldVHjHDHuX85x1zWoFTGElt8HnoDzwkFZm29g=
+github.com/libp2p/go-libp2p-discovery v0.2.0/go.mod h1:s4VGaxYMbw4+4+tsoQTqh7wfxg97AEdo4GYBt6BadWg=
github.com/libp2p/go-libp2p-host v0.0.0-20190226202054-2aa838333967 h1:arERhb/u8bUN55fZ7YrG7EzJoQbfSRccbZMATNOXF2E=
github.com/libp2p/go-libp2p-host v0.0.0-20190226202054-2aa838333967/go.mod h1:iAthoepYpyqzb89f4RmqzF9+ebsWPFBTvSedSlcWupg=
github.com/libp2p/go-libp2p-host v0.0.1/go.mod h1:qWd+H1yuU0m5CwzAkvbSjqKairayEHdR5MMl7Cwa7Go=
@@ -341,10 +342,7 @@ github.com/libp2p/go-libp2p-kad-dht v0.1.1/go.mod h1:1kj2Rk5pX3/0RwqMm9AMNCT7Dzc
github.com/libp2p/go-libp2p-kad-dht v0.2.0/go.mod h1:TmnCYcbasyFTKJg/P/AIIqJQYQ6+jgtYZTKUCLgu7js=
github.com/libp2p/go-libp2p-kad-dht v0.2.1 h1:+pb1DCkV/6oNQjTZVXl+Y++eV0rnelx/L8y1t4J+Rnw=
github.com/libp2p/go-libp2p-kad-dht v0.2.1/go.mod h1:k7ONOlup7HKzQ68dE6lSnp07cdxdkmnRa+6B4Fh9/w0=
-github.com/libp2p/go-libp2p-kad-dht v0.2.2/go.mod h1:k7ONOlup7HKzQ68dE6lSnp07cdxdkmnRa+6B4Fh9/w0=
-github.com/libp2p/go-libp2p-kad-dht v0.3.0 h1:KUJaqW3kkHP6zcL0s1CDg+yO0NYNNPkXmG4FrnZbwzM=
github.com/libp2p/go-libp2p-kad-dht v0.3.0/go.mod h1:7nBsfkMq2zN1qPs6n/fNopJfvmK9NZRNicRrCnwQR8o=
-github.com/libp2p/go-libp2p-kbucket v0.0.0-20190226223454-719fa0d0a853/go.mod h1:MTtm31eal94QTxVOWYTDZ6G1YOJRN2G3ESQHbaPytLk=
github.com/libp2p/go-libp2p-kbucket v0.2.1 h1:q9Jfwww9XnXc1K9dyYuARJxJvIvhgYVaQCuziO/dF3c=
github.com/libp2p/go-libp2p-kbucket v0.2.1/go.mod h1:/Rtu8tqbJ4WQ2KTCOMJhggMukOLNLNPY1EtEWWLxUvc=
github.com/libp2p/go-libp2p-loggables v0.0.0-20190226201908-4c6f06110532/go.mod h1:jcP5HmpEBcQ2w5u9xhLkCv73GBPKz3weC/s6ZWhXn+k=
@@ -755,7 +753,9 @@ gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLks
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys=
+gopkg.in/karlseguin/expect.v1 v1.0.1/go.mod h1:uB7QIJBcclvYbwlUDkSCsGjAOMis3fP280LyhuDEf2I=
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce/go.mod h1:5AcXVHNjg+BDxry382+8OKon8SEWiKktQR07RKPsv1c=
+gopkg.in/olebedev/go-duktape.v3 v3.0.0-20190709231704-1e4459ed25ff/go.mod h1:uAJfkITjFhyEEuUfm7bsmCZRbW5WRq8s9EY8HZ6hCns=
gopkg.in/src-d/go-cli.v0 v0.0.0-20181105080154-d492247bbc0d/go.mod h1:z+K8VcOYVYcSwSjGebuDL6176A1XskgbtNl64NSg+n8=
gopkg.in/src-d/go-log.v1 v1.0.1/go.mod h1:GN34hKP0g305ysm2/hctJ0Y8nWP3zxXXJ8GFabTyABE=
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw=
diff --git a/rpc/clients/typescript/package.json b/rpc/clients/typescript/package.json
index 9fcbf9745..6ea90974f 100644
--- a/rpc/clients/typescript/package.json
+++ b/rpc/clients/typescript/package.json
@@ -1,6 +1,6 @@
{
"name": "@0x/mesh-rpc-client",
- "version": "8.1.0",
+ "version": "8.1.1",
"engines": {
"node": ">=6.12"
},