diff --git a/README.md b/README.md index d4727652e..addbf068d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Version](https://img.shields.io/badge/version-10.2.1-orange.svg)](https://github.com/0xProject/0x-mesh/releases) +[![Version](https://img.shields.io/badge/version-10.2.2-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 de0afb8f7..6d92b5200 100644 --- a/core/core.go +++ b/core/core.go @@ -56,7 +56,7 @@ const ( estimatedNonPollingEthereumRPCRequestsPer24Hrs = 50000 // logStatsInterval is how often to log stats for this node. logStatsInterval = 5 * time.Minute - version = "10.2.1" + version = "10.2.2" // ordersyncMinPeers is the minimum amount of peers to receive orders from // before considering the ordersync process finished. ordersyncMinPeers = 5 diff --git a/db/sql_implementation.go b/db/sql_implementation.go index 496751a7c..290d0b5ce 100644 --- a/db/sql_implementation.go +++ b/db/sql_implementation.go @@ -386,34 +386,6 @@ func (db *DB) AddOrders(orders []*types.OrderWithMetadata) (alreadyStored []comm } } - // Remove orders with an expiration time too far in the future. - // HACK(albrow): sqlz doesn't support ORDER BY, LIMIT, and OFFSET - // for DELETE statements. It also doesn't support RETURNING. As a - // workaround, we do a SELECT and DELETE inside a transaction. - // HACK(albrow): SQL doesn't support limit without offset. As a - // workaround, we set the limit to an extremely large number. - removeQuery := txn.Select("*").From("orders"). - OrderBy(sqlz.Desc(string(OFIsPinned)), sqlz.Asc(string(OFExpirationTimeSeconds))). - Limit(largeLimit). - Offset(int64(db.opts.MaxOrders)) - var ordersToRemove []*sqltypes.Order - err = removeQuery.GetAllContext(db.ctx, &ordersToRemove) - if err != nil { - return err - } - for _, order := range ordersToRemove { - _, err := txn.DeleteFrom("orders").Where(sqlz.Eq(string(OFHash), order.Hash)).ExecContext(db.ctx) - if err != nil { - return err - } - if _, found := addedMap[order.Hash]; found { - // If the order was previously added, remove it from - // the added set and don't add it to the removed set. - delete(addedMap, order.Hash) - } else { - sqlRemoved = append(sqlRemoved, order) - } - } return nil }) if err != nil { @@ -498,6 +470,36 @@ func (db *DB) FindOrders(query *OrderQuery) (orders []*types.OrderWithMetadata, return sqltypes.OrdersToCommonType(foundOrders), nil } +// Remove orders with an expiration time too far in the future. +func (db *DB) RemoveOrdersWithLongExpiration() ([]*sqltypes.Order, error) { + sqlRemoved := []*sqltypes.Order{} + return sqlRemoved, db.ReadWriteTransactionalContext(db.ctx, nil, func(txn *sqlz.Tx) error { + // HACK(albrow): sqlz doesn't support ORDER BY, LIMIT, and OFFSET + // for DELETE statements. It also doesn't support RETURNING. As a + // workaround, we do a SELECT and DELETE inside a transaction. + // HACK(albrow): SQL doesn't support limit without offset. As a + // workaround, we set the limit to an extremely large number. + removeQuery := txn.Select("*").From("orders"). + OrderBy(sqlz.Desc(string(OFIsPinned)), sqlz.Asc(string(OFExpirationTimeSeconds))). + Limit(largeLimit). + Offset(int64(db.opts.MaxOrders)) + var ordersToRemove []*sqltypes.Order + err := removeQuery.GetAllContext(db.ctx, &sqlRemoved) + if err != nil { + return err + } + for _, order := range ordersToRemove { + _, err := txn.DeleteFrom("orders").Where(sqlz.Eq(string(OFHash), order.Hash)).ExecContext(db.ctx) + if err != nil { + return err + } + sqlRemoved = append(sqlRemoved, order) + } + + return nil + }) +} + func (db *DB) CountOrders(query *OrderQuery) (count int, err error) { defer func() { err = convertErr(err) diff --git a/docs/browser-bindings/browser-lite/README.md b/docs/browser-bindings/browser-lite/README.md index 260e68109..95ba1713d 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 - v10.2.1 +# @0x/mesh-browser-lite - v10.2.2 ## @0x/mesh-browser-lite diff --git a/docs/browser-bindings/browser-lite/reference.md b/docs/browser-bindings/browser-lite/reference.md index 67248605d..a39e1b8f9 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/8c9a9ef1/packages/mesh-browser-lite/src/mesh.ts#L132)_ +_Defined in [mesh.ts:132](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/mesh.ts#L129)_ +_Defined in [mesh.ts:129](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/pac ▸ **addOrdersAsync**(`orders`: SignedOrder[], `pinned`: boolean): _Promise‹[ValidationResults](#interface-validationresults)›_ -_Defined in [mesh.ts:269](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/mesh.ts#L269)_ +_Defined in [mesh.ts:269](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/mesh.ts#L207)_ +_Defined in [mesh.ts:207](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/mesh.ts#L240)_ +_Defined in [mesh.ts:240](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/mesh.ts#L190)_ +_Defined in [mesh.ts:190](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/mesh.ts#L152)_ +_Defined in [mesh.ts:152](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/mesh.ts#L165)_ +_Defined in [mesh.ts:165](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/mesh.ts#L174)_ +_Defined in [mesh.ts:174](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L505)_ +_Defined in [types.ts:505](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L505)_ --- @@ -205,7 +205,7 @@ _Defined in [types.ts:505](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ERC1155TransferBatchEvent**: = "ERC1155TransferBatchEvent" -_Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L507)_ +_Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L507)_ --- @@ -213,7 +213,7 @@ _Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ERC1155TransferSingleEvent**: = "ERC1155TransferSingleEvent" -_Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L506)_ +_Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L506)_ --- @@ -221,7 +221,7 @@ _Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ERC20ApprovalEvent**: = "ERC20ApprovalEvent" -_Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L501)_ +_Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L501)_ --- @@ -229,7 +229,7 @@ _Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ERC20TransferEvent**: = "ERC20TransferEvent" -_Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L500)_ +_Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L500)_ --- @@ -237,7 +237,7 @@ _Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ERC721ApprovalEvent**: = "ERC721ApprovalEvent" -_Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L503)_ +_Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L503)_ --- @@ -245,7 +245,7 @@ _Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ERC721ApprovalForAllEvent**: = "ERC721ApprovalForAllEvent" -_Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L504)_ +_Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L504)_ --- @@ -253,7 +253,7 @@ _Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ERC721TransferEvent**: = "ERC721TransferEvent" -_Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L502)_ +_Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L502)_ --- @@ -261,7 +261,7 @@ _Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ExchangeCancelEvent**: = "ExchangeCancelEvent" -_Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L509)_ +_Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L509)_ --- @@ -269,7 +269,7 @@ _Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ExchangeCancelUpToEvent**: = "ExchangeCancelUpToEvent" -_Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L510)_ +_Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L510)_ --- @@ -277,7 +277,7 @@ _Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ExchangeFillEvent**: = "ExchangeFillEvent" -_Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L508)_ +_Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L508)_ --- @@ -285,7 +285,7 @@ _Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **WethDepositEvent**: = "WethDepositEvent" -_Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L511)_ +_Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L511)_ --- @@ -293,7 +293,7 @@ _Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **WethWithdrawalEvent**: = "WethWithdrawalEvent" -_Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L512)_ +_Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L512)_
@@ -305,7 +305,7 @@ _Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Added**: = "ADDED" -_Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L575)_ +_Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L575)_ --- @@ -313,7 +313,7 @@ _Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Cancelled**: = "CANCELLED" -_Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L578)_ +_Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L578)_ --- @@ -321,7 +321,7 @@ _Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Expired**: = "EXPIRED" -_Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L579)_ +_Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L579)_ --- @@ -329,7 +329,7 @@ _Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **FillabilityIncreased**: = "FILLABILITY_INCREASED" -_Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L582)_ +_Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L582)_ --- @@ -337,7 +337,7 @@ _Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Filled**: = "FILLED" -_Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L576)_ +_Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L576)_ --- @@ -345,7 +345,7 @@ _Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **FullyFilled**: = "FULLY_FILLED" -_Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L577)_ +_Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L577)_ --- @@ -353,7 +353,7 @@ _Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Invalid**: = "INVALID" -_Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L574)_ +_Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L574)_ --- @@ -361,7 +361,7 @@ _Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **StoppedWatching**: = "STOPPED_WATCHING" -_Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L583)_ +_Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L583)_ --- @@ -369,7 +369,7 @@ _Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Unexpired**: = "UNEXPIRED" -_Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L580)_ +_Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L580)_ --- @@ -377,7 +377,7 @@ _Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Unfunded**: = "UNFUNDED" -_Defined in [types.ts:581](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L581)_ +_Defined in [types.ts:581](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L714)_ +_Defined in [types.ts:714](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L714)_ --- @@ -399,7 +399,7 @@ _Defined in [types.ts:714](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **MeshValidation**: = "MESH_VALIDATION" -_Defined in [types.ts:715](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L715)_ +_Defined in [types.ts:715](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L715)_ --- @@ -407,7 +407,7 @@ _Defined in [types.ts:715](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ZeroExValidation**: = "ZEROEX_VALIDATION" -_Defined in [types.ts:713](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L713)_ +_Defined in [types.ts:713](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L713)_
@@ -419,7 +419,7 @@ _Defined in [types.ts:713](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Debug**: = 5 -_Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L238)_ +_Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L238)_ --- @@ -427,7 +427,7 @@ _Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Error**: = 2 -_Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L235)_ +_Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L235)_ --- @@ -435,7 +435,7 @@ _Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Fatal**: = 1 -_Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L234)_ +_Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L234)_ --- @@ -443,7 +443,7 @@ _Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Info**: = 4 -_Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L237)_ +_Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L237)_ --- @@ -451,7 +451,7 @@ _Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Panic**: = 0 -_Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L233)_ +_Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L233)_ --- @@ -459,7 +459,7 @@ _Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Trace**: = 6 -_Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L239)_ +_Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L239)_ --- @@ -467,7 +467,7 @@ _Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Warn**: = 3 -_Defined in [types.ts:236](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L236)_ +_Defined in [types.ts:236](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L694)_ +_Defined in [types.ts:694](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L694)_ --- @@ -493,7 +493,7 @@ _Defined in [types.ts:694](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **isNew**: _boolean_ -_Defined in [types.ts:695](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L695)_ +_Defined in [types.ts:695](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L695)_ --- @@ -501,7 +501,7 @@ _Defined in [types.ts:695](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **orderHash**: _string_ -_Defined in [types.ts:692](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L692)_ +_Defined in [types.ts:692](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L692)_ --- @@ -509,7 +509,7 @@ _Defined in [types.ts:692](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:693](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L693)_ +_Defined in [types.ts:693](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L144)_ +_Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L144)_ --- @@ -535,7 +535,7 @@ _Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **bootstrapList**? : _string[]_ -_Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L137)_ +_Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L137)_ --- @@ -543,7 +543,7 @@ _Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **customContractAddresses**? : _[ContractAddresses](#interface-contractaddresses)_ -_Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L188)_ +_Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L188)_ --- @@ -551,7 +551,7 @@ _Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **customOrderFilter**? : _[JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L213)_ +_Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L213)_ --- @@ -559,7 +559,7 @@ _Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **enableEthereumRPCRateLimiting**? : _undefined | false | true_ -_Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L161)_ +_Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L161)_ --- @@ -567,7 +567,7 @@ _Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ethereumChainID**: _number_ -_Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L129)_ +_Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L129)_ --- @@ -575,7 +575,7 @@ _Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ethereumRPCMaxContentLength**? : _undefined | number_ -_Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L153)_ +_Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L153)_ --- @@ -583,7 +583,7 @@ _Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ethereumRPCMaxRequestsPer24HrUTC**? : _undefined | number_ -_Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L166)_ +_Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L166)_ --- @@ -591,7 +591,7 @@ _Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ethereumRPCMaxRequestsPerSecond**? : _undefined | number_ -_Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L172)_ +_Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L172)_ --- @@ -599,7 +599,7 @@ _Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ethereumRPCURL**? : _undefined | string_ -_Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L126)_ +_Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L126)_ --- @@ -607,7 +607,7 @@ _Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **maxBytesPerSecond**? : _undefined | number_ -_Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L219)_ +_Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L219)_ --- @@ -615,7 +615,7 @@ _Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **maxOrdersInStorage**? : _undefined | number_ -_Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L193)_ +_Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L193)_ --- @@ -623,7 +623,7 @@ _Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **useBootstrapList**? : _undefined | false | true_ -_Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L132)_ +_Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L132)_ --- @@ -631,7 +631,7 @@ _Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **verbosity**? : _[Verbosity](#enumeration-verbosity)_ -_Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L123)_ +_Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L123)_ --- @@ -639,7 +639,7 @@ _Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **web3Provider**? : _SupportedProvider_ -_Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L216)_ +_Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L216)_
@@ -655,7 +655,7 @@ _Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **devUtils**: _string_ -_Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L224)_ +_Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L224)_ --- @@ -663,7 +663,7 @@ _Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **erc1155Proxy**: _string_ -_Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L227)_ +_Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L227)_ --- @@ -671,7 +671,7 @@ _Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **erc20Proxy**: _string_ -_Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L225)_ +_Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L225)_ --- @@ -679,7 +679,7 @@ _Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **erc721Proxy**: _string_ -_Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L226)_ +_Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L226)_ --- @@ -687,7 +687,7 @@ _Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **exchange**: _string_ -_Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L223)_ +_Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L223)_ --- @@ -695,7 +695,7 @@ _Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **weth9**? : _undefined | string_ -_Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L228)_ +_Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L228)_ --- @@ -703,7 +703,7 @@ _Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **zrxToken**? : _undefined | string_ -_Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L229)_ +_Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L229)_
@@ -719,7 +719,7 @@ _Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **address**: _string_ -_Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L553)_ +_Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L553)_ --- @@ -727,7 +727,7 @@ _Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **blockHash**: _string_ -_Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L548)_ +_Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L548)_ --- @@ -735,7 +735,7 @@ _Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **isRemoved**: _boolean_ -_Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L552)_ +_Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L552)_ --- @@ -743,7 +743,7 @@ _Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **kind**: _[ContractEventKind](#enumeration-contracteventkind)_ -_Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L554)_ +_Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L554)_ --- @@ -751,7 +751,7 @@ _Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **logIndex**: _number_ -_Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L551)_ +_Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L551)_ --- @@ -759,7 +759,7 @@ _Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **parameters**: _ContractEventParameters_ -_Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L555)_ +_Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L555)_ --- @@ -767,7 +767,7 @@ _Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **txHash**: _string_ -_Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L549)_ +_Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L549)_ --- @@ -775,7 +775,7 @@ _Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **txIndex**: _number_ -_Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L550)_ +_Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L550)_
@@ -791,7 +791,7 @@ _Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **approved**: _boolean_ -_Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L417)_ +_Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L417)_ --- @@ -799,7 +799,7 @@ _Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **operator**: _string_ -_Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L416)_ +_Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L416)_ --- @@ -807,7 +807,7 @@ _Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **owner**: _string_ -_Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L415)_ +_Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L415)_
@@ -823,7 +823,7 @@ _Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **from**: _string_ -_Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L399)_ +_Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L399)_ --- @@ -831,7 +831,7 @@ _Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ids**: _BigNumber[]_ -_Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L401)_ +_Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L401)_ --- @@ -839,7 +839,7 @@ _Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **operator**: _string_ -_Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L398)_ +_Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L398)_ --- @@ -847,7 +847,7 @@ _Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **to**: _string_ -_Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L400)_ +_Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L400)_ --- @@ -855,7 +855,7 @@ _Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **values**: _BigNumber[]_ -_Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L402)_ +_Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L402)_
@@ -871,7 +871,7 @@ _Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **from**: _string_ -_Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L382)_ +_Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L382)_ --- @@ -879,7 +879,7 @@ _Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **id**: _BigNumber_ -_Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L384)_ +_Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L384)_ --- @@ -887,7 +887,7 @@ _Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **operator**: _string_ -_Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L381)_ +_Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L381)_ --- @@ -895,7 +895,7 @@ _Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **to**: _string_ -_Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L383)_ +_Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L383)_ --- @@ -903,7 +903,7 @@ _Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **value**: _BigNumber_ -_Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L385)_ +_Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L385)_
@@ -919,7 +919,7 @@ _Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **owner**: _string_ -_Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L336)_ +_Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L336)_ --- @@ -927,7 +927,7 @@ _Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **spender**: _string_ -_Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L337)_ +_Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L337)_ --- @@ -935,7 +935,7 @@ _Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **value**: _BigNumber_ -_Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L338)_ +_Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L338)_
@@ -951,7 +951,7 @@ _Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **from**: _string_ -_Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L323)_ +_Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L323)_ --- @@ -959,7 +959,7 @@ _Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **to**: _string_ -_Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L324)_ +_Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L324)_ --- @@ -967,7 +967,7 @@ _Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **value**: _BigNumber_ -_Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L325)_ +_Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L325)_
@@ -983,7 +983,7 @@ _Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **approved**: _string_ -_Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L363)_ +_Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L363)_ --- @@ -991,7 +991,7 @@ _Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **owner**: _string_ -_Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L362)_ +_Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L362)_ --- @@ -999,7 +999,7 @@ _Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **tokenId**: _BigNumber_ -_Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L364)_ +_Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L364)_
@@ -1015,7 +1015,7 @@ _Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **approved**: _boolean_ -_Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L377)_ +_Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L377)_ --- @@ -1023,7 +1023,7 @@ _Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **operator**: _string_ -_Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L376)_ +_Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L376)_ --- @@ -1031,7 +1031,7 @@ _Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **owner**: _string_ -_Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L375)_ +_Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L375)_
@@ -1047,7 +1047,7 @@ _Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **from**: _string_ -_Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L349)_ +_Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L349)_ --- @@ -1055,7 +1055,7 @@ _Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **to**: _string_ -_Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L350)_ +_Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L350)_ --- @@ -1063,7 +1063,7 @@ _Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **tokenId**: _BigNumber_ -_Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L351)_ +_Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L351)_
@@ -1079,7 +1079,7 @@ _Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **feeRecipientAddress**: _string_ -_Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L458)_ +_Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L458)_ --- @@ -1087,7 +1087,7 @@ _Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **makerAddress**: _string_ -_Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L456)_ +_Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L456)_ --- @@ -1095,7 +1095,7 @@ _Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **makerAssetData**: _string_ -_Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L460)_ +_Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L460)_ --- @@ -1103,7 +1103,7 @@ _Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **orderHash**: _string_ -_Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L459)_ +_Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L459)_ --- @@ -1111,7 +1111,7 @@ _Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **senderAddress**: _string_ -_Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L457)_ +_Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L457)_ --- @@ -1119,7 +1119,7 @@ _Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **takerAssetData**: _string_ -_Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L461)_ +_Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L461)_
@@ -1135,7 +1135,7 @@ _Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **makerAddress**: _string_ -_Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L465)_ +_Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L465)_ --- @@ -1143,7 +1143,7 @@ _Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **orderEpoch**: _BigNumber_ -_Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L467)_ +_Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L467)_ --- @@ -1151,7 +1151,7 @@ _Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **orderSenderAddress**: _string_ -_Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L466)_ +_Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L466)_
@@ -1167,7 +1167,7 @@ _Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **feeRecipientAddress**: _string_ -_Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L424)_ +_Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L424)_ --- @@ -1175,7 +1175,7 @@ _Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **makerAddress**: _string_ -_Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L421)_ +_Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L421)_ --- @@ -1183,7 +1183,7 @@ _Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **makerAssetData**: _string_ -_Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L431)_ +_Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L431)_ --- @@ -1191,7 +1191,7 @@ _Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **makerAssetFilledAmount**: _BigNumber_ -_Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L425)_ +_Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L425)_ --- @@ -1199,7 +1199,7 @@ _Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **makerFeeAssetData**: _string_ -_Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L433)_ +_Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L433)_ --- @@ -1207,7 +1207,7 @@ _Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **makerFeePaid**: _BigNumber_ -_Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L427)_ +_Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L427)_ --- @@ -1215,7 +1215,7 @@ _Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **orderHash**: _string_ -_Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L430)_ +_Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L430)_ --- @@ -1223,7 +1223,7 @@ _Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **protocolFeePaid**: _BigNumber_ -_Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L429)_ +_Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L429)_ --- @@ -1231,7 +1231,7 @@ _Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **senderAddress**: _string_ -_Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L423)_ +_Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L423)_ --- @@ -1239,7 +1239,7 @@ _Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **takerAddress**: _string_ -_Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L422)_ +_Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L422)_ --- @@ -1247,7 +1247,7 @@ _Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **takerAssetData**: _string_ -_Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L432)_ +_Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L432)_ --- @@ -1255,7 +1255,7 @@ _Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **takerAssetFilledAmount**: _BigNumber_ -_Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L426)_ +_Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L426)_ --- @@ -1263,7 +1263,7 @@ _Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **takerFeeAssetData**: _string_ -_Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L434)_ +_Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L434)_ --- @@ -1271,7 +1271,7 @@ _Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **takerFeePaid**: _BigNumber_ -_Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L428)_ +_Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L428)_
@@ -1287,7 +1287,7 @@ _Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ordersInfos**: _[OrderInfo](#interface-orderinfo)[]_ -_Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L45)_ +_Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L45)_ --- @@ -1295,7 +1295,7 @@ _Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **timestamp**: _number_ -_Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L44)_ +_Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L67)_ +_Defined in [types.ts:67](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L67)_ --- @@ -1321,7 +1321,7 @@ _Defined in [types.ts:67](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **\$schema**? : _undefined | string_ -_Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L66)_ +_Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L66)_ --- @@ -1329,7 +1329,7 @@ _Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **additionalItems**? : _boolean | [JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L78)_ +_Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L78)_ --- @@ -1337,7 +1337,7 @@ _Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **additionalProperties**? : _boolean | [JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L86)_ +_Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L86)_ --- @@ -1345,7 +1345,7 @@ _Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **allOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L108)_ +_Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L108)_ --- @@ -1353,7 +1353,7 @@ _Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **anyOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L109)_ +_Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L109)_ --- @@ -1361,7 +1361,7 @@ _Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **const**? : _any_ -_Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L105)_ +_Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L105)_ --- @@ -1369,7 +1369,7 @@ _Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **definitions**? : _undefined | object_ -_Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L87)_ +_Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L87)_ --- @@ -1377,7 +1377,7 @@ _Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **dependencies**? : _undefined | object_ -_Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L96)_ +_Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L96)_ --- @@ -1385,7 +1385,7 @@ _Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **description**? : _undefined | string_ -_Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L69)_ +_Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L69)_ --- @@ -1393,7 +1393,7 @@ _Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **enum**? : _any[]_ -_Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L99)_ +_Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L99)_ --- @@ -1401,7 +1401,7 @@ _Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **exclusiveMaximum**? : _undefined | false | true_ -_Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L72)_ +_Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L72)_ --- @@ -1409,7 +1409,7 @@ _Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **exclusiveMinimum**? : _undefined | false | true_ -_Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L74)_ +_Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L74)_ --- @@ -1417,7 +1417,7 @@ _Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **format**? : _undefined | string_ -_Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L107)_ +_Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L107)_ --- @@ -1425,7 +1425,7 @@ _Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **id**? : _undefined | string_ -_Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L65)_ +_Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L65)_ --- @@ -1433,7 +1433,7 @@ _Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **items**? : _[JsonSchema](#interface-jsonschema) | [JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L79)_ +_Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L79)_ --- @@ -1441,7 +1441,7 @@ _Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **maxItems**? : _undefined | number_ -_Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L80)_ +_Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L80)_ --- @@ -1449,7 +1449,7 @@ _Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **maxLength**? : _undefined | number_ -_Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L75)_ +_Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L75)_ --- @@ -1457,7 +1457,7 @@ _Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **maxProperties**? : _undefined | number_ -_Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L83)_ +_Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L83)_ --- @@ -1465,7 +1465,7 @@ _Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **maximum**? : _undefined | number_ -_Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L71)_ +_Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L71)_ --- @@ -1473,7 +1473,7 @@ _Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **minItems**? : _undefined | number_ -_Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L81)_ +_Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L81)_ --- @@ -1481,7 +1481,7 @@ _Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **minLength**? : _undefined | number_ -_Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L76)_ +_Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L76)_ --- @@ -1489,7 +1489,7 @@ _Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **minProperties**? : _undefined | number_ -_Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L84)_ +_Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L84)_ --- @@ -1497,7 +1497,7 @@ _Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **minimum**? : _undefined | number_ -_Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L73)_ +_Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L73)_ --- @@ -1505,7 +1505,7 @@ _Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **multipleOf**? : _undefined | number_ -_Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L70)_ +_Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L70)_ --- @@ -1513,7 +1513,7 @@ _Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **not**? : _[JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L111)_ +_Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L111)_ --- @@ -1521,7 +1521,7 @@ _Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **oneOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L110)_ +_Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L110)_ --- @@ -1529,7 +1529,7 @@ _Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **pattern**? : _string | RegExp_ -_Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L77)_ +_Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L77)_ --- @@ -1537,7 +1537,7 @@ _Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **patternProperties**? : _undefined | object_ -_Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L93)_ +_Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L93)_ --- @@ -1545,7 +1545,7 @@ _Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **properties**? : _undefined | object_ -_Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L90)_ +_Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L90)_ --- @@ -1553,7 +1553,7 @@ _Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **required**? : _string[]_ -_Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L85)_ +_Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L85)_ --- @@ -1561,7 +1561,7 @@ _Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **title**? : _undefined | string_ -_Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L68)_ +_Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L68)_ --- @@ -1569,7 +1569,7 @@ _Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **type**? : _string | string[]_ -_Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L106)_ +_Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L106)_ --- @@ -1577,7 +1577,7 @@ _Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **uniqueItems**? : _undefined | false | true_ -_Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L82)_ +_Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L82)_
@@ -1593,7 +1593,7 @@ _Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **hash**: _string_ -_Defined in [types.ts:734](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L734)_ +_Defined in [types.ts:734](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L734)_ --- @@ -1601,7 +1601,7 @@ _Defined in [types.ts:734](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **number**: _BigNumber_ -_Defined in [types.ts:733](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L733)_ +_Defined in [types.ts:733](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L606)_ +_Defined in [types.ts:606](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L606)_ --- @@ -1628,7 +1628,7 @@ _Defined in [types.ts:606](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **endState**: _[OrderEventEndState](#enumeration-ordereventendstate)_ -_Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L604)_ +_Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L604)_ --- @@ -1636,7 +1636,7 @@ _Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L605)_ +_Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L605)_ --- @@ -1644,7 +1644,7 @@ _Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **orderHash**: _string_ -_Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L602)_ +_Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L602)_ --- @@ -1652,7 +1652,7 @@ _Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L603)_ +_Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L603)_ --- @@ -1660,7 +1660,7 @@ _Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **timestampMs**: _number_ -_Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L601)_ +_Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L601)_
@@ -1676,7 +1676,7 @@ _Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L58)_ +_Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L58)_ --- @@ -1684,7 +1684,7 @@ _Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **orderHash**: _string_ -_Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L56)_ +_Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L56)_ --- @@ -1692,7 +1692,7 @@ _Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L57)_ +_Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L705)_ +_Defined in [types.ts:705](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L705)_ --- @@ -1719,7 +1719,7 @@ _Defined in [types.ts:705](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **orderHash**: _string_ -_Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L703)_ +_Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L703)_ --- @@ -1727,7 +1727,7 @@ _Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L704)_ +_Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L704)_ --- @@ -1735,7 +1735,7 @@ _Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **status**: _[RejectedOrderStatus](#interface-rejectedorderstatus)_ -_Defined in [types.ts:706](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L706)_ +_Defined in [types.ts:706](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L722)_ +_Defined in [types.ts:722](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L722)_ --- @@ -1761,7 +1761,7 @@ _Defined in [types.ts:722](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **message**: _string_ -_Defined in [types.ts:723](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L723)_ +_Defined in [types.ts:723](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L723)_
@@ -1777,7 +1777,7 @@ _Defined in [types.ts:723](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ethRPCRateLimitExpiredRequests**: _number_ -_Defined in [types.ts:771](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L771)_ +_Defined in [types.ts:771](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L771)_ --- @@ -1785,7 +1785,7 @@ _Defined in [types.ts:771](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ethRPCRequestsSentInCurrentUTCDay**: _number_ -_Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L770)_ +_Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L770)_ --- @@ -1793,7 +1793,7 @@ _Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ethereumChainID**: _number_ -_Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L762)_ +_Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L762)_ --- @@ -1801,7 +1801,7 @@ _Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **latestBlock**? : _[LatestBlock](#interface-latestblock)_ -_Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L763)_ +_Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L763)_ --- @@ -1809,7 +1809,7 @@ _Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **maxExpirationTime**: _BigNumber_ -_Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L768)_ +_Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L768)_ --- @@ -1817,7 +1817,7 @@ _Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **numOrders**: _number_ -_Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L765)_ +_Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L765)_ --- @@ -1825,7 +1825,7 @@ _Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **numOrdersIncludingRemoved**: _number_ -_Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L766)_ +_Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L766)_ --- @@ -1833,7 +1833,7 @@ _Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **numPeers**: _number_ -_Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L764)_ +_Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L764)_ --- @@ -1841,7 +1841,7 @@ _Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **numPinnedOrders**: _number_ -_Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L767)_ +_Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L767)_ --- @@ -1849,7 +1849,7 @@ _Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **peerID**: _string_ -_Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L761)_ +_Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L761)_ --- @@ -1857,7 +1857,7 @@ _Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **pubSubTopic**: _string_ -_Defined in [types.ts:758](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L758)_ +_Defined in [types.ts:758](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L758)_ --- @@ -1865,7 +1865,7 @@ _Defined in [types.ts:758](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **rendezvous**: _string_ -_Defined in [types.ts:759](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L759)_ +_Defined in [types.ts:759](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L759)_ --- @@ -1873,7 +1873,7 @@ _Defined in [types.ts:759](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **secondaryRendezvous**: _string[]_ -_Defined in [types.ts:760](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L760)_ +_Defined in [types.ts:760](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L760)_ --- @@ -1881,7 +1881,7 @@ _Defined in [types.ts:760](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **startOfCurrentUTCDay**: _Date_ -_Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L769)_ +_Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L769)_ --- @@ -1889,7 +1889,7 @@ _Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **version**: _string_ -_Defined in [types.ts:757](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L757)_ +_Defined in [types.ts:757](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L757)_
@@ -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/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L684)_ +_Defined in [types.ts:684](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L684)_ --- @@ -1915,7 +1915,7 @@ _Defined in [types.ts:684](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **rejected**: _[RejectedOrderInfo](#interface-rejectedorderinfo)[]_ -_Defined in [types.ts:685](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L685)_ +_Defined in [types.ts:685](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L685)_
@@ -1931,7 +1931,7 @@ _Defined in [types.ts:685](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **owner**: _string_ -_Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L489)_ +_Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L489)_ --- @@ -1939,7 +1939,7 @@ _Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **value**: _BigNumber_ -_Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L490)_ +_Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L490)_
@@ -1955,7 +1955,7 @@ _Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **owner**: _string_ -_Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L478)_ +_Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L478)_ --- @@ -1963,7 +1963,7 @@ _Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **value**: _BigNumber_ -_Defined in [types.ts:479](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L479)_ +_Defined in [types.ts:479](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L479)_
@@ -1973,7 +1973,7 @@ _Defined in [types.ts:479](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa ▸ **loadMeshStreamingWithURLAsync**(`url`: `string`): _Promise‹`void`›_ -_Defined in [index.ts:7](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/index.ts#L7)_ +_Defined in [index.ts:7](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/index.ts#L15)_ +_Defined in [index.ts:15](https://github.com/0xProject/0x-mesh/blob/370d182e/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 a9ed13ffd..262c28df0 100644 --- a/docs/browser-bindings/browser/README.md +++ b/docs/browser-bindings/browser/README.md @@ -1,4 +1,4 @@ -# @0x/mesh-browser - v10.2.1 +# @0x/mesh-browser - v10.2.2 ## @0x/mesh-browser diff --git a/docs/browser-bindings/browser/reference.md b/docs/browser-bindings/browser/reference.md index 61a4d2b7e..5d7b0433d 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/8c9a9ef1/packages/mesh-browser-lite/src/mesh.ts#L132)_ +_Defined in [mesh.ts:132](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/mesh.ts#L129)_ +_Defined in [mesh.ts:129](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/pac ▸ **addOrdersAsync**(`orders`: SignedOrder[], `pinned`: boolean): _Promise‹[ValidationResults](#interface-validationresults)›_ -_Defined in [mesh.ts:269](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/mesh.ts#L269)_ +_Defined in [mesh.ts:269](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/mesh.ts#L207)_ +_Defined in [mesh.ts:207](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/mesh.ts#L240)_ +_Defined in [mesh.ts:240](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/mesh.ts#L190)_ +_Defined in [mesh.ts:190](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/mesh.ts#L152)_ +_Defined in [mesh.ts:152](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/mesh.ts#L165)_ +_Defined in [mesh.ts:165](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/mesh.ts#L174)_ +_Defined in [mesh.ts:174](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L505)_ +_Defined in [types.ts:505](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L505)_ --- @@ -205,7 +205,7 @@ _Defined in [types.ts:505](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ERC1155TransferBatchEvent**: = "ERC1155TransferBatchEvent" -_Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L507)_ +_Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L507)_ --- @@ -213,7 +213,7 @@ _Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ERC1155TransferSingleEvent**: = "ERC1155TransferSingleEvent" -_Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L506)_ +_Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L506)_ --- @@ -221,7 +221,7 @@ _Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ERC20ApprovalEvent**: = "ERC20ApprovalEvent" -_Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L501)_ +_Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L501)_ --- @@ -229,7 +229,7 @@ _Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ERC20TransferEvent**: = "ERC20TransferEvent" -_Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L500)_ +_Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L500)_ --- @@ -237,7 +237,7 @@ _Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ERC721ApprovalEvent**: = "ERC721ApprovalEvent" -_Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L503)_ +_Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L503)_ --- @@ -245,7 +245,7 @@ _Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ERC721ApprovalForAllEvent**: = "ERC721ApprovalForAllEvent" -_Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L504)_ +_Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L504)_ --- @@ -253,7 +253,7 @@ _Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ERC721TransferEvent**: = "ERC721TransferEvent" -_Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L502)_ +_Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L502)_ --- @@ -261,7 +261,7 @@ _Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ExchangeCancelEvent**: = "ExchangeCancelEvent" -_Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L509)_ +_Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L509)_ --- @@ -269,7 +269,7 @@ _Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ExchangeCancelUpToEvent**: = "ExchangeCancelUpToEvent" -_Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L510)_ +_Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L510)_ --- @@ -277,7 +277,7 @@ _Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ExchangeFillEvent**: = "ExchangeFillEvent" -_Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L508)_ +_Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L508)_ --- @@ -285,7 +285,7 @@ _Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **WethDepositEvent**: = "WethDepositEvent" -_Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L511)_ +_Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L511)_ --- @@ -293,7 +293,7 @@ _Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **WethWithdrawalEvent**: = "WethWithdrawalEvent" -_Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L512)_ +_Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L512)_
@@ -305,7 +305,7 @@ _Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Added**: = "ADDED" -_Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L575)_ +_Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L575)_ --- @@ -313,7 +313,7 @@ _Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Cancelled**: = "CANCELLED" -_Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L578)_ +_Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L578)_ --- @@ -321,7 +321,7 @@ _Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Expired**: = "EXPIRED" -_Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L579)_ +_Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L579)_ --- @@ -329,7 +329,7 @@ _Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **FillabilityIncreased**: = "FILLABILITY_INCREASED" -_Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L582)_ +_Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L582)_ --- @@ -337,7 +337,7 @@ _Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Filled**: = "FILLED" -_Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L576)_ +_Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L576)_ --- @@ -345,7 +345,7 @@ _Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **FullyFilled**: = "FULLY_FILLED" -_Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L577)_ +_Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L577)_ --- @@ -353,7 +353,7 @@ _Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Invalid**: = "INVALID" -_Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L574)_ +_Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L574)_ --- @@ -361,7 +361,7 @@ _Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **StoppedWatching**: = "STOPPED_WATCHING" -_Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L583)_ +_Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L583)_ --- @@ -369,7 +369,7 @@ _Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Unexpired**: = "UNEXPIRED" -_Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L580)_ +_Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L580)_ --- @@ -377,7 +377,7 @@ _Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Unfunded**: = "UNFUNDED" -_Defined in [types.ts:581](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L581)_ +_Defined in [types.ts:581](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L714)_ +_Defined in [types.ts:714](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L714)_ --- @@ -399,7 +399,7 @@ _Defined in [types.ts:714](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **MeshValidation**: = "MESH_VALIDATION" -_Defined in [types.ts:715](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L715)_ +_Defined in [types.ts:715](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L715)_ --- @@ -407,7 +407,7 @@ _Defined in [types.ts:715](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ZeroExValidation**: = "ZEROEX_VALIDATION" -_Defined in [types.ts:713](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L713)_ +_Defined in [types.ts:713](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L713)_
@@ -419,7 +419,7 @@ _Defined in [types.ts:713](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Debug**: = 5 -_Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L238)_ +_Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L238)_ --- @@ -427,7 +427,7 @@ _Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Error**: = 2 -_Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L235)_ +_Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L235)_ --- @@ -435,7 +435,7 @@ _Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Fatal**: = 1 -_Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L234)_ +_Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L234)_ --- @@ -443,7 +443,7 @@ _Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Info**: = 4 -_Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L237)_ +_Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L237)_ --- @@ -451,7 +451,7 @@ _Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Panic**: = 0 -_Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L233)_ +_Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L233)_ --- @@ -459,7 +459,7 @@ _Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Trace**: = 6 -_Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L239)_ +_Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L239)_ --- @@ -467,7 +467,7 @@ _Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **Warn**: = 3 -_Defined in [types.ts:236](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L236)_ +_Defined in [types.ts:236](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L694)_ +_Defined in [types.ts:694](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L694)_ --- @@ -493,7 +493,7 @@ _Defined in [types.ts:694](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **isNew**: _boolean_ -_Defined in [types.ts:695](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L695)_ +_Defined in [types.ts:695](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L695)_ --- @@ -501,7 +501,7 @@ _Defined in [types.ts:695](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **orderHash**: _string_ -_Defined in [types.ts:692](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L692)_ +_Defined in [types.ts:692](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L692)_ --- @@ -509,7 +509,7 @@ _Defined in [types.ts:692](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:693](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L693)_ +_Defined in [types.ts:693](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L144)_ +_Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L144)_ --- @@ -535,7 +535,7 @@ _Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **bootstrapList**? : _string[]_ -_Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L137)_ +_Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L137)_ --- @@ -543,7 +543,7 @@ _Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **customContractAddresses**? : _[ContractAddresses](#interface-contractaddresses)_ -_Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L188)_ +_Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L188)_ --- @@ -551,7 +551,7 @@ _Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **customOrderFilter**? : _[JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L213)_ +_Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L213)_ --- @@ -559,7 +559,7 @@ _Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **enableEthereumRPCRateLimiting**? : _undefined | false | true_ -_Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L161)_ +_Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L161)_ --- @@ -567,7 +567,7 @@ _Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ethereumChainID**: _number_ -_Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L129)_ +_Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L129)_ --- @@ -575,7 +575,7 @@ _Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ethereumRPCMaxContentLength**? : _undefined | number_ -_Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L153)_ +_Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L153)_ --- @@ -583,7 +583,7 @@ _Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ethereumRPCMaxRequestsPer24HrUTC**? : _undefined | number_ -_Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L166)_ +_Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L166)_ --- @@ -591,7 +591,7 @@ _Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ethereumRPCMaxRequestsPerSecond**? : _undefined | number_ -_Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L172)_ +_Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L172)_ --- @@ -599,7 +599,7 @@ _Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ethereumRPCURL**? : _undefined | string_ -_Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L126)_ +_Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L126)_ --- @@ -607,7 +607,7 @@ _Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **maxBytesPerSecond**? : _undefined | number_ -_Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L219)_ +_Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L219)_ --- @@ -615,7 +615,7 @@ _Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **maxOrdersInStorage**? : _undefined | number_ -_Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L193)_ +_Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L193)_ --- @@ -623,7 +623,7 @@ _Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **useBootstrapList**? : _undefined | false | true_ -_Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L132)_ +_Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L132)_ --- @@ -631,7 +631,7 @@ _Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **verbosity**? : _[Verbosity](#enumeration-verbosity)_ -_Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L123)_ +_Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L123)_ --- @@ -639,7 +639,7 @@ _Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **web3Provider**? : _SupportedProvider_ -_Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L216)_ +_Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L216)_
@@ -655,7 +655,7 @@ _Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **devUtils**: _string_ -_Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L224)_ +_Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L224)_ --- @@ -663,7 +663,7 @@ _Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **erc1155Proxy**: _string_ -_Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L227)_ +_Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L227)_ --- @@ -671,7 +671,7 @@ _Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **erc20Proxy**: _string_ -_Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L225)_ +_Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L225)_ --- @@ -679,7 +679,7 @@ _Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **erc721Proxy**: _string_ -_Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L226)_ +_Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L226)_ --- @@ -687,7 +687,7 @@ _Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **exchange**: _string_ -_Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L223)_ +_Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L223)_ --- @@ -695,7 +695,7 @@ _Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **weth9**? : _undefined | string_ -_Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L228)_ +_Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L228)_ --- @@ -703,7 +703,7 @@ _Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **zrxToken**? : _undefined | string_ -_Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L229)_ +_Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L229)_
@@ -719,7 +719,7 @@ _Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **address**: _string_ -_Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L553)_ +_Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L553)_ --- @@ -727,7 +727,7 @@ _Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **blockHash**: _string_ -_Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L548)_ +_Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L548)_ --- @@ -735,7 +735,7 @@ _Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **isRemoved**: _boolean_ -_Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L552)_ +_Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L552)_ --- @@ -743,7 +743,7 @@ _Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **kind**: _[ContractEventKind](#enumeration-contracteventkind)_ -_Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L554)_ +_Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L554)_ --- @@ -751,7 +751,7 @@ _Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **logIndex**: _number_ -_Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L551)_ +_Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L551)_ --- @@ -759,7 +759,7 @@ _Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **parameters**: _ContractEventParameters_ -_Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L555)_ +_Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L555)_ --- @@ -767,7 +767,7 @@ _Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **txHash**: _string_ -_Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L549)_ +_Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L549)_ --- @@ -775,7 +775,7 @@ _Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **txIndex**: _number_ -_Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L550)_ +_Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L550)_
@@ -791,7 +791,7 @@ _Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **approved**: _boolean_ -_Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L417)_ +_Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L417)_ --- @@ -799,7 +799,7 @@ _Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **operator**: _string_ -_Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L416)_ +_Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L416)_ --- @@ -807,7 +807,7 @@ _Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **owner**: _string_ -_Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L415)_ +_Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L415)_
@@ -823,7 +823,7 @@ _Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **from**: _string_ -_Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L399)_ +_Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L399)_ --- @@ -831,7 +831,7 @@ _Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ids**: _BigNumber[]_ -_Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L401)_ +_Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L401)_ --- @@ -839,7 +839,7 @@ _Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **operator**: _string_ -_Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L398)_ +_Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L398)_ --- @@ -847,7 +847,7 @@ _Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **to**: _string_ -_Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L400)_ +_Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L400)_ --- @@ -855,7 +855,7 @@ _Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **values**: _BigNumber[]_ -_Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L402)_ +_Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L402)_
@@ -871,7 +871,7 @@ _Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **from**: _string_ -_Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L382)_ +_Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L382)_ --- @@ -879,7 +879,7 @@ _Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **id**: _BigNumber_ -_Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L384)_ +_Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L384)_ --- @@ -887,7 +887,7 @@ _Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **operator**: _string_ -_Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L381)_ +_Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L381)_ --- @@ -895,7 +895,7 @@ _Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **to**: _string_ -_Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L383)_ +_Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L383)_ --- @@ -903,7 +903,7 @@ _Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **value**: _BigNumber_ -_Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L385)_ +_Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L385)_
@@ -919,7 +919,7 @@ _Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **owner**: _string_ -_Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L336)_ +_Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L336)_ --- @@ -927,7 +927,7 @@ _Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **spender**: _string_ -_Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L337)_ +_Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L337)_ --- @@ -935,7 +935,7 @@ _Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **value**: _BigNumber_ -_Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L338)_ +_Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L338)_
@@ -951,7 +951,7 @@ _Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **from**: _string_ -_Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L323)_ +_Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L323)_ --- @@ -959,7 +959,7 @@ _Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **to**: _string_ -_Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L324)_ +_Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L324)_ --- @@ -967,7 +967,7 @@ _Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **value**: _BigNumber_ -_Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L325)_ +_Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L325)_
@@ -983,7 +983,7 @@ _Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **approved**: _string_ -_Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L363)_ +_Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L363)_ --- @@ -991,7 +991,7 @@ _Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **owner**: _string_ -_Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L362)_ +_Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L362)_ --- @@ -999,7 +999,7 @@ _Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **tokenId**: _BigNumber_ -_Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L364)_ +_Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L364)_
@@ -1015,7 +1015,7 @@ _Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **approved**: _boolean_ -_Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L377)_ +_Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L377)_ --- @@ -1023,7 +1023,7 @@ _Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **operator**: _string_ -_Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L376)_ +_Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L376)_ --- @@ -1031,7 +1031,7 @@ _Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **owner**: _string_ -_Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L375)_ +_Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L375)_
@@ -1047,7 +1047,7 @@ _Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **from**: _string_ -_Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L349)_ +_Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L349)_ --- @@ -1055,7 +1055,7 @@ _Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **to**: _string_ -_Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L350)_ +_Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L350)_ --- @@ -1063,7 +1063,7 @@ _Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **tokenId**: _BigNumber_ -_Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L351)_ +_Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L351)_
@@ -1079,7 +1079,7 @@ _Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **feeRecipientAddress**: _string_ -_Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L458)_ +_Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L458)_ --- @@ -1087,7 +1087,7 @@ _Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **makerAddress**: _string_ -_Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L456)_ +_Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L456)_ --- @@ -1095,7 +1095,7 @@ _Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **makerAssetData**: _string_ -_Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L460)_ +_Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L460)_ --- @@ -1103,7 +1103,7 @@ _Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **orderHash**: _string_ -_Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L459)_ +_Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L459)_ --- @@ -1111,7 +1111,7 @@ _Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **senderAddress**: _string_ -_Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L457)_ +_Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L457)_ --- @@ -1119,7 +1119,7 @@ _Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **takerAssetData**: _string_ -_Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L461)_ +_Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L461)_
@@ -1135,7 +1135,7 @@ _Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **makerAddress**: _string_ -_Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L465)_ +_Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L465)_ --- @@ -1143,7 +1143,7 @@ _Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **orderEpoch**: _BigNumber_ -_Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L467)_ +_Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L467)_ --- @@ -1151,7 +1151,7 @@ _Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **orderSenderAddress**: _string_ -_Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L466)_ +_Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L466)_
@@ -1167,7 +1167,7 @@ _Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **feeRecipientAddress**: _string_ -_Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L424)_ +_Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L424)_ --- @@ -1175,7 +1175,7 @@ _Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **makerAddress**: _string_ -_Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L421)_ +_Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L421)_ --- @@ -1183,7 +1183,7 @@ _Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **makerAssetData**: _string_ -_Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L431)_ +_Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L431)_ --- @@ -1191,7 +1191,7 @@ _Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **makerAssetFilledAmount**: _BigNumber_ -_Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L425)_ +_Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L425)_ --- @@ -1199,7 +1199,7 @@ _Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **makerFeeAssetData**: _string_ -_Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L433)_ +_Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L433)_ --- @@ -1207,7 +1207,7 @@ _Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **makerFeePaid**: _BigNumber_ -_Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L427)_ +_Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L427)_ --- @@ -1215,7 +1215,7 @@ _Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **orderHash**: _string_ -_Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L430)_ +_Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L430)_ --- @@ -1223,7 +1223,7 @@ _Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **protocolFeePaid**: _BigNumber_ -_Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L429)_ +_Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L429)_ --- @@ -1231,7 +1231,7 @@ _Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **senderAddress**: _string_ -_Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L423)_ +_Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L423)_ --- @@ -1239,7 +1239,7 @@ _Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **takerAddress**: _string_ -_Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L422)_ +_Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L422)_ --- @@ -1247,7 +1247,7 @@ _Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **takerAssetData**: _string_ -_Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L432)_ +_Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L432)_ --- @@ -1255,7 +1255,7 @@ _Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **takerAssetFilledAmount**: _BigNumber_ -_Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L426)_ +_Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L426)_ --- @@ -1263,7 +1263,7 @@ _Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **takerFeeAssetData**: _string_ -_Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L434)_ +_Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L434)_ --- @@ -1271,7 +1271,7 @@ _Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **takerFeePaid**: _BigNumber_ -_Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L428)_ +_Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L428)_
@@ -1287,7 +1287,7 @@ _Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ordersInfos**: _[OrderInfo](#interface-orderinfo)[]_ -_Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L45)_ +_Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L45)_ --- @@ -1295,7 +1295,7 @@ _Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **timestamp**: _number_ -_Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L44)_ +_Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L67)_ +_Defined in [types.ts:67](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L67)_ --- @@ -1321,7 +1321,7 @@ _Defined in [types.ts:67](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **\$schema**? : _undefined | string_ -_Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L66)_ +_Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L66)_ --- @@ -1329,7 +1329,7 @@ _Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **additionalItems**? : _boolean | [JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L78)_ +_Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L78)_ --- @@ -1337,7 +1337,7 @@ _Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **additionalProperties**? : _boolean | [JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L86)_ +_Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L86)_ --- @@ -1345,7 +1345,7 @@ _Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **allOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L108)_ +_Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L108)_ --- @@ -1353,7 +1353,7 @@ _Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **anyOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L109)_ +_Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L109)_ --- @@ -1361,7 +1361,7 @@ _Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **const**? : _any_ -_Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L105)_ +_Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L105)_ --- @@ -1369,7 +1369,7 @@ _Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **definitions**? : _undefined | object_ -_Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L87)_ +_Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L87)_ --- @@ -1377,7 +1377,7 @@ _Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **dependencies**? : _undefined | object_ -_Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L96)_ +_Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L96)_ --- @@ -1385,7 +1385,7 @@ _Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **description**? : _undefined | string_ -_Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L69)_ +_Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L69)_ --- @@ -1393,7 +1393,7 @@ _Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **enum**? : _any[]_ -_Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L99)_ +_Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L99)_ --- @@ -1401,7 +1401,7 @@ _Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **exclusiveMaximum**? : _undefined | false | true_ -_Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L72)_ +_Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L72)_ --- @@ -1409,7 +1409,7 @@ _Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **exclusiveMinimum**? : _undefined | false | true_ -_Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L74)_ +_Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L74)_ --- @@ -1417,7 +1417,7 @@ _Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **format**? : _undefined | string_ -_Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L107)_ +_Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L107)_ --- @@ -1425,7 +1425,7 @@ _Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **id**? : _undefined | string_ -_Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L65)_ +_Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L65)_ --- @@ -1433,7 +1433,7 @@ _Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **items**? : _[JsonSchema](#interface-jsonschema) | [JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L79)_ +_Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L79)_ --- @@ -1441,7 +1441,7 @@ _Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **maxItems**? : _undefined | number_ -_Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L80)_ +_Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L80)_ --- @@ -1449,7 +1449,7 @@ _Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **maxLength**? : _undefined | number_ -_Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L75)_ +_Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L75)_ --- @@ -1457,7 +1457,7 @@ _Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **maxProperties**? : _undefined | number_ -_Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L83)_ +_Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L83)_ --- @@ -1465,7 +1465,7 @@ _Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **maximum**? : _undefined | number_ -_Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L71)_ +_Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L71)_ --- @@ -1473,7 +1473,7 @@ _Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **minItems**? : _undefined | number_ -_Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L81)_ +_Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L81)_ --- @@ -1481,7 +1481,7 @@ _Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **minLength**? : _undefined | number_ -_Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L76)_ +_Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L76)_ --- @@ -1489,7 +1489,7 @@ _Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **minProperties**? : _undefined | number_ -_Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L84)_ +_Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L84)_ --- @@ -1497,7 +1497,7 @@ _Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **minimum**? : _undefined | number_ -_Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L73)_ +_Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L73)_ --- @@ -1505,7 +1505,7 @@ _Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **multipleOf**? : _undefined | number_ -_Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L70)_ +_Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L70)_ --- @@ -1513,7 +1513,7 @@ _Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **not**? : _[JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L111)_ +_Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L111)_ --- @@ -1521,7 +1521,7 @@ _Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **oneOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L110)_ +_Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L110)_ --- @@ -1529,7 +1529,7 @@ _Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **pattern**? : _string | RegExp_ -_Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L77)_ +_Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L77)_ --- @@ -1537,7 +1537,7 @@ _Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **patternProperties**? : _undefined | object_ -_Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L93)_ +_Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L93)_ --- @@ -1545,7 +1545,7 @@ _Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **properties**? : _undefined | object_ -_Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L90)_ +_Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L90)_ --- @@ -1553,7 +1553,7 @@ _Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **required**? : _string[]_ -_Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L85)_ +_Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L85)_ --- @@ -1561,7 +1561,7 @@ _Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **title**? : _undefined | string_ -_Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L68)_ +_Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L68)_ --- @@ -1569,7 +1569,7 @@ _Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **type**? : _string | string[]_ -_Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L106)_ +_Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L106)_ --- @@ -1577,7 +1577,7 @@ _Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **uniqueItems**? : _undefined | false | true_ -_Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L82)_ +_Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L82)_
@@ -1593,7 +1593,7 @@ _Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **hash**: _string_ -_Defined in [types.ts:734](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L734)_ +_Defined in [types.ts:734](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L734)_ --- @@ -1601,7 +1601,7 @@ _Defined in [types.ts:734](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **number**: _BigNumber_ -_Defined in [types.ts:733](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L733)_ +_Defined in [types.ts:733](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L606)_ +_Defined in [types.ts:606](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L606)_ --- @@ -1628,7 +1628,7 @@ _Defined in [types.ts:606](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **endState**: _[OrderEventEndState](#enumeration-ordereventendstate)_ -_Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L604)_ +_Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L604)_ --- @@ -1636,7 +1636,7 @@ _Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L605)_ +_Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L605)_ --- @@ -1644,7 +1644,7 @@ _Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **orderHash**: _string_ -_Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L602)_ +_Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L602)_ --- @@ -1652,7 +1652,7 @@ _Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L603)_ +_Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L603)_ --- @@ -1660,7 +1660,7 @@ _Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **timestampMs**: _number_ -_Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L601)_ +_Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L601)_
@@ -1676,7 +1676,7 @@ _Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L58)_ +_Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L58)_ --- @@ -1684,7 +1684,7 @@ _Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **orderHash**: _string_ -_Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L56)_ +_Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L56)_ --- @@ -1692,7 +1692,7 @@ _Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pac • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L57)_ +_Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L705)_ +_Defined in [types.ts:705](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L705)_ --- @@ -1719,7 +1719,7 @@ _Defined in [types.ts:705](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **orderHash**: _string_ -_Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L703)_ +_Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L703)_ --- @@ -1727,7 +1727,7 @@ _Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L704)_ +_Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L704)_ --- @@ -1735,7 +1735,7 @@ _Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **status**: _[RejectedOrderStatus](#interface-rejectedorderstatus)_ -_Defined in [types.ts:706](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L706)_ +_Defined in [types.ts:706](https://github.com/0xProject/0x-mesh/blob/370d182e/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/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L722)_ +_Defined in [types.ts:722](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L722)_ --- @@ -1761,7 +1761,7 @@ _Defined in [types.ts:722](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **message**: _string_ -_Defined in [types.ts:723](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L723)_ +_Defined in [types.ts:723](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L723)_
@@ -1777,7 +1777,7 @@ _Defined in [types.ts:723](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ethRPCRateLimitExpiredRequests**: _number_ -_Defined in [types.ts:771](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L771)_ +_Defined in [types.ts:771](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L771)_ --- @@ -1785,7 +1785,7 @@ _Defined in [types.ts:771](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ethRPCRequestsSentInCurrentUTCDay**: _number_ -_Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L770)_ +_Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L770)_ --- @@ -1793,7 +1793,7 @@ _Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **ethereumChainID**: _number_ -_Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L762)_ +_Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L762)_ --- @@ -1801,7 +1801,7 @@ _Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **latestBlock**? : _[LatestBlock](#interface-latestblock)_ -_Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L763)_ +_Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L763)_ --- @@ -1809,7 +1809,7 @@ _Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **maxExpirationTime**: _BigNumber_ -_Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L768)_ +_Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L768)_ --- @@ -1817,7 +1817,7 @@ _Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **numOrders**: _number_ -_Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L765)_ +_Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L765)_ --- @@ -1825,7 +1825,7 @@ _Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **numOrdersIncludingRemoved**: _number_ -_Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L766)_ +_Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L766)_ --- @@ -1833,7 +1833,7 @@ _Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **numPeers**: _number_ -_Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L764)_ +_Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L764)_ --- @@ -1841,7 +1841,7 @@ _Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **numPinnedOrders**: _number_ -_Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L767)_ +_Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L767)_ --- @@ -1849,7 +1849,7 @@ _Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **peerID**: _string_ -_Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L761)_ +_Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L761)_ --- @@ -1857,7 +1857,7 @@ _Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **pubSubTopic**: _string_ -_Defined in [types.ts:758](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L758)_ +_Defined in [types.ts:758](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L758)_ --- @@ -1865,7 +1865,7 @@ _Defined in [types.ts:758](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **rendezvous**: _string_ -_Defined in [types.ts:759](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L759)_ +_Defined in [types.ts:759](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L759)_ --- @@ -1873,7 +1873,7 @@ _Defined in [types.ts:759](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **secondaryRendezvous**: _string[]_ -_Defined in [types.ts:760](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L760)_ +_Defined in [types.ts:760](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L760)_ --- @@ -1881,7 +1881,7 @@ _Defined in [types.ts:760](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **startOfCurrentUTCDay**: _Date_ -_Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L769)_ +_Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L769)_ --- @@ -1889,7 +1889,7 @@ _Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **version**: _string_ -_Defined in [types.ts:757](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L757)_ +_Defined in [types.ts:757](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L757)_
@@ -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/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L684)_ +_Defined in [types.ts:684](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L684)_ --- @@ -1915,7 +1915,7 @@ _Defined in [types.ts:684](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **rejected**: _[RejectedOrderInfo](#interface-rejectedorderinfo)[]_ -_Defined in [types.ts:685](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L685)_ +_Defined in [types.ts:685](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L685)_
@@ -1931,7 +1931,7 @@ _Defined in [types.ts:685](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **owner**: _string_ -_Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L489)_ +_Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L489)_ --- @@ -1939,7 +1939,7 @@ _Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **value**: _BigNumber_ -_Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L490)_ +_Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L490)_
@@ -1955,7 +1955,7 @@ _Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **owner**: _string_ -_Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L478)_ +_Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L478)_ --- @@ -1963,6 +1963,6 @@ _Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/pa • **value**: _BigNumber_ -_Defined in [types.ts:479](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-browser-lite/src/types.ts#L479)_ +_Defined in [types.ts:479](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-browser-lite/src/types.ts#L479)_
diff --git a/docs/deployment.md b/docs/deployment.md index 1c46e54ee..19cb9943d 100644 --- a/docs/deployment.md +++ b/docs/deployment.md @@ -1,4 +1,4 @@ -[![Version](https://img.shields.io/badge/version-10.2.1-orange.svg)](https://github.com/0xProject/0x-mesh/releases) +[![Version](https://img.shields.io/badge/version-10.2.2-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 6972d09de..d4a5f05ce 100644 --- a/docs/deployment_with_telemetry.md +++ b/docs/deployment_with_telemetry.md @@ -1,4 +1,4 @@ -[![Version](https://img.shields.io/badge/version-10.2.1-orange.svg)](https://github.com/0xProject/0x-mesh/releases) +[![Version](https://img.shields.io/badge/version-10.2.2-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 bfafa8b07..32e8ccd6f 100644 --- a/docs/graphql-client/README.md +++ b/docs/graphql-client/README.md @@ -1,4 +1,4 @@ -# @0x/mesh-graphql-client - v10.2.1 +# @0x/mesh-graphql-client - v10.2.2 ## @0x/mesh-graphql-client diff --git a/docs/graphql-client/reference.md b/docs/graphql-client/reference.md index 5fe951b73..6af359b1c 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:7](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/browser_link.ts#L7)_ +_Defined in [packages/mesh-graphql-client/src/browser_link.ts:7](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/browser_link.ts#L7)_ **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:12](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/browser_link.ts#L12)_ +_Defined in [packages/mesh-graphql-client/src/browser_link.ts:12](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/browser_link.ts#L12)_ **Parameters:** @@ -206,7 +206,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:250](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/index.ts#L250)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:250](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/index.ts#L250)_ **Parameters:** @@ -222,7 +222,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:250](https://github.com/0 ▸ **addOrdersAsync**(`orders`: SignedOrder[], `pinned`: boolean, `opts?`: [AddOrdersOpts](#interface-addordersopts)): _Promise‹[AddOrdersResults](#interface-addordersresults)›_ -_Defined in [packages/mesh-graphql-client/src/index.ts:335](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/index.ts#L335)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:335](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/index.ts#L335)_ **Parameters:** @@ -240,7 +240,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:335](https://github.com/0 ▸ **findOrdersAsync**(`query`: [OrderQuery](#interface-orderquery)): _Promise‹[OrderWithMetadata](#interface-orderwithmetadata)[]›_ -_Defined in [packages/mesh-graphql-client/src/index.ts:377](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/index.ts#L377)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:377](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/index.ts#L377)_ **Parameters:** @@ -256,7 +256,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:377](https://github.com/0 ▸ **getOrderAsync**(`hash`: string): _Promise‹[OrderWithMetadata](#interface-orderwithmetadata) | null›_ -_Defined in [packages/mesh-graphql-client/src/index.ts:361](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/index.ts#L361)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:361](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/index.ts#L361)_ **Parameters:** @@ -272,7 +272,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:361](https://github.com/0 ▸ **getStatsAsync**(): _Promise‹[Stats](#interface-stats)›_ -_Defined in [packages/mesh-graphql-client/src/index.ts:324](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/index.ts#L324)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:324](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/index.ts#L324)_ **Returns:** _Promise‹[Stats](#interface-stats)›_ @@ -282,7 +282,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:324](https://github.com/0 ▸ **onOrderEvents**(): _Observable‹[OrderEvent](#interface-orderevent)[]›_ -_Defined in [packages/mesh-graphql-client/src/index.ts:394](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/index.ts#L394)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:394](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/index.ts#L394)_ **Returns:** _Observable‹[OrderEvent](#interface-orderevent)[]›_ @@ -292,7 +292,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:394](https://github.com/0 ▸ **rawQueryAsync**<**T**, **TVariables**>(`options`: QueryOptions‹TVariables›): _Promise‹ApolloQueryResult‹T››_ -_Defined in [packages/mesh-graphql-client/src/index.ts:440](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/index.ts#L440)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:440](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/index.ts#L440)_ **Type parameters:** @@ -318,7 +318,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:440](https://github.com/0 • **ERC1155ApprovalForAllEvent**: = "ERC1155ApprovalForAllEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:138](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L138)_ --- @@ -326,7 +326,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:138](https://github.com/0 • **ERC1155TransferBatchEvent**: = "ERC1155TransferBatchEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:140](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L140)_ --- @@ -334,7 +334,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:140](https://github.com/0 • **ERC1155TransferSingleEvent**: = "ERC1155TransferSingleEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:139](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L139)_ --- @@ -342,7 +342,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:139](https://github.com/0 • **ERC20ApprovalEvent**: = "ERC20ApprovalEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:134](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L134)_ --- @@ -350,7 +350,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:134](https://github.com/0 • **ERC20TransferEvent**: = "ERC20TransferEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:133](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L133)_ --- @@ -358,7 +358,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:133](https://github.com/0 • **ERC721ApprovalEvent**: = "ERC721ApprovalEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:136](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L136)_ --- @@ -366,7 +366,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:136](https://github.com/0 • **ERC721ApprovalForAllEvent**: = "ERC721ApprovalForAllEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:137](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L137)_ --- @@ -374,7 +374,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:137](https://github.com/0 • **ERC721TransferEvent**: = "ERC721TransferEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:135](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L135)_ --- @@ -382,7 +382,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:135](https://github.com/0 • **ExchangeCancelEvent**: = "ExchangeCancelEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:142](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L142)_ --- @@ -390,7 +390,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:142](https://github.com/0 • **ExchangeCancelUpToEvent**: = "ExchangeCancelUpToEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:143](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L143)_ --- @@ -398,7 +398,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:143](https://github.com/0 • **ExchangeFillEvent**: = "ExchangeFillEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:141](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L141)_ --- @@ -406,7 +406,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:141](https://github.com/0 • **WethDepositEvent**: = "WethDepositEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:144](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L144)_ --- @@ -414,7 +414,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:144](https://github.com/0 • **WethWithdrawalEvent**: = "WethWithdrawalEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:145](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L145)_
@@ -426,7 +426,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:145](https://github.com/0 • **Equal**: = "EQUAL" -_Defined in [packages/mesh-graphql-client/src/types.ts:182](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L182)_ --- @@ -434,7 +434,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:182](https://github.com/0 • **Greater**: = "GREATER" -_Defined in [packages/mesh-graphql-client/src/types.ts:184](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L184)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:184](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L184)_ --- @@ -442,7 +442,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:184](https://github.com/0 • **GreaterOrEqual**: = "GREATER_OR_EQUAL" -_Defined in [packages/mesh-graphql-client/src/types.ts:185](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L185)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:185](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L185)_ --- @@ -450,7 +450,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:185](https://github.com/0 • **Less**: = "LESS" -_Defined in [packages/mesh-graphql-client/src/types.ts:186](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L186)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:186](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L186)_ --- @@ -458,7 +458,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:186](https://github.com/0 • **LessOrEqual**: = "LESS_OR_EQUAL" -_Defined in [packages/mesh-graphql-client/src/types.ts:187](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L187)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:187](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L187)_ --- @@ -466,7 +466,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:187](https://github.com/0 • **NotEqual**: = "NOT_EQUAL" -_Defined in [packages/mesh-graphql-client/src/types.ts:183](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L183)_
@@ -478,7 +478,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:183](https://github.com/0 • **Added**: = "ADDED" -_Defined in [packages/mesh-graphql-client/src/types.ts:151](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L151)_ --- @@ -486,7 +486,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:151](https://github.com/0 • **Cancelled**: = "CANCELLED" -_Defined in [packages/mesh-graphql-client/src/types.ts:157](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L157)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:157](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L157)_ --- @@ -494,7 +494,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:157](https://github.com/0 • **Expired**: = "EXPIRED" -_Defined in [packages/mesh-graphql-client/src/types.ts:159](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L159)_ --- @@ -502,7 +502,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:159](https://github.com/0 • **FillabilityIncreased**: = "FILLABILITY_INCREASED" -_Defined in [packages/mesh-graphql-client/src/types.ts:166](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L166)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:166](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L166)_ --- @@ -510,7 +510,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:166](https://github.com/0 • **Filled**: = "FILLED" -_Defined in [packages/mesh-graphql-client/src/types.ts:153](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L153)_ --- @@ -518,7 +518,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:153](https://github.com/0 • **FullyFilled**: = "FULLY_FILLED" -_Defined in [packages/mesh-graphql-client/src/types.ts:155](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L155)_ --- @@ -526,7 +526,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:155](https://github.com/0 • **StoppedWatching**: = "STOPPED_WATCHING" -_Defined in [packages/mesh-graphql-client/src/types.ts:171](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L171)_ --- @@ -534,7 +534,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:171](https://github.com/0 • **Unexpired**: = "UNEXPIRED" -_Defined in [packages/mesh-graphql-client/src/types.ts:161](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L161)_ --- @@ -542,7 +542,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:161](https://github.com/0 • **Unfunded**: = "UNFUNDED" -_Defined in [packages/mesh-graphql-client/src/types.ts:163](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L163)_
@@ -554,7 +554,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:163](https://github.com/0 • **DatabaseFullOfOrders**: = "DATABASE_FULL_OF_ORDERS" -_Defined in [packages/mesh-graphql-client/src/types.ts:109](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L109)_ --- @@ -562,7 +562,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:109](https://github.com/0 • **EthRpcRequestFailed**: = "ETH_RPC_REQUEST_FAILED" -_Defined in [packages/mesh-graphql-client/src/types.ts:90](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L90)_ --- @@ -570,7 +570,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:90](https://github.com/0x • **IncorrectExchangeAddress**: = "INCORRECT_EXCHANGE_ADDRESS" -_Defined in [packages/mesh-graphql-client/src/types.ts:107](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L107)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:107](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L107)_ --- @@ -578,7 +578,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:107](https://github.com/0 • **InternalError**: = "INTERNAL_ERROR" -_Defined in [packages/mesh-graphql-client/src/types.ts:103](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L103)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:103](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L103)_ --- @@ -586,7 +586,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:103](https://github.com/0 • **MaxOrderSizeExceeded**: = "MAX_ORDER_SIZE_EXCEEDED" -_Defined in [packages/mesh-graphql-client/src/types.ts:104](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L104)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:104](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L104)_ --- @@ -594,7 +594,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:104](https://github.com/0 • **OrderAlreadyStoredAndUnfillable**: = "ORDER_ALREADY_STORED_AND_UNFILLABLE" -_Defined in [packages/mesh-graphql-client/src/types.ts:105](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L105)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:105](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L105)_ --- @@ -602,7 +602,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:105](https://github.com/0 • **OrderCancelled**: = "ORDER_CANCELLED" -_Defined in [packages/mesh-graphql-client/src/types.ts:95](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L95)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:95](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L95)_ --- @@ -610,7 +610,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:95](https://github.com/0x • **OrderExpired**: = "ORDER_EXPIRED" -_Defined in [packages/mesh-graphql-client/src/types.ts:93](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L93)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:93](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L93)_ --- @@ -618,7 +618,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:93](https://github.com/0x • **OrderForIncorrectChain**: = "ORDER_FOR_INCORRECT_CHAIN" -_Defined in [packages/mesh-graphql-client/src/types.ts:106](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L106)_ --- @@ -626,7 +626,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:106](https://github.com/0 • **OrderFullyFilled**: = "ORDER_FULLY_FILLED" -_Defined in [packages/mesh-graphql-client/src/types.ts:94](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L94)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:94](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L94)_ --- @@ -634,7 +634,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:94](https://github.com/0x • **OrderHasInvalidMakerAssetAmount**: = "ORDER_HAS_INVALID_MAKER_ASSET_AMOUNT" -_Defined in [packages/mesh-graphql-client/src/types.ts:91](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L91)_ --- @@ -642,7 +642,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:91](https://github.com/0x • **OrderHasInvalidMakerAssetData**: = "ORDER_HAS_INVALID_MAKER_ASSET_DATA" -_Defined in [packages/mesh-graphql-client/src/types.ts:97](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L97)_ --- @@ -650,7 +650,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:97](https://github.com/0x • **OrderHasInvalidMakerFeeAssetData**: = "ORDER_HAS_INVALID_MAKER_FEE_ASSET_DATA" -_Defined in [packages/mesh-graphql-client/src/types.ts:98](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L98)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:98](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L98)_ --- @@ -658,7 +658,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:98](https://github.com/0x • **OrderHasInvalidSignature**: = "ORDER_HAS_INVALID_SIGNATURE" -_Defined in [packages/mesh-graphql-client/src/types.ts:101](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L101)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:101](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L101)_ --- @@ -666,7 +666,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:101](https://github.com/0 • **OrderHasInvalidTakerAssetAmount**: = "ORDER_HAS_INVALID_TAKER_ASSET_AMOUNT" -_Defined in [packages/mesh-graphql-client/src/types.ts:92](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L92)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:92](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L92)_ --- @@ -674,7 +674,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:92](https://github.com/0x • **OrderHasInvalidTakerAssetData**: = "ORDER_HAS_INVALID_TAKER_ASSET_DATA" -_Defined in [packages/mesh-graphql-client/src/types.ts:99](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L99)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:99](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L99)_ --- @@ -682,7 +682,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:99](https://github.com/0x • **OrderHasInvalidTakerFeeAssetData**: = "ORDER_HAS_INVALID_TAKER_FEE_ASSET_DATA" -_Defined in [packages/mesh-graphql-client/src/types.ts:100](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L100)_ --- @@ -690,7 +690,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:100](https://github.com/0 • **OrderMaxExpirationExceeded**: = "ORDER_MAX_EXPIRATION_EXCEEDED" -_Defined in [packages/mesh-graphql-client/src/types.ts:102](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L102)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:102](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L102)_ --- @@ -698,7 +698,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:102](https://github.com/0 • **OrderUnfunded**: = "ORDER_UNFUNDED" -_Defined in [packages/mesh-graphql-client/src/types.ts:96](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L96)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:96](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L96)_ --- @@ -706,7 +706,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:96](https://github.com/0x • **SenderAddressNotAllowed**: = "SENDER_ADDRESS_NOT_ALLOWED" -_Defined in [packages/mesh-graphql-client/src/types.ts:108](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L108)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:108](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L108)_ --- @@ -714,7 +714,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:108](https://github.com/0 • **TakerAddressNotAllowed**: = "TAKER_ADDRESS_NOT_ALLOWED" -_Defined in [packages/mesh-graphql-client/src/types.ts:110](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L110)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:110](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L110)_
@@ -726,7 +726,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:110](https://github.com/0 • **Asc**: = "ASC" -_Defined in [packages/mesh-graphql-client/src/types.ts:177](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L177)_ --- @@ -734,7 +734,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:177](https://github.com/0 • **Desc**: = "DESC" -_Defined in [packages/mesh-graphql-client/src/types.ts:178](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L178)_
@@ -750,7 +750,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:178](https://github.com/0 • **httpUrl**? : _undefined | string_ -_Defined in [packages/mesh-graphql-client/src/index.ts:242](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/index.ts#L242)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:242](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/index.ts#L242)_ --- @@ -758,7 +758,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:242](https://github.com/0 • **mesh**? : _Mesh_ -_Defined in [packages/mesh-graphql-client/src/index.ts:244](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/index.ts#L244)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:244](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/index.ts#L244)_ --- @@ -766,7 +766,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:244](https://github.com/0 • **webSocketUrl**? : _undefined | string_ -_Defined in [packages/mesh-graphql-client/src/index.ts:243](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/index.ts#L243)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:243](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/index.ts#L243)_
@@ -782,7 +782,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:243](https://github.com/0 • **isNew**: _boolean_ -_Defined in [packages/mesh-graphql-client/src/types.ts:73](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L73)_ --- @@ -790,7 +790,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:73](https://github.com/0x • **order**: _[OrderWithMetadata](#interface-orderwithmetadata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:70](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L70)_
@@ -806,7 +806,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:70](https://github.com/0x • **keepCancelled**? : _undefined | false | true_ -_Defined in [packages/mesh-graphql-client/src/types.ts:5](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L5)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:5](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L5)_ --- @@ -814,7 +814,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:5](https://github.com/0xP • **keepExpired**? : _undefined | false | true_ -_Defined in [packages/mesh-graphql-client/src/types.ts:6](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L6)_ --- @@ -822,7 +822,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:6](https://github.com/0xP • **keepFullyFilled**? : _undefined | false | true_ -_Defined in [packages/mesh-graphql-client/src/types.ts:7](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L7)_ --- @@ -830,7 +830,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:7](https://github.com/0xP • **keepUnfunded**? : _undefined | false | true_ -_Defined in [packages/mesh-graphql-client/src/types.ts:8](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L8)_
@@ -846,7 +846,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:8](https://github.com/0xP • **addOrders**: _[StringifiedAddOrdersResults](#interface-stringifiedaddordersresults)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:16](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L16)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:16](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L16)_
@@ -862,7 +862,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:16](https://github.com/0x • **accepted**: _[AcceptedOrderResult](#interface-acceptedorderresult)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:62](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L62)_ --- @@ -870,7 +870,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:62](https://github.com/0x • **rejected**: _[RejectedOrderResult](#interface-rejectedorderresult)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:65](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L65)_
@@ -886,7 +886,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:65](https://github.com/0x • **address**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:126](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L126)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:126](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L126)_ --- @@ -894,7 +894,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:126](https://github.com/0 • **blockHash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:121](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L121)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:121](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L121)_ --- @@ -902,7 +902,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:121](https://github.com/0 • **isRemoved**: _boolean_ -_Defined in [packages/mesh-graphql-client/src/types.ts:125](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L125)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:125](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L125)_ --- @@ -910,7 +910,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:125](https://github.com/0 • **kind**: _[ContractEventKind](#enumeration-contracteventkind)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:127](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L127)_ --- @@ -918,7 +918,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:127](https://github.com/0 • **logIndex**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:124](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L124)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:124](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L124)_ --- @@ -926,7 +926,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:124](https://github.com/0 • **parameters**: _any_ -_Defined in [packages/mesh-graphql-client/src/types.ts:129](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L129)_ --- @@ -934,7 +934,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:129](https://github.com/0 • **txHash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:122](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L122)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:122](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L122)_ --- @@ -942,7 +942,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:122](https://github.com/0 • **txIndex**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:123](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L123)_
@@ -958,7 +958,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:123](https://github.com/0 • **hash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:51](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L51)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:51](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L51)_ --- @@ -966,7 +966,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:51](https://github.com/0x • **number**: _BigNumber_ -_Defined in [packages/mesh-graphql-client/src/types.ts:50](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L50)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:50](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L50)_
@@ -982,7 +982,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:50](https://github.com/0x • **contractEvents**: _[ContractEvent](#interface-contractevent)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:117](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L117)_ --- @@ -990,7 +990,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:117](https://github.com/0 • **endState**: _[OrderEventEndState](#enumeration-ordereventendstate)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:116](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L116)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:116](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L116)_ --- @@ -998,7 +998,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:116](https://github.com/0 • **order**: _[OrderWithMetadata](#interface-orderwithmetadata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:115](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L115)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:115](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L115)_ --- @@ -1006,7 +1006,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:115](https://github.com/0 • **timestampMs**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:114](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L114)_
@@ -1022,7 +1022,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:114](https://github.com/0 • **orderEvents**: _[StringifiedOrderEvent](#interface-stringifiedorderevent)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:28](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L28)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:28](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L28)_
@@ -1038,7 +1038,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:28](https://github.com/0x • **field**: _[OrderField](#orderfield)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:196](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L196)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:196](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L196)_ --- @@ -1046,7 +1046,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:196](https://github.com/0 • **kind**: _[FilterKind](#enumeration-filterkind)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:197](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L197)_ --- @@ -1054,7 +1054,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:197](https://github.com/0 • **value**: _OrderWithMetadata[OrderField]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:198](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L198)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:198](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L198)_
@@ -1070,7 +1070,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:198](https://github.com/0 • **filters**? : _[OrderFilter](#interface-orderfilter)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:202](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L202)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:202](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L202)_ --- @@ -1078,7 +1078,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:202](https://github.com/0 • **limit**? : _undefined | number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:204](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L204)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:204](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L204)_ --- @@ -1086,7 +1086,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:204](https://github.com/0 • **sort**? : _[OrderSort](#interface-ordersort)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:203](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L203)_
@@ -1102,7 +1102,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:203](https://github.com/0 • **order**: _[StringifiedOrderWithMetadata](#interface-stringifiedorderwithmetadata) | null_ -_Defined in [packages/mesh-graphql-client/src/types.ts:20](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L20)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:20](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L20)_
@@ -1118,7 +1118,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:20](https://github.com/0x • **direction**: _[SortDirection](#enumeration-sortdirection)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:192](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L192)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:192](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L192)_ --- @@ -1126,7 +1126,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:192](https://github.com/0 • **field**: _[OrderField](#orderfield)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:191](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L191)_
@@ -1142,7 +1142,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:191](https://github.com/0 • **orders**: _[StringifiedOrderWithMetadata](#interface-stringifiedorderwithmetadata)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:24](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L24)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:24](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L24)_
@@ -1192,7 +1192,7 @@ Defined in node_modules/@0x/types/lib/index.d.ts:8 • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [packages/mesh-graphql-client/src/types.ts:56](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L56)_ --- @@ -1200,7 +1200,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:56](https://github.com/0x • **hash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:55](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L55)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:55](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L55)_ --- @@ -1320,7 +1320,7 @@ Defined in node_modules/@0x/types/lib/index.d.ts:19 • **code**: _[RejectedOrderCode](#enumeration-rejectedordercode)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:83](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L83)_ --- @@ -1328,7 +1328,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:83](https://github.com/0x • **hash**? : _undefined | string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:78](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L78)_ --- @@ -1336,7 +1336,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:78](https://github.com/0x • **message**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:86](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L86)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:86](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L86)_ --- @@ -1344,7 +1344,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:86](https://github.com/0x • **order**: _SignedOrder_ -_Defined in [packages/mesh-graphql-client/src/types.ts:80](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L80)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:80](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L80)_
@@ -1360,7 +1360,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:80](https://github.com/0x • **ethRPCRateLimitExpiredRequests**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:46](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L46)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:46](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L46)_ --- @@ -1368,7 +1368,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:46](https://github.com/0x • **ethRPCRequestsSentInCurrentUTCDay**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:45](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L45)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:45](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L45)_ --- @@ -1376,7 +1376,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:45](https://github.com/0x • **ethereumChainID**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:37](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L37)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:37](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L37)_ --- @@ -1384,7 +1384,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:37](https://github.com/0x • **latestBlock**: _[LatestBlock](#interface-latestblock)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:38](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L38)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:38](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L38)_ --- @@ -1392,7 +1392,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:38](https://github.com/0x • **maxExpirationTime**: _BigNumber_ -_Defined in [packages/mesh-graphql-client/src/types.ts:43](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L43)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:43](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L43)_ --- @@ -1400,7 +1400,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:43](https://github.com/0x • **numOrders**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:40](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L40)_ --- @@ -1408,7 +1408,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:40](https://github.com/0x • **numOrdersIncludingRemoved**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:41](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L41)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:41](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L41)_ --- @@ -1416,7 +1416,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:41](https://github.com/0x • **numPeers**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:39](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L39)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:39](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L39)_ --- @@ -1424,7 +1424,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:39](https://github.com/0x • **numPinnedOrders**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:42](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L42)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:42](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L42)_ --- @@ -1432,7 +1432,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:42](https://github.com/0x • **peerID**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:36](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L36)_ --- @@ -1440,7 +1440,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:36](https://github.com/0x • **pubSubTopic**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:33](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L33)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:33](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L33)_ --- @@ -1448,7 +1448,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:33](https://github.com/0x • **rendezvous**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:34](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L34)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:34](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L34)_ --- @@ -1456,7 +1456,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:34](https://github.com/0x • **secondaryRendezvous**: _string[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:35](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L35)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:35](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L35)_ --- @@ -1464,7 +1464,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:35](https://github.com/0x • **startOfCurrentUTCDay**: _Date_ -_Defined in [packages/mesh-graphql-client/src/types.ts:44](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L44)_ --- @@ -1472,7 +1472,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:44](https://github.com/0x • **version**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:32](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L32)_
@@ -1488,7 +1488,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:32](https://github.com/0x • **stats**: _[StringifiedStats](#interface-stringifiedstats)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:12](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L12)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:12](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L12)_
@@ -1504,7 +1504,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:12](https://github.com/0x • **isNew**: _boolean_ -_Defined in [packages/mesh-graphql-client/src/types.ts:262](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L262)_ --- @@ -1512,7 +1512,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:262](https://github.com/0 • **order**: _[StringifiedOrderWithMetadata](#interface-stringifiedorderwithmetadata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:261](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L261)_
@@ -1528,7 +1528,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:261](https://github.com/0 • **accepted**: _[StringifiedAcceptedOrderResult](#interface-stringifiedacceptedorderresult)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:256](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L256)_ --- @@ -1536,7 +1536,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:256](https://github.com/0 • **rejected**: _[StringifiedRejectedOrderResult](#interface-stringifiedrejectedorderresult)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:257](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L257)_
@@ -1552,7 +1552,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:257](https://github.com/0 • **hash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:209](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L209)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:209](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L209)_ --- @@ -1560,7 +1560,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:209](https://github.com/0 • **number**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:208](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L208)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:208](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L208)_
@@ -1576,7 +1576,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:208](https://github.com/0 • **contractEvents**: _[ContractEvent](#interface-contractevent)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:277](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L277)_ --- @@ -1584,7 +1584,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:277](https://github.com/0 • **endState**: _[OrderEventEndState](#enumeration-ordereventendstate)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:275](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L275)_ --- @@ -1592,7 +1592,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:275](https://github.com/0 • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [packages/mesh-graphql-client/src/types.ts:276](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L276)_ --- @@ -1600,7 +1600,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:276](https://github.com/0 • **order**: _[StringifiedOrderWithMetadata](#interface-stringifiedorderwithmetadata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:274](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L274)_ --- @@ -1608,7 +1608,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:274](https://github.com/0 • **timestamp**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:273](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L273)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:273](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L273)_
@@ -1628,7 +1628,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:273](https://github.com/0 _Inherited from [StringifiedSignedOrder](#chainid)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:231](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L231)_ --- @@ -1638,7 +1638,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:231](https://github.com/0 _Inherited from [StringifiedSignedOrder](#exchangeaddress)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:232](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L232)_ --- @@ -1648,7 +1648,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:232](https://github.com/0 _Inherited from [StringifiedSignedOrder](#expirationtimeseconds)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:241](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L241)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:241](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L241)_ --- @@ -1658,7 +1658,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:241](https://github.com/0 _Inherited from [StringifiedSignedOrder](#feerecipientaddress)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:235](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L235)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:235](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L235)_ --- @@ -1666,7 +1666,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:235](https://github.com/0 • **fillableTakerAssetAmount**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:252](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L252)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:252](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L252)_ --- @@ -1674,7 +1674,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:252](https://github.com/0 • **hash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:251](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L251)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:251](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L251)_ --- @@ -1684,7 +1684,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:251](https://github.com/0 _Inherited from [StringifiedSignedOrder](#makeraddress)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:233](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L233)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:233](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L233)_ --- @@ -1694,7 +1694,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:233](https://github.com/0 _Inherited from [StringifiedSignedOrder](#makerassetamount)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:237](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L237)_ --- @@ -1704,7 +1704,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:237](https://github.com/0 _Inherited from [StringifiedSignedOrder](#makerassetdata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:243](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L243)_ --- @@ -1714,7 +1714,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:243](https://github.com/0 _Inherited from [StringifiedSignedOrder](#makerfee)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:239](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L239)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:239](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L239)_ --- @@ -1724,7 +1724,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:239](https://github.com/0 _Inherited from [StringifiedSignedOrder](#makerfeeassetdata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:245](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L245)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:245](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L245)_ --- @@ -1734,7 +1734,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:245](https://github.com/0 _Inherited from [StringifiedSignedOrder](#salt)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:242](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L242)_ --- @@ -1744,7 +1744,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:242](https://github.com/0 _Inherited from [StringifiedSignedOrder](#senderaddress)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:236](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L236)_ --- @@ -1754,7 +1754,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:236](https://github.com/0 _Inherited from [StringifiedSignedOrder](#signature)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:247](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L247)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:247](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L247)_ --- @@ -1764,7 +1764,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:247](https://github.com/0 _Inherited from [StringifiedSignedOrder](#takeraddress)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:234](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L234)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:234](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L234)_ --- @@ -1774,7 +1774,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:234](https://github.com/0 _Inherited from [StringifiedSignedOrder](#takerassetamount)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:238](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L238)_ --- @@ -1784,7 +1784,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:238](https://github.com/0 _Inherited from [StringifiedSignedOrder](#takerassetdata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:244](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L244)_ --- @@ -1794,7 +1794,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:244](https://github.com/0 _Inherited from [StringifiedSignedOrder](#takerfee)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:240](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L240)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:240](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L240)_ --- @@ -1804,7 +1804,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:240](https://github.com/0 _Inherited from [StringifiedSignedOrder](#takerfeeassetdata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:246](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L246)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:246](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L246)_
@@ -1820,7 +1820,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:246](https://github.com/0 • **code**: _[RejectedOrderCode](#enumeration-rejectedordercode)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:268](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L268)_ --- @@ -1828,7 +1828,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:268](https://github.com/0 • **hash**? : _undefined | string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:266](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L266)_ --- @@ -1836,7 +1836,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:266](https://github.com/0 • **message**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:269](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L269)_ --- @@ -1844,7 +1844,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:269](https://github.com/0 • **order**: _[StringifiedSignedOrder](#interface-stringifiedsignedorder)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:267](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L267)_
@@ -1862,7 +1862,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:267](https://github.com/0 • **chainId**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:231](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L231)_ --- @@ -1870,7 +1870,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:231](https://github.com/0 • **exchangeAddress**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:232](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L232)_ --- @@ -1878,7 +1878,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:232](https://github.com/0 • **expirationTimeSeconds**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:241](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L241)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:241](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L241)_ --- @@ -1886,7 +1886,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:241](https://github.com/0 • **feeRecipientAddress**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:235](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L235)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:235](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L235)_ --- @@ -1894,7 +1894,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:235](https://github.com/0 • **makerAddress**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:233](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L233)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:233](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L233)_ --- @@ -1902,7 +1902,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:233](https://github.com/0 • **makerAssetAmount**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:237](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L237)_ --- @@ -1910,7 +1910,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:237](https://github.com/0 • **makerAssetData**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:243](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L243)_ --- @@ -1918,7 +1918,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:243](https://github.com/0 • **makerFee**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:239](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L239)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:239](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L239)_ --- @@ -1926,7 +1926,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:239](https://github.com/0 • **makerFeeAssetData**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:245](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L245)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:245](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L245)_ --- @@ -1934,7 +1934,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:245](https://github.com/0 • **salt**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:242](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L242)_ --- @@ -1942,7 +1942,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:242](https://github.com/0 • **senderAddress**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:236](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L236)_ --- @@ -1950,7 +1950,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:236](https://github.com/0 • **signature**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:247](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L247)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:247](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L247)_ --- @@ -1958,7 +1958,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:247](https://github.com/0 • **takerAddress**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:234](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L234)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:234](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L234)_ --- @@ -1966,7 +1966,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:234](https://github.com/0 • **takerAssetAmount**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:238](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L238)_ --- @@ -1974,7 +1974,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:238](https://github.com/0 • **takerAssetData**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:244](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L244)_ --- @@ -1982,7 +1982,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:244](https://github.com/0 • **takerFee**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:240](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L240)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:240](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L240)_ --- @@ -1990,7 +1990,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:240](https://github.com/0 • **takerFeeAssetData**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:246](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L246)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:246](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L246)_
@@ -2006,7 +2006,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:246](https://github.com/0 • **ethRPCRateLimitExpiredRequests**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:227](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L227)_ --- @@ -2014,7 +2014,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:227](https://github.com/0 • **ethRPCRequestsSentInCurrentUTCDay**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:226](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L226)_ --- @@ -2022,7 +2022,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:226](https://github.com/0 • **ethereumChainID**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:218](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L218)_ --- @@ -2030,7 +2030,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:218](https://github.com/0 • **latestBlock**: _[StringifiedLatestBlock](#interface-stringifiedlatestblock)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:219](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L219)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:219](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L219)_ --- @@ -2038,7 +2038,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:219](https://github.com/0 • **maxExpirationTime**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:224](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L224)_ --- @@ -2046,7 +2046,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:224](https://github.com/0 • **numOrders**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:221](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L221)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:221](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L221)_ --- @@ -2054,7 +2054,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:221](https://github.com/0 • **numOrdersIncludingRemoved**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:222](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L222)_ --- @@ -2062,7 +2062,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:222](https://github.com/0 • **numPeers**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:220](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L220)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:220](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L220)_ --- @@ -2070,7 +2070,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:220](https://github.com/0 • **numPinnedOrders**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:223](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L223)_ --- @@ -2078,7 +2078,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:223](https://github.com/0 • **peerID**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:217](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L217)_ --- @@ -2086,7 +2086,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:217](https://github.com/0 • **pubSubTopic**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:214](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L214)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:214](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L214)_ --- @@ -2094,7 +2094,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:214](https://github.com/0 • **rendezvous**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:215](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L215)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:215](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L215)_ --- @@ -2102,7 +2102,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:215](https://github.com/0 • **secondaryRendezvous**: _string[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:216](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L216)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:216](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L216)_ --- @@ -2110,7 +2110,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:216](https://github.com/0 • **startOfCurrentUTCDay**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:225](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/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/370d182e/packages/mesh-graphql-client/src/types.ts#L225)_ --- @@ -2118,6 +2118,6 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:225](https://github.com/0 • **version**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:213](https://github.com/0xProject/0x-mesh/blob/8c9a9ef1/packages/mesh-graphql-client/src/types.ts#L213)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:213](https://github.com/0xProject/0x-mesh/blob/370d182e/packages/mesh-graphql-client/src/types.ts#L213)_
diff --git a/docs/graphql_api.md b/docs/graphql_api.md index 563e1ced5..e2b0a9243 100644 --- a/docs/graphql_api.md +++ b/docs/graphql_api.md @@ -1,4 +1,4 @@ -[![Version](https://img.shields.io/badge/version-10.2.1-orange.svg)](https://github.com/0xProject/0x-mesh/releases) +[![Version](https://img.shields.io/badge/version-10.2.2-orange.svg)](https://github.com/0xProject/0x-mesh/releases) # 0x Mesh GraphQL API Documentation diff --git a/packages/mesh-browser-lite/package.json b/packages/mesh-browser-lite/package.json index 32bffc4d0..453018f67 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": "10.2.1", + "version": "10.2.2", "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 4a1840d19..59b95b1f3 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": "^10.2.1", + "@0x/mesh-browser-lite": "^10.2.2", "dexie": "^3.0.1" } } diff --git a/packages/mesh-browser/package.json b/packages/mesh-browser/package.json index df433150c..54e7c6af5 100644 --- a/packages/mesh-browser/package.json +++ b/packages/mesh-browser/package.json @@ -1,6 +1,6 @@ { "name": "@0x/mesh-browser", - "version": "10.2.1", + "version": "10.2.2", "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": "^10.2.1", + "@0x/mesh-browser-lite": "^10.2.2", "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 d17cb82cb..7da251094 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": "10.2.1", + "version": "10.2.2", "description": "A client for the Mesh GraphQL API", "main": "./lib/src/index.js", "license": "Apache-2.0", @@ -43,7 +43,7 @@ "websocket": "^1.0.31" }, "dependencies": { - "@0x/mesh-browser-lite": "^10.2.1", + "@0x/mesh-browser-lite": "^10.2.2", "@0x/types": "^3.2.0", "@0x/utils": "^5.4.0", "@apollo/client": "^3.2.3", diff --git a/packages/mesh-integration-tests/package.json b/packages/mesh-integration-tests/package.json index 5a4dd570c..bedf2d241 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": "^10.2.1", - "@0x/mesh-graphql-client": "^10.2.1", + "@0x/mesh-browser": "^10.2.2", + "@0x/mesh-graphql-client": "^10.2.2", "@0x/order-utils": "^10.0.1", "@0x/subproviders": "^6.0.2", "@0x/utils": "^5.1.1" diff --git a/packages/mesh-webpack-example-lite/package.json b/packages/mesh-webpack-example-lite/package.json index 2ef499834..b4d37e2ee 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": "^10.2.1" + "@0x/mesh-browser-lite": "^10.2.2" } } diff --git a/packages/mesh-webpack-example/package.json b/packages/mesh-webpack-example/package.json index b3b9ec9d8..1416296a9 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": "^10.2.1" + "@0x/mesh-browser": "^10.2.2" } } diff --git a/zeroex/orderwatch/order_watcher.go b/zeroex/orderwatch/order_watcher.go index 37e73e3e5..bd8d9ceb3 100644 --- a/zeroex/orderwatch/order_watcher.go +++ b/zeroex/orderwatch/order_watcher.go @@ -890,7 +890,9 @@ func (w *Watcher) getLatestBlock() (*types.MiniHeader, error) { } // Cleanup re-validates all orders in DB which haven't been re-validated in -// `lastUpdatedBuffer` time to make sure all orders are still up-to-date +// `lastUpdatedBuffer` time to make sure all orders are still up-to-date. +// Additionally removes orders with an expiration time too far in the future +// when the DB holds more than opts.MaxOrders. func (w *Watcher) Cleanup(ctx context.Context, lastUpdatedBuffer time.Duration) error { // Pause block event processing until we finished cleaning up at current block height w.handleBlockEventsMu.RLock() @@ -941,6 +943,23 @@ func (w *Watcher) Cleanup(ctx context.Context, lastUpdatedBuffer time.Duration) w.orderFeed.Send(orderEvents) } + orderCount, err := w.db.CountOrders(nil) + if err != nil { + return err + } + if orderCount > w.maxOrders { + logger.WithFields(logger.Fields{ + "orderCount": orderCount, + "maxOrders": w.maxOrders, + }).Info("Too many orders stored in the database, removing orders with long expiration") + ordersRemoved, err := w.db.RemoveOrdersWithLongExpiration() + if err != nil { + return err + } + + logger.WithField("numOrdersRemoved", len(ordersRemoved)).Info("Removed orders with long expiration") + } + return nil }