diff --git a/README.md b/README.md index 2de76b431..0375bc034 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Version](https://img.shields.io/badge/version-11.0.0-orange.svg)](https://github.com/0xProject/0x-mesh/releases) +[![Version](https://img.shields.io/badge/version-11.0.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/core/core.go b/core/core.go index f97fa7814..ae1e8664d 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 = "11.0.0" + version = "11.0.1" // ordersyncMinPeers is the minimum amount of peers to receive orders from // before considering the ordersync process finished. ordersyncMinPeers = 5 diff --git a/docs/browser-bindings/browser-lite/README.md b/docs/browser-bindings/browser-lite/README.md index db4124e9c..4d7b54019 100644 --- a/docs/browser-bindings/browser-lite/README.md +++ b/docs/browser-bindings/browser-lite/README.md @@ -1,4 +1,4 @@ -# @0x/mesh-browser-lite - v11.0.0 +# @0x/mesh-browser-lite - v11.0.1 ## @0x/mesh-browser-lite diff --git a/docs/browser-bindings/browser-lite/reference.md b/docs/browser-bindings/browser-lite/reference.md index e0cd76755..81fa5562a 100644 --- a/docs/browser-bindings/browser-lite/reference.md +++ b/docs/browser-bindings/browser-lite/reference.md @@ -13,7 +13,7 @@ sending orders through the 0x Mesh network. \+ **new Mesh**(`config`: [Config](#interface-config)): _[Mesh](#class-mesh)_ -_Defined in [mesh.ts:132](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/mesh.ts#L132)_ +_Defined in [mesh.ts:132](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/mesh.ts#L132)_ Instantiates a new Mesh instance. @@ -33,7 +33,7 @@ An instance of Mesh • **wrapper**? : _MeshWrapper_ -_Defined in [mesh.ts:129](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/mesh.ts#L129)_ +_Defined in [mesh.ts:129](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/mesh.ts#L129)_ ### Methods @@ -41,7 +41,7 @@ _Defined in [mesh.ts:129](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac ▸ **addOrdersAsync**(`orders`: SignedOrder[], `pinned`: boolean): _Promise‹[ValidationResults](#interface-validationresults)›_ -_Defined in [mesh.ts:269](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/mesh.ts#L269)_ +_Defined in [mesh.ts:269](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/mesh.ts#L269)_ 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 @@ -68,7 +68,7 @@ were accepted and which were rejected. ▸ **getOrdersAsync**(`perPage`: number): _Promise‹[GetOrdersResponse](#interface-getordersresponse)›_ -_Defined in [mesh.ts:207](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/mesh.ts#L207)_ +_Defined in [mesh.ts:207](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/mesh.ts#L207)_ Get all 0x signed orders currently stored in the Mesh node @@ -88,7 +88,7 @@ the snapshotID, snapshotTimestamp and all orders, their hashes and fillableTaker ▸ **getOrdersForPageAsync**(`perPage`: number, `minOrderHash?`: undefined | string): _Promise‹[GetOrdersResponse](#interface-getordersresponse)›_ -_Defined in [mesh.ts:240](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/mesh.ts#L240)_ +_Defined in [mesh.ts:240](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/mesh.ts#L240)_ Get page of 0x signed orders stored on the Mesh node at the specified snapshot @@ -109,7 +109,7 @@ Up to perPage orders with hash greater than minOrderHash, including order hashes ▸ **getStatsAsync**(): _Promise‹[Stats](#interface-stats)›_ -_Defined in [mesh.ts:190](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/mesh.ts#L190)_ +_Defined in [mesh.ts:190](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/mesh.ts#L190)_ Returns various stats about Mesh, including the total number of orders and the number of peers Mesh is connected to. @@ -122,7 +122,7 @@ and the number of peers Mesh is connected to. ▸ **onError**(`handler`: function): _void_ -_Defined in [mesh.ts:152](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/mesh.ts#L152)_ +_Defined in [mesh.ts:152](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/mesh.ts#L152)_ 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. @@ -151,7 +151,7 @@ The handler to be called. ▸ **onOrderEvents**(`handler`: function): _void_ -_Defined in [mesh.ts:165](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/mesh.ts#L165)_ +_Defined in [mesh.ts:165](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/mesh.ts#L165)_ Registers a handler which will be called for any incoming order events. Order events are fired whenver an order is added, canceled, expired, or @@ -180,7 +180,7 @@ The handler to be called. ▸ **startAsync**(): _Promise‹void›_ -_Defined in [mesh.ts:174](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/mesh.ts#L174)_ +_Defined in [mesh.ts:174](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/mesh.ts#L174)_ Starts the Mesh node in the background. Mesh will automatically find peers in the network and begin receiving orders from them. @@ -197,7 +197,7 @@ peers in the network and begin receiving orders from them. • **ERC1155ApprovalForAllEvent**: = "ERC1155ApprovalForAllEvent" -_Defined in [types.ts:505](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L505)_ +_Defined in [types.ts:505](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L505)_ --- @@ -205,7 +205,7 @@ _Defined in [types.ts:505](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ERC1155TransferBatchEvent**: = "ERC1155TransferBatchEvent" -_Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L507)_ +_Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L507)_ --- @@ -213,7 +213,7 @@ _Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ERC1155TransferSingleEvent**: = "ERC1155TransferSingleEvent" -_Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L506)_ +_Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L506)_ --- @@ -221,7 +221,7 @@ _Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ERC20ApprovalEvent**: = "ERC20ApprovalEvent" -_Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L501)_ +_Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L501)_ --- @@ -229,7 +229,7 @@ _Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ERC20TransferEvent**: = "ERC20TransferEvent" -_Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L500)_ +_Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L500)_ --- @@ -237,7 +237,7 @@ _Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ERC721ApprovalEvent**: = "ERC721ApprovalEvent" -_Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L503)_ +_Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L503)_ --- @@ -245,7 +245,7 @@ _Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ERC721ApprovalForAllEvent**: = "ERC721ApprovalForAllEvent" -_Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L504)_ +_Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L504)_ --- @@ -253,7 +253,7 @@ _Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ERC721TransferEvent**: = "ERC721TransferEvent" -_Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L502)_ +_Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L502)_ --- @@ -261,7 +261,7 @@ _Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ExchangeCancelEvent**: = "ExchangeCancelEvent" -_Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L509)_ +_Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L509)_ --- @@ -269,7 +269,7 @@ _Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ExchangeCancelUpToEvent**: = "ExchangeCancelUpToEvent" -_Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L510)_ +_Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L510)_ --- @@ -277,7 +277,7 @@ _Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ExchangeFillEvent**: = "ExchangeFillEvent" -_Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L508)_ +_Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L508)_ --- @@ -285,7 +285,7 @@ _Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **WethDepositEvent**: = "WethDepositEvent" -_Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L511)_ +_Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L511)_ --- @@ -293,7 +293,7 @@ _Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **WethWithdrawalEvent**: = "WethWithdrawalEvent" -_Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L512)_ +_Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L512)_
@@ -305,7 +305,7 @@ _Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Added**: = "ADDED" -_Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L575)_ +_Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L575)_ --- @@ -313,7 +313,7 @@ _Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Cancelled**: = "CANCELLED" -_Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L578)_ +_Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L578)_ --- @@ -321,7 +321,7 @@ _Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Expired**: = "EXPIRED" -_Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L579)_ +_Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L579)_ --- @@ -329,7 +329,7 @@ _Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **FillabilityIncreased**: = "FILLABILITY_INCREASED" -_Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L582)_ +_Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L582)_ --- @@ -337,7 +337,7 @@ _Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Filled**: = "FILLED" -_Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L576)_ +_Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L576)_ --- @@ -345,7 +345,7 @@ _Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **FullyFilled**: = "FULLY_FILLED" -_Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L577)_ +_Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L577)_ --- @@ -353,7 +353,7 @@ _Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Invalid**: = "INVALID" -_Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L574)_ +_Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L574)_ --- @@ -361,7 +361,7 @@ _Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **StoppedWatching**: = "STOPPED_WATCHING" -_Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L583)_ +_Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L583)_ --- @@ -369,7 +369,7 @@ _Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Unexpired**: = "UNEXPIRED" -_Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L580)_ +_Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L580)_ --- @@ -377,7 +377,7 @@ _Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Unfunded**: = "UNFUNDED" -_Defined in [types.ts:581](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L581)_ +_Defined in [types.ts:581](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L581)_
@@ -391,7 +391,7 @@ A set of categories for rejected orders. • **MeshError**: = "MESH_ERROR" -_Defined in [types.ts:714](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L714)_ +_Defined in [types.ts:714](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L714)_ --- @@ -399,7 +399,7 @@ _Defined in [types.ts:714](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **MeshValidation**: = "MESH_VALIDATION" -_Defined in [types.ts:715](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L715)_ +_Defined in [types.ts:715](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L715)_ --- @@ -407,7 +407,7 @@ _Defined in [types.ts:715](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ZeroExValidation**: = "ZEROEX_VALIDATION" -_Defined in [types.ts:713](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L713)_ +_Defined in [types.ts:713](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L713)_
@@ -419,7 +419,7 @@ _Defined in [types.ts:713](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Debug**: = 5 -_Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L238)_ +_Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L238)_ --- @@ -427,7 +427,7 @@ _Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Error**: = 2 -_Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L235)_ +_Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L235)_ --- @@ -435,7 +435,7 @@ _Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Fatal**: = 1 -_Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L234)_ +_Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L234)_ --- @@ -443,7 +443,7 @@ _Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Info**: = 4 -_Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L237)_ +_Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L237)_ --- @@ -451,7 +451,7 @@ _Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Panic**: = 0 -_Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L233)_ +_Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L233)_ --- @@ -459,7 +459,7 @@ _Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Trace**: = 6 -_Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L239)_ +_Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L239)_ --- @@ -467,7 +467,7 @@ _Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Warn**: = 3 -_Defined in [types.ts:236](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L236)_ +_Defined in [types.ts:236](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L236)_
@@ -485,7 +485,7 @@ Info for any orders that were accepted. • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [types.ts:694](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L694)_ +_Defined in [types.ts:694](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L694)_ --- @@ -493,7 +493,7 @@ _Defined in [types.ts:694](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **isNew**: _boolean_ -_Defined in [types.ts:695](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L695)_ +_Defined in [types.ts:695](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L695)_ --- @@ -501,7 +501,7 @@ _Defined in [types.ts:695](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **orderHash**: _string_ -_Defined in [types.ts:692](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L692)_ +_Defined in [types.ts:692](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L692)_ --- @@ -509,7 +509,7 @@ _Defined in [types.ts:692](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:693](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L693)_ +_Defined in [types.ts:693](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L693)_
@@ -527,7 +527,7 @@ A set of configuration options for Mesh. • **blockPollingIntervalSeconds**? : _undefined | number_ -_Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L144)_ +_Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L144)_ --- @@ -535,7 +535,7 @@ _Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **bootstrapList**? : _string[]_ -_Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L137)_ +_Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L137)_ --- @@ -543,7 +543,7 @@ _Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **customContractAddresses**? : _[ContractAddresses](#interface-contractaddresses)_ -_Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L188)_ +_Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L188)_ --- @@ -551,7 +551,7 @@ _Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **customOrderFilter**? : _[JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L213)_ +_Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L213)_ --- @@ -559,7 +559,7 @@ _Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **enableEthereumRPCRateLimiting**? : _undefined | false | true_ -_Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L161)_ +_Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L161)_ --- @@ -567,7 +567,7 @@ _Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ethereumChainID**: _number_ -_Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L129)_ +_Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L129)_ --- @@ -575,7 +575,7 @@ _Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ethereumRPCMaxContentLength**? : _undefined | number_ -_Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L153)_ +_Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L153)_ --- @@ -583,7 +583,7 @@ _Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ethereumRPCMaxRequestsPer24HrUTC**? : _undefined | number_ -_Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L166)_ +_Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L166)_ --- @@ -591,7 +591,7 @@ _Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ethereumRPCMaxRequestsPerSecond**? : _undefined | number_ -_Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L172)_ +_Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L172)_ --- @@ -599,7 +599,7 @@ _Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ethereumRPCURL**? : _undefined | string_ -_Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L126)_ +_Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L126)_ --- @@ -607,7 +607,7 @@ _Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **maxBytesPerSecond**? : _undefined | number_ -_Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L219)_ +_Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L219)_ --- @@ -615,7 +615,7 @@ _Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **maxOrdersInStorage**? : _undefined | number_ -_Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L193)_ +_Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L193)_ --- @@ -623,7 +623,7 @@ _Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **useBootstrapList**? : _undefined | false | true_ -_Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L132)_ +_Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L132)_ --- @@ -631,7 +631,7 @@ _Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **verbosity**? : _[Verbosity](#enumeration-verbosity)_ -_Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L123)_ +_Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L123)_ --- @@ -639,7 +639,7 @@ _Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **web3Provider**? : _SupportedProvider_ -_Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L216)_ +_Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L216)_
@@ -655,7 +655,7 @@ _Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **devUtils**: _string_ -_Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L224)_ +_Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L224)_ --- @@ -663,7 +663,7 @@ _Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **erc1155Proxy**: _string_ -_Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L227)_ +_Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L227)_ --- @@ -671,7 +671,7 @@ _Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **erc20Proxy**: _string_ -_Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L225)_ +_Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L225)_ --- @@ -679,7 +679,7 @@ _Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **erc721Proxy**: _string_ -_Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L226)_ +_Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L226)_ --- @@ -687,7 +687,7 @@ _Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **exchange**: _string_ -_Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L223)_ +_Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L223)_ --- @@ -695,7 +695,7 @@ _Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **weth9**? : _undefined | string_ -_Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L228)_ +_Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L228)_ --- @@ -703,7 +703,7 @@ _Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **zrxToken**? : _undefined | string_ -_Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L229)_ +_Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L229)_
@@ -719,7 +719,7 @@ _Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **address**: _string_ -_Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L553)_ +_Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L553)_ --- @@ -727,7 +727,7 @@ _Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **blockHash**: _string_ -_Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L548)_ +_Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L548)_ --- @@ -735,7 +735,7 @@ _Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **isRemoved**: _boolean_ -_Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L552)_ +_Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L552)_ --- @@ -743,7 +743,7 @@ _Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **kind**: _[ContractEventKind](#enumeration-contracteventkind)_ -_Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L554)_ +_Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L554)_ --- @@ -751,7 +751,7 @@ _Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **logIndex**: _number_ -_Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L551)_ +_Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L551)_ --- @@ -759,7 +759,7 @@ _Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **parameters**: _ContractEventParameters_ -_Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L555)_ +_Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L555)_ --- @@ -767,7 +767,7 @@ _Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **txHash**: _string_ -_Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L549)_ +_Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L549)_ --- @@ -775,7 +775,7 @@ _Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **txIndex**: _number_ -_Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L550)_ +_Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L550)_
@@ -791,7 +791,7 @@ _Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **approved**: _boolean_ -_Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L417)_ +_Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L417)_ --- @@ -799,7 +799,7 @@ _Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **operator**: _string_ -_Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L416)_ +_Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L416)_ --- @@ -807,7 +807,7 @@ _Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **owner**: _string_ -_Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L415)_ +_Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L415)_
@@ -823,7 +823,7 @@ _Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **from**: _string_ -_Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L399)_ +_Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L399)_ --- @@ -831,7 +831,7 @@ _Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ids**: _BigNumber[]_ -_Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L401)_ +_Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L401)_ --- @@ -839,7 +839,7 @@ _Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **operator**: _string_ -_Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L398)_ +_Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L398)_ --- @@ -847,7 +847,7 @@ _Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **to**: _string_ -_Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L400)_ +_Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L400)_ --- @@ -855,7 +855,7 @@ _Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **values**: _BigNumber[]_ -_Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L402)_ +_Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L402)_
@@ -871,7 +871,7 @@ _Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **from**: _string_ -_Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L382)_ +_Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L382)_ --- @@ -879,7 +879,7 @@ _Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **id**: _BigNumber_ -_Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L384)_ +_Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L384)_ --- @@ -887,7 +887,7 @@ _Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **operator**: _string_ -_Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L381)_ +_Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L381)_ --- @@ -895,7 +895,7 @@ _Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **to**: _string_ -_Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L383)_ +_Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L383)_ --- @@ -903,7 +903,7 @@ _Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **value**: _BigNumber_ -_Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L385)_ +_Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L385)_
@@ -919,7 +919,7 @@ _Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **owner**: _string_ -_Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L336)_ +_Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L336)_ --- @@ -927,7 +927,7 @@ _Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **spender**: _string_ -_Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L337)_ +_Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L337)_ --- @@ -935,7 +935,7 @@ _Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **value**: _BigNumber_ -_Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L338)_ +_Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L338)_
@@ -951,7 +951,7 @@ _Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **from**: _string_ -_Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L323)_ +_Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L323)_ --- @@ -959,7 +959,7 @@ _Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **to**: _string_ -_Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L324)_ +_Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L324)_ --- @@ -967,7 +967,7 @@ _Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **value**: _BigNumber_ -_Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L325)_ +_Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L325)_
@@ -983,7 +983,7 @@ _Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **approved**: _string_ -_Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L363)_ +_Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L363)_ --- @@ -991,7 +991,7 @@ _Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **owner**: _string_ -_Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L362)_ +_Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L362)_ --- @@ -999,7 +999,7 @@ _Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **tokenId**: _BigNumber_ -_Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L364)_ +_Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L364)_
@@ -1015,7 +1015,7 @@ _Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **approved**: _boolean_ -_Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L377)_ +_Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L377)_ --- @@ -1023,7 +1023,7 @@ _Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **operator**: _string_ -_Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L376)_ +_Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L376)_ --- @@ -1031,7 +1031,7 @@ _Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **owner**: _string_ -_Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L375)_ +_Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L375)_
@@ -1047,7 +1047,7 @@ _Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **from**: _string_ -_Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L349)_ +_Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L349)_ --- @@ -1055,7 +1055,7 @@ _Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **to**: _string_ -_Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L350)_ +_Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L350)_ --- @@ -1063,7 +1063,7 @@ _Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **tokenId**: _BigNumber_ -_Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L351)_ +_Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L351)_
@@ -1079,7 +1079,7 @@ _Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **feeRecipientAddress**: _string_ -_Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L458)_ +_Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L458)_ --- @@ -1087,7 +1087,7 @@ _Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **makerAddress**: _string_ -_Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L456)_ +_Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L456)_ --- @@ -1095,7 +1095,7 @@ _Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **makerAssetData**: _string_ -_Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L460)_ +_Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L460)_ --- @@ -1103,7 +1103,7 @@ _Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **orderHash**: _string_ -_Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L459)_ +_Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L459)_ --- @@ -1111,7 +1111,7 @@ _Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **senderAddress**: _string_ -_Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L457)_ +_Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L457)_ --- @@ -1119,7 +1119,7 @@ _Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **takerAssetData**: _string_ -_Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L461)_ +_Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L461)_
@@ -1135,7 +1135,7 @@ _Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **makerAddress**: _string_ -_Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L465)_ +_Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L465)_ --- @@ -1143,7 +1143,7 @@ _Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **orderEpoch**: _BigNumber_ -_Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L467)_ +_Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L467)_ --- @@ -1151,7 +1151,7 @@ _Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **orderSenderAddress**: _string_ -_Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L466)_ +_Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L466)_
@@ -1167,7 +1167,7 @@ _Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **feeRecipientAddress**: _string_ -_Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L424)_ +_Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L424)_ --- @@ -1175,7 +1175,7 @@ _Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **makerAddress**: _string_ -_Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L421)_ +_Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L421)_ --- @@ -1183,7 +1183,7 @@ _Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **makerAssetData**: _string_ -_Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L431)_ +_Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L431)_ --- @@ -1191,7 +1191,7 @@ _Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **makerAssetFilledAmount**: _BigNumber_ -_Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L425)_ +_Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L425)_ --- @@ -1199,7 +1199,7 @@ _Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **makerFeeAssetData**: _string_ -_Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L433)_ +_Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L433)_ --- @@ -1207,7 +1207,7 @@ _Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **makerFeePaid**: _BigNumber_ -_Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L427)_ +_Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L427)_ --- @@ -1215,7 +1215,7 @@ _Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **orderHash**: _string_ -_Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L430)_ +_Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L430)_ --- @@ -1223,7 +1223,7 @@ _Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **protocolFeePaid**: _BigNumber_ -_Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L429)_ +_Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L429)_ --- @@ -1231,7 +1231,7 @@ _Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **senderAddress**: _string_ -_Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L423)_ +_Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L423)_ --- @@ -1239,7 +1239,7 @@ _Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **takerAddress**: _string_ -_Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L422)_ +_Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L422)_ --- @@ -1247,7 +1247,7 @@ _Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **takerAssetData**: _string_ -_Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L432)_ +_Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L432)_ --- @@ -1255,7 +1255,7 @@ _Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **takerAssetFilledAmount**: _BigNumber_ -_Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L426)_ +_Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L426)_ --- @@ -1263,7 +1263,7 @@ _Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **takerFeeAssetData**: _string_ -_Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L434)_ +_Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L434)_ --- @@ -1271,7 +1271,7 @@ _Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **takerFeePaid**: _BigNumber_ -_Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L428)_ +_Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L428)_
@@ -1287,7 +1287,7 @@ _Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ordersInfos**: _[OrderInfo](#interface-orderinfo)[]_ -_Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L45)_ +_Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L45)_ --- @@ -1295,7 +1295,7 @@ _Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **timestamp**: _number_ -_Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L44)_ +_Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L44)_
@@ -1313,7 +1313,7 @@ An interface for JSON schema types, which are used for custom order filters. • **\$ref**? : _undefined | string_ -_Defined in [types.ts:67](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L67)_ +_Defined in [types.ts:67](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L67)_ --- @@ -1321,7 +1321,7 @@ _Defined in [types.ts:67](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **\$schema**? : _undefined | string_ -_Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L66)_ +_Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L66)_ --- @@ -1329,7 +1329,7 @@ _Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **additionalItems**? : _boolean | [JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L78)_ +_Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L78)_ --- @@ -1337,7 +1337,7 @@ _Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **additionalProperties**? : _boolean | [JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L86)_ +_Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L86)_ --- @@ -1345,7 +1345,7 @@ _Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **allOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L108)_ +_Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L108)_ --- @@ -1353,7 +1353,7 @@ _Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **anyOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L109)_ +_Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L109)_ --- @@ -1361,7 +1361,7 @@ _Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **const**? : _any_ -_Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L105)_ +_Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L105)_ --- @@ -1369,7 +1369,7 @@ _Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **definitions**? : _undefined | object_ -_Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L87)_ +_Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L87)_ --- @@ -1377,7 +1377,7 @@ _Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **dependencies**? : _undefined | object_ -_Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L96)_ +_Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L96)_ --- @@ -1385,7 +1385,7 @@ _Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **description**? : _undefined | string_ -_Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L69)_ +_Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L69)_ --- @@ -1393,7 +1393,7 @@ _Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **enum**? : _any[]_ -_Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L99)_ +_Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L99)_ --- @@ -1401,7 +1401,7 @@ _Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **exclusiveMaximum**? : _undefined | false | true_ -_Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L72)_ +_Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L72)_ --- @@ -1409,7 +1409,7 @@ _Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **exclusiveMinimum**? : _undefined | false | true_ -_Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L74)_ +_Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L74)_ --- @@ -1417,7 +1417,7 @@ _Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **format**? : _undefined | string_ -_Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L107)_ +_Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L107)_ --- @@ -1425,7 +1425,7 @@ _Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **id**? : _undefined | string_ -_Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L65)_ +_Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L65)_ --- @@ -1433,7 +1433,7 @@ _Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **items**? : _[JsonSchema](#interface-jsonschema) | [JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L79)_ +_Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L79)_ --- @@ -1441,7 +1441,7 @@ _Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **maxItems**? : _undefined | number_ -_Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L80)_ +_Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L80)_ --- @@ -1449,7 +1449,7 @@ _Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **maxLength**? : _undefined | number_ -_Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L75)_ +_Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L75)_ --- @@ -1457,7 +1457,7 @@ _Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **maxProperties**? : _undefined | number_ -_Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L83)_ +_Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L83)_ --- @@ -1465,7 +1465,7 @@ _Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **maximum**? : _undefined | number_ -_Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L71)_ +_Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L71)_ --- @@ -1473,7 +1473,7 @@ _Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **minItems**? : _undefined | number_ -_Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L81)_ +_Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L81)_ --- @@ -1481,7 +1481,7 @@ _Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **minLength**? : _undefined | number_ -_Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L76)_ +_Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L76)_ --- @@ -1489,7 +1489,7 @@ _Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **minProperties**? : _undefined | number_ -_Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L84)_ +_Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L84)_ --- @@ -1497,7 +1497,7 @@ _Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **minimum**? : _undefined | number_ -_Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L73)_ +_Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L73)_ --- @@ -1505,7 +1505,7 @@ _Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **multipleOf**? : _undefined | number_ -_Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L70)_ +_Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L70)_ --- @@ -1513,7 +1513,7 @@ _Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **not**? : _[JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L111)_ +_Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L111)_ --- @@ -1521,7 +1521,7 @@ _Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **oneOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L110)_ +_Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L110)_ --- @@ -1529,7 +1529,7 @@ _Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **pattern**? : _string | RegExp_ -_Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L77)_ +_Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L77)_ --- @@ -1537,7 +1537,7 @@ _Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **patternProperties**? : _undefined | object_ -_Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L93)_ +_Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L93)_ --- @@ -1545,7 +1545,7 @@ _Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **properties**? : _undefined | object_ -_Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L90)_ +_Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L90)_ --- @@ -1553,7 +1553,7 @@ _Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **required**? : _string[]_ -_Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L85)_ +_Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L85)_ --- @@ -1561,7 +1561,7 @@ _Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **title**? : _undefined | string_ -_Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L68)_ +_Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L68)_ --- @@ -1569,7 +1569,7 @@ _Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **type**? : _string | string[]_ -_Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L106)_ +_Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L106)_ --- @@ -1577,7 +1577,7 @@ _Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **uniqueItems**? : _undefined | false | true_ -_Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L82)_ +_Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L82)_
@@ -1593,7 +1593,7 @@ _Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **hash**: _string_ -_Defined in [types.ts:734](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L734)_ +_Defined in [types.ts:734](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L734)_ --- @@ -1601,7 +1601,7 @@ _Defined in [types.ts:734](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **number**: _BigNumber_ -_Defined in [types.ts:733](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L733)_ +_Defined in [types.ts:733](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L733)_
@@ -1620,7 +1620,7 @@ or filled. • **contractEvents**: _[ContractEvent](#interface-contractevent)[]_ -_Defined in [types.ts:606](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L606)_ +_Defined in [types.ts:606](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L606)_ --- @@ -1628,7 +1628,7 @@ _Defined in [types.ts:606](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **endState**: _[OrderEventEndState](#enumeration-ordereventendstate)_ -_Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L604)_ +_Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L604)_ --- @@ -1636,7 +1636,7 @@ _Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L605)_ +_Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L605)_ --- @@ -1644,7 +1644,7 @@ _Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **orderHash**: _string_ -_Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L602)_ +_Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L602)_ --- @@ -1652,7 +1652,7 @@ _Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L603)_ +_Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L603)_ --- @@ -1660,7 +1660,7 @@ _Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **timestampMs**: _number_ -_Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L601)_ +_Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L601)_
@@ -1676,7 +1676,7 @@ _Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L58)_ +_Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L58)_ --- @@ -1684,7 +1684,7 @@ _Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **orderHash**: _string_ -_Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L56)_ +_Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L56)_ --- @@ -1692,7 +1692,7 @@ _Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L57)_ +_Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L57)_
@@ -1711,7 +1711,7 @@ rejected. • **kind**: _[RejectedOrderKind](#enumeration-rejectedorderkind)_ -_Defined in [types.ts:705](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L705)_ +_Defined in [types.ts:705](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L705)_ --- @@ -1719,7 +1719,7 @@ _Defined in [types.ts:705](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **orderHash**: _string_ -_Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L703)_ +_Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L703)_ --- @@ -1727,7 +1727,7 @@ _Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L704)_ +_Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L704)_ --- @@ -1735,7 +1735,7 @@ _Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **status**: _[RejectedOrderStatus](#interface-rejectedorderstatus)_ -_Defined in [types.ts:706](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L706)_ +_Defined in [types.ts:706](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L706)_
@@ -1753,7 +1753,7 @@ Provides more information about why an order was rejected. • **code**: _string_ -_Defined in [types.ts:722](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L722)_ +_Defined in [types.ts:722](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L722)_ --- @@ -1761,7 +1761,7 @@ _Defined in [types.ts:722](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **message**: _string_ -_Defined in [types.ts:723](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L723)_ +_Defined in [types.ts:723](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L723)_
@@ -1777,7 +1777,7 @@ _Defined in [types.ts:723](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ethRPCRateLimitExpiredRequests**: _number_ -_Defined in [types.ts:774](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L774)_ +_Defined in [types.ts:774](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L774)_ --- @@ -1785,7 +1785,7 @@ _Defined in [types.ts:774](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ethRPCRequestsSentInCurrentUTCDay**: _number_ -_Defined in [types.ts:773](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L773)_ +_Defined in [types.ts:773](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L773)_ --- @@ -1793,7 +1793,7 @@ _Defined in [types.ts:773](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ethereumChainID**: _number_ -_Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L765)_ +_Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L765)_ --- @@ -1801,7 +1801,7 @@ _Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **latestBlock**? : _[LatestBlock](#interface-latestblock)_ -_Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L766)_ +_Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L766)_ --- @@ -1809,7 +1809,7 @@ _Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **maxExpirationTime**: _BigNumber_ -_Defined in [types.ts:771](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L771)_ +_Defined in [types.ts:771](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L771)_ --- @@ -1817,7 +1817,7 @@ _Defined in [types.ts:771](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **numOrders**: _number_ -_Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L768)_ +_Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L768)_ --- @@ -1825,7 +1825,7 @@ _Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **numOrdersIncludingRemoved**: _number_ -_Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L769)_ +_Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L769)_ --- @@ -1833,7 +1833,7 @@ _Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **numPeers**: _number_ -_Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L767)_ +_Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L767)_ --- @@ -1841,7 +1841,7 @@ _Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **numPinnedOrders**: _number_ -_Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L770)_ +_Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L770)_ --- @@ -1849,7 +1849,7 @@ _Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **peerID**: _string_ -_Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L764)_ +_Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L764)_ --- @@ -1857,7 +1857,7 @@ _Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **pubSubTopic**: _string_ -_Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L761)_ +_Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L761)_ --- @@ -1865,7 +1865,7 @@ _Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **rendezvous**: _string_ -_Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L762)_ +_Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L762)_ --- @@ -1873,7 +1873,7 @@ _Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **secondaryRendezvous**: _string[]_ -_Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L763)_ +_Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L763)_ --- @@ -1881,7 +1881,7 @@ _Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **startOfCurrentUTCDay**: _Date_ -_Defined in [types.ts:772](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L772)_ +_Defined in [types.ts:772](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L772)_ --- @@ -1889,7 +1889,7 @@ _Defined in [types.ts:772](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **version**: _string_ -_Defined in [types.ts:760](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L760)_ +_Defined in [types.ts:760](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L760)_
@@ -1907,7 +1907,7 @@ Indicates which orders where accepted, which were rejected, and why. • **accepted**: _[AcceptedOrderInfo](#interface-acceptedorderinfo)[]_ -_Defined in [types.ts:684](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L684)_ +_Defined in [types.ts:684](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L684)_ --- @@ -1915,7 +1915,7 @@ _Defined in [types.ts:684](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **rejected**: _[RejectedOrderInfo](#interface-rejectedorderinfo)[]_ -_Defined in [types.ts:685](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L685)_ +_Defined in [types.ts:685](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L685)_
@@ -1931,7 +1931,7 @@ _Defined in [types.ts:685](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **owner**: _string_ -_Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L489)_ +_Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L489)_ --- @@ -1939,7 +1939,7 @@ _Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **value**: _BigNumber_ -_Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L490)_ +_Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L490)_
@@ -1955,7 +1955,7 @@ _Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **owner**: _string_ -_Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L478)_ +_Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L478)_ --- @@ -1963,7 +1963,7 @@ _Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **value**: _BigNumber_ -_Defined in [types.ts:479](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L479)_ +_Defined in [types.ts:479](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L479)_
@@ -1973,7 +1973,7 @@ _Defined in [types.ts:479](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa ▸ **loadMeshStreamingWithURLAsync**(`url`: `string`): _Promise‹`void`›_ -_Defined in [index.ts:7](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/index.ts#L7)_ +_Defined in [index.ts:7](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/index.ts#L7)_ Loads the Wasm module that is provided by fetching a url. @@ -1989,7 +1989,7 @@ Loads the Wasm module that is provided by fetching a url. ▸ **loadMeshStreamingAsync**(`response`: `Response | Promise`): _Promise‹`void`›_ -_Defined in [index.ts:15](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/index.ts#L15)_ +_Defined in [index.ts:15](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/index.ts#L15)_ Loads the Wasm module that is provided by a response. diff --git a/docs/browser-bindings/browser/README.md b/docs/browser-bindings/browser/README.md index f1d385d84..147d76729 100644 --- a/docs/browser-bindings/browser/README.md +++ b/docs/browser-bindings/browser/README.md @@ -1,4 +1,4 @@ -# @0x/mesh-browser - v11.0.0 +# @0x/mesh-browser - v11.0.1 ## @0x/mesh-browser diff --git a/docs/browser-bindings/browser/reference.md b/docs/browser-bindings/browser/reference.md index 17dc12939..d448b145e 100644 --- a/docs/browser-bindings/browser/reference.md +++ b/docs/browser-bindings/browser/reference.md @@ -13,7 +13,7 @@ sending orders through the 0x Mesh network. \+ **new Mesh**(`config`: [Config](#interface-config)): _[Mesh](#class-mesh)_ -_Defined in [mesh.ts:132](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/mesh.ts#L132)_ +_Defined in [mesh.ts:132](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/mesh.ts#L132)_ Instantiates a new Mesh instance. @@ -33,7 +33,7 @@ An instance of Mesh • **wrapper**? : _MeshWrapper_ -_Defined in [mesh.ts:129](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/mesh.ts#L129)_ +_Defined in [mesh.ts:129](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/mesh.ts#L129)_ ### Methods @@ -41,7 +41,7 @@ _Defined in [mesh.ts:129](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac ▸ **addOrdersAsync**(`orders`: SignedOrder[], `pinned`: boolean): _Promise‹[ValidationResults](#interface-validationresults)›_ -_Defined in [mesh.ts:269](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/mesh.ts#L269)_ +_Defined in [mesh.ts:269](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/mesh.ts#L269)_ 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 @@ -68,7 +68,7 @@ were accepted and which were rejected. ▸ **getOrdersAsync**(`perPage`: number): _Promise‹[GetOrdersResponse](#interface-getordersresponse)›_ -_Defined in [mesh.ts:207](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/mesh.ts#L207)_ +_Defined in [mesh.ts:207](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/mesh.ts#L207)_ Get all 0x signed orders currently stored in the Mesh node @@ -88,7 +88,7 @@ the snapshotID, snapshotTimestamp and all orders, their hashes and fillableTaker ▸ **getOrdersForPageAsync**(`perPage`: number, `minOrderHash?`: undefined | string): _Promise‹[GetOrdersResponse](#interface-getordersresponse)›_ -_Defined in [mesh.ts:240](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/mesh.ts#L240)_ +_Defined in [mesh.ts:240](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/mesh.ts#L240)_ Get page of 0x signed orders stored on the Mesh node at the specified snapshot @@ -109,7 +109,7 @@ Up to perPage orders with hash greater than minOrderHash, including order hashes ▸ **getStatsAsync**(): _Promise‹[Stats](#interface-stats)›_ -_Defined in [mesh.ts:190](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/mesh.ts#L190)_ +_Defined in [mesh.ts:190](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/mesh.ts#L190)_ Returns various stats about Mesh, including the total number of orders and the number of peers Mesh is connected to. @@ -122,7 +122,7 @@ and the number of peers Mesh is connected to. ▸ **onError**(`handler`: function): _void_ -_Defined in [mesh.ts:152](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/mesh.ts#L152)_ +_Defined in [mesh.ts:152](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/mesh.ts#L152)_ 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. @@ -151,7 +151,7 @@ The handler to be called. ▸ **onOrderEvents**(`handler`: function): _void_ -_Defined in [mesh.ts:165](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/mesh.ts#L165)_ +_Defined in [mesh.ts:165](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/mesh.ts#L165)_ Registers a handler which will be called for any incoming order events. Order events are fired whenver an order is added, canceled, expired, or @@ -180,7 +180,7 @@ The handler to be called. ▸ **startAsync**(): _Promise‹void›_ -_Defined in [mesh.ts:174](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/mesh.ts#L174)_ +_Defined in [mesh.ts:174](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/mesh.ts#L174)_ Starts the Mesh node in the background. Mesh will automatically find peers in the network and begin receiving orders from them. @@ -197,7 +197,7 @@ peers in the network and begin receiving orders from them. • **ERC1155ApprovalForAllEvent**: = "ERC1155ApprovalForAllEvent" -_Defined in [types.ts:505](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L505)_ +_Defined in [types.ts:505](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L505)_ --- @@ -205,7 +205,7 @@ _Defined in [types.ts:505](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ERC1155TransferBatchEvent**: = "ERC1155TransferBatchEvent" -_Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L507)_ +_Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L507)_ --- @@ -213,7 +213,7 @@ _Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ERC1155TransferSingleEvent**: = "ERC1155TransferSingleEvent" -_Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L506)_ +_Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L506)_ --- @@ -221,7 +221,7 @@ _Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ERC20ApprovalEvent**: = "ERC20ApprovalEvent" -_Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L501)_ +_Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L501)_ --- @@ -229,7 +229,7 @@ _Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ERC20TransferEvent**: = "ERC20TransferEvent" -_Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L500)_ +_Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L500)_ --- @@ -237,7 +237,7 @@ _Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ERC721ApprovalEvent**: = "ERC721ApprovalEvent" -_Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L503)_ +_Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L503)_ --- @@ -245,7 +245,7 @@ _Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ERC721ApprovalForAllEvent**: = "ERC721ApprovalForAllEvent" -_Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L504)_ +_Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L504)_ --- @@ -253,7 +253,7 @@ _Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ERC721TransferEvent**: = "ERC721TransferEvent" -_Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L502)_ +_Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L502)_ --- @@ -261,7 +261,7 @@ _Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ExchangeCancelEvent**: = "ExchangeCancelEvent" -_Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L509)_ +_Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L509)_ --- @@ -269,7 +269,7 @@ _Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ExchangeCancelUpToEvent**: = "ExchangeCancelUpToEvent" -_Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L510)_ +_Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L510)_ --- @@ -277,7 +277,7 @@ _Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ExchangeFillEvent**: = "ExchangeFillEvent" -_Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L508)_ +_Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L508)_ --- @@ -285,7 +285,7 @@ _Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **WethDepositEvent**: = "WethDepositEvent" -_Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L511)_ +_Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L511)_ --- @@ -293,7 +293,7 @@ _Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **WethWithdrawalEvent**: = "WethWithdrawalEvent" -_Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L512)_ +_Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L512)_
@@ -305,7 +305,7 @@ _Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Added**: = "ADDED" -_Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L575)_ +_Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L575)_ --- @@ -313,7 +313,7 @@ _Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Cancelled**: = "CANCELLED" -_Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L578)_ +_Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L578)_ --- @@ -321,7 +321,7 @@ _Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Expired**: = "EXPIRED" -_Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L579)_ +_Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L579)_ --- @@ -329,7 +329,7 @@ _Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **FillabilityIncreased**: = "FILLABILITY_INCREASED" -_Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L582)_ +_Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L582)_ --- @@ -337,7 +337,7 @@ _Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Filled**: = "FILLED" -_Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L576)_ +_Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L576)_ --- @@ -345,7 +345,7 @@ _Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **FullyFilled**: = "FULLY_FILLED" -_Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L577)_ +_Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L577)_ --- @@ -353,7 +353,7 @@ _Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Invalid**: = "INVALID" -_Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L574)_ +_Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L574)_ --- @@ -361,7 +361,7 @@ _Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **StoppedWatching**: = "STOPPED_WATCHING" -_Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L583)_ +_Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L583)_ --- @@ -369,7 +369,7 @@ _Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Unexpired**: = "UNEXPIRED" -_Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L580)_ +_Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L580)_ --- @@ -377,7 +377,7 @@ _Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Unfunded**: = "UNFUNDED" -_Defined in [types.ts:581](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L581)_ +_Defined in [types.ts:581](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L581)_
@@ -391,7 +391,7 @@ A set of categories for rejected orders. • **MeshError**: = "MESH_ERROR" -_Defined in [types.ts:714](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L714)_ +_Defined in [types.ts:714](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L714)_ --- @@ -399,7 +399,7 @@ _Defined in [types.ts:714](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **MeshValidation**: = "MESH_VALIDATION" -_Defined in [types.ts:715](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L715)_ +_Defined in [types.ts:715](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L715)_ --- @@ -407,7 +407,7 @@ _Defined in [types.ts:715](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ZeroExValidation**: = "ZEROEX_VALIDATION" -_Defined in [types.ts:713](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L713)_ +_Defined in [types.ts:713](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L713)_
@@ -419,7 +419,7 @@ _Defined in [types.ts:713](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Debug**: = 5 -_Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L238)_ +_Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L238)_ --- @@ -427,7 +427,7 @@ _Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Error**: = 2 -_Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L235)_ +_Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L235)_ --- @@ -435,7 +435,7 @@ _Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Fatal**: = 1 -_Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L234)_ +_Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L234)_ --- @@ -443,7 +443,7 @@ _Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Info**: = 4 -_Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L237)_ +_Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L237)_ --- @@ -451,7 +451,7 @@ _Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Panic**: = 0 -_Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L233)_ +_Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L233)_ --- @@ -459,7 +459,7 @@ _Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Trace**: = 6 -_Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L239)_ +_Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L239)_ --- @@ -467,7 +467,7 @@ _Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **Warn**: = 3 -_Defined in [types.ts:236](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L236)_ +_Defined in [types.ts:236](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L236)_
@@ -485,7 +485,7 @@ Info for any orders that were accepted. • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [types.ts:694](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L694)_ +_Defined in [types.ts:694](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L694)_ --- @@ -493,7 +493,7 @@ _Defined in [types.ts:694](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **isNew**: _boolean_ -_Defined in [types.ts:695](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L695)_ +_Defined in [types.ts:695](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L695)_ --- @@ -501,7 +501,7 @@ _Defined in [types.ts:695](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **orderHash**: _string_ -_Defined in [types.ts:692](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L692)_ +_Defined in [types.ts:692](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L692)_ --- @@ -509,7 +509,7 @@ _Defined in [types.ts:692](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:693](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L693)_ +_Defined in [types.ts:693](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L693)_
@@ -527,7 +527,7 @@ A set of configuration options for Mesh. • **blockPollingIntervalSeconds**? : _undefined | number_ -_Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L144)_ +_Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L144)_ --- @@ -535,7 +535,7 @@ _Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **bootstrapList**? : _string[]_ -_Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L137)_ +_Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L137)_ --- @@ -543,7 +543,7 @@ _Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **customContractAddresses**? : _[ContractAddresses](#interface-contractaddresses)_ -_Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L188)_ +_Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L188)_ --- @@ -551,7 +551,7 @@ _Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **customOrderFilter**? : _[JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L213)_ +_Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L213)_ --- @@ -559,7 +559,7 @@ _Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **enableEthereumRPCRateLimiting**? : _undefined | false | true_ -_Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L161)_ +_Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L161)_ --- @@ -567,7 +567,7 @@ _Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ethereumChainID**: _number_ -_Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L129)_ +_Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L129)_ --- @@ -575,7 +575,7 @@ _Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ethereumRPCMaxContentLength**? : _undefined | number_ -_Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L153)_ +_Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L153)_ --- @@ -583,7 +583,7 @@ _Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ethereumRPCMaxRequestsPer24HrUTC**? : _undefined | number_ -_Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L166)_ +_Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L166)_ --- @@ -591,7 +591,7 @@ _Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ethereumRPCMaxRequestsPerSecond**? : _undefined | number_ -_Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L172)_ +_Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L172)_ --- @@ -599,7 +599,7 @@ _Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ethereumRPCURL**? : _undefined | string_ -_Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L126)_ +_Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L126)_ --- @@ -607,7 +607,7 @@ _Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **maxBytesPerSecond**? : _undefined | number_ -_Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L219)_ +_Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L219)_ --- @@ -615,7 +615,7 @@ _Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **maxOrdersInStorage**? : _undefined | number_ -_Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L193)_ +_Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L193)_ --- @@ -623,7 +623,7 @@ _Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **useBootstrapList**? : _undefined | false | true_ -_Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L132)_ +_Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L132)_ --- @@ -631,7 +631,7 @@ _Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **verbosity**? : _[Verbosity](#enumeration-verbosity)_ -_Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L123)_ +_Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L123)_ --- @@ -639,7 +639,7 @@ _Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **web3Provider**? : _SupportedProvider_ -_Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L216)_ +_Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L216)_
@@ -655,7 +655,7 @@ _Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **devUtils**: _string_ -_Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L224)_ +_Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L224)_ --- @@ -663,7 +663,7 @@ _Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **erc1155Proxy**: _string_ -_Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L227)_ +_Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L227)_ --- @@ -671,7 +671,7 @@ _Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **erc20Proxy**: _string_ -_Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L225)_ +_Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L225)_ --- @@ -679,7 +679,7 @@ _Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **erc721Proxy**: _string_ -_Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L226)_ +_Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L226)_ --- @@ -687,7 +687,7 @@ _Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **exchange**: _string_ -_Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L223)_ +_Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L223)_ --- @@ -695,7 +695,7 @@ _Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **weth9**? : _undefined | string_ -_Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L228)_ +_Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L228)_ --- @@ -703,7 +703,7 @@ _Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **zrxToken**? : _undefined | string_ -_Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L229)_ +_Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L229)_
@@ -719,7 +719,7 @@ _Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **address**: _string_ -_Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L553)_ +_Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L553)_ --- @@ -727,7 +727,7 @@ _Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **blockHash**: _string_ -_Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L548)_ +_Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L548)_ --- @@ -735,7 +735,7 @@ _Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **isRemoved**: _boolean_ -_Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L552)_ +_Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L552)_ --- @@ -743,7 +743,7 @@ _Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **kind**: _[ContractEventKind](#enumeration-contracteventkind)_ -_Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L554)_ +_Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L554)_ --- @@ -751,7 +751,7 @@ _Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **logIndex**: _number_ -_Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L551)_ +_Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L551)_ --- @@ -759,7 +759,7 @@ _Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **parameters**: _ContractEventParameters_ -_Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L555)_ +_Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L555)_ --- @@ -767,7 +767,7 @@ _Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **txHash**: _string_ -_Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L549)_ +_Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L549)_ --- @@ -775,7 +775,7 @@ _Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **txIndex**: _number_ -_Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L550)_ +_Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L550)_
@@ -791,7 +791,7 @@ _Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **approved**: _boolean_ -_Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L417)_ +_Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L417)_ --- @@ -799,7 +799,7 @@ _Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **operator**: _string_ -_Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L416)_ +_Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L416)_ --- @@ -807,7 +807,7 @@ _Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **owner**: _string_ -_Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L415)_ +_Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L415)_
@@ -823,7 +823,7 @@ _Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **from**: _string_ -_Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L399)_ +_Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L399)_ --- @@ -831,7 +831,7 @@ _Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ids**: _BigNumber[]_ -_Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L401)_ +_Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L401)_ --- @@ -839,7 +839,7 @@ _Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **operator**: _string_ -_Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L398)_ +_Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L398)_ --- @@ -847,7 +847,7 @@ _Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **to**: _string_ -_Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L400)_ +_Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L400)_ --- @@ -855,7 +855,7 @@ _Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **values**: _BigNumber[]_ -_Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L402)_ +_Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L402)_
@@ -871,7 +871,7 @@ _Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **from**: _string_ -_Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L382)_ +_Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L382)_ --- @@ -879,7 +879,7 @@ _Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **id**: _BigNumber_ -_Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L384)_ +_Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L384)_ --- @@ -887,7 +887,7 @@ _Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **operator**: _string_ -_Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L381)_ +_Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L381)_ --- @@ -895,7 +895,7 @@ _Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **to**: _string_ -_Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L383)_ +_Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L383)_ --- @@ -903,7 +903,7 @@ _Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **value**: _BigNumber_ -_Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L385)_ +_Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L385)_
@@ -919,7 +919,7 @@ _Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **owner**: _string_ -_Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L336)_ +_Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L336)_ --- @@ -927,7 +927,7 @@ _Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **spender**: _string_ -_Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L337)_ +_Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L337)_ --- @@ -935,7 +935,7 @@ _Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **value**: _BigNumber_ -_Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L338)_ +_Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L338)_
@@ -951,7 +951,7 @@ _Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **from**: _string_ -_Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L323)_ +_Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L323)_ --- @@ -959,7 +959,7 @@ _Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **to**: _string_ -_Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L324)_ +_Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L324)_ --- @@ -967,7 +967,7 @@ _Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **value**: _BigNumber_ -_Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L325)_ +_Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L325)_
@@ -983,7 +983,7 @@ _Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **approved**: _string_ -_Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L363)_ +_Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L363)_ --- @@ -991,7 +991,7 @@ _Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **owner**: _string_ -_Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L362)_ +_Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L362)_ --- @@ -999,7 +999,7 @@ _Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **tokenId**: _BigNumber_ -_Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L364)_ +_Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L364)_
@@ -1015,7 +1015,7 @@ _Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **approved**: _boolean_ -_Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L377)_ +_Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L377)_ --- @@ -1023,7 +1023,7 @@ _Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **operator**: _string_ -_Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L376)_ +_Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L376)_ --- @@ -1031,7 +1031,7 @@ _Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **owner**: _string_ -_Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L375)_ +_Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L375)_
@@ -1047,7 +1047,7 @@ _Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **from**: _string_ -_Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L349)_ +_Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L349)_ --- @@ -1055,7 +1055,7 @@ _Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **to**: _string_ -_Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L350)_ +_Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L350)_ --- @@ -1063,7 +1063,7 @@ _Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **tokenId**: _BigNumber_ -_Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L351)_ +_Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L351)_
@@ -1079,7 +1079,7 @@ _Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **feeRecipientAddress**: _string_ -_Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L458)_ +_Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L458)_ --- @@ -1087,7 +1087,7 @@ _Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **makerAddress**: _string_ -_Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L456)_ +_Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L456)_ --- @@ -1095,7 +1095,7 @@ _Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **makerAssetData**: _string_ -_Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L460)_ +_Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L460)_ --- @@ -1103,7 +1103,7 @@ _Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **orderHash**: _string_ -_Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L459)_ +_Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L459)_ --- @@ -1111,7 +1111,7 @@ _Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **senderAddress**: _string_ -_Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L457)_ +_Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L457)_ --- @@ -1119,7 +1119,7 @@ _Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **takerAssetData**: _string_ -_Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L461)_ +_Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L461)_
@@ -1135,7 +1135,7 @@ _Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **makerAddress**: _string_ -_Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L465)_ +_Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L465)_ --- @@ -1143,7 +1143,7 @@ _Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **orderEpoch**: _BigNumber_ -_Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L467)_ +_Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L467)_ --- @@ -1151,7 +1151,7 @@ _Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **orderSenderAddress**: _string_ -_Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L466)_ +_Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L466)_
@@ -1167,7 +1167,7 @@ _Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **feeRecipientAddress**: _string_ -_Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L424)_ +_Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L424)_ --- @@ -1175,7 +1175,7 @@ _Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **makerAddress**: _string_ -_Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L421)_ +_Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L421)_ --- @@ -1183,7 +1183,7 @@ _Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **makerAssetData**: _string_ -_Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L431)_ +_Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L431)_ --- @@ -1191,7 +1191,7 @@ _Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **makerAssetFilledAmount**: _BigNumber_ -_Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L425)_ +_Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L425)_ --- @@ -1199,7 +1199,7 @@ _Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **makerFeeAssetData**: _string_ -_Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L433)_ +_Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L433)_ --- @@ -1207,7 +1207,7 @@ _Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **makerFeePaid**: _BigNumber_ -_Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L427)_ +_Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L427)_ --- @@ -1215,7 +1215,7 @@ _Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **orderHash**: _string_ -_Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L430)_ +_Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L430)_ --- @@ -1223,7 +1223,7 @@ _Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **protocolFeePaid**: _BigNumber_ -_Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L429)_ +_Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L429)_ --- @@ -1231,7 +1231,7 @@ _Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **senderAddress**: _string_ -_Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L423)_ +_Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L423)_ --- @@ -1239,7 +1239,7 @@ _Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **takerAddress**: _string_ -_Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L422)_ +_Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L422)_ --- @@ -1247,7 +1247,7 @@ _Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **takerAssetData**: _string_ -_Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L432)_ +_Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L432)_ --- @@ -1255,7 +1255,7 @@ _Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **takerAssetFilledAmount**: _BigNumber_ -_Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L426)_ +_Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L426)_ --- @@ -1263,7 +1263,7 @@ _Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **takerFeeAssetData**: _string_ -_Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L434)_ +_Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L434)_ --- @@ -1271,7 +1271,7 @@ _Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **takerFeePaid**: _BigNumber_ -_Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L428)_ +_Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L428)_
@@ -1287,7 +1287,7 @@ _Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ordersInfos**: _[OrderInfo](#interface-orderinfo)[]_ -_Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L45)_ +_Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L45)_ --- @@ -1295,7 +1295,7 @@ _Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **timestamp**: _number_ -_Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L44)_ +_Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L44)_
@@ -1313,7 +1313,7 @@ An interface for JSON schema types, which are used for custom order filters. • **\$ref**? : _undefined | string_ -_Defined in [types.ts:67](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L67)_ +_Defined in [types.ts:67](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L67)_ --- @@ -1321,7 +1321,7 @@ _Defined in [types.ts:67](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **\$schema**? : _undefined | string_ -_Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L66)_ +_Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L66)_ --- @@ -1329,7 +1329,7 @@ _Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **additionalItems**? : _boolean | [JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L78)_ +_Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L78)_ --- @@ -1337,7 +1337,7 @@ _Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **additionalProperties**? : _boolean | [JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L86)_ +_Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L86)_ --- @@ -1345,7 +1345,7 @@ _Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **allOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L108)_ +_Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L108)_ --- @@ -1353,7 +1353,7 @@ _Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **anyOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L109)_ +_Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L109)_ --- @@ -1361,7 +1361,7 @@ _Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **const**? : _any_ -_Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L105)_ +_Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L105)_ --- @@ -1369,7 +1369,7 @@ _Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **definitions**? : _undefined | object_ -_Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L87)_ +_Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L87)_ --- @@ -1377,7 +1377,7 @@ _Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **dependencies**? : _undefined | object_ -_Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L96)_ +_Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L96)_ --- @@ -1385,7 +1385,7 @@ _Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **description**? : _undefined | string_ -_Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L69)_ +_Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L69)_ --- @@ -1393,7 +1393,7 @@ _Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **enum**? : _any[]_ -_Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L99)_ +_Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L99)_ --- @@ -1401,7 +1401,7 @@ _Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **exclusiveMaximum**? : _undefined | false | true_ -_Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L72)_ +_Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L72)_ --- @@ -1409,7 +1409,7 @@ _Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **exclusiveMinimum**? : _undefined | false | true_ -_Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L74)_ +_Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L74)_ --- @@ -1417,7 +1417,7 @@ _Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **format**? : _undefined | string_ -_Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L107)_ +_Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L107)_ --- @@ -1425,7 +1425,7 @@ _Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **id**? : _undefined | string_ -_Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L65)_ +_Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L65)_ --- @@ -1433,7 +1433,7 @@ _Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **items**? : _[JsonSchema](#interface-jsonschema) | [JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L79)_ +_Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L79)_ --- @@ -1441,7 +1441,7 @@ _Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **maxItems**? : _undefined | number_ -_Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L80)_ +_Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L80)_ --- @@ -1449,7 +1449,7 @@ _Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **maxLength**? : _undefined | number_ -_Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L75)_ +_Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L75)_ --- @@ -1457,7 +1457,7 @@ _Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **maxProperties**? : _undefined | number_ -_Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L83)_ +_Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L83)_ --- @@ -1465,7 +1465,7 @@ _Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **maximum**? : _undefined | number_ -_Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L71)_ +_Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L71)_ --- @@ -1473,7 +1473,7 @@ _Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **minItems**? : _undefined | number_ -_Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L81)_ +_Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L81)_ --- @@ -1481,7 +1481,7 @@ _Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **minLength**? : _undefined | number_ -_Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L76)_ +_Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L76)_ --- @@ -1489,7 +1489,7 @@ _Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **minProperties**? : _undefined | number_ -_Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L84)_ +_Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L84)_ --- @@ -1497,7 +1497,7 @@ _Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **minimum**? : _undefined | number_ -_Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L73)_ +_Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L73)_ --- @@ -1505,7 +1505,7 @@ _Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **multipleOf**? : _undefined | number_ -_Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L70)_ +_Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L70)_ --- @@ -1513,7 +1513,7 @@ _Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **not**? : _[JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L111)_ +_Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L111)_ --- @@ -1521,7 +1521,7 @@ _Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **oneOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L110)_ +_Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L110)_ --- @@ -1529,7 +1529,7 @@ _Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **pattern**? : _string | RegExp_ -_Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L77)_ +_Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L77)_ --- @@ -1537,7 +1537,7 @@ _Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **patternProperties**? : _undefined | object_ -_Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L93)_ +_Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L93)_ --- @@ -1545,7 +1545,7 @@ _Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **properties**? : _undefined | object_ -_Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L90)_ +_Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L90)_ --- @@ -1553,7 +1553,7 @@ _Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **required**? : _string[]_ -_Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L85)_ +_Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L85)_ --- @@ -1561,7 +1561,7 @@ _Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **title**? : _undefined | string_ -_Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L68)_ +_Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L68)_ --- @@ -1569,7 +1569,7 @@ _Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **type**? : _string | string[]_ -_Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L106)_ +_Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L106)_ --- @@ -1577,7 +1577,7 @@ _Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **uniqueItems**? : _undefined | false | true_ -_Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L82)_ +_Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L82)_
@@ -1593,7 +1593,7 @@ _Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **hash**: _string_ -_Defined in [types.ts:734](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L734)_ +_Defined in [types.ts:734](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L734)_ --- @@ -1601,7 +1601,7 @@ _Defined in [types.ts:734](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **number**: _BigNumber_ -_Defined in [types.ts:733](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L733)_ +_Defined in [types.ts:733](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L733)_
@@ -1620,7 +1620,7 @@ or filled. • **contractEvents**: _[ContractEvent](#interface-contractevent)[]_ -_Defined in [types.ts:606](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L606)_ +_Defined in [types.ts:606](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L606)_ --- @@ -1628,7 +1628,7 @@ _Defined in [types.ts:606](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **endState**: _[OrderEventEndState](#enumeration-ordereventendstate)_ -_Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L604)_ +_Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L604)_ --- @@ -1636,7 +1636,7 @@ _Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L605)_ +_Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L605)_ --- @@ -1644,7 +1644,7 @@ _Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **orderHash**: _string_ -_Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L602)_ +_Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L602)_ --- @@ -1652,7 +1652,7 @@ _Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L603)_ +_Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L603)_ --- @@ -1660,7 +1660,7 @@ _Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **timestampMs**: _number_ -_Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L601)_ +_Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L601)_
@@ -1676,7 +1676,7 @@ _Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L58)_ +_Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L58)_ --- @@ -1684,7 +1684,7 @@ _Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **orderHash**: _string_ -_Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L56)_ +_Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L56)_ --- @@ -1692,7 +1692,7 @@ _Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pac • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L57)_ +_Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L57)_
@@ -1711,7 +1711,7 @@ rejected. • **kind**: _[RejectedOrderKind](#enumeration-rejectedorderkind)_ -_Defined in [types.ts:705](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L705)_ +_Defined in [types.ts:705](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L705)_ --- @@ -1719,7 +1719,7 @@ _Defined in [types.ts:705](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **orderHash**: _string_ -_Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L703)_ +_Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L703)_ --- @@ -1727,7 +1727,7 @@ _Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L704)_ +_Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L704)_ --- @@ -1735,7 +1735,7 @@ _Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **status**: _[RejectedOrderStatus](#interface-rejectedorderstatus)_ -_Defined in [types.ts:706](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L706)_ +_Defined in [types.ts:706](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L706)_
@@ -1753,7 +1753,7 @@ Provides more information about why an order was rejected. • **code**: _string_ -_Defined in [types.ts:722](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L722)_ +_Defined in [types.ts:722](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L722)_ --- @@ -1761,7 +1761,7 @@ _Defined in [types.ts:722](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **message**: _string_ -_Defined in [types.ts:723](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L723)_ +_Defined in [types.ts:723](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L723)_
@@ -1777,7 +1777,7 @@ _Defined in [types.ts:723](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ethRPCRateLimitExpiredRequests**: _number_ -_Defined in [types.ts:774](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L774)_ +_Defined in [types.ts:774](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L774)_ --- @@ -1785,7 +1785,7 @@ _Defined in [types.ts:774](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ethRPCRequestsSentInCurrentUTCDay**: _number_ -_Defined in [types.ts:773](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L773)_ +_Defined in [types.ts:773](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L773)_ --- @@ -1793,7 +1793,7 @@ _Defined in [types.ts:773](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **ethereumChainID**: _number_ -_Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L765)_ +_Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L765)_ --- @@ -1801,7 +1801,7 @@ _Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **latestBlock**? : _[LatestBlock](#interface-latestblock)_ -_Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L766)_ +_Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L766)_ --- @@ -1809,7 +1809,7 @@ _Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **maxExpirationTime**: _BigNumber_ -_Defined in [types.ts:771](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L771)_ +_Defined in [types.ts:771](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L771)_ --- @@ -1817,7 +1817,7 @@ _Defined in [types.ts:771](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **numOrders**: _number_ -_Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L768)_ +_Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L768)_ --- @@ -1825,7 +1825,7 @@ _Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **numOrdersIncludingRemoved**: _number_ -_Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L769)_ +_Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L769)_ --- @@ -1833,7 +1833,7 @@ _Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **numPeers**: _number_ -_Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L767)_ +_Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L767)_ --- @@ -1841,7 +1841,7 @@ _Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **numPinnedOrders**: _number_ -_Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L770)_ +_Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L770)_ --- @@ -1849,7 +1849,7 @@ _Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **peerID**: _string_ -_Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L764)_ +_Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L764)_ --- @@ -1857,7 +1857,7 @@ _Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **pubSubTopic**: _string_ -_Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L761)_ +_Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L761)_ --- @@ -1865,7 +1865,7 @@ _Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **rendezvous**: _string_ -_Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L762)_ +_Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L762)_ --- @@ -1873,7 +1873,7 @@ _Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **secondaryRendezvous**: _string[]_ -_Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L763)_ +_Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L763)_ --- @@ -1881,7 +1881,7 @@ _Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **startOfCurrentUTCDay**: _Date_ -_Defined in [types.ts:772](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L772)_ +_Defined in [types.ts:772](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L772)_ --- @@ -1889,7 +1889,7 @@ _Defined in [types.ts:772](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **version**: _string_ -_Defined in [types.ts:760](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L760)_ +_Defined in [types.ts:760](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L760)_
@@ -1907,7 +1907,7 @@ Indicates which orders where accepted, which were rejected, and why. • **accepted**: _[AcceptedOrderInfo](#interface-acceptedorderinfo)[]_ -_Defined in [types.ts:684](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L684)_ +_Defined in [types.ts:684](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L684)_ --- @@ -1915,7 +1915,7 @@ _Defined in [types.ts:684](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **rejected**: _[RejectedOrderInfo](#interface-rejectedorderinfo)[]_ -_Defined in [types.ts:685](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L685)_ +_Defined in [types.ts:685](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L685)_
@@ -1931,7 +1931,7 @@ _Defined in [types.ts:685](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **owner**: _string_ -_Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L489)_ +_Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L489)_ --- @@ -1939,7 +1939,7 @@ _Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **value**: _BigNumber_ -_Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L490)_ +_Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L490)_
@@ -1955,7 +1955,7 @@ _Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **owner**: _string_ -_Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L478)_ +_Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L478)_ --- @@ -1963,6 +1963,6 @@ _Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/6baec9b3/pa • **value**: _BigNumber_ -_Defined in [types.ts:479](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-browser-lite/src/types.ts#L479)_ +_Defined in [types.ts:479](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-browser-lite/src/types.ts#L479)_
diff --git a/docs/deployment.md b/docs/deployment.md index 334c6abc2..d2ebe728c 100644 --- a/docs/deployment.md +++ b/docs/deployment.md @@ -1,4 +1,4 @@ -[![Version](https://img.shields.io/badge/version-11.0.0-orange.svg)](https://github.com/0xProject/0x-mesh/releases) +[![Version](https://img.shields.io/badge/version-11.0.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 3438414a7..aad9a9f41 100644 --- a/docs/deployment_with_telemetry.md +++ b/docs/deployment_with_telemetry.md @@ -1,4 +1,4 @@ -[![Version](https://img.shields.io/badge/version-11.0.0-orange.svg)](https://github.com/0xProject/0x-mesh/releases) +[![Version](https://img.shields.io/badge/version-11.0.1-orange.svg)](https://github.com/0xProject/0x-mesh/releases) ## Deploying a Telemetry-Enabled Mesh Node diff --git a/docs/graphql-client/README.md b/docs/graphql-client/README.md index 30f21bb5b..9d9f3742b 100644 --- a/docs/graphql-client/README.md +++ b/docs/graphql-client/README.md @@ -1,4 +1,4 @@ -# @0x/mesh-graphql-client - v11.0.0 +# @0x/mesh-graphql-client - v11.0.1 ## @0x/mesh-graphql-client diff --git a/docs/graphql-client/reference.md b/docs/graphql-client/reference.md index 39327a0bd..f5a5c8457 100644 --- a/docs/graphql-client/reference.md +++ b/docs/graphql-client/reference.md @@ -14,7 +14,7 @@ _Overrides void_ -_Defined in [packages/mesh-graphql-client/src/browser_link.ts:8](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/browser_link.ts#L8)_ +_Defined in [packages/mesh-graphql-client/src/browser_link.ts:8](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/browser_link.ts#L8)_ **Parameters:** @@ -48,7 +48,7 @@ Defined in node_modules/@apollo/client/link/core/ApolloLink.d.ts:12 _Overrides void_ -_Defined in [packages/mesh-graphql-client/src/browser_link.ts:13](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/browser_link.ts#L13)_ +_Defined in [packages/mesh-graphql-client/src/browser_link.ts:13](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/browser_link.ts#L13)_ **Parameters:** @@ -200,7 +200,7 @@ Defined in node_modules/@apollo/client/link/core/ApolloLink.d.ts:7 \+ **new MeshGraphQLClient**(`linkConfig`: [LinkConfig](#interface-linkconfig)): _[MeshGraphQLClient](#class-meshgraphqlclient)_ -_Defined in [packages/mesh-graphql-client/src/index.ts:96](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/index.ts#L96)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:96](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/index.ts#L96)_ **Parameters:** @@ -216,7 +216,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:96](https://github.com/0x ▸ **addOrdersAsync**(`orders`: SignedOrder[], `pinned`: boolean, `opts?`: [AddOrdersOpts](#interface-addordersopts)): _Promise‹[AddOrdersResults](#interface-addordersresults)‹[OrderWithMetadata](#interface-orderwithmetadata), SignedOrder››_ -_Defined in [packages/mesh-graphql-client/src/index.ts:193](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/index.ts#L193)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:193](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/index.ts#L193)_ **Parameters:** @@ -234,7 +234,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:193](https://github.com/0 ▸ **addOrdersV4Async**(`orders`: [SignedOrderV4](#signedorderv4)››\* -_Defined in [packages/mesh-graphql-client/src/index.ts:222](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/index.ts#L222)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:222](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/index.ts#L222)_ **Parameters:** @@ -252,7 +252,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:222](https://github.com/0 ▸ **findOrdersAsync**(`query`: [OrderQuery](#interface-orderquery)): _Promise‹[OrderWithMetadata](#interface-orderwithmetadata)[]›_ -_Defined in [packages/mesh-graphql-client/src/index.ts:285](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/index.ts#L285)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:285](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/index.ts#L285)_ **Parameters:** @@ -268,7 +268,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:285](https://github.com/0 ▸ **findOrdersV4Async**(`query`: [OrderQuery](#interface-orderquery)): _Promise‹[OrderWithMetadataV4](#interface-orderwithmetadatav4)[]›_ -_Defined in [packages/mesh-graphql-client/src/index.ts:302](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/index.ts#L302)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:302](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/index.ts#L302)_ **Parameters:** @@ -284,7 +284,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:302](https://github.com/0 ▸ **getOrderAsync**(`hash`: string): _Promise‹[OrderWithMetadata](#interface-orderwithmetadata) | null›_ -_Defined in [packages/mesh-graphql-client/src/index.ts:253](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/index.ts#L253)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:253](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/index.ts#L253)_ **Parameters:** @@ -300,7 +300,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:253](https://github.com/0 ▸ **getOrderV4Async**(`hash`: string): _Promise‹[OrderWithMetadataV4](#interface-orderwithmetadatav4) | null›_ -_Defined in [packages/mesh-graphql-client/src/index.ts:269](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/index.ts#L269)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:269](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/index.ts#L269)_ **Parameters:** @@ -316,7 +316,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:269](https://github.com/0 ▸ **getStatsAsync**(): _Promise‹[Stats](#interface-stats)›_ -_Defined in [packages/mesh-graphql-client/src/index.ts:182](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/index.ts#L182)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:182](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/index.ts#L182)_ **Returns:** _Promise‹[Stats](#interface-stats)›_ @@ -326,7 +326,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:182](https://github.com/0 ▸ **onOrderEvents**(): _Observable‹[OrderEvent](#interface-orderevent)[]›_ -_Defined in [packages/mesh-graphql-client/src/index.ts:323](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/index.ts#L323)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:323](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/index.ts#L323)_ **Returns:** _Observable‹[OrderEvent](#interface-orderevent)[]›_ @@ -336,7 +336,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:323](https://github.com/0 ▸ **onReconnected**(`cb`: function): _void_ -_Defined in [packages/mesh-graphql-client/src/index.ts:319](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/index.ts#L319)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:319](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/index.ts#L319)_ **Parameters:** @@ -352,7 +352,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:319](https://github.com/0 ▸ **rawQueryAsync**<**T**, **TVariables**>(`options`: QueryOptions‹TVariables›): _Promise‹ApolloQueryResult‹T››_ -_Defined in [packages/mesh-graphql-client/src/index.ts:370](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/index.ts#L370)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:370](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/index.ts#L370)_ **Type parameters:** @@ -378,7 +378,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:370](https://github.com/0 • **ERC1155ApprovalForAllEvent**: = "ERC1155ApprovalForAllEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:176](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L176)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:176](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L176)_ --- @@ -386,7 +386,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:176](https://github.com/0 • **ERC1155TransferBatchEvent**: = "ERC1155TransferBatchEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:178](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L178)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:178](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L178)_ --- @@ -394,7 +394,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:178](https://github.com/0 • **ERC1155TransferSingleEvent**: = "ERC1155TransferSingleEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:177](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L177)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:177](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L177)_ --- @@ -402,7 +402,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:177](https://github.com/0 • **ERC20ApprovalEvent**: = "ERC20ApprovalEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:172](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L172)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:172](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L172)_ --- @@ -410,7 +410,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:172](https://github.com/0 • **ERC20TransferEvent**: = "ERC20TransferEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:171](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L171)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:171](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L171)_ --- @@ -418,7 +418,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:171](https://github.com/0 • **ERC721ApprovalEvent**: = "ERC721ApprovalEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:174](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L174)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:174](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L174)_ --- @@ -426,7 +426,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:174](https://github.com/0 • **ERC721ApprovalForAllEvent**: = "ERC721ApprovalForAllEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:175](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L175)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:175](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L175)_ --- @@ -434,7 +434,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:175](https://github.com/0 • **ERC721TransferEvent**: = "ERC721TransferEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:173](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L173)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:173](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L173)_ --- @@ -442,7 +442,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:173](https://github.com/0 • **ExchangeCancelEvent**: = "ExchangeCancelEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:180](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L180)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:180](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L180)_ --- @@ -450,7 +450,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:180](https://github.com/0 • **ExchangeCancelUpToEvent**: = "ExchangeCancelUpToEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:181](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L181)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:181](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L181)_ --- @@ -458,7 +458,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:181](https://github.com/0 • **ExchangeFillEvent**: = "ExchangeFillEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:179](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L179)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:179](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L179)_ --- @@ -466,7 +466,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:179](https://github.com/0 • **WethDepositEvent**: = "WethDepositEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:182](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L182)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:182](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L182)_ --- @@ -474,7 +474,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:182](https://github.com/0 • **WethWithdrawalEvent**: = "WethWithdrawalEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:183](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L183)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:183](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L183)_
@@ -486,7 +486,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:183](https://github.com/0 • **Equal**: = "EQUAL" -_Defined in [packages/mesh-graphql-client/src/types.ts:222](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L222)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:222](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L222)_ --- @@ -494,7 +494,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:222](https://github.com/0 • **Greater**: = "GREATER" -_Defined in [packages/mesh-graphql-client/src/types.ts:224](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L224)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:224](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L224)_ --- @@ -502,7 +502,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:224](https://github.com/0 • **GreaterOrEqual**: = "GREATER_OR_EQUAL" -_Defined in [packages/mesh-graphql-client/src/types.ts:225](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L225)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:225](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L225)_ --- @@ -510,7 +510,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:225](https://github.com/0 • **Less**: = "LESS" -_Defined in [packages/mesh-graphql-client/src/types.ts:226](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L226)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:226](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L226)_ --- @@ -518,7 +518,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:226](https://github.com/0 • **LessOrEqual**: = "LESS_OR_EQUAL" -_Defined in [packages/mesh-graphql-client/src/types.ts:227](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L227)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:227](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L227)_ --- @@ -526,7 +526,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:227](https://github.com/0 • **NotEqual**: = "NOT_EQUAL" -_Defined in [packages/mesh-graphql-client/src/types.ts:223](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L223)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:223](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L223)_
@@ -538,7 +538,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:223](https://github.com/0 • **Added**: = "ADDED" -_Defined in [packages/mesh-graphql-client/src/types.ts:189](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L189)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:189](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L189)_ --- @@ -546,7 +546,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:189](https://github.com/0 • **Cancelled**: = "CANCELLED" -_Defined in [packages/mesh-graphql-client/src/types.ts:195](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L195)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:195](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L195)_ --- @@ -554,7 +554,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:195](https://github.com/0 • **Expired**: = "EXPIRED" -_Defined in [packages/mesh-graphql-client/src/types.ts:197](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L197)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:197](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L197)_ --- @@ -562,7 +562,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:197](https://github.com/0 • **FillabilityIncreased**: = "FILLABILITY_INCREASED" -_Defined in [packages/mesh-graphql-client/src/types.ts:206](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L206)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:206](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L206)_ --- @@ -570,7 +570,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:206](https://github.com/0 • **Filled**: = "FILLED" -_Defined in [packages/mesh-graphql-client/src/types.ts:191](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L191)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:191](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L191)_ --- @@ -578,7 +578,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:191](https://github.com/0 • **FullyFilled**: = "FULLY_FILLED" -_Defined in [packages/mesh-graphql-client/src/types.ts:193](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L193)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:193](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L193)_ --- @@ -586,7 +586,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:193](https://github.com/0 • **Invalid**: = "INVALID" -_Defined in [packages/mesh-graphql-client/src/types.ts:199](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L199)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:199](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L199)_ --- @@ -594,7 +594,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:199](https://github.com/0 • **StoppedWatching**: = "STOPPED_WATCHING" -_Defined in [packages/mesh-graphql-client/src/types.ts:211](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L211)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:211](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L211)_ --- @@ -602,7 +602,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:211](https://github.com/0 • **Unexpired**: = "UNEXPIRED" -_Defined in [packages/mesh-graphql-client/src/types.ts:201](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L201)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:201](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L201)_ --- @@ -610,7 +610,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:201](https://github.com/0 • **Unfunded**: = "UNFUNDED" -_Defined in [packages/mesh-graphql-client/src/types.ts:203](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L203)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:203](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L203)_
@@ -622,7 +622,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:203](https://github.com/0 • **DatabaseFullOfOrders**: = "DATABASE_FULL_OF_ORDERS" -_Defined in [packages/mesh-graphql-client/src/types.ts:146](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L146)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:146](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L146)_ --- @@ -630,7 +630,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:146](https://github.com/0 • **EthRpcRequestFailed**: = "ETH_RPC_REQUEST_FAILED" -_Defined in [packages/mesh-graphql-client/src/types.ts:127](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L127)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:127](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L127)_ --- @@ -638,7 +638,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:127](https://github.com/0 • **IncorrectExchangeAddress**: = "INCORRECT_EXCHANGE_ADDRESS" -_Defined in [packages/mesh-graphql-client/src/types.ts:144](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L144)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:144](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L144)_ --- @@ -646,7 +646,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:144](https://github.com/0 • **InternalError**: = "INTERNAL_ERROR" -_Defined in [packages/mesh-graphql-client/src/types.ts:140](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L140)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:140](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L140)_ --- @@ -654,7 +654,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:140](https://github.com/0 • **MaxOrderSizeExceeded**: = "MAX_ORDER_SIZE_EXCEEDED" -_Defined in [packages/mesh-graphql-client/src/types.ts:141](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L141)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:141](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L141)_ --- @@ -662,7 +662,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:141](https://github.com/0 • **OrderAlreadyStoredAndUnfillable**: = "ORDER_ALREADY_STORED_AND_UNFILLABLE" -_Defined in [packages/mesh-graphql-client/src/types.ts:142](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L142)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:142](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L142)_ --- @@ -670,7 +670,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:142](https://github.com/0 • **OrderCancelled**: = "ORDER_CANCELLED" -_Defined in [packages/mesh-graphql-client/src/types.ts:132](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L132)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:132](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L132)_ --- @@ -678,7 +678,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:132](https://github.com/0 • **OrderExpired**: = "ORDER_EXPIRED" -_Defined in [packages/mesh-graphql-client/src/types.ts:130](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L130)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:130](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L130)_ --- @@ -686,7 +686,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:130](https://github.com/0 • **OrderForIncorrectChain**: = "ORDER_FOR_INCORRECT_CHAIN" -_Defined in [packages/mesh-graphql-client/src/types.ts:143](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L143)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:143](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L143)_ --- @@ -694,7 +694,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:143](https://github.com/0 • **OrderFullyFilled**: = "ORDER_FULLY_FILLED" -_Defined in [packages/mesh-graphql-client/src/types.ts:131](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L131)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:131](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L131)_ --- @@ -702,7 +702,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:131](https://github.com/0 • **OrderHasInvalidMakerAssetAmount**: = "ORDER_HAS_INVALID_MAKER_ASSET_AMOUNT" -_Defined in [packages/mesh-graphql-client/src/types.ts:128](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L128)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:128](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L128)_ --- @@ -710,7 +710,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:128](https://github.com/0 • **OrderHasInvalidMakerAssetData**: = "ORDER_HAS_INVALID_MAKER_ASSET_DATA" -_Defined in [packages/mesh-graphql-client/src/types.ts:134](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L134)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:134](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L134)_ --- @@ -718,7 +718,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:134](https://github.com/0 • **OrderHasInvalidMakerFeeAssetData**: = "ORDER_HAS_INVALID_MAKER_FEE_ASSET_DATA" -_Defined in [packages/mesh-graphql-client/src/types.ts:135](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L135)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:135](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L135)_ --- @@ -726,7 +726,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:135](https://github.com/0 • **OrderHasInvalidSignature**: = "ORDER_HAS_INVALID_SIGNATURE" -_Defined in [packages/mesh-graphql-client/src/types.ts:138](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L138)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:138](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L138)_ --- @@ -734,7 +734,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:138](https://github.com/0 • **OrderHasInvalidTakerAssetAmount**: = "ORDER_HAS_INVALID_TAKER_ASSET_AMOUNT" -_Defined in [packages/mesh-graphql-client/src/types.ts:129](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L129)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:129](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L129)_ --- @@ -742,7 +742,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:129](https://github.com/0 • **OrderHasInvalidTakerAssetData**: = "ORDER_HAS_INVALID_TAKER_ASSET_DATA" -_Defined in [packages/mesh-graphql-client/src/types.ts:136](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L136)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:136](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L136)_ --- @@ -750,7 +750,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:136](https://github.com/0 • **OrderHasInvalidTakerFeeAssetData**: = "ORDER_HAS_INVALID_TAKER_FEE_ASSET_DATA" -_Defined in [packages/mesh-graphql-client/src/types.ts:137](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L137)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:137](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L137)_ --- @@ -758,7 +758,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:137](https://github.com/0 • **OrderMaxExpirationExceeded**: = "ORDER_MAX_EXPIRATION_EXCEEDED" -_Defined in [packages/mesh-graphql-client/src/types.ts:139](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L139)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:139](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L139)_ --- @@ -766,7 +766,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:139](https://github.com/0 • **OrderUnfunded**: = "ORDER_UNFUNDED" -_Defined in [packages/mesh-graphql-client/src/types.ts:133](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L133)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:133](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L133)_ --- @@ -774,7 +774,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:133](https://github.com/0 • **SenderAddressNotAllowed**: = "SENDER_ADDRESS_NOT_ALLOWED" -_Defined in [packages/mesh-graphql-client/src/types.ts:145](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L145)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:145](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L145)_ --- @@ -782,7 +782,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:145](https://github.com/0 • **TakerAddressNotAllowed**: = "TAKER_ADDRESS_NOT_ALLOWED" -_Defined in [packages/mesh-graphql-client/src/types.ts:147](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L147)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:147](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L147)_
@@ -794,7 +794,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:147](https://github.com/0 • **Asc**: = "ASC" -_Defined in [packages/mesh-graphql-client/src/types.ts:217](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L217)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:217](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L217)_ --- @@ -802,7 +802,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:217](https://github.com/0 • **Desc**: = "DESC" -_Defined in [packages/mesh-graphql-client/src/types.ts:218](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L218)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:218](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L218)_
@@ -818,7 +818,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:218](https://github.com/0 • **httpUrl**? : _undefined | string_ -_Defined in [packages/mesh-graphql-client/src/index.ts:87](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/index.ts#L87)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:87](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/index.ts#L87)_ --- @@ -826,7 +826,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:87](https://github.com/0x • **mesh**? : _Mesh_ -_Defined in [packages/mesh-graphql-client/src/index.ts:89](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/index.ts#L89)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:89](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/index.ts#L89)_ --- @@ -834,7 +834,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:89](https://github.com/0x • **webSocketUrl**? : _undefined | string_ -_Defined in [packages/mesh-graphql-client/src/index.ts:88](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/index.ts#L88)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:88](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/index.ts#L88)_
@@ -854,7 +854,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:88](https://github.com/0x • **isNew**: _boolean_ -_Defined in [packages/mesh-graphql-client/src/types.ts:109](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L109)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:109](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L109)_ --- @@ -862,7 +862,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:109](https://github.com/0 • **order**: _T_ -_Defined in [packages/mesh-graphql-client/src/types.ts:106](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L106)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:106](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L106)_
@@ -878,7 +878,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:106](https://github.com/0 • **keepCancelled**? : _undefined | false | true_ -_Defined in [packages/mesh-graphql-client/src/types.ts:6](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L6)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:6](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L6)_ --- @@ -886,7 +886,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:6](https://github.com/0xP • **keepExpired**? : _undefined | false | true_ -_Defined in [packages/mesh-graphql-client/src/types.ts:7](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L7)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:7](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L7)_ --- @@ -894,7 +894,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:7](https://github.com/0xP • **keepFullyFilled**? : _undefined | false | true_ -_Defined in [packages/mesh-graphql-client/src/types.ts:8](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L8)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:8](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L8)_ --- @@ -902,7 +902,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:8](https://github.com/0xP • **keepUnfunded**? : _undefined | false | true_ -_Defined in [packages/mesh-graphql-client/src/types.ts:9](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L9)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:9](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L9)_
@@ -924,7 +924,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:9](https://github.com/0xP • **addOrders**: _[StringifiedAddOrdersResults](#interface-stringifiedaddordersresults)‹T, K›_ -_Defined in [packages/mesh-graphql-client/src/types.ts:25](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L25)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:25](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L25)_
@@ -946,7 +946,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:25](https://github.com/0x • **addOrdersV4**: _[StringifiedAddOrdersResults](#interface-stringifiedaddordersresults)‹T, K›_ -_Defined in [packages/mesh-graphql-client/src/types.ts:32](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L32)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:32](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L32)_
@@ -968,7 +968,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:32](https://github.com/0x • **accepted**: _[AcceptedOrderResult](#interface-acceptedorderresult)‹T›[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:97](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L97)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:97](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L97)_ --- @@ -976,7 +976,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:97](https://github.com/0x • **rejected**: _[RejectedOrderResult](#interface-rejectedorderresult)‹K›[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:100](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L100)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:100](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L100)_
@@ -992,7 +992,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:100](https://github.com/0 • **address**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:164](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L164)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:164](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L164)_ --- @@ -1000,7 +1000,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:164](https://github.com/0 • **blockHash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:159](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L159)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:159](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L159)_ --- @@ -1008,7 +1008,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:159](https://github.com/0 • **isRemoved**: _boolean_ -_Defined in [packages/mesh-graphql-client/src/types.ts:163](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L163)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:163](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L163)_ --- @@ -1016,7 +1016,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:163](https://github.com/0 • **kind**: _[ContractEventKind](#enumeration-contracteventkind)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:165](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L165)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:165](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L165)_ --- @@ -1024,7 +1024,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:165](https://github.com/0 • **logIndex**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:162](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L162)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:162](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L162)_ --- @@ -1032,7 +1032,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:162](https://github.com/0 • **parameters**: _any_ -_Defined in [packages/mesh-graphql-client/src/types.ts:167](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L167)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:167](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L167)_ --- @@ -1040,7 +1040,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:167](https://github.com/0 • **txHash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:160](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L160)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:160](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L160)_ --- @@ -1048,7 +1048,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:160](https://github.com/0 • **txIndex**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:161](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L161)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:161](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L161)_
@@ -1064,7 +1064,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:161](https://github.com/0 • **hash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:78](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L78)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:78](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L78)_ --- @@ -1072,7 +1072,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:78](https://github.com/0x • **number**: _BigNumber_ -_Defined in [packages/mesh-graphql-client/src/types.ts:77](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L77)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:77](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L77)_
@@ -1088,7 +1088,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:77](https://github.com/0x • **contractEvents**: _[ContractEvent](#interface-contractevent)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:155](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L155)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:155](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L155)_ --- @@ -1096,7 +1096,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:155](https://github.com/0 • **endState**: _[OrderEventEndState](#enumeration-ordereventendstate)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:154](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L154)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:154](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L154)_ --- @@ -1104,7 +1104,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:154](https://github.com/0 • **order**? : _[OrderWithMetadata](#interface-orderwithmetadata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:152](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L152)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:152](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L152)_ --- @@ -1112,7 +1112,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:152](https://github.com/0 • **orderv4**? : _[OrderWithMetadataV4](#interface-orderwithmetadatav4)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:153](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L153)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:153](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L153)_ --- @@ -1120,7 +1120,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:153](https://github.com/0 • **timestampMs**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:151](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L151)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:151](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L151)_
@@ -1136,7 +1136,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:151](https://github.com/0 • **orderEvents**: _[StringifiedOrderEvent](#interface-stringifiedorderevent)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:52](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L52)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:52](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L52)_
@@ -1152,7 +1152,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:52](https://github.com/0x • **field**: _[OrderField](#orderfield)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:236](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L236)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:236](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L236)_ --- @@ -1160,7 +1160,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:236](https://github.com/0 • **kind**: _[FilterKind](#enumeration-filterkind)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:237](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L237)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:237](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L237)_ --- @@ -1168,7 +1168,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:237](https://github.com/0 • **value**: _OrderWithMetadata[OrderField]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:238](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L238)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:238](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L238)_
@@ -1184,7 +1184,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:238](https://github.com/0 • **filters**? : _[OrderFilter](#interface-orderfilter)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:242](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L242)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:242](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L242)_ --- @@ -1192,7 +1192,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:242](https://github.com/0 • **limit**? : _undefined | number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:244](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L244)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:244](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L244)_ --- @@ -1200,7 +1200,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:244](https://github.com/0 • **sort**? : _[OrderSort](#interface-ordersort)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:243](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L243)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:243](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L243)_
@@ -1216,7 +1216,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:243](https://github.com/0 • **order**: _[StringifiedOrderWithMetadata](#interface-stringifiedorderwithmetadata) | null_ -_Defined in [packages/mesh-graphql-client/src/types.ts:36](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L36)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:36](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L36)_
@@ -1232,7 +1232,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:36](https://github.com/0x • **orderv4**: _[StringifiedOrderWithMetadataV4](#interface-stringifiedorderwithmetadatav4) | null_ -_Defined in [packages/mesh-graphql-client/src/types.ts:40](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L40)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:40](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L40)_
@@ -1248,7 +1248,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:40](https://github.com/0x • **direction**: _[SortDirection](#enumeration-sortdirection)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:232](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L232)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:232](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L232)_ --- @@ -1256,7 +1256,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:232](https://github.com/0 • **field**: _[OrderField](#orderfield)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:231](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L231)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:231](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L231)_
@@ -1272,7 +1272,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:231](https://github.com/0 • **orders**: _[StringifiedOrderWithMetadata](#interface-stringifiedorderwithmetadata)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:44](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L44)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:44](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L44)_
@@ -1288,7 +1288,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:44](https://github.com/0x • **ordersv4**: _[StringifiedOrderWithMetadataV4](#interface-stringifiedorderwithmetadatav4)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:48](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L48)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:48](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L48)_
@@ -1338,7 +1338,7 @@ Defined in node_modules/@0x/types/lib/index.d.ts:8 • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [packages/mesh-graphql-client/src/types.ts:83](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L83)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:83](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L83)_ --- @@ -1346,7 +1346,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:83](https://github.com/0x • **hash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:82](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L82)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:82](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L82)_ --- @@ -1492,7 +1492,7 @@ Defined in node_modules/@0x/protocol-utils/lib/src/orders.d.ts:21 • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [packages/mesh-graphql-client/src/types.ts:91](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L91)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:91](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L91)_ --- @@ -1500,7 +1500,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:91](https://github.com/0x • **hash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:90](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L90)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:90](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L90)_ --- @@ -1556,7 +1556,7 @@ Defined in node_modules/@0x/protocol-utils/lib/src/orders.d.ts:20 • **signature**: _Signature_ -_Defined in [packages/mesh-graphql-client/src/types.ts:87](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L87)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:87](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L87)_ --- @@ -1616,7 +1616,7 @@ Defined in node_modules/@0x/protocol-utils/lib/src/orders.d.ts:32 • **code**: _[RejectedOrderCode](#enumeration-rejectedordercode)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:120](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L120)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:120](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L120)_ --- @@ -1624,7 +1624,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:120](https://github.com/0 • **hash**? : _undefined | string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:114](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L114)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:114](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L114)_ --- @@ -1632,7 +1632,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:114](https://github.com/0 • **message**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:123](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L123)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:123](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L123)_ --- @@ -1640,7 +1640,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:123](https://github.com/0 • **order**: _K_ -_Defined in [packages/mesh-graphql-client/src/types.ts:117](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L117)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:117](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L117)_
@@ -1656,7 +1656,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:117](https://github.com/0 • **ethRPCRateLimitExpiredRequests**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:73](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L73)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:73](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L73)_ --- @@ -1664,7 +1664,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:73](https://github.com/0x • **ethRPCRequestsSentInCurrentUTCDay**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:72](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L72)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:72](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L72)_ --- @@ -1672,7 +1672,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:72](https://github.com/0x • **ethereumChainID**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:61](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L61)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:61](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L61)_ --- @@ -1680,7 +1680,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:61](https://github.com/0x • **latestBlock**: _[LatestBlock](#interface-latestblock)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:62](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L62)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:62](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L62)_ --- @@ -1688,7 +1688,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:62](https://github.com/0x • **maxExpirationTime**: _BigNumber_ -_Defined in [packages/mesh-graphql-client/src/types.ts:70](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L70)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:70](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L70)_ --- @@ -1696,7 +1696,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:70](https://github.com/0x • **numOrders**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:64](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L64)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:64](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L64)_ --- @@ -1704,7 +1704,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:64](https://github.com/0x • **numOrdersIncludingRemoved**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:66](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L66)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:66](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L66)_ --- @@ -1712,7 +1712,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:66](https://github.com/0x • **numOrdersIncludingRemovedV4**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:67](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L67)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:67](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L67)_ --- @@ -1720,7 +1720,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:67](https://github.com/0x • **numOrdersV4**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:65](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L65)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:65](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L65)_ --- @@ -1728,7 +1728,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:65](https://github.com/0x • **numPeers**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:63](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L63)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:63](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L63)_ --- @@ -1736,7 +1736,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:63](https://github.com/0x • **numPinnedOrders**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:68](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L68)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:68](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L68)_ --- @@ -1744,7 +1744,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:68](https://github.com/0x • **numPinnedOrdersV4**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:69](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L69)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:69](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L69)_ --- @@ -1752,7 +1752,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:69](https://github.com/0x • **peerID**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:60](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L60)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:60](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L60)_ --- @@ -1760,7 +1760,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:60](https://github.com/0x • **pubSubTopic**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:57](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L57)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:57](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L57)_ --- @@ -1768,7 +1768,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:57](https://github.com/0x • **rendezvous**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:58](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L58)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:58](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L58)_ --- @@ -1776,7 +1776,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:58](https://github.com/0x • **secondaryRendezvous**: _string[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:59](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L59)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:59](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L59)_ --- @@ -1784,7 +1784,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:59](https://github.com/0x • **startOfCurrentUTCDay**: _Date_ -_Defined in [packages/mesh-graphql-client/src/types.ts:71](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L71)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:71](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L71)_ --- @@ -1792,7 +1792,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:71](https://github.com/0x • **version**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:56](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L56)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:56](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L56)_
@@ -1808,7 +1808,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:56](https://github.com/0x • **stats**: _[StringifiedStats](#interface-stringifiedstats)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:13](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L13)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:13](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L13)_
@@ -1828,7 +1828,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:13](https://github.com/0x • **isNew**: _boolean_ -_Defined in [packages/mesh-graphql-client/src/types.ts:333](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L333)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:333](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L333)_ --- @@ -1836,7 +1836,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:333](https://github.com/0 • **order**: _T_ -_Defined in [packages/mesh-graphql-client/src/types.ts:332](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L332)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:332](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L332)_
@@ -1858,7 +1858,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:332](https://github.com/0 • **accepted**: _[StringifiedAcceptedOrderResult](#interface-stringifiedacceptedorderresult)‹T›[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:327](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L327)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:327](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L327)_ --- @@ -1866,7 +1866,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:327](https://github.com/0 • **rejected**: _[StringifiedRejectedOrderResult](#interface-stringifiedrejectedorderresult)‹K›[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:328](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L328)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:328](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L328)_
@@ -1882,7 +1882,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:328](https://github.com/0 • **hash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:249](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L249)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:249](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L249)_ --- @@ -1890,7 +1890,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:249](https://github.com/0 • **number**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:248](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L248)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:248](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L248)_
@@ -1906,7 +1906,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:248](https://github.com/0 • **contractEvents**: _[ContractEvent](#interface-contractevent)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:349](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L349)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:349](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L349)_ --- @@ -1914,7 +1914,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:349](https://github.com/0 • **endState**: _[OrderEventEndState](#enumeration-ordereventendstate)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:347](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L347)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:347](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L347)_ --- @@ -1922,7 +1922,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:347](https://github.com/0 • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [packages/mesh-graphql-client/src/types.ts:348](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L348)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:348](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L348)_ --- @@ -1930,7 +1930,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:348](https://github.com/0 • **order**: _[StringifiedOrderWithMetadata](#interface-stringifiedorderwithmetadata) | null_ -_Defined in [packages/mesh-graphql-client/src/types.ts:345](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L345)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:345](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L345)_ --- @@ -1938,7 +1938,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:345](https://github.com/0 • **orderv4**: _[StringifiedOrderWithMetadataV4](#interface-stringifiedorderwithmetadatav4) | null_ -_Defined in [packages/mesh-graphql-client/src/types.ts:346](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L346)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:346](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L346)_ --- @@ -1946,7 +1946,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:346](https://github.com/0 • **timestamp**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:344](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L344)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:344](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L344)_
@@ -1966,7 +1966,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:344](https://github.com/0 _Inherited from [StringifiedSignedOrder](#chainid)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:274](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L274)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:274](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L274)_ --- @@ -1976,7 +1976,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:274](https://github.com/0 _Inherited from [StringifiedSignedOrder](#exchangeaddress)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:275](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L275)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:275](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L275)_ --- @@ -1986,7 +1986,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:275](https://github.com/0 _Inherited from [StringifiedSignedOrder](#expirationtimeseconds)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:284](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L284)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:284](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L284)_ --- @@ -1996,7 +1996,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:284](https://github.com/0 _Inherited from [StringifiedSignedOrder](#feerecipientaddress)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:278](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L278)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:278](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L278)_ --- @@ -2004,7 +2004,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:278](https://github.com/0 • **fillableTakerAssetAmount**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:320](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L320)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:320](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L320)_ --- @@ -2012,7 +2012,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:320](https://github.com/0 • **hash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:319](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L319)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:319](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L319)_ --- @@ -2022,7 +2022,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:319](https://github.com/0 _Inherited from [StringifiedSignedOrder](#makeraddress)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:276](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L276)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:276](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L276)_ --- @@ -2032,7 +2032,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:276](https://github.com/0 _Inherited from [StringifiedSignedOrder](#makerassetamount)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:280](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L280)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:280](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L280)_ --- @@ -2042,7 +2042,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:280](https://github.com/0 _Inherited from [StringifiedSignedOrder](#makerassetdata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:286](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L286)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:286](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L286)_ --- @@ -2052,7 +2052,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:286](https://github.com/0 _Inherited from [StringifiedSignedOrder](#makerfee)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:282](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L282)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:282](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L282)_ --- @@ -2062,7 +2062,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:282](https://github.com/0 _Inherited from [StringifiedSignedOrder](#makerfeeassetdata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:288](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L288)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:288](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L288)_ --- @@ -2072,7 +2072,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:288](https://github.com/0 _Inherited from [StringifiedSignedOrder](#salt)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:285](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L285)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:285](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L285)_ --- @@ -2082,7 +2082,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:285](https://github.com/0 _Inherited from [StringifiedSignedOrder](#senderaddress)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:279](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L279)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:279](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L279)_ --- @@ -2092,7 +2092,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:279](https://github.com/0 _Inherited from [StringifiedSignedOrder](#signature)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:290](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L290)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:290](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L290)_ --- @@ -2102,7 +2102,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:290](https://github.com/0 _Inherited from [StringifiedSignedOrder](#takeraddress)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:277](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L277)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:277](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L277)_ --- @@ -2112,7 +2112,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:277](https://github.com/0 _Inherited from [StringifiedSignedOrder](#takerassetamount)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:281](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L281)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:281](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L281)_ --- @@ -2122,7 +2122,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:281](https://github.com/0 _Inherited from [StringifiedSignedOrder](#takerassetdata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:287](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L287)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:287](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L287)_ --- @@ -2132,7 +2132,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:287](https://github.com/0 _Inherited from [StringifiedSignedOrder](#takerfee)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:283](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L283)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:283](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L283)_ --- @@ -2142,7 +2142,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:283](https://github.com/0 _Inherited from [StringifiedSignedOrder](#takerfeeassetdata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:289](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L289)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:289](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L289)_
@@ -2162,7 +2162,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:289](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#chainid)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:294](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L294)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:294](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L294)_ --- @@ -2172,7 +2172,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:294](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#expiry)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:306](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L306)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:306](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L306)_ --- @@ -2182,7 +2182,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:306](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#feerecipient)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:304](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L304)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:304](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L304)_ --- @@ -2190,7 +2190,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:304](https://github.com/0 • **fillableTakerAssetAmount**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:315](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L315)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:315](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L315)_ --- @@ -2198,7 +2198,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:315](https://github.com/0 • **hash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:314](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L314)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:314](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L314)_ --- @@ -2208,7 +2208,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:314](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#maker)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:301](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L301)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:301](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L301)_ --- @@ -2218,7 +2218,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:301](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#makeramount)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:298](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L298)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:298](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L298)_ --- @@ -2228,7 +2228,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:298](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#makertoken)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:296](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L296)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:296](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L296)_ --- @@ -2238,7 +2238,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:296](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#pool)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:305](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L305)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:305](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L305)_ --- @@ -2248,7 +2248,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:305](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#salt)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:307](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L307)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:307](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L307)_ --- @@ -2258,7 +2258,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:307](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#sender)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:303](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L303)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:303](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L303)_ --- @@ -2268,7 +2268,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:303](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#signaturer)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:309](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L309)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:309](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L309)_ --- @@ -2278,7 +2278,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:309](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#signatures)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:310](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L310)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:310](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L310)_ --- @@ -2288,7 +2288,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:310](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#signaturetype)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:308](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L308)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:308](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L308)_ --- @@ -2298,7 +2298,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:308](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#signaturev)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:311](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L311)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:311](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L311)_ --- @@ -2308,7 +2308,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:311](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#taker)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:302](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L302)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:302](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L302)_ --- @@ -2318,7 +2318,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:302](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#takeramount)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:299](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L299)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:299](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L299)_ --- @@ -2328,7 +2328,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:299](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#takertoken)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:297](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L297)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:297](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L297)_ --- @@ -2338,7 +2338,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:297](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#takertokenfeeamount)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:300](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L300)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:300](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L300)_ --- @@ -2348,7 +2348,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:300](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#verifyingcontract)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:295](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L295)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:295](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L295)_
@@ -2368,7 +2368,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:295](https://github.com/0 • **code**: _[RejectedOrderCode](#enumeration-rejectedordercode)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:339](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L339)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:339](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L339)_ --- @@ -2376,7 +2376,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:339](https://github.com/0 • **hash**? : _undefined | string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:337](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L337)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:337](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L337)_ --- @@ -2384,7 +2384,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:337](https://github.com/0 • **message**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:340](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L340)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:340](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L340)_ --- @@ -2392,7 +2392,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:340](https://github.com/0 • **order**: _K_ -_Defined in [packages/mesh-graphql-client/src/types.ts:338](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L338)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:338](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L338)_
@@ -2410,7 +2410,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:338](https://github.com/0 • **chainId**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:274](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L274)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:274](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L274)_ --- @@ -2418,7 +2418,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:274](https://github.com/0 • **exchangeAddress**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:275](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L275)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:275](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L275)_ --- @@ -2426,7 +2426,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:275](https://github.com/0 • **expirationTimeSeconds**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:284](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L284)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:284](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L284)_ --- @@ -2434,7 +2434,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:284](https://github.com/0 • **feeRecipientAddress**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:278](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L278)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:278](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L278)_ --- @@ -2442,7 +2442,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:278](https://github.com/0 • **makerAddress**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:276](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L276)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:276](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L276)_ --- @@ -2450,7 +2450,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:276](https://github.com/0 • **makerAssetAmount**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:280](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L280)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:280](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L280)_ --- @@ -2458,7 +2458,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:280](https://github.com/0 • **makerAssetData**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:286](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L286)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:286](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L286)_ --- @@ -2466,7 +2466,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:286](https://github.com/0 • **makerFee**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:282](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L282)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:282](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L282)_ --- @@ -2474,7 +2474,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:282](https://github.com/0 • **makerFeeAssetData**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:288](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L288)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:288](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L288)_ --- @@ -2482,7 +2482,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:288](https://github.com/0 • **salt**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:285](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L285)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:285](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L285)_ --- @@ -2490,7 +2490,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:285](https://github.com/0 • **senderAddress**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:279](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L279)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:279](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L279)_ --- @@ -2498,7 +2498,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:279](https://github.com/0 • **signature**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:290](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L290)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:290](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L290)_ --- @@ -2506,7 +2506,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:290](https://github.com/0 • **takerAddress**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:277](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L277)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:277](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L277)_ --- @@ -2514,7 +2514,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:277](https://github.com/0 • **takerAssetAmount**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:281](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L281)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:281](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L281)_ --- @@ -2522,7 +2522,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:281](https://github.com/0 • **takerAssetData**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:287](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L287)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:287](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L287)_ --- @@ -2530,7 +2530,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:287](https://github.com/0 • **takerFee**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:283](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L283)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:283](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L283)_ --- @@ -2538,7 +2538,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:283](https://github.com/0 • **takerFeeAssetData**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:289](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L289)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:289](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L289)_
@@ -2556,7 +2556,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:289](https://github.com/0 • **chainId**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:294](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L294)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:294](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L294)_ --- @@ -2564,7 +2564,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:294](https://github.com/0 • **expiry**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:306](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L306)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:306](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L306)_ --- @@ -2572,7 +2572,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:306](https://github.com/0 • **feeRecipient**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:304](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L304)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:304](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L304)_ --- @@ -2580,7 +2580,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:304](https://github.com/0 • **maker**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:301](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L301)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:301](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L301)_ --- @@ -2588,7 +2588,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:301](https://github.com/0 • **makerAmount**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:298](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L298)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:298](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L298)_ --- @@ -2596,7 +2596,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:298](https://github.com/0 • **makerToken**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:296](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L296)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:296](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L296)_ --- @@ -2604,7 +2604,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:296](https://github.com/0 • **pool**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:305](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L305)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:305](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L305)_ --- @@ -2612,7 +2612,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:305](https://github.com/0 • **salt**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:307](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L307)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:307](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L307)_ --- @@ -2620,7 +2620,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:307](https://github.com/0 • **sender**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:303](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L303)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:303](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L303)_ --- @@ -2628,7 +2628,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:303](https://github.com/0 • **signatureR**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:309](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L309)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:309](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L309)_ --- @@ -2636,7 +2636,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:309](https://github.com/0 • **signatureS**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:310](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L310)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:310](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L310)_ --- @@ -2644,7 +2644,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:310](https://github.com/0 • **signatureType**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:308](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L308)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:308](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L308)_ --- @@ -2652,7 +2652,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:308](https://github.com/0 • **signatureV**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:311](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L311)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:311](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L311)_ --- @@ -2660,7 +2660,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:311](https://github.com/0 • **taker**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:302](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L302)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:302](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L302)_ --- @@ -2668,7 +2668,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:302](https://github.com/0 • **takerAmount**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:299](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L299)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:299](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L299)_ --- @@ -2676,7 +2676,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:299](https://github.com/0 • **takerToken**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:297](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L297)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:297](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L297)_ --- @@ -2684,7 +2684,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:297](https://github.com/0 • **takerTokenFeeAmount**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:300](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L300)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:300](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L300)_ --- @@ -2692,7 +2692,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:300](https://github.com/0 • **verifyingContract**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:295](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L295)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:295](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L295)_
@@ -2708,7 +2708,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:295](https://github.com/0 • **ethRPCRateLimitExpiredRequests**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:270](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L270)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:270](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L270)_ --- @@ -2716,7 +2716,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:270](https://github.com/0 • **ethRPCRequestsSentInCurrentUTCDay**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:269](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L269)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:269](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L269)_ --- @@ -2724,7 +2724,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:269](https://github.com/0 • **ethereumChainID**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:258](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L258)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:258](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L258)_ --- @@ -2732,7 +2732,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:258](https://github.com/0 • **latestBlock**: _[StringifiedLatestBlock](#interface-stringifiedlatestblock)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:259](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L259)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:259](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L259)_ --- @@ -2740,7 +2740,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:259](https://github.com/0 • **maxExpirationTime**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:267](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L267)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:267](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L267)_ --- @@ -2748,7 +2748,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:267](https://github.com/0 • **numOrders**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:261](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L261)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:261](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L261)_ --- @@ -2756,7 +2756,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:261](https://github.com/0 • **numOrdersIncludingRemoved**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:263](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L263)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:263](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L263)_ --- @@ -2764,7 +2764,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:263](https://github.com/0 • **numOrdersIncludingRemovedV4**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:264](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L264)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:264](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L264)_ --- @@ -2772,7 +2772,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:264](https://github.com/0 • **numOrdersV4**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:262](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L262)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:262](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L262)_ --- @@ -2780,7 +2780,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:262](https://github.com/0 • **numPeers**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:260](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L260)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:260](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L260)_ --- @@ -2788,7 +2788,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:260](https://github.com/0 • **numPinnedOrders**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:265](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L265)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:265](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L265)_ --- @@ -2796,7 +2796,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:265](https://github.com/0 • **numPinnedOrdersV4**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:266](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L266)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:266](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L266)_ --- @@ -2804,7 +2804,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:266](https://github.com/0 • **peerID**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:257](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L257)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:257](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L257)_ --- @@ -2812,7 +2812,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:257](https://github.com/0 • **pubSubTopic**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:254](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L254)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:254](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L254)_ --- @@ -2820,7 +2820,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:254](https://github.com/0 • **rendezvous**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:255](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L255)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:255](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L255)_ --- @@ -2828,7 +2828,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:255](https://github.com/0 • **secondaryRendezvous**: _string[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:256](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L256)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:256](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L256)_ --- @@ -2836,7 +2836,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:256](https://github.com/0 • **startOfCurrentUTCDay**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:268](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L268)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:268](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L268)_ --- @@ -2844,6 +2844,6 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:268](https://github.com/0 • **version**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:253](https://github.com/0xProject/0x-mesh/blob/6baec9b3/packages/mesh-graphql-client/src/types.ts#L253)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:253](https://github.com/0xProject/0x-mesh/blob/30d4225b/packages/mesh-graphql-client/src/types.ts#L253)_
diff --git a/docs/graphql_api.md b/docs/graphql_api.md index 00c950ace..9769a82af 100644 --- a/docs/graphql_api.md +++ b/docs/graphql_api.md @@ -1,4 +1,4 @@ -[![Version](https://img.shields.io/badge/version-11.0.0-orange.svg)](https://github.com/0xProject/0x-mesh/releases) +[![Version](https://img.shields.io/badge/version-11.0.1-orange.svg)](https://github.com/0xProject/0x-mesh/releases) # 0x Mesh GraphQL API Documentation diff --git a/graphql/gqltypes/conversions.go b/graphql/gqltypes/conversions.go index 742d02569..e613c490a 100644 --- a/graphql/gqltypes/conversions.go +++ b/graphql/gqltypes/conversions.go @@ -391,7 +391,7 @@ func OrderEventFromZeroExType(event *zeroex.OrderEvent) *OrderEvent { MakerToken: event.SignedOrderV4.MakerToken.Hex(), TakerToken: event.SignedOrderV4.TakerToken.Hex(), MakerAmount: event.SignedOrderV4.MakerAmount.String(), - TakerAmount: event.SignedOrderV4.MakerAmount.String(), + TakerAmount: event.SignedOrderV4.TakerAmount.String(), TakerTokenFeeAmount: event.SignedOrderV4.TakerTokenFeeAmount.String(), Maker: event.SignedOrderV4.Maker.Hex(), Taker: event.SignedOrderV4.Taker.Hex(), diff --git a/packages/mesh-browser-lite/package.json b/packages/mesh-browser-lite/package.json index 28a128fcf..783767591 100644 --- a/packages/mesh-browser-lite/package.json +++ b/packages/mesh-browser-lite/package.json @@ -1,6 +1,6 @@ { "name": "@0x/mesh-browser-lite", - "version": "11.0.0", + "version": "11.0.1", "description": "TypeScript and JavaScript bindings for running Mesh directly in the browser. To use this packages, you must use your own copy of the Mesh WebAssembly Binary", "main": "./lib/index.js", "license": "Apache-2.0", diff --git a/packages/mesh-browser-shim/package.json b/packages/mesh-browser-shim/package.json index eb5d5232f..5328e9509 100644 --- a/packages/mesh-browser-shim/package.json +++ b/packages/mesh-browser-shim/package.json @@ -19,7 +19,7 @@ "webpack-cli": "^3.3.10" }, "dependencies": { - "@0x/mesh-browser-lite": "^11.0.0", + "@0x/mesh-browser-lite": "^11.0.1", "dexie": "^3.0.1" } } diff --git a/packages/mesh-browser/package.json b/packages/mesh-browser/package.json index 3cee41899..0e58dec86 100644 --- a/packages/mesh-browser/package.json +++ b/packages/mesh-browser/package.json @@ -1,6 +1,6 @@ { "name": "@0x/mesh-browser", - "version": "11.0.0", + "version": "11.0.1", "description": "TypeScript and JavaScript bindings for running Mesh directly in the browser.", "main": "./lib/index.js", "license": "Apache-2.0", @@ -35,7 +35,7 @@ "webpack-cli": "^3.3.10" }, "dependencies": { - "@0x/mesh-browser-lite": "^11.0.0", + "@0x/mesh-browser-lite": "^11.0.1", "base64-arraybuffer": "^0.2.0", "ethereum-types": "^3.0.0" } diff --git a/packages/mesh-graphql-client/package.json b/packages/mesh-graphql-client/package.json index 2a747ea1b..965bf12dd 100644 --- a/packages/mesh-graphql-client/package.json +++ b/packages/mesh-graphql-client/package.json @@ -1,6 +1,6 @@ { "name": "@0x/mesh-graphql-client", - "version": "11.0.0", + "version": "11.0.1", "description": "A client for the Mesh GraphQL API", "main": "./lib/src/index.js", "license": "Apache-2.0", @@ -49,7 +49,7 @@ }, "dependencies": { "@0x/protocol-utils": "^1.1.4", - "@0x/mesh-browser-lite": "^11.0.0", + "@0x/mesh-browser-lite": "^11.0.1", "@0x/types": "^3.2.0", "@0x/utils": "^6.2.0", "@apollo/client": "^3.3.6", diff --git a/packages/mesh-integration-tests/package.json b/packages/mesh-integration-tests/package.json index 19550179b..69a169df6 100644 --- a/packages/mesh-integration-tests/package.json +++ b/packages/mesh-integration-tests/package.json @@ -22,8 +22,8 @@ "webpack-cli": "^3.3.7" }, "dependencies": { - "@0x/mesh-browser": "^11.0.0", - "@0x/mesh-graphql-client": "^11.0.0", + "@0x/mesh-browser": "^11.0.1", + "@0x/mesh-graphql-client": "^11.0.1", "@0x/order-utils": "^10.0.1", "@0x/subproviders": "^6.0.2", "@0x/utils": "^6.2.0" diff --git a/packages/mesh-webpack-example-lite/package.json b/packages/mesh-webpack-example-lite/package.json index 505f5b321..fb89bd35f 100644 --- a/packages/mesh-webpack-example-lite/package.json +++ b/packages/mesh-webpack-example-lite/package.json @@ -23,6 +23,6 @@ "webpack-cli": "^3.3.7" }, "dependencies": { - "@0x/mesh-browser-lite": "^11.0.0" + "@0x/mesh-browser-lite": "^11.0.1" } } diff --git a/packages/mesh-webpack-example/package.json b/packages/mesh-webpack-example/package.json index 09f9f2212..23bca91a1 100644 --- a/packages/mesh-webpack-example/package.json +++ b/packages/mesh-webpack-example/package.json @@ -21,6 +21,6 @@ "webpack-cli": "^3.3.7" }, "dependencies": { - "@0x/mesh-browser": "^11.0.0" + "@0x/mesh-browser": "^11.0.1" } }