From 30eaef7934fd7c01a5f89e897f9e908499c6c95f Mon Sep 17 00:00:00 2001 From: Alex Towle Date: Wed, 18 Mar 2020 14:13:05 -0500 Subject: [PATCH 1/3] Duplicate PR of the fix to ordersync (#762) * Fix a bug in the ordersync pagination subprotocol * Update changelog Co-authored-by: Alex Browne --- CHANGELOG.md | 7 +++++++ core/ordersync_subprotocols.go | 21 +++++++++++++++++---- 2 files changed, 24 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4a0e71e1..e0f0e70b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ This changelog is a work in progress and may contain notes for versions which have not actually been released. Check the [Releases](https://github.com/0xProject/0x-mesh/releases) page to see full release notes and more information about the latest released versions. +## v9.2.1 + +### Bug fixes 🐞 + +- Fixed a critical bug in the ordersync protocol which resulted in only 50% of existing orders being shared when a new peer joins the network. New orders are shared separately and were unaffected. [#760](https://github.com/0xProject/0x-mesh/pull/760). + + ## v9.2.0 ### Features ✅ diff --git a/core/ordersync_subprotocols.go b/core/ordersync_subprotocols.go index cf8862ca7..cd9ee2864 100644 --- a/core/ordersync_subprotocols.go +++ b/core/ordersync_subprotocols.go @@ -72,13 +72,19 @@ func (p *FilteredPaginationSubProtocol) HandleOrderSyncRequest(ctx context.Conte return nil, fmt.Errorf("FilteredPaginationSubProtocol received request with wrong metadata type (got %T)", req.Metadata) } } + // It's possible that none of the orders in the current page match the filter. // We don't want to respond with zero orders, so keep iterating until we find // at least some orders that match the filter. filteredOrders := []*zeroex.SignedOrder{} var snapshotID string - var currentPage int - for currentPage = metadata.Page; len(filteredOrders) == 0; currentPage += 1 { + currentPage := metadata.Page + for { + select { + case <-ctx.Done(): + return nil, ctx.Err() + default: + } // Get the orders for this page. ordersResp, err := p.app.GetOrders(currentPage, p.perPage, metadata.SnapshotID) if err != nil { @@ -89,8 +95,7 @@ func (p *FilteredPaginationSubProtocol) HandleOrderSyncRequest(ctx context.Conte // No more orders left. break } - // Filter the orders for this page. If none of them match the filter, we continue - // on to the next page. + // Filter the orders for this page. for _, orderInfo := range ordersResp.OrdersInfos { if matches, err := p.orderFilter.MatchOrder(orderInfo.SignedOrder); err != nil { return nil, err @@ -98,6 +103,14 @@ func (p *FilteredPaginationSubProtocol) HandleOrderSyncRequest(ctx context.Conte filteredOrders = append(filteredOrders, orderInfo.SignedOrder) } } + if len(filteredOrders) == 0 { + // If none of the orders for this page match the filter, we continue + // on to the next page. + currentPage += 1 + continue + } else { + break + } } return &ordersync.Response{ From e7f9f1ba76bc7417bc17b32292757cb9c5fe34d2 Mon Sep 17 00:00:00 2001 From: Alex Towle Date: Wed, 18 Mar 2020 14:29:19 -0500 Subject: [PATCH 2/3] Set version to 9.2.1 --- README.md | 2 +- RELEASE_CHANGELOG.md | 7 +- core/core.go | 2 +- docs/browser-bindings/browser-lite/README.md | 2 +- .../browser-lite/reference.md | 1695 ++++++++++++-- docs/browser-bindings/browser/README.md | 2 +- docs/browser-bindings/browser/reference.md | 2047 ----------------- docs/deployment.md | 2 +- docs/deployment_with_telemetry.md | 2 +- docs/json_rpc_clients/typescript/README.md | 2 +- docs/json_rpc_clients/typescript/reference.md | 506 ++-- docs/rpc_api.md | 2 +- packages/browser-lite/package.json | 2 +- packages/browser/package.json | 4 +- packages/rpc-client/package.json | 2 +- 15 files changed, 1743 insertions(+), 2536 deletions(-) delete mode 100644 docs/browser-bindings/browser/reference.md diff --git a/README.md b/README.md index 5ee185c36..be426bba0 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Version](https://img.shields.io/badge/version-9.2.0-orange.svg)](https://github.com/0xProject/0x-mesh/releases) +[![Version](https://img.shields.io/badge/version-9.2.1-orange.svg)](https://github.com/0xProject/0x-mesh/releases) [![Docs](https://img.shields.io/badge/docs-website-yellow.svg)](https://0x-org.gitbook.io/mesh) [![Chat with us on Discord](https://img.shields.io/badge/chat-Discord-blueViolet.svg)](https://discord.gg/HF7fHwk) [![Circle CI](https://img.shields.io/circleci/project/0xProject/0x-mesh/master.svg)](https://circleci.com/gh/0xProject/0x-mesh/tree/master) diff --git a/RELEASE_CHANGELOG.md b/RELEASE_CHANGELOG.md index cec098240..a0df4eaf8 100644 --- a/RELEASE_CHANGELOG.md +++ b/RELEASE_CHANGELOG.md @@ -1,12 +1,11 @@ - [Docker image](https://hub.docker.com/r/0xorg/mesh/tags) -- [README](https://github.com/0xProject/0x-mesh/blob/v9.2.0/README.md) +- [README](https://github.com/0xProject/0x-mesh/blob/v9.2.1/README.md) ## Summary -### Features ✅ +### Bug fixes 🐞 -- Greatly reduced latency for propagating orders, especially for browser nodes [#756](https://github.com/0xProject/0x-mesh/pull/756). -- Added support for `checkGasPrice` StaticCall asset data [#744](https://github.com/0xProject/0x-mesh/pull/744) +- Fixed a critical bug in the ordersync protocol which resulted in only 50% of existing orders being shared when a new peer joins the network. New orders are shared separately and were unaffected. [#760](https://github.com/0xProject/0x-mesh/pull/760). diff --git a/core/core.go b/core/core.go index 312464fa2..a76ed30e0 100644 --- a/core/core.go +++ b/core/core.go @@ -60,7 +60,7 @@ const ( estimatedNonPollingEthereumRPCRequestsPer24Hrs = 50000 // logStatsInterval is how often to log stats for this node. logStatsInterval = 5 * time.Minute - version = "9.2.0" + version = "9.2.1" // ordersyncMinPeers is the minimum amount of peers to receive orders from // before considering the ordersync process finished. ordersyncMinPeers = 5 diff --git a/docs/browser-bindings/browser-lite/README.md b/docs/browser-bindings/browser-lite/README.md index afbbf4acc..9e3ac101b 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 - v9.2.0 +# @0x/mesh-browser-lite - v9.2.1 ## @0x/mesh-browser-lite diff --git a/docs/browser-bindings/browser-lite/reference.md b/docs/browser-bindings/browser-lite/reference.md index 7dfe967af..6a0118797 100644 --- a/docs/browser-bindings/browser-lite/reference.md +++ b/docs/browser-bindings/browser-lite/reference.md @@ -14,7 +14,7 @@ sending orders through the 0x Mesh network. \+ **new Mesh**(`config`: [Config](#interface-config)): *[Mesh](#class-mesh)* -*Defined in [mesh.ts:141](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/mesh.ts#L141)* +*Defined in [mesh.ts:141](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/mesh.ts#L141)* Instantiates a new Mesh instance. @@ -34,7 +34,7 @@ An instance of Mesh ▸ **addOrdersAsync**(`orders`: SignedOrder[], `pinned`: boolean): *Promise‹[ValidationResults](#interface-validationresults)›* -*Defined in [mesh.ts:291](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/mesh.ts#L291)* +*Defined in [mesh.ts:291](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/mesh.ts#L291)* Validates and adds the given orders to Mesh. If an order is successfully added, Mesh will share it with any peers in the network and start @@ -61,7 +61,7 @@ ___ ▸ **getOrdersAsync**(`perPage`: number): *Promise‹[GetOrdersResponse](#interface-getordersresponse)›* -*Defined in [mesh.ts:220](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/mesh.ts#L220)* +*Defined in [mesh.ts:220](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/mesh.ts#L220)* Get all 0x signed orders currently stored in the Mesh node @@ -81,7 +81,7 @@ ___ ▸ **getOrdersForPageAsync**(`page`: number, `perPage`: number, `snapshotID?`: undefined | string): *Promise‹[GetOrdersResponse](#interface-getordersresponse)›* -*Defined in [mesh.ts:262](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/mesh.ts#L262)* +*Defined in [mesh.ts:262](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/mesh.ts#L262)* Get page of 0x signed orders stored on the Mesh node at the specified snapshot @@ -103,7 +103,7 @@ ___ ▸ **getStatsAsync**(): *Promise‹[Stats](#interface-stats)›* -*Defined in [mesh.ts:203](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/mesh.ts#L203)* +*Defined in [mesh.ts:203](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/mesh.ts#L203)* Returns various stats about Mesh, including the total number of orders and the number of peers Mesh is connected to. @@ -116,7 +116,7 @@ ___ ▸ **onError**(`handler`: function): *void* -*Defined in [mesh.ts:161](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/mesh.ts#L161)* +*Defined in [mesh.ts:161](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/mesh.ts#L161)* 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. @@ -145,7 +145,7 @@ ___ ▸ **onOrderEvents**(`handler`: function): *void* -*Defined in [mesh.ts:176](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/mesh.ts#L176)* +*Defined in [mesh.ts:176](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/mesh.ts#L176)* Registers a handler which will be called for any incoming order events. Order events are fired whenver an order is added, canceled, expired, or @@ -174,7 +174,7 @@ ___ ▸ **startAsync**(): *Promise‹void›* -*Defined in [mesh.ts:187](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/mesh.ts#L187)* +*Defined in [mesh.ts:187](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/mesh.ts#L187)* Starts the Mesh node in the background. Mesh will automatically find peers in the network and begin receiving orders from them. @@ -193,7 +193,7 @@ peers in the network and begin receiving orders from them. • **ERC1155ApprovalForAllEvent**: = "ERC1155ApprovalForAllEvent" -*Defined in [types.ts:444](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L444)* +*Defined in [types.ts:444](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L444)* ___ @@ -201,7 +201,7 @@ ___ • **ERC1155TransferBatchEvent**: = "ERC1155TransferBatchEvent" -*Defined in [types.ts:446](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L446)* +*Defined in [types.ts:446](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L446)* ___ @@ -209,7 +209,7 @@ ___ • **ERC1155TransferSingleEvent**: = "ERC1155TransferSingleEvent" -*Defined in [types.ts:445](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L445)* +*Defined in [types.ts:445](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L445)* ___ @@ -217,7 +217,7 @@ ___ • **ERC20ApprovalEvent**: = "ERC20ApprovalEvent" -*Defined in [types.ts:440](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L440)* +*Defined in [types.ts:440](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L440)* ___ @@ -225,7 +225,7 @@ ___ • **ERC20TransferEvent**: = "ERC20TransferEvent" -*Defined in [types.ts:439](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L439)* +*Defined in [types.ts:439](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L439)* ___ @@ -233,7 +233,7 @@ ___ • **ERC721ApprovalEvent**: = "ERC721ApprovalEvent" -*Defined in [types.ts:442](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L442)* +*Defined in [types.ts:442](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L442)* ___ @@ -241,7 +241,7 @@ ___ • **ERC721ApprovalForAllEvent**: = "ERC721ApprovalForAllEvent" -*Defined in [types.ts:443](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L443)* +*Defined in [types.ts:443](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L443)* ___ @@ -249,7 +249,7 @@ ___ • **ERC721TransferEvent**: = "ERC721TransferEvent" -*Defined in [types.ts:441](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L441)* +*Defined in [types.ts:441](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L441)* ___ @@ -257,7 +257,7 @@ ___ • **ExchangeCancelEvent**: = "ExchangeCancelEvent" -*Defined in [types.ts:448](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L448)* +*Defined in [types.ts:448](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L448)* ___ @@ -265,7 +265,7 @@ ___ • **ExchangeCancelUpToEvent**: = "ExchangeCancelUpToEvent" -*Defined in [types.ts:449](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L449)* +*Defined in [types.ts:449](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L449)* ___ @@ -273,7 +273,7 @@ ___ • **ExchangeFillEvent**: = "ExchangeFillEvent" -*Defined in [types.ts:447](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L447)* +*Defined in [types.ts:447](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L447)* ___ @@ -281,7 +281,7 @@ ___ • **WethDepositEvent**: = "WethDepositEvent" -*Defined in [types.ts:450](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L450)* +*Defined in [types.ts:450](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L450)* ___ @@ -289,7 +289,7 @@ ___ • **WethWithdrawalEvent**: = "WethWithdrawalEvent" -*Defined in [types.ts:451](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L451)* +*Defined in [types.ts:451](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L451)*
@@ -303,7 +303,7 @@ ___ • **Added**: = "ADDED" -*Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L509)* +*Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L509)* ___ @@ -311,7 +311,7 @@ ___ • **Cancelled**: = "CANCELLED" -*Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L512)* +*Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L512)* ___ @@ -319,7 +319,7 @@ ___ • **Expired**: = "EXPIRED" -*Defined in [types.ts:513](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L513)* +*Defined in [types.ts:513](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L513)* ___ @@ -327,7 +327,7 @@ ___ • **FillabilityIncreased**: = "FILLABILITY_INCREASED" -*Defined in [types.ts:516](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L516)* +*Defined in [types.ts:516](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L516)* ___ @@ -335,7 +335,7 @@ ___ • **Filled**: = "FILLED" -*Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L510)* +*Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L510)* ___ @@ -343,7 +343,7 @@ ___ • **FullyFilled**: = "FULLY_FILLED" -*Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L511)* +*Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L511)* ___ @@ -351,7 +351,7 @@ ___ • **Invalid**: = "INVALID" -*Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L508)* +*Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L508)* ___ @@ -359,7 +359,7 @@ ___ • **StoppedWatching**: = "STOPPED_WATCHING" -*Defined in [types.ts:517](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L517)* +*Defined in [types.ts:517](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L517)* ___ @@ -367,7 +367,7 @@ ___ • **Unexpired**: = "UNEXPIRED" -*Defined in [types.ts:514](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L514)* +*Defined in [types.ts:514](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L514)* ___ @@ -375,7 +375,7 @@ ___ • **Unfunded**: = "UNFUNDED" -*Defined in [types.ts:515](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L515)* +*Defined in [types.ts:515](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L515)*
@@ -391,7 +391,7 @@ A set of categories for rejected orders. • **CoordinatorError**: = "COORDINATOR_ERROR" -*Defined in [types.ts:600](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L600)* +*Defined in [types.ts:600](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L600)* ___ @@ -399,7 +399,7 @@ ___ • **MeshError**: = "MESH_ERROR" -*Defined in [types.ts:598](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L598)* +*Defined in [types.ts:598](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L598)* ___ @@ -407,7 +407,7 @@ ___ • **MeshValidation**: = "MESH_VALIDATION" -*Defined in [types.ts:599](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L599)* +*Defined in [types.ts:599](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L599)* ___ @@ -415,7 +415,7 @@ ___ • **ZeroExValidation**: = "ZEROEX_VALIDATION" -*Defined in [types.ts:597](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L597)* +*Defined in [types.ts:597](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L597)*
@@ -429,7 +429,7 @@ ___ • **Debug**: = 5 -*Defined in [types.ts:209](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L209)* +*Defined in [types.ts:209](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L209)* ___ @@ -437,7 +437,7 @@ ___ • **Error**: = 2 -*Defined in [types.ts:206](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L206)* +*Defined in [types.ts:206](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L206)* ___ @@ -445,7 +445,7 @@ ___ • **Fatal**: = 1 -*Defined in [types.ts:205](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L205)* +*Defined in [types.ts:205](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L205)* ___ @@ -453,7 +453,7 @@ ___ • **Info**: = 4 -*Defined in [types.ts:208](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L208)* +*Defined in [types.ts:208](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L208)* ___ @@ -461,7 +461,7 @@ ___ • **Panic**: = 0 -*Defined in [types.ts:204](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L204)* +*Defined in [types.ts:204](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L204)* ___ @@ -469,7 +469,7 @@ ___ • **Trace**: = 6 -*Defined in [types.ts:210](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L210)* +*Defined in [types.ts:210](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L210)* ___ @@ -477,7 +477,7 @@ ___ • **Warn**: = 3 -*Defined in [types.ts:207](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L207)* +*Defined in [types.ts:207](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L207)*
@@ -497,7 +497,7 @@ Info for any orders that were accepted. • **fillableTakerAssetAmount**: *BigNumber* -*Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L578)* +*Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L578)* ___ @@ -505,7 +505,7 @@ ___ • **isNew**: *boolean* -*Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L579)* +*Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L579)* ___ @@ -513,7 +513,7 @@ ___ • **orderHash**: *string* -*Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L576)* +*Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L576)* ___ @@ -521,7 +521,7 @@ ___ • **signedOrder**: *SignedOrder* -*Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L577)* +*Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L577)*
@@ -541,7 +541,7 @@ A set of configuration options for Mesh. • **blockPollingIntervalSeconds**? : *undefined | number* -*Defined in [types.ts:116](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L116)* +*Defined in [types.ts:116](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L116)* ___ @@ -549,7 +549,7 @@ ___ • **bootstrapList**? : *string[]* -*Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L109)* +*Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L109)* ___ @@ -557,7 +557,7 @@ ___ • **customContractAddresses**? : *[ContractAddresses](#interface-contractaddresses)* -*Defined in [types.ts:160](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L160)* +*Defined in [types.ts:160](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L160)* ___ @@ -565,7 +565,7 @@ ___ • **customOrderFilter**? : *[JsonSchema](#interface-jsonschema)* -*Defined in [types.ts:185](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L185)* +*Defined in [types.ts:185](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L185)* ___ @@ -573,7 +573,7 @@ ___ • **enableEthereumRPCRateLimiting**? : *undefined | false | true* -*Defined in [types.ts:133](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L133)* +*Defined in [types.ts:133](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L133)* ___ @@ -581,7 +581,7 @@ ___ • **ethereumChainID**: *number* -*Defined in [types.ts:101](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L101)* +*Defined in [types.ts:101](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L101)* ___ @@ -589,7 +589,7 @@ ___ • **ethereumRPCMaxContentLength**? : *undefined | number* -*Defined in [types.ts:125](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L125)* +*Defined in [types.ts:125](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L125)* ___ @@ -597,7 +597,7 @@ ___ • **ethereumRPCMaxRequestsPer24HrUTC**? : *undefined | number* -*Defined in [types.ts:138](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L138)* +*Defined in [types.ts:138](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L138)* ___ @@ -605,7 +605,7 @@ ___ • **ethereumRPCMaxRequestsPerSecond**? : *undefined | number* -*Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L144)* +*Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L144)* ___ @@ -613,7 +613,7 @@ ___ • **ethereumRPCURL**? : *undefined | string* -*Defined in [types.ts:98](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L98)* +*Defined in [types.ts:98](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L98)* ___ @@ -621,7 +621,7 @@ ___ • **maxOrdersInStorage**? : *undefined | number* -*Defined in [types.ts:165](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L165)* +*Defined in [types.ts:165](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L165)* ___ @@ -629,7 +629,7 @@ ___ • **useBootstrapList**? : *undefined | false | true* -*Defined in [types.ts:104](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L104)* +*Defined in [types.ts:104](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L104)* ___ @@ -637,7 +637,7 @@ ___ • **verbosity**? : *[Verbosity](#enumeration-verbosity)* -*Defined in [types.ts:95](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L95)* +*Defined in [types.ts:95](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L95)* ___ @@ -645,7 +645,7 @@ ___ • **web3Provider**? : *SupportedProvider* -*Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L188)* +*Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L188)*
@@ -663,7 +663,7 @@ ___ • **coordinator**? : *undefined | string* -*Defined in [types.ts:197](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L197)* +*Defined in [types.ts:197](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L197)* ___ @@ -671,7 +671,7 @@ ___ • **coordinatorRegistry**? : *undefined | string* -*Defined in [types.ts:198](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L198)* +*Defined in [types.ts:198](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L198)* ___ @@ -679,7 +679,7 @@ ___ • **devUtils**: *string* -*Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L193)* +*Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L193)* ___ @@ -687,7 +687,7 @@ ___ • **erc1155Proxy**: *string* -*Defined in [types.ts:196](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L196)* +*Defined in [types.ts:196](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L196)* ___ @@ -695,7 +695,7 @@ ___ • **erc20Proxy**: *string* -*Defined in [types.ts:194](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L194)* +*Defined in [types.ts:194](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L194)* ___ @@ -703,7 +703,7 @@ ___ • **erc721Proxy**: *string* -*Defined in [types.ts:195](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L195)* +*Defined in [types.ts:195](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L195)* ___ @@ -711,7 +711,7 @@ ___ • **exchange**: *string* -*Defined in [types.ts:192](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L192)* +*Defined in [types.ts:192](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L192)* ___ @@ -719,7 +719,7 @@ ___ • **weth9**? : *undefined | string* -*Defined in [types.ts:199](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L199)* +*Defined in [types.ts:199](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L199)* ___ @@ -727,7 +727,7 @@ ___ • **zrxToken**? : *undefined | string* -*Defined in [types.ts:200](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L200)* +*Defined in [types.ts:200](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L200)*
@@ -745,7 +745,7 @@ ___ • **address**: *string* -*Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L490)* +*Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L490)* ___ @@ -753,7 +753,7 @@ ___ • **blockHash**: *string* -*Defined in [types.ts:485](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L485)* +*Defined in [types.ts:485](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L485)* ___ @@ -761,7 +761,7 @@ ___ • **isRemoved**: *boolean* -*Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L489)* +*Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L489)* ___ @@ -769,7 +769,7 @@ ___ • **kind**: *[ContractEventKind](#enumeration-contracteventkind)* -*Defined in [types.ts:491](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L491)* +*Defined in [types.ts:491](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L491)* ___ @@ -777,7 +777,7 @@ ___ • **logIndex**: *number* -*Defined in [types.ts:488](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L488)* +*Defined in [types.ts:488](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L488)* ___ @@ -785,7 +785,7 @@ ___ • **parameters**: *[ContractEventParameters](#contracteventparameters)* -*Defined in [types.ts:492](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L492)* +*Defined in [types.ts:492](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L492)* ___ @@ -793,7 +793,7 @@ ___ • **txHash**: *string* -*Defined in [types.ts:486](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L486)* +*Defined in [types.ts:486](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L486)* ___ @@ -801,7 +801,7 @@ ___ • **txIndex**: *number* -*Defined in [types.ts:487](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L487)* +*Defined in [types.ts:487](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L487)*
@@ -819,7 +819,7 @@ ___ • **approved**: *boolean* -*Defined in [types.ts:360](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L360)* +*Defined in [types.ts:360](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L360)* ___ @@ -827,7 +827,7 @@ ___ • **operator**: *string* -*Defined in [types.ts:359](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L359)* +*Defined in [types.ts:359](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L359)* ___ @@ -835,7 +835,7 @@ ___ • **owner**: *string* -*Defined in [types.ts:358](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L358)* +*Defined in [types.ts:358](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L358)*
@@ -853,7 +853,7 @@ ___ • **from**: *string* -*Defined in [types.ts:343](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L343)* +*Defined in [types.ts:343](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L343)* ___ @@ -861,7 +861,7 @@ ___ • **ids**: *BigNumber[]* -*Defined in [types.ts:345](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L345)* +*Defined in [types.ts:345](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L345)* ___ @@ -869,7 +869,7 @@ ___ • **operator**: *string* -*Defined in [types.ts:342](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L342)* +*Defined in [types.ts:342](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L342)* ___ @@ -877,7 +877,7 @@ ___ • **to**: *string* -*Defined in [types.ts:344](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L344)* +*Defined in [types.ts:344](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L344)* ___ @@ -885,7 +885,7 @@ ___ • **values**: *BigNumber[]* -*Defined in [types.ts:346](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L346)* +*Defined in [types.ts:346](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L346)*
@@ -903,7 +903,7 @@ ___ • **from**: *string* -*Defined in [types.ts:327](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L327)* +*Defined in [types.ts:327](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L327)* ___ @@ -911,7 +911,7 @@ ___ • **id**: *BigNumber* -*Defined in [types.ts:329](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L329)* +*Defined in [types.ts:329](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L329)* ___ @@ -919,7 +919,7 @@ ___ • **operator**: *string* -*Defined in [types.ts:326](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L326)* +*Defined in [types.ts:326](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L326)* ___ @@ -927,7 +927,7 @@ ___ • **to**: *string* -*Defined in [types.ts:328](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L328)* +*Defined in [types.ts:328](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L328)* ___ @@ -935,7 +935,7 @@ ___ • **value**: *BigNumber* -*Defined in [types.ts:330](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L330)* +*Defined in [types.ts:330](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L330)*
@@ -953,7 +953,7 @@ ___ • **owner**: *string* -*Defined in [types.ts:284](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L284)* +*Defined in [types.ts:284](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L284)* ___ @@ -961,7 +961,7 @@ ___ • **spender**: *string* -*Defined in [types.ts:285](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L285)* +*Defined in [types.ts:285](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L285)* ___ @@ -969,7 +969,7 @@ ___ • **value**: *BigNumber* -*Defined in [types.ts:286](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L286)* +*Defined in [types.ts:286](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L286)*
@@ -987,7 +987,7 @@ ___ • **from**: *string* -*Defined in [types.ts:272](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L272)* +*Defined in [types.ts:272](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L272)* ___ @@ -995,7 +995,7 @@ ___ • **to**: *string* -*Defined in [types.ts:273](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L273)* +*Defined in [types.ts:273](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L273)* ___ @@ -1003,7 +1003,7 @@ ___ • **value**: *BigNumber* -*Defined in [types.ts:274](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L274)* +*Defined in [types.ts:274](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L274)*
@@ -1021,7 +1021,7 @@ ___ • **approved**: *string* -*Defined in [types.ts:309](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L309)* +*Defined in [types.ts:309](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L309)* ___ @@ -1029,7 +1029,7 @@ ___ • **owner**: *string* -*Defined in [types.ts:308](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L308)* +*Defined in [types.ts:308](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L308)* ___ @@ -1037,7 +1037,7 @@ ___ • **tokenId**: *BigNumber* -*Defined in [types.ts:310](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L310)* +*Defined in [types.ts:310](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L310)*
@@ -1055,7 +1055,7 @@ ___ • **approved**: *boolean* -*Defined in [types.ts:322](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L322)* +*Defined in [types.ts:322](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L322)* ___ @@ -1063,7 +1063,7 @@ ___ • **operator**: *string* -*Defined in [types.ts:321](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L321)* +*Defined in [types.ts:321](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L321)* ___ @@ -1071,7 +1071,7 @@ ___ • **owner**: *string* -*Defined in [types.ts:320](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L320)* +*Defined in [types.ts:320](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L320)*
@@ -1089,7 +1089,7 @@ ___ • **from**: *string* -*Defined in [types.ts:296](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L296)* +*Defined in [types.ts:296](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L296)* ___ @@ -1097,7 +1097,7 @@ ___ • **to**: *string* -*Defined in [types.ts:297](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L297)* +*Defined in [types.ts:297](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L297)* ___ @@ -1105,7 +1105,7 @@ ___ • **tokenId**: *BigNumber* -*Defined in [types.ts:298](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L298)* +*Defined in [types.ts:298](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L298)*
@@ -1123,7 +1123,7 @@ ___ • **feeRecipientAddress**: *string* -*Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L400)* +*Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L400)* ___ @@ -1131,7 +1131,7 @@ ___ • **makerAddress**: *string* -*Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L398)* +*Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L398)* ___ @@ -1139,7 +1139,7 @@ ___ • **makerAssetData**: *string* -*Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L402)* +*Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L402)* ___ @@ -1147,7 +1147,7 @@ ___ • **orderHash**: *string* -*Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L401)* +*Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L401)* ___ @@ -1155,7 +1155,7 @@ ___ • **senderAddress**: *string* -*Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L399)* +*Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L399)* ___ @@ -1163,7 +1163,7 @@ ___ • **takerAssetData**: *string* -*Defined in [types.ts:403](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L403)* +*Defined in [types.ts:403](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L403)*
@@ -1181,7 +1181,7 @@ ___ • **makerAddress**: *string* -*Defined in [types.ts:407](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L407)* +*Defined in [types.ts:407](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L407)* ___ @@ -1189,7 +1189,7 @@ ___ • **orderEpoch**: *BigNumber* -*Defined in [types.ts:409](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L409)* +*Defined in [types.ts:409](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L409)* ___ @@ -1197,7 +1197,7 @@ ___ • **orderSenderAddress**: *string* -*Defined in [types.ts:408](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L408)* +*Defined in [types.ts:408](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L408)*
@@ -1215,7 +1215,7 @@ ___ • **feeRecipientAddress**: *string* -*Defined in [types.ts:367](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L367)* +*Defined in [types.ts:367](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L367)* ___ @@ -1223,7 +1223,7 @@ ___ • **makerAddress**: *string* -*Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L364)* +*Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L364)* ___ @@ -1231,7 +1231,7 @@ ___ • **makerAssetData**: *string* -*Defined in [types.ts:374](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L374)* +*Defined in [types.ts:374](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L374)* ___ @@ -1239,7 +1239,7 @@ ___ • **makerAssetFilledAmount**: *BigNumber* -*Defined in [types.ts:368](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L368)* +*Defined in [types.ts:368](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L368)* ___ @@ -1247,7 +1247,7 @@ ___ • **makerFeeAssetData**: *string* -*Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L376)* +*Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L376)* ___ @@ -1255,7 +1255,7 @@ ___ • **makerFeePaid**: *BigNumber* -*Defined in [types.ts:370](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L370)* +*Defined in [types.ts:370](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L370)* ___ @@ -1263,7 +1263,7 @@ ___ • **orderHash**: *string* -*Defined in [types.ts:373](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L373)* +*Defined in [types.ts:373](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L373)* ___ @@ -1271,7 +1271,7 @@ ___ • **protocolFeePaid**: *BigNumber* -*Defined in [types.ts:372](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L372)* +*Defined in [types.ts:372](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L372)* ___ @@ -1279,7 +1279,7 @@ ___ • **senderAddress**: *string* -*Defined in [types.ts:366](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L366)* +*Defined in [types.ts:366](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L366)* ___ @@ -1287,7 +1287,7 @@ ___ • **takerAddress**: *string* -*Defined in [types.ts:365](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L365)* +*Defined in [types.ts:365](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L365)* ___ @@ -1295,7 +1295,7 @@ ___ • **takerAssetData**: *string* -*Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L375)* +*Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L375)* ___ @@ -1303,7 +1303,7 @@ ___ • **takerAssetFilledAmount**: *BigNumber* -*Defined in [types.ts:369](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L369)* +*Defined in [types.ts:369](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L369)* ___ @@ -1311,7 +1311,7 @@ ___ • **takerFeeAssetData**: *string* -*Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L377)* +*Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L377)* ___ @@ -1319,7 +1319,7 @@ ___ • **takerFeePaid**: *BigNumber* -*Defined in [types.ts:371](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L371)* +*Defined in [types.ts:371](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L371)*
@@ -1337,7 +1337,7 @@ ___ • **ordersInfos**: *[OrderInfo](#interface-orderinfo)[]* -*Defined in [types.ts:18](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L18)* +*Defined in [types.ts:18](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L18)* ___ @@ -1345,7 +1345,7 @@ ___ • **snapshotID**: *string* -*Defined in [types.ts:16](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L16)* +*Defined in [types.ts:16](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L16)* ___ @@ -1353,7 +1353,7 @@ ___ • **snapshotTimestamp**: *number* -*Defined in [types.ts:17](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L17)* +*Defined in [types.ts:17](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L17)*
@@ -1373,7 +1373,7 @@ An interface for JSON schema types, which are used for custom order filters. • **$ref**? : *undefined | string* -*Defined in [types.ts:39](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L39)* +*Defined in [types.ts:39](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L39)* ___ @@ -1381,7 +1381,7 @@ ___ • **$schema**? : *undefined | string* -*Defined in [types.ts:38](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L38)* +*Defined in [types.ts:38](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L38)* ___ @@ -1389,7 +1389,7 @@ ___ • **additionalItems**? : *boolean | [JsonSchema](#interface-jsonschema)* -*Defined in [types.ts:50](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L50)* +*Defined in [types.ts:50](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L50)* ___ @@ -1397,7 +1397,7 @@ ___ • **additionalProperties**? : *boolean | [JsonSchema](#interface-jsonschema)* -*Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L58)* +*Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L58)* ___ @@ -1405,7 +1405,7 @@ ___ • **allOf**? : *[JsonSchema](#interface-jsonschema)[]* -*Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L80)* +*Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L80)* ___ @@ -1413,7 +1413,7 @@ ___ • **anyOf**? : *[JsonSchema](#interface-jsonschema)[]* -*Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L81)* +*Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L81)* ___ @@ -1421,7 +1421,7 @@ ___ • **const**? : *any* -*Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L77)* +*Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L77)* ___ @@ -1429,7 +1429,7 @@ ___ • **definitions**? : *undefined | object* -*Defined in [types.ts:59](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L59)* +*Defined in [types.ts:59](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L59)* ___ @@ -1437,7 +1437,7 @@ ___ • **dependencies**? : *undefined | object* -*Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L68)* +*Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L68)* ___ @@ -1445,7 +1445,7 @@ ___ • **description**? : *undefined | string* -*Defined in [types.ts:41](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L41)* +*Defined in [types.ts:41](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L41)* ___ @@ -1453,7 +1453,7 @@ ___ • **enum**? : *any[]* -*Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L71)* +*Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L71)* ___ @@ -1461,7 +1461,7 @@ ___ • **exclusiveMaximum**? : *undefined | false | true* -*Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L44)* +*Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L44)* ___ @@ -1469,7 +1469,7 @@ ___ • **exclusiveMinimum**? : *undefined | false | true* -*Defined in [types.ts:46](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L46)* +*Defined in [types.ts:46](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L46)* ___ @@ -1477,7 +1477,7 @@ ___ • **format**? : *undefined | string* -*Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L79)* +*Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L79)* ___ @@ -1485,7 +1485,7 @@ ___ • **id**? : *undefined | string* -*Defined in [types.ts:37](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L37)* +*Defined in [types.ts:37](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L37)* ___ @@ -1493,7 +1493,7 @@ ___ • **items**? : *[JsonSchema](#interface-jsonschema) | [JsonSchema](#interface-jsonschema)[]* -*Defined in [types.ts:51](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L51)* +*Defined in [types.ts:51](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L51)* ___ @@ -1501,7 +1501,7 @@ ___ • **maxItems**? : *undefined | number* -*Defined in [types.ts:52](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L52)* +*Defined in [types.ts:52](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L52)* ___ @@ -1509,7 +1509,7 @@ ___ • **maxLength**? : *undefined | number* -*Defined in [types.ts:47](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L47)* +*Defined in [types.ts:47](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L47)* ___ @@ -1517,7 +1517,7 @@ ___ • **maxProperties**? : *undefined | number* -*Defined in [types.ts:55](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L55)* +*Defined in [types.ts:55](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L55)* ___ @@ -1525,7 +1525,7 @@ ___ • **maximum**? : *undefined | number* -*Defined in [types.ts:43](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L43)* +*Defined in [types.ts:43](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L43)* ___ @@ -1533,7 +1533,7 @@ ___ • **minItems**? : *undefined | number* -*Defined in [types.ts:53](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L53)* +*Defined in [types.ts:53](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L53)* ___ @@ -1541,7 +1541,7 @@ ___ • **minLength**? : *undefined | number* -*Defined in [types.ts:48](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L48)* +*Defined in [types.ts:48](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L48)* ___ @@ -1549,7 +1549,7 @@ ___ • **minProperties**? : *undefined | number* -*Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L56)* +*Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L56)* ___ @@ -1557,7 +1557,7 @@ ___ • **minimum**? : *undefined | number* -*Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L45)* +*Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L45)* ___ @@ -1565,7 +1565,7 @@ ___ • **multipleOf**? : *undefined | number* -*Defined in [types.ts:42](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L42)* +*Defined in [types.ts:42](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L42)* ___ @@ -1573,7 +1573,7 @@ ___ • **not**? : *[JsonSchema](#interface-jsonschema)* -*Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L83)* +*Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L83)* ___ @@ -1581,7 +1581,7 @@ ___ • **oneOf**? : *[JsonSchema](#interface-jsonschema)[]* -*Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L82)* +*Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L82)* ___ @@ -1589,7 +1589,7 @@ ___ • **pattern**? : *string | RegExp* -*Defined in [types.ts:49](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L49)* +*Defined in [types.ts:49](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L49)* ___ @@ -1597,7 +1597,7 @@ ___ • **patternProperties**? : *undefined | object* -*Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L65)* +*Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L65)* ___ @@ -1605,7 +1605,7 @@ ___ • **properties**? : *undefined | object* -*Defined in [types.ts:62](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L62)* +*Defined in [types.ts:62](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L62)* ___ @@ -1613,7 +1613,7 @@ ___ • **required**? : *string[]* -*Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L57)* +*Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L57)* ___ @@ -1621,7 +1621,7 @@ ___ • **title**? : *undefined | string* -*Defined in [types.ts:40](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L40)* +*Defined in [types.ts:40](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L40)* ___ @@ -1629,7 +1629,7 @@ ___ • **type**? : *string | string[]* -*Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L78)* +*Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L78)* ___ @@ -1637,7 +1637,7 @@ ___ • **uniqueItems**? : *undefined | false | true* -*Defined in [types.ts:54](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L54)* +*Defined in [types.ts:54](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L54)*
@@ -1655,7 +1655,7 @@ ___ • **hash**: *string* -*Defined in [types.ts:613](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L613)* +*Defined in [types.ts:613](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L613)* ___ @@ -1663,7 +1663,116 @@ ___ • **number**: *number* -*Defined in [types.ts:612](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L612)* +*Defined in [types.ts:612](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L612)* + + +
+ +# Interface: MeshWrapper + +### Hierarchy + +* **MeshWrapper** + + +### Methods + +## addOrdersAsync + +▸ **addOrdersAsync**(`orders`: [WrapperSignedOrder](#interface-wrappersignedorder)[], `pinned`: boolean): *Promise‹[WrapperValidationResults](#interface-wrappervalidationresults)›* + +*Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L227)* + +**Parameters:** + +Name | Type | +------ | ------ | +`orders` | [WrapperSignedOrder](#interface-wrappersignedorder)[] | +`pinned` | boolean | + +**Returns:** *Promise‹[WrapperValidationResults](#interface-wrappervalidationresults)›* + +___ + +## getOrdersForPageAsync + +▸ **getOrdersForPageAsync**(`page`: number, `perPage`: number, `snapshotID?`: undefined | string): *Promise‹[WrapperGetOrdersResponse](#interface-wrappergetordersresponse)›* + +*Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L226)* + +**Parameters:** + +Name | Type | +------ | ------ | +`page` | number | +`perPage` | number | +`snapshotID?` | undefined | string | + +**Returns:** *Promise‹[WrapperGetOrdersResponse](#interface-wrappergetordersresponse)›* + +___ + +## getStatsAsync + +▸ **getStatsAsync**(): *Promise‹[WrapperStats](#interface-wrapperstats)›* + +*Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L225)* + +**Returns:** *Promise‹[WrapperStats](#interface-wrapperstats)›* + +___ + +## onError + +▸ **onError**(`handler`: function): *void* + +*Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L223)* + +**Parameters:** + +▪ **handler**: *function* + +▸ (`err`: Error): *void* + +**Parameters:** + +Name | Type | +------ | ------ | +`err` | Error | + +**Returns:** *void* + +___ + +## onOrderEvents + +▸ **onOrderEvents**(`handler`: function): *void* + +*Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L224)* + +**Parameters:** + +▪ **handler**: *function* + +▸ (`events`: [WrapperOrderEvent](#interface-wrapperorderevent)[]): *void* + +**Parameters:** + +Name | Type | +------ | ------ | +`events` | [WrapperOrderEvent](#interface-wrapperorderevent)[] | + +**Returns:** *void* + +___ + +## startAsync + +▸ **startAsync**(): *Promise‹void›* + +*Defined in [types.ts:222](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L222)* + +**Returns:** *Promise‹void›*
@@ -1684,7 +1793,7 @@ or filled. • **contractEvents**: *[ContractEvent](#interface-contractevent)[]* -*Defined in [types.ts:539](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L539)* +*Defined in [types.ts:539](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L539)* ___ @@ -1692,7 +1801,7 @@ ___ • **endState**: *[OrderEventEndState](#enumeration-ordereventendstate)* -*Defined in [types.ts:537](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L537)* +*Defined in [types.ts:537](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L537)* ___ @@ -1700,7 +1809,7 @@ ___ • **fillableTakerAssetAmount**: *BigNumber* -*Defined in [types.ts:538](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L538)* +*Defined in [types.ts:538](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L538)* ___ @@ -1708,7 +1817,7 @@ ___ • **orderHash**: *string* -*Defined in [types.ts:535](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L535)* +*Defined in [types.ts:535](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L535)* ___ @@ -1716,7 +1825,7 @@ ___ • **signedOrder**: *SignedOrder* -*Defined in [types.ts:536](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L536)* +*Defined in [types.ts:536](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L536)* ___ @@ -1724,7 +1833,7 @@ ___ • **timestampMs**: *number* -*Defined in [types.ts:534](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L534)* +*Defined in [types.ts:534](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L534)*
@@ -1742,7 +1851,7 @@ ___ • **fillableTakerAssetAmount**: *BigNumber* -*Defined in [types.ts:30](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L30)* +*Defined in [types.ts:30](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L30)* ___ @@ -1750,7 +1859,7 @@ ___ • **orderHash**: *string* -*Defined in [types.ts:28](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L28)* +*Defined in [types.ts:28](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L28)* ___ @@ -1758,7 +1867,7 @@ ___ • **signedOrder**: *SignedOrder* -*Defined in [types.ts:29](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L29)* +*Defined in [types.ts:29](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L29)*
@@ -1779,7 +1888,7 @@ rejected. • **kind**: *[RejectedOrderKind](#enumeration-rejectedorderkind)* -*Defined in [types.ts:589](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L589)* +*Defined in [types.ts:589](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L589)* ___ @@ -1787,7 +1896,7 @@ ___ • **orderHash**: *string* -*Defined in [types.ts:587](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L587)* +*Defined in [types.ts:587](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L587)* ___ @@ -1795,7 +1904,7 @@ ___ • **signedOrder**: *SignedOrder* -*Defined in [types.ts:588](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L588)* +*Defined in [types.ts:588](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L588)* ___ @@ -1803,7 +1912,7 @@ ___ • **status**: *[RejectedOrderStatus](#interface-rejectedorderstatus)* -*Defined in [types.ts:590](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L590)* +*Defined in [types.ts:590](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L590)*
@@ -1823,7 +1932,7 @@ Provides more information about why an order was rejected. • **code**: *string* -*Defined in [types.ts:607](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L607)* +*Defined in [types.ts:607](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L607)* ___ @@ -1831,7 +1940,7 @@ ___ • **message**: *string* -*Defined in [types.ts:608](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L608)* +*Defined in [types.ts:608](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L608)*
@@ -1849,7 +1958,7 @@ ___ • **ethRPCRateLimitExpiredRequests**: *number* -*Defined in [types.ts:649](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L649)* +*Defined in [types.ts:649](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L649)* ___ @@ -1857,7 +1966,7 @@ ___ • **ethRPCRequestsSentInCurrentUTCDay**: *number* -*Defined in [types.ts:648](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L648)* +*Defined in [types.ts:648](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L648)* ___ @@ -1865,7 +1974,7 @@ ___ • **ethereumChainID**: *number* -*Defined in [types.ts:640](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L640)* +*Defined in [types.ts:640](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L640)* ___ @@ -1873,7 +1982,7 @@ ___ • **latestBlock**: *[LatestBlock](#interface-latestblock)* -*Defined in [types.ts:641](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L641)* +*Defined in [types.ts:641](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L641)* ___ @@ -1881,7 +1990,7 @@ ___ • **maxExpirationTime**: *BigNumber* -*Defined in [types.ts:646](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L646)* +*Defined in [types.ts:646](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L646)* ___ @@ -1889,7 +1998,7 @@ ___ • **numOrders**: *number* -*Defined in [types.ts:643](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L643)* +*Defined in [types.ts:643](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L643)* ___ @@ -1897,7 +2006,7 @@ ___ • **numOrdersIncludingRemoved**: *number* -*Defined in [types.ts:644](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L644)* +*Defined in [types.ts:644](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L644)* ___ @@ -1905,7 +2014,7 @@ ___ • **numPeers**: *number* -*Defined in [types.ts:642](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L642)* +*Defined in [types.ts:642](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L642)* ___ @@ -1913,7 +2022,7 @@ ___ • **numPinnedOrders**: *number* -*Defined in [types.ts:645](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L645)* +*Defined in [types.ts:645](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L645)* ___ @@ -1921,7 +2030,7 @@ ___ • **peerID**: *string* -*Defined in [types.ts:639](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L639)* +*Defined in [types.ts:639](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L639)* ___ @@ -1929,7 +2038,7 @@ ___ • **pubSubTopic**: *string* -*Defined in [types.ts:636](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L636)* +*Defined in [types.ts:636](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L636)* ___ @@ -1937,7 +2046,7 @@ ___ • **rendezvous**: *string* -*Defined in [types.ts:637](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L637)* +*Defined in [types.ts:637](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L637)* ___ @@ -1945,7 +2054,7 @@ ___ • **secondaryRendezvous**: *string[]* -*Defined in [types.ts:638](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L638)* +*Defined in [types.ts:638](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L638)* ___ @@ -1953,7 +2062,7 @@ ___ • **startOfCurrentUTCDay**: *Date* -*Defined in [types.ts:647](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L647)* +*Defined in [types.ts:647](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L647)* ___ @@ -1961,7 +2070,7 @@ ___ • **version**: *string* -*Defined in [types.ts:635](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L635)* +*Defined in [types.ts:635](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L635)*
@@ -1981,7 +2090,7 @@ Indicates which orders where accepted, which were rejected, and why. • **accepted**: *[AcceptedOrderInfo](#interface-acceptedorderinfo)[]* -*Defined in [types.ts:568](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L568)* +*Defined in [types.ts:568](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L568)* ___ @@ -1989,7 +2098,7 @@ ___ • **rejected**: *[RejectedOrderInfo](#interface-rejectedorderinfo)[]* -*Defined in [types.ts:569](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L569)* +*Defined in [types.ts:569](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L569)*
@@ -2007,7 +2116,7 @@ ___ • **owner**: *string* -*Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L429)* +*Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L429)* ___ @@ -2015,7 +2124,7 @@ ___ • **value**: *BigNumber* -*Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L430)* +*Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L430)*
@@ -2033,7 +2142,7 @@ ___ • **owner**: *string* -*Defined in [types.ts:419](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L419)* +*Defined in [types.ts:419](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L419)* ___ @@ -2041,40 +2150,1186 @@ ___ • **value**: *BigNumber* -*Defined in [types.ts:420](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L420)* +*Defined in [types.ts:420](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L420)*
-# Functions +# Interface: WrapperAcceptedOrderInfo -## loadMeshStreamingForURLAsync -▸ **loadMeshStreamingWithURLAsync**(`url`: `string`): *Promise‹`void`›* +### Hierarchy -*Defined in [index.ts:7](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/index.ts#L7)* +* **WrapperAcceptedOrderInfo** -Loads the Wasm module that is provided by fetching a url. -**Parameters:** +### Properties + +## fillableTakerAssetAmount + +• **fillableTakerAssetAmount**: *string* + +*Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L552)* + +___ + +## isNew + +• **isNew**: *boolean* + +*Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L553)* + +___ + +## orderHash + +• **orderHash**: *string* + +*Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L550)* + +___ + +## signedOrder + +• **signedOrder**: *[WrapperSignedOrder](#interface-wrappersignedorder)* + +*Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L551)* -Name | Type | Description | ------- | ------ | ------ | -`url` | `string` | The URL to query for the Wasm binary |
-## loadMeshStreamingAsync +# Interface: WrapperConfig -▸ **loadMeshStreamingAsync**(`response`: `Response | Promise`): *Promise‹`void`›* +### Hierarchy -*Defined in [index.ts:15](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/index.ts#L15)* +* **WrapperConfig** -Loads the Wasm module that is provided by a response. -**Parameters:** +### Properties + +## `Optional` blockPollingIntervalSeconds + +• **blockPollingIntervalSeconds**? : *undefined | number* + +*Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L237)* + +___ + +## `Optional` bootstrapList + +• **bootstrapList**? : *undefined | string* + +*Defined in [types.ts:236](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L236)* + +___ + +## `Optional` customContractAddresses + +• **customContractAddresses**? : *undefined | string* + +*Defined in [types.ts:242](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L242)* + +___ + +## `Optional` customOrderFilter + +• **customOrderFilter**? : *undefined | string* + +*Defined in [types.ts:244](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L244)* + +___ + +## `Optional` enableEthereumRPCRateLimiting + +• **enableEthereumRPCRateLimiting**? : *undefined | false | true* + +*Defined in [types.ts:241](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L241)* + +___ + +## ethereumChainID + +• **ethereumChainID**: *number* + +*Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L234)* + +___ + +## `Optional` ethereumRPCMaxContentLength + +• **ethereumRPCMaxContentLength**? : *undefined | number* + +*Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L238)* + +___ + +## `Optional` ethereumRPCMaxRequestsPer24HrUTC + +• **ethereumRPCMaxRequestsPer24HrUTC**? : *undefined | number* + +*Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L239)* + +___ + +## `Optional` ethereumRPCMaxRequestsPerSecond + +• **ethereumRPCMaxRequestsPerSecond**? : *undefined | number* + +*Defined in [types.ts:240](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L240)* + +___ + +## `Optional` ethereumRPCURL + +• **ethereumRPCURL**? : *undefined | string* + +*Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L233)* + +___ + +## `Optional` maxOrdersInStorage + +• **maxOrdersInStorage**? : *undefined | number* + +*Defined in [types.ts:243](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L243)* + +___ + +## `Optional` useBootstrapList + +• **useBootstrapList**? : *undefined | false | true* + +*Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L235)* + +___ + +## `Optional` verbosity + +• **verbosity**? : *undefined | number* + +*Defined in [types.ts:232](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L232)* + +___ + +## `Optional` web3Provider + +• **web3Provider**? : *ZeroExProvider* + +*Defined in [types.ts:245](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L245)* -Name | Type | Description | ------- | ------ | ------ | -`response` | `Response \| Promise` | The Wasm response that supplies the Wasm binary |
+ +# Interface: WrapperContractEvent + +### Hierarchy + +* **WrapperContractEvent** + + +### Properties + +## address + +• **address**: *string* + +*Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L502)* + +___ + +## blockHash + +• **blockHash**: *string* + +*Defined in [types.ts:497](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L497)* + +___ + +## isRemoved + +• **isRemoved**: *boolean* + +*Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L501)* + +___ + +## kind + +• **kind**: *string* + +*Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L503)* + +___ + +## logIndex + +• **logIndex**: *number* + +*Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L500)* + +___ + +## parameters + +• **parameters**: *[WrapperContractEventParameters](#wrappercontracteventparameters)* + +*Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L504)* + +___ + +## txHash + +• **txHash**: *string* + +*Defined in [types.ts:498](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L498)* + +___ + +## txIndex + +• **txIndex**: *number* + +*Defined in [types.ts:499](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L499)* + + +
+ +# Interface: WrapperERC1155TransferBatchEvent + +### Hierarchy + +* **WrapperERC1155TransferBatchEvent** + + +### Properties + +## from + +• **from**: *string* + +*Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L351)* + +___ + +## ids + +• **ids**: *string[]* + +*Defined in [types.ts:353](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L353)* + +___ + +## operator + +• **operator**: *string* + +*Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L350)* + +___ + +## to + +• **to**: *string* + +*Defined in [types.ts:352](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L352)* + +___ + +## values + +• **values**: *string[]* + +*Defined in [types.ts:354](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L354)* + + +
+ +# Interface: WrapperERC1155TransferSingleEvent + +### Hierarchy + +* **WrapperERC1155TransferSingleEvent** + + +### Properties + +## from + +• **from**: *string* + +*Defined in [types.ts:335](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L335)* + +___ + +## id + +• **id**: *string* + +*Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L337)* + +___ + +## operator + +• **operator**: *string* + +*Defined in [types.ts:334](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L334)* + +___ + +## to + +• **to**: *string* + +*Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L336)* + +___ + +## value + +• **value**: *string* + +*Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L338)* + + +
+ +# Interface: WrapperERC20ApprovalEvent + +### Hierarchy + +* **WrapperERC20ApprovalEvent** + + +### Properties + +## owner + +• **owner**: *string* + +*Defined in [types.ts:290](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L290)* + +___ + +## spender + +• **spender**: *string* + +*Defined in [types.ts:291](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L291)* + +___ + +## value + +• **value**: *string* + +*Defined in [types.ts:292](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L292)* + + +
+ +# Interface: WrapperERC20TransferEvent + +### Hierarchy + +* **WrapperERC20TransferEvent** + + +### Properties + +## from + +• **from**: *string* + +*Defined in [types.ts:278](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L278)* + +___ + +## to + +• **to**: *string* + +*Defined in [types.ts:279](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L279)* + +___ + +## value + +• **value**: *string* + +*Defined in [types.ts:280](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L280)* + + +
+ +# Interface: WrapperERC721ApprovalEvent + +### Hierarchy + +* **WrapperERC721ApprovalEvent** + + +### Properties + +## approved + +• **approved**: *string* + +*Defined in [types.ts:315](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L315)* + +___ + +## owner + +• **owner**: *string* + +*Defined in [types.ts:314](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L314)* + +___ + +## tokenId + +• **tokenId**: *string* + +*Defined in [types.ts:316](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L316)* + + +
+ +# Interface: WrapperERC721TransferEvent + +### Hierarchy + +* **WrapperERC721TransferEvent** + + +### Properties + +## from + +• **from**: *string* + +*Defined in [types.ts:302](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L302)* + +___ + +## to + +• **to**: *string* + +*Defined in [types.ts:303](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L303)* + +___ + +## tokenId + +• **tokenId**: *string* + +*Defined in [types.ts:304](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L304)* + + +
+ +# Interface: WrapperExchangeCancelUpToEvent + +### Hierarchy + +* **WrapperExchangeCancelUpToEvent** + + +### Properties + +## makerAddress + +• **makerAddress**: *string* + +*Defined in [types.ts:413](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L413)* + +___ + +## orderEpoch + +• **orderEpoch**: *string* + +*Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L415)* + +___ + +## orderSenderAddress + +• **orderSenderAddress**: *string* + +*Defined in [types.ts:414](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L414)* + + +
+ +# Interface: WrapperExchangeFillEvent + +### Hierarchy + +* **WrapperExchangeFillEvent** + + +### Properties + +## feeRecipientAddress + +• **feeRecipientAddress**: *string* + +*Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L384)* + +___ + +## makerAddress + +• **makerAddress**: *string* + +*Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L381)* + +___ + +## makerAssetData + +• **makerAssetData**: *string* + +*Defined in [types.ts:391](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L391)* + +___ + +## makerAssetFilledAmount + +• **makerAssetFilledAmount**: *string* + +*Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L385)* + +___ + +## makerFeeAssetData + +• **makerFeeAssetData**: *string* + +*Defined in [types.ts:393](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L393)* + +___ + +## makerFeePaid + +• **makerFeePaid**: *string* + +*Defined in [types.ts:387](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L387)* + +___ + +## orderHash + +• **orderHash**: *string* + +*Defined in [types.ts:390](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L390)* + +___ + +## protocolFeePaid + +• **protocolFeePaid**: *string* + +*Defined in [types.ts:389](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L389)* + +___ + +## senderAddress + +• **senderAddress**: *string* + +*Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L383)* + +___ + +## takerAddress + +• **takerAddress**: *string* + +*Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L382)* + +___ + +## takerAssetData + +• **takerAssetData**: *string* + +*Defined in [types.ts:392](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L392)* + +___ + +## takerAssetFilledAmount + +• **takerAssetFilledAmount**: *string* + +*Defined in [types.ts:386](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L386)* + +___ + +## takerFeeAssetData + +• **takerFeeAssetData**: *string* + +*Defined in [types.ts:394](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L394)* + +___ + +## takerFeePaid + +• **takerFeePaid**: *string* + +*Defined in [types.ts:388](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L388)* + + +
+ +# Interface: WrapperGetOrdersResponse + +### Hierarchy + +* **WrapperGetOrdersResponse** + + +### Properties + +## ordersInfos + +• **ordersInfos**: *[WrapperOrderInfo](#interface-wrapperorderinfo)[]* + +*Defined in [types.ts:12](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L12)* + +___ + +## snapshotID + +• **snapshotID**: *string* + +*Defined in [types.ts:10](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L10)* + +___ + +## snapshotTimestamp + +• **snapshotTimestamp**: *string* + +*Defined in [types.ts:11](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L11)* + + +
+ +# Interface: WrapperOrderEvent + +### Hierarchy + +* **WrapperOrderEvent** + + +### Properties + +## contractEvents + +• **contractEvents**: *[WrapperContractEvent](#interface-wrappercontractevent)[]* + +*Defined in [types.ts:526](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L526)* + +___ + +## endState + +• **endState**: *[OrderEventEndState](#enumeration-ordereventendstate)* + +*Defined in [types.ts:524](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L524)* + +___ + +## fillableTakerAssetAmount + +• **fillableTakerAssetAmount**: *string* + +*Defined in [types.ts:525](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L525)* + +___ + +## orderHash + +• **orderHash**: *string* + +*Defined in [types.ts:522](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L522)* + +___ + +## signedOrder + +• **signedOrder**: *[WrapperSignedOrder](#interface-wrappersignedorder)* + +*Defined in [types.ts:523](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L523)* + +___ + +## timestamp + +• **timestamp**: *string* + +*Defined in [types.ts:521](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L521)* + + +
+ +# Interface: WrapperOrderInfo + +### Hierarchy + +* **WrapperOrderInfo** + + +### Properties + +## fillableTakerAssetAmount + +• **fillableTakerAssetAmount**: *string* + +*Defined in [types.ts:24](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L24)* + +___ + +## orderHash + +• **orderHash**: *string* + +*Defined in [types.ts:22](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L22)* + +___ + +## signedOrder + +• **signedOrder**: *[WrapperSignedOrder](#interface-wrappersignedorder)* + +*Defined in [types.ts:23](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L23)* + + +
+ +# Interface: WrapperRejectedOrderInfo + +### Hierarchy + +* **WrapperRejectedOrderInfo** + + +### Properties + +## kind + +• **kind**: *[RejectedOrderKind](#enumeration-rejectedorderkind)* + +*Defined in [types.ts:560](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L560)* + +___ + +## orderHash + +• **orderHash**: *string* + +*Defined in [types.ts:558](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L558)* + +___ + +## signedOrder + +• **signedOrder**: *[WrapperSignedOrder](#interface-wrappersignedorder)* + +*Defined in [types.ts:559](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L559)* + +___ + +## status + +• **status**: *[RejectedOrderStatus](#interface-rejectedorderstatus)* + +*Defined in [types.ts:561](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L561)* + + +
+ +# Interface: WrapperSignedOrder + +### Hierarchy + +* **WrapperSignedOrder** + + +### Properties + +## chainId + +• **chainId**: *number* + +*Defined in [types.ts:268](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L268)* + +___ + +## exchangeAddress + +• **exchangeAddress**: *string* + +*Defined in [types.ts:267](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L267)* + +___ + +## expirationTimeSeconds + +• **expirationTimeSeconds**: *string* + +*Defined in [types.ts:264](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L264)* + +___ + +## feeRecipientAddress + +• **feeRecipientAddress**: *string* + +*Defined in [types.ts:263](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L263)* + +___ + +## makerAddress + +• **makerAddress**: *string* + +*Defined in [types.ts:252](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L252)* + +___ + +## makerAssetAmount + +• **makerAssetAmount**: *string* + +*Defined in [types.ts:254](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L254)* + +___ + +## makerAssetData + +• **makerAssetData**: *string* + +*Defined in [types.ts:253](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L253)* + +___ + +## makerFee + +• **makerFee**: *string* + +*Defined in [types.ts:255](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L255)* + +___ + +## makerFeeAssetData + +• **makerFeeAssetData**: *string* + +*Defined in [types.ts:256](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L256)* + +___ + +## salt + +• **salt**: *string* + +*Defined in [types.ts:265](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L265)* + +___ + +## senderAddress + +• **senderAddress**: *string* + +*Defined in [types.ts:262](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L262)* + +___ + +## signature + +• **signature**: *string* + +*Defined in [types.ts:266](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L266)* + +___ + +## takerAddress + +• **takerAddress**: *string* + +*Defined in [types.ts:257](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L257)* + +___ + +## takerAssetAmount + +• **takerAssetAmount**: *string* + +*Defined in [types.ts:260](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L260)* + +___ + +## takerAssetData + +• **takerAssetData**: *string* + +*Defined in [types.ts:258](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L258)* + +___ + +## takerFee + +• **takerFee**: *string* + +*Defined in [types.ts:261](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L261)* + +___ + +## takerFeeAssetData + +• **takerFeeAssetData**: *string* + +*Defined in [types.ts:259](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L259)* + + +
+ +# Interface: WrapperStats + +### Hierarchy + +* **WrapperStats** + + +### Properties + +## ethRPCRateLimitExpiredRequests + +• **ethRPCRateLimitExpiredRequests**: *number* + +*Defined in [types.ts:631](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L631)* + +___ + +## ethRPCRequestsSentInCurrentUTCDay + +• **ethRPCRequestsSentInCurrentUTCDay**: *number* + +*Defined in [types.ts:630](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L630)* + +___ + +## ethereumChainID + +• **ethereumChainID**: *number* + +*Defined in [types.ts:622](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L622)* + +___ + +## latestBlock + +• **latestBlock**: *[LatestBlock](#interface-latestblock)* + +*Defined in [types.ts:623](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L623)* + +___ + +## maxExpirationTime + +• **maxExpirationTime**: *string* + +*Defined in [types.ts:628](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L628)* + +___ + +## numOrders + +• **numOrders**: *number* + +*Defined in [types.ts:625](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L625)* + +___ + +## numOrdersIncludingRemoved + +• **numOrdersIncludingRemoved**: *number* + +*Defined in [types.ts:626](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L626)* + +___ + +## numPeers + +• **numPeers**: *number* + +*Defined in [types.ts:624](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L624)* + +___ + +## numPinnedOrders + +• **numPinnedOrders**: *number* + +*Defined in [types.ts:627](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L627)* + +___ + +## peerID + +• **peerID**: *string* + +*Defined in [types.ts:621](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L621)* + +___ + +## pubSubTopic + +• **pubSubTopic**: *string* + +*Defined in [types.ts:618](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L618)* + +___ + +## rendezvous + +• **rendezvous**: *string* + +*Defined in [types.ts:619](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L619)* + +___ + +## secondaryRendezvous + +• **secondaryRendezvous**: *string[]* + +*Defined in [types.ts:620](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L620)* + +___ + +## startOfCurrentUTCDay + +• **startOfCurrentUTCDay**: *string* + +*Defined in [types.ts:629](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L629)* + +___ + +## version + +• **version**: *string* + +*Defined in [types.ts:617](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L617)* + + +
+ +# Interface: WrapperValidationResults + +### Hierarchy + +* **WrapperValidationResults** + + +### Properties + +## accepted + +• **accepted**: *[WrapperAcceptedOrderInfo](#interface-wrapperacceptedorderinfo)[]* + +*Defined in [types.ts:544](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L544)* + +___ + +## rejected + +• **rejected**: *[WrapperRejectedOrderInfo](#interface-wrapperrejectedorderinfo)[]* + +*Defined in [types.ts:545](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L545)* + + +
+ +# Interface: WrapperWethDepositEvent + +### Hierarchy + +* **WrapperWethDepositEvent** + + +### Properties + +## owner + +• **owner**: *string* + +*Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L434)* + +___ + +## value + +• **value**: *string* + +*Defined in [types.ts:435](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L435)* + + +
+ +# Interface: WrapperWethWithdrawalEvent + +### Hierarchy + +* **WrapperWethWithdrawalEvent** + + +### Properties + +## owner + +• **owner**: *string* + +*Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L424)* + +___ + +## value + +• **value**: *string* + +*Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L425)* + + +
+ +# Interface: ZeroExMesh + +### Hierarchy + +* **ZeroExMesh** + + +### Methods + +## newWrapperAsync + +▸ **newWrapperAsync**(`config`: [WrapperConfig](#interface-wrapperconfig)): *Promise‹[MeshWrapper](#interface-meshwrapper)›* + +*Defined in [types.ts:215](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L215)* + +**Parameters:** + +Name | Type | +------ | ------ | +`config` | [WrapperConfig](#interface-wrapperconfig) | + +**Returns:** *Promise‹[MeshWrapper](#interface-meshwrapper)›* + + +
+ diff --git a/docs/browser-bindings/browser/README.md b/docs/browser-bindings/browser/README.md index 60acdac42..748af8ca8 100644 --- a/docs/browser-bindings/browser/README.md +++ b/docs/browser-bindings/browser/README.md @@ -1,4 +1,4 @@ -# @0x/mesh-browser - v9.2.0 +# @0x/mesh-browser - v9.2.1 ## @0x/mesh-browser diff --git a/docs/browser-bindings/browser/reference.md b/docs/browser-bindings/browser/reference.md deleted file mode 100644 index 541bf8306..000000000 --- a/docs/browser-bindings/browser/reference.md +++ /dev/null @@ -1,2047 +0,0 @@ -# Class: Mesh - -The main class for this package. Has methods for receiving order events and -sending orders through the 0x Mesh network. - -### Hierarchy - -* **Mesh** - - -### Constructors - -## constructer - -\+ **new Mesh**(`config`: [Config](#interface-config)): *[Mesh](#class-mesh)* - -*Defined in [mesh.ts:141](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/mesh.ts#L141)* - -Instantiates a new Mesh instance. - -**Parameters:** - -Name | Type | Description | ------- | ------ | ------ | -`config` | [Config](#interface-config) | Configuration options for Mesh | - -**Returns:** *[Mesh](#class-mesh)* - -An instance of Mesh - -### Methods - -## addOrdersAsync - -▸ **addOrdersAsync**(`orders`: SignedOrder[], `pinned`: boolean): *Promise‹[ValidationResults](#interface-validationresults)›* - -*Defined in [mesh.ts:291](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/mesh.ts#L291)* - -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 -watching it for changes (e.g. filled, canceled, expired). The returned -promise will only be rejected if there was an error validating or adding -the order; it will not be rejected for any invalid orders (check -results.rejected instead). - -**Parameters:** - -Name | Type | Default | Description | ------- | ------ | ------ | ------ | -`orders` | SignedOrder[] | - | An array of orders to add. | -`pinned` | boolean | true | Whether or not the orders should be pinned. Pinned orders will not be affected by any DDoS prevention or incentive mechanisms and will always stay in storage until they are no longer fillable. | - -**Returns:** *Promise‹[ValidationResults](#interface-validationresults)›* - -Validation results for the given orders, indicating which orders -were accepted and which were rejected. - -___ - -## getOrdersAsync - -▸ **getOrdersAsync**(`perPage`: number): *Promise‹[GetOrdersResponse](#interface-getordersresponse)›* - -*Defined in [mesh.ts:220](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/mesh.ts#L220)* - -Get all 0x signed orders currently stored in the Mesh node - -**Parameters:** - -Name | Type | Default | Description | ------- | ------ | ------ | ------ | -`perPage` | number | 200 | number of signedOrders to fetch per paginated request | - -**Returns:** *Promise‹[GetOrdersResponse](#interface-getordersresponse)›* - -the snapshotID, snapshotTimestamp and all orders, their hashes and fillableTakerAssetAmounts - -___ - -## getOrdersForPageAsync - -▸ **getOrdersForPageAsync**(`page`: number, `perPage`: number, `snapshotID?`: undefined | string): *Promise‹[GetOrdersResponse](#interface-getordersresponse)›* - -*Defined in [mesh.ts:262](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/mesh.ts#L262)* - -Get page of 0x signed orders stored on the Mesh node at the specified snapshot - -**Parameters:** - -Name | Type | Description | ------- | ------ | ------ | -`page` | number | Page index at which to retrieve orders | -`perPage` | number | Number of signedOrders to fetch per paginated request | -`snapshotID?` | undefined | string | The DB snapshot at which to fetch orders. If omitted, a new snapshot is created | - -**Returns:** *Promise‹[GetOrdersResponse](#interface-getordersresponse)›* - -the snapshotID, snapshotTimestamp and all orders, their hashes and fillableTakerAssetAmounts - -___ - -## getStatsAsync - -▸ **getStatsAsync**(): *Promise‹[Stats](#interface-stats)›* - -*Defined in [mesh.ts:203](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/mesh.ts#L203)* - -Returns various stats about Mesh, including the total number of orders -and the number of peers Mesh is connected to. - -**Returns:** *Promise‹[Stats](#interface-stats)›* - -___ - -## onError - -▸ **onError**(`handler`: function): *void* - -*Defined in [mesh.ts:161](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/mesh.ts#L161)* - -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. -In order to ensure no errors are missed, this should be called before -startAsync. - -**Parameters:** - -▪ **handler**: *function* - -The handler to be called. - -▸ (`err`: Error): *void* - -**Parameters:** - -Name | Type | ------- | ------ | -`err` | Error | - -**Returns:** *void* - -___ - -## onOrderEvents - -▸ **onOrderEvents**(`handler`: function): *void* - -*Defined in [mesh.ts:176](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/mesh.ts#L176)* - -Registers a handler which will be called for any incoming order events. -Order events are fired whenver an order is added, canceled, expired, or -filled. In order to ensure no events are missed, this should be called -before startAsync. - -**Parameters:** - -▪ **handler**: *function* - -The handler to be called. - -▸ (`events`: [OrderEvent](#interface-orderevent)[]): *void* - -**Parameters:** - -Name | Type | ------- | ------ | -`events` | [OrderEvent](#interface-orderevent)[] | - -**Returns:** *void* - -___ - -## startAsync - -▸ **startAsync**(): *Promise‹void›* - -*Defined in [mesh.ts:187](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/mesh.ts#L187)* - -Starts the Mesh node in the background. Mesh will automatically find -peers in the network and begin receiving orders from them. - -**Returns:** *Promise‹void›* - - -
- -# Enumeration: ContractEventKind - - -### Enumeration members - -## ERC1155ApprovalForAllEvent - -• **ERC1155ApprovalForAllEvent**: = "ERC1155ApprovalForAllEvent" - -*Defined in [types.ts:444](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L444)* - -___ - -## ERC1155TransferBatchEvent - -• **ERC1155TransferBatchEvent**: = "ERC1155TransferBatchEvent" - -*Defined in [types.ts:446](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L446)* - -___ - -## ERC1155TransferSingleEvent - -• **ERC1155TransferSingleEvent**: = "ERC1155TransferSingleEvent" - -*Defined in [types.ts:445](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L445)* - -___ - -## ERC20ApprovalEvent - -• **ERC20ApprovalEvent**: = "ERC20ApprovalEvent" - -*Defined in [types.ts:440](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L440)* - -___ - -## ERC20TransferEvent - -• **ERC20TransferEvent**: = "ERC20TransferEvent" - -*Defined in [types.ts:439](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L439)* - -___ - -## ERC721ApprovalEvent - -• **ERC721ApprovalEvent**: = "ERC721ApprovalEvent" - -*Defined in [types.ts:442](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L442)* - -___ - -## ERC721ApprovalForAllEvent - -• **ERC721ApprovalForAllEvent**: = "ERC721ApprovalForAllEvent" - -*Defined in [types.ts:443](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L443)* - -___ - -## ERC721TransferEvent - -• **ERC721TransferEvent**: = "ERC721TransferEvent" - -*Defined in [types.ts:441](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L441)* - -___ - -## ExchangeCancelEvent - -• **ExchangeCancelEvent**: = "ExchangeCancelEvent" - -*Defined in [types.ts:448](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L448)* - -___ - -## ExchangeCancelUpToEvent - -• **ExchangeCancelUpToEvent**: = "ExchangeCancelUpToEvent" - -*Defined in [types.ts:449](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L449)* - -___ - -## ExchangeFillEvent - -• **ExchangeFillEvent**: = "ExchangeFillEvent" - -*Defined in [types.ts:447](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L447)* - -___ - -## WethDepositEvent - -• **WethDepositEvent**: = "WethDepositEvent" - -*Defined in [types.ts:450](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L450)* - -___ - -## WethWithdrawalEvent - -• **WethWithdrawalEvent**: = "WethWithdrawalEvent" - -*Defined in [types.ts:451](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L451)* - - -
- -# Enumeration: OrderEventEndState - - -### Enumeration members - -## Added - -• **Added**: = "ADDED" - -*Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L509)* - -___ - -## Cancelled - -• **Cancelled**: = "CANCELLED" - -*Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L512)* - -___ - -## Expired - -• **Expired**: = "EXPIRED" - -*Defined in [types.ts:513](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L513)* - -___ - -## FillabilityIncreased - -• **FillabilityIncreased**: = "FILLABILITY_INCREASED" - -*Defined in [types.ts:516](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L516)* - -___ - -## Filled - -• **Filled**: = "FILLED" - -*Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L510)* - -___ - -## FullyFilled - -• **FullyFilled**: = "FULLY_FILLED" - -*Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L511)* - -___ - -## Invalid - -• **Invalid**: = "INVALID" - -*Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L508)* - -___ - -## StoppedWatching - -• **StoppedWatching**: = "STOPPED_WATCHING" - -*Defined in [types.ts:517](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L517)* - -___ - -## Unexpired - -• **Unexpired**: = "UNEXPIRED" - -*Defined in [types.ts:514](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L514)* - -___ - -## Unfunded - -• **Unfunded**: = "UNFUNDED" - -*Defined in [types.ts:515](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L515)* - - -
- -# Enumeration: RejectedOrderKind - -A set of categories for rejected orders. - - -### Enumeration members - -## CoordinatorError - -• **CoordinatorError**: = "COORDINATOR_ERROR" - -*Defined in [types.ts:600](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L600)* - -___ - -## MeshError - -• **MeshError**: = "MESH_ERROR" - -*Defined in [types.ts:598](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L598)* - -___ - -## MeshValidation - -• **MeshValidation**: = "MESH_VALIDATION" - -*Defined in [types.ts:599](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L599)* - -___ - -## ZeroExValidation - -• **ZeroExValidation**: = "ZEROEX_VALIDATION" - -*Defined in [types.ts:597](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L597)* - - -
- -# Enumeration: Verbosity - - -### Enumeration members - -## Debug - -• **Debug**: = 5 - -*Defined in [types.ts:209](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L209)* - -___ - -## Error - -• **Error**: = 2 - -*Defined in [types.ts:206](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L206)* - -___ - -## Fatal - -• **Fatal**: = 1 - -*Defined in [types.ts:205](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L205)* - -___ - -## Info - -• **Info**: = 4 - -*Defined in [types.ts:208](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L208)* - -___ - -## Panic - -• **Panic**: = 0 - -*Defined in [types.ts:204](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L204)* - -___ - -## Trace - -• **Trace**: = 6 - -*Defined in [types.ts:210](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L210)* - -___ - -## Warn - -• **Warn**: = 3 - -*Defined in [types.ts:207](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L207)* - - -
- -# Interface: AcceptedOrderInfo - -Info for any orders that were accepted. - -### Hierarchy - -* **AcceptedOrderInfo** - - -### Properties - -## fillableTakerAssetAmount - -• **fillableTakerAssetAmount**: *BigNumber* - -*Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L578)* - -___ - -## isNew - -• **isNew**: *boolean* - -*Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L579)* - -___ - -## orderHash - -• **orderHash**: *string* - -*Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L576)* - -___ - -## signedOrder - -• **signedOrder**: *SignedOrder* - -*Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L577)* - - -
- -# Interface: Config - -A set of configuration options for Mesh. - -### Hierarchy - -* **Config** - - -### Properties - -## `Optional` blockPollingIntervalSeconds - -• **blockPollingIntervalSeconds**? : *undefined | number* - -*Defined in [types.ts:116](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L116)* - -___ - -## `Optional` bootstrapList - -• **bootstrapList**? : *string[]* - -*Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L109)* - -___ - -## `Optional` customContractAddresses - -• **customContractAddresses**? : *[ContractAddresses](#interface-contractaddresses)* - -*Defined in [types.ts:160](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L160)* - -___ - -## `Optional` customOrderFilter - -• **customOrderFilter**? : *[JsonSchema](#interface-jsonschema)* - -*Defined in [types.ts:185](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L185)* - -___ - -## `Optional` enableEthereumRPCRateLimiting - -• **enableEthereumRPCRateLimiting**? : *undefined | false | true* - -*Defined in [types.ts:133](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L133)* - -___ - -## ethereumChainID - -• **ethereumChainID**: *number* - -*Defined in [types.ts:101](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L101)* - -___ - -## `Optional` ethereumRPCMaxContentLength - -• **ethereumRPCMaxContentLength**? : *undefined | number* - -*Defined in [types.ts:125](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L125)* - -___ - -## `Optional` ethereumRPCMaxRequestsPer24HrUTC - -• **ethereumRPCMaxRequestsPer24HrUTC**? : *undefined | number* - -*Defined in [types.ts:138](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L138)* - -___ - -## `Optional` ethereumRPCMaxRequestsPerSecond - -• **ethereumRPCMaxRequestsPerSecond**? : *undefined | number* - -*Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L144)* - -___ - -## `Optional` ethereumRPCURL - -• **ethereumRPCURL**? : *undefined | string* - -*Defined in [types.ts:98](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L98)* - -___ - -## `Optional` maxOrdersInStorage - -• **maxOrdersInStorage**? : *undefined | number* - -*Defined in [types.ts:165](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L165)* - -___ - -## `Optional` useBootstrapList - -• **useBootstrapList**? : *undefined | false | true* - -*Defined in [types.ts:104](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L104)* - -___ - -## `Optional` verbosity - -• **verbosity**? : *[Verbosity](#enumeration-verbosity)* - -*Defined in [types.ts:95](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L95)* - -___ - -## `Optional` web3Provider - -• **web3Provider**? : *SupportedProvider* - -*Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L188)* - - -
- -# Interface: ContractAddresses - -### Hierarchy - -* **ContractAddresses** - - -### Properties - -## `Optional` coordinator - -• **coordinator**? : *undefined | string* - -*Defined in [types.ts:197](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L197)* - -___ - -## `Optional` coordinatorRegistry - -• **coordinatorRegistry**? : *undefined | string* - -*Defined in [types.ts:198](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L198)* - -___ - -## devUtils - -• **devUtils**: *string* - -*Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L193)* - -___ - -## erc1155Proxy - -• **erc1155Proxy**: *string* - -*Defined in [types.ts:196](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L196)* - -___ - -## erc20Proxy - -• **erc20Proxy**: *string* - -*Defined in [types.ts:194](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L194)* - -___ - -## erc721Proxy - -• **erc721Proxy**: *string* - -*Defined in [types.ts:195](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L195)* - -___ - -## exchange - -• **exchange**: *string* - -*Defined in [types.ts:192](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L192)* - -___ - -## `Optional` weth9 - -• **weth9**? : *undefined | string* - -*Defined in [types.ts:199](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L199)* - -___ - -## `Optional` zrxToken - -• **zrxToken**? : *undefined | string* - -*Defined in [types.ts:200](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L200)* - - -
- -# Interface: ContractEvent - -### Hierarchy - -* **ContractEvent** - - -### Properties - -## address - -• **address**: *string* - -*Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L490)* - -___ - -## blockHash - -• **blockHash**: *string* - -*Defined in [types.ts:485](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L485)* - -___ - -## isRemoved - -• **isRemoved**: *boolean* - -*Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L489)* - -___ - -## kind - -• **kind**: *[ContractEventKind](#enumeration-contracteventkind)* - -*Defined in [types.ts:491](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L491)* - -___ - -## logIndex - -• **logIndex**: *number* - -*Defined in [types.ts:488](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L488)* - -___ - -## parameters - -• **parameters**: *[ContractEventParameters](#contracteventparameters)* - -*Defined in [types.ts:492](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L492)* - -___ - -## txHash - -• **txHash**: *string* - -*Defined in [types.ts:486](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L486)* - -___ - -## txIndex - -• **txIndex**: *number* - -*Defined in [types.ts:487](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L487)* - - -
- -# Interface: ERC1155ApprovalForAllEvent - -### Hierarchy - -* **ERC1155ApprovalForAllEvent** - - -### Properties - -## approved - -• **approved**: *boolean* - -*Defined in [types.ts:360](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L360)* - -___ - -## operator - -• **operator**: *string* - -*Defined in [types.ts:359](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L359)* - -___ - -## owner - -• **owner**: *string* - -*Defined in [types.ts:358](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L358)* - - -
- -# Interface: ERC1155TransferBatchEvent - -### Hierarchy - -* **ERC1155TransferBatchEvent** - - -### Properties - -## from - -• **from**: *string* - -*Defined in [types.ts:343](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L343)* - -___ - -## ids - -• **ids**: *BigNumber[]* - -*Defined in [types.ts:345](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L345)* - -___ - -## operator - -• **operator**: *string* - -*Defined in [types.ts:342](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L342)* - -___ - -## to - -• **to**: *string* - -*Defined in [types.ts:344](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L344)* - -___ - -## values - -• **values**: *BigNumber[]* - -*Defined in [types.ts:346](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L346)* - - -
- -# Interface: ERC1155TransferSingleEvent - -### Hierarchy - -* **ERC1155TransferSingleEvent** - - -### Properties - -## from - -• **from**: *string* - -*Defined in [types.ts:327](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L327)* - -___ - -## id - -• **id**: *BigNumber* - -*Defined in [types.ts:329](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L329)* - -___ - -## operator - -• **operator**: *string* - -*Defined in [types.ts:326](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L326)* - -___ - -## to - -• **to**: *string* - -*Defined in [types.ts:328](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L328)* - -___ - -## value - -• **value**: *BigNumber* - -*Defined in [types.ts:330](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L330)* - - -
- -# Interface: ERC20ApprovalEvent - -### Hierarchy - -* **ERC20ApprovalEvent** - - -### Properties - -## owner - -• **owner**: *string* - -*Defined in [types.ts:284](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L284)* - -___ - -## spender - -• **spender**: *string* - -*Defined in [types.ts:285](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L285)* - -___ - -## value - -• **value**: *BigNumber* - -*Defined in [types.ts:286](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L286)* - - -
- -# Interface: ERC20TransferEvent - -### Hierarchy - -* **ERC20TransferEvent** - - -### Properties - -## from - -• **from**: *string* - -*Defined in [types.ts:272](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L272)* - -___ - -## to - -• **to**: *string* - -*Defined in [types.ts:273](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L273)* - -___ - -## value - -• **value**: *BigNumber* - -*Defined in [types.ts:274](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L274)* - - -
- -# Interface: ERC721ApprovalEvent - -### Hierarchy - -* **ERC721ApprovalEvent** - - -### Properties - -## approved - -• **approved**: *string* - -*Defined in [types.ts:309](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L309)* - -___ - -## owner - -• **owner**: *string* - -*Defined in [types.ts:308](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L308)* - -___ - -## tokenId - -• **tokenId**: *BigNumber* - -*Defined in [types.ts:310](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L310)* - - -
- -# Interface: ERC721ApprovalForAllEvent - -### Hierarchy - -* **ERC721ApprovalForAllEvent** - - -### Properties - -## approved - -• **approved**: *boolean* - -*Defined in [types.ts:322](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L322)* - -___ - -## operator - -• **operator**: *string* - -*Defined in [types.ts:321](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L321)* - -___ - -## owner - -• **owner**: *string* - -*Defined in [types.ts:320](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L320)* - - -
- -# Interface: ERC721TransferEvent - -### Hierarchy - -* **ERC721TransferEvent** - - -### Properties - -## from - -• **from**: *string* - -*Defined in [types.ts:296](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L296)* - -___ - -## to - -• **to**: *string* - -*Defined in [types.ts:297](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L297)* - -___ - -## tokenId - -• **tokenId**: *BigNumber* - -*Defined in [types.ts:298](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L298)* - - -
- -# Interface: ExchangeCancelEvent - -### Hierarchy - -* **ExchangeCancelEvent** - - -### Properties - -## feeRecipientAddress - -• **feeRecipientAddress**: *string* - -*Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L400)* - -___ - -## makerAddress - -• **makerAddress**: *string* - -*Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L398)* - -___ - -## makerAssetData - -• **makerAssetData**: *string* - -*Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L402)* - -___ - -## orderHash - -• **orderHash**: *string* - -*Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L401)* - -___ - -## senderAddress - -• **senderAddress**: *string* - -*Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L399)* - -___ - -## takerAssetData - -• **takerAssetData**: *string* - -*Defined in [types.ts:403](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L403)* - - -
- -# Interface: ExchangeCancelUpToEvent - -### Hierarchy - -* **ExchangeCancelUpToEvent** - - -### Properties - -## makerAddress - -• **makerAddress**: *string* - -*Defined in [types.ts:407](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L407)* - -___ - -## orderEpoch - -• **orderEpoch**: *BigNumber* - -*Defined in [types.ts:409](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L409)* - -___ - -## orderSenderAddress - -• **orderSenderAddress**: *string* - -*Defined in [types.ts:408](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L408)* - - -
- -# Interface: ExchangeFillEvent - -### Hierarchy - -* **ExchangeFillEvent** - - -### Properties - -## feeRecipientAddress - -• **feeRecipientAddress**: *string* - -*Defined in [types.ts:367](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L367)* - -___ - -## makerAddress - -• **makerAddress**: *string* - -*Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L364)* - -___ - -## makerAssetData - -• **makerAssetData**: *string* - -*Defined in [types.ts:374](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L374)* - -___ - -## makerAssetFilledAmount - -• **makerAssetFilledAmount**: *BigNumber* - -*Defined in [types.ts:368](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L368)* - -___ - -## makerFeeAssetData - -• **makerFeeAssetData**: *string* - -*Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L376)* - -___ - -## makerFeePaid - -• **makerFeePaid**: *BigNumber* - -*Defined in [types.ts:370](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L370)* - -___ - -## orderHash - -• **orderHash**: *string* - -*Defined in [types.ts:373](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L373)* - -___ - -## protocolFeePaid - -• **protocolFeePaid**: *BigNumber* - -*Defined in [types.ts:372](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L372)* - -___ - -## senderAddress - -• **senderAddress**: *string* - -*Defined in [types.ts:366](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L366)* - -___ - -## takerAddress - -• **takerAddress**: *string* - -*Defined in [types.ts:365](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L365)* - -___ - -## takerAssetData - -• **takerAssetData**: *string* - -*Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L375)* - -___ - -## takerAssetFilledAmount - -• **takerAssetFilledAmount**: *BigNumber* - -*Defined in [types.ts:369](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L369)* - -___ - -## takerFeeAssetData - -• **takerFeeAssetData**: *string* - -*Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L377)* - -___ - -## takerFeePaid - -• **takerFeePaid**: *BigNumber* - -*Defined in [types.ts:371](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L371)* - - -
- -# Interface: GetOrdersResponse - -### Hierarchy - -* **GetOrdersResponse** - - -### Properties - -## ordersInfos - -• **ordersInfos**: *[OrderInfo](#interface-orderinfo)[]* - -*Defined in [types.ts:18](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L18)* - -___ - -## snapshotID - -• **snapshotID**: *string* - -*Defined in [types.ts:16](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L16)* - -___ - -## snapshotTimestamp - -• **snapshotTimestamp**: *number* - -*Defined in [types.ts:17](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L17)* - - -
- -# Interface: JsonSchema - -An interface for JSON schema types, which are used for custom order filters. - -### Hierarchy - -* **JsonSchema** - - -### Properties - -## `Optional` $ref - -• **$ref**? : *undefined | string* - -*Defined in [types.ts:39](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L39)* - -___ - -## `Optional` $schema - -• **$schema**? : *undefined | string* - -*Defined in [types.ts:38](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L38)* - -___ - -## `Optional` additionalItems - -• **additionalItems**? : *boolean | [JsonSchema](#interface-jsonschema)* - -*Defined in [types.ts:50](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L50)* - -___ - -## `Optional` additionalProperties - -• **additionalProperties**? : *boolean | [JsonSchema](#interface-jsonschema)* - -*Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L58)* - -___ - -## `Optional` allOf - -• **allOf**? : *[JsonSchema](#interface-jsonschema)[]* - -*Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L80)* - -___ - -## `Optional` anyOf - -• **anyOf**? : *[JsonSchema](#interface-jsonschema)[]* - -*Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L81)* - -___ - -## `Optional` const - -• **const**? : *any* - -*Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L77)* - -___ - -## `Optional` definitions - -• **definitions**? : *undefined | object* - -*Defined in [types.ts:59](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L59)* - -___ - -## `Optional` dependencies - -• **dependencies**? : *undefined | object* - -*Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L68)* - -___ - -## `Optional` description - -• **description**? : *undefined | string* - -*Defined in [types.ts:41](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L41)* - -___ - -## `Optional` enum - -• **enum**? : *any[]* - -*Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L71)* - -___ - -## `Optional` exclusiveMaximum - -• **exclusiveMaximum**? : *undefined | false | true* - -*Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L44)* - -___ - -## `Optional` exclusiveMinimum - -• **exclusiveMinimum**? : *undefined | false | true* - -*Defined in [types.ts:46](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L46)* - -___ - -## `Optional` format - -• **format**? : *undefined | string* - -*Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L79)* - -___ - -## `Optional` id - -• **id**? : *undefined | string* - -*Defined in [types.ts:37](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L37)* - -___ - -## `Optional` items - -• **items**? : *[JsonSchema](#interface-jsonschema) | [JsonSchema](#interface-jsonschema)[]* - -*Defined in [types.ts:51](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L51)* - -___ - -## `Optional` maxItems - -• **maxItems**? : *undefined | number* - -*Defined in [types.ts:52](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L52)* - -___ - -## `Optional` maxLength - -• **maxLength**? : *undefined | number* - -*Defined in [types.ts:47](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L47)* - -___ - -## `Optional` maxProperties - -• **maxProperties**? : *undefined | number* - -*Defined in [types.ts:55](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L55)* - -___ - -## `Optional` maximum - -• **maximum**? : *undefined | number* - -*Defined in [types.ts:43](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L43)* - -___ - -## `Optional` minItems - -• **minItems**? : *undefined | number* - -*Defined in [types.ts:53](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L53)* - -___ - -## `Optional` minLength - -• **minLength**? : *undefined | number* - -*Defined in [types.ts:48](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L48)* - -___ - -## `Optional` minProperties - -• **minProperties**? : *undefined | number* - -*Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L56)* - -___ - -## `Optional` minimum - -• **minimum**? : *undefined | number* - -*Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L45)* - -___ - -## `Optional` multipleOf - -• **multipleOf**? : *undefined | number* - -*Defined in [types.ts:42](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L42)* - -___ - -## `Optional` not - -• **not**? : *[JsonSchema](#interface-jsonschema)* - -*Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L83)* - -___ - -## `Optional` oneOf - -• **oneOf**? : *[JsonSchema](#interface-jsonschema)[]* - -*Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L82)* - -___ - -## `Optional` pattern - -• **pattern**? : *string | RegExp* - -*Defined in [types.ts:49](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L49)* - -___ - -## `Optional` patternProperties - -• **patternProperties**? : *undefined | object* - -*Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L65)* - -___ - -## `Optional` properties - -• **properties**? : *undefined | object* - -*Defined in [types.ts:62](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L62)* - -___ - -## `Optional` required - -• **required**? : *string[]* - -*Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L57)* - -___ - -## `Optional` title - -• **title**? : *undefined | string* - -*Defined in [types.ts:40](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L40)* - -___ - -## `Optional` type - -• **type**? : *string | string[]* - -*Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L78)* - -___ - -## `Optional` uniqueItems - -• **uniqueItems**? : *undefined | false | true* - -*Defined in [types.ts:54](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L54)* - - -
- -# Interface: LatestBlock - -### Hierarchy - -* **LatestBlock** - - -### Properties - -## hash - -• **hash**: *string* - -*Defined in [types.ts:613](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L613)* - -___ - -## number - -• **number**: *number* - -*Defined in [types.ts:612](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L612)* - - -
- -# Interface: OrderEvent - -Order events are fired by Mesh whenever an order is added, canceled, expired, -or filled. - -### Hierarchy - -* **OrderEvent** - - -### Properties - -## contractEvents - -• **contractEvents**: *[ContractEvent](#interface-contractevent)[]* - -*Defined in [types.ts:539](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L539)* - -___ - -## endState - -• **endState**: *[OrderEventEndState](#enumeration-ordereventendstate)* - -*Defined in [types.ts:537](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L537)* - -___ - -## fillableTakerAssetAmount - -• **fillableTakerAssetAmount**: *BigNumber* - -*Defined in [types.ts:538](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L538)* - -___ - -## orderHash - -• **orderHash**: *string* - -*Defined in [types.ts:535](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L535)* - -___ - -## signedOrder - -• **signedOrder**: *SignedOrder* - -*Defined in [types.ts:536](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L536)* - -___ - -## timestampMs - -• **timestampMs**: *number* - -*Defined in [types.ts:534](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L534)* - - -
- -# Interface: OrderInfo - -### Hierarchy - -* **OrderInfo** - - -### Properties - -## fillableTakerAssetAmount - -• **fillableTakerAssetAmount**: *BigNumber* - -*Defined in [types.ts:30](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L30)* - -___ - -## orderHash - -• **orderHash**: *string* - -*Defined in [types.ts:28](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L28)* - -___ - -## signedOrder - -• **signedOrder**: *SignedOrder* - -*Defined in [types.ts:29](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L29)* - - -
- -# Interface: RejectedOrderInfo - -Info for any orders that were rejected, including the reason they were -rejected. - -### Hierarchy - -* **RejectedOrderInfo** - - -### Properties - -## kind - -• **kind**: *[RejectedOrderKind](#enumeration-rejectedorderkind)* - -*Defined in [types.ts:589](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L589)* - -___ - -## orderHash - -• **orderHash**: *string* - -*Defined in [types.ts:587](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L587)* - -___ - -## signedOrder - -• **signedOrder**: *SignedOrder* - -*Defined in [types.ts:588](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L588)* - -___ - -## status - -• **status**: *[RejectedOrderStatus](#interface-rejectedorderstatus)* - -*Defined in [types.ts:590](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L590)* - - -
- -# Interface: RejectedOrderStatus - -Provides more information about why an order was rejected. - -### Hierarchy - -* **RejectedOrderStatus** - - -### Properties - -## code - -• **code**: *string* - -*Defined in [types.ts:607](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L607)* - -___ - -## message - -• **message**: *string* - -*Defined in [types.ts:608](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L608)* - - -
- -# Interface: Stats - -### Hierarchy - -* **Stats** - - -### Properties - -## ethRPCRateLimitExpiredRequests - -• **ethRPCRateLimitExpiredRequests**: *number* - -*Defined in [types.ts:649](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L649)* - -___ - -## ethRPCRequestsSentInCurrentUTCDay - -• **ethRPCRequestsSentInCurrentUTCDay**: *number* - -*Defined in [types.ts:648](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L648)* - -___ - -## ethereumChainID - -• **ethereumChainID**: *number* - -*Defined in [types.ts:640](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L640)* - -___ - -## latestBlock - -• **latestBlock**: *[LatestBlock](#interface-latestblock)* - -*Defined in [types.ts:641](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L641)* - -___ - -## maxExpirationTime - -• **maxExpirationTime**: *BigNumber* - -*Defined in [types.ts:646](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L646)* - -___ - -## numOrders - -• **numOrders**: *number* - -*Defined in [types.ts:643](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L643)* - -___ - -## numOrdersIncludingRemoved - -• **numOrdersIncludingRemoved**: *number* - -*Defined in [types.ts:644](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L644)* - -___ - -## numPeers - -• **numPeers**: *number* - -*Defined in [types.ts:642](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L642)* - -___ - -## numPinnedOrders - -• **numPinnedOrders**: *number* - -*Defined in [types.ts:645](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L645)* - -___ - -## peerID - -• **peerID**: *string* - -*Defined in [types.ts:639](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L639)* - -___ - -## pubSubTopic - -• **pubSubTopic**: *string* - -*Defined in [types.ts:636](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L636)* - -___ - -## rendezvous - -• **rendezvous**: *string* - -*Defined in [types.ts:637](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L637)* - -___ - -## secondaryRendezvous - -• **secondaryRendezvous**: *string[]* - -*Defined in [types.ts:638](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L638)* - -___ - -## startOfCurrentUTCDay - -• **startOfCurrentUTCDay**: *Date* - -*Defined in [types.ts:647](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L647)* - -___ - -## version - -• **version**: *string* - -*Defined in [types.ts:635](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L635)* - - -
- -# Interface: ValidationResults - -Indicates which orders where accepted, which were rejected, and why. - -### Hierarchy - -* **ValidationResults** - - -### Properties - -## accepted - -• **accepted**: *[AcceptedOrderInfo](#interface-acceptedorderinfo)[]* - -*Defined in [types.ts:568](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L568)* - -___ - -## rejected - -• **rejected**: *[RejectedOrderInfo](#interface-rejectedorderinfo)[]* - -*Defined in [types.ts:569](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L569)* - - -
- -# Interface: WethDepositEvent - -### Hierarchy - -* **WethDepositEvent** - - -### Properties - -## owner - -• **owner**: *string* - -*Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L429)* - -___ - -## value - -• **value**: *BigNumber* - -*Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L430)* - - -
- -# Interface: WethWithdrawalEvent - -### Hierarchy - -* **WethWithdrawalEvent** - - -### Properties - -## owner - -• **owner**: *string* - -*Defined in [types.ts:419](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L419)* - -___ - -## value - -• **value**: *BigNumber* - -*Defined in [types.ts:420](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/browser-lite/src/types.ts#L420)* - - -
diff --git a/docs/deployment.md b/docs/deployment.md index 05c74bcf0..e4d589af1 100644 --- a/docs/deployment.md +++ b/docs/deployment.md @@ -1,4 +1,4 @@ -[![Version](https://img.shields.io/badge/version-9.2.0-orange.svg)](https://github.com/0xProject/0x-mesh/releases) +[![Version](https://img.shields.io/badge/version-9.2.1-orange.svg)](https://github.com/0xProject/0x-mesh/releases) # 0x Mesh Deployment Guide diff --git a/docs/deployment_with_telemetry.md b/docs/deployment_with_telemetry.md index b41b6cc35..04d63778d 100644 --- a/docs/deployment_with_telemetry.md +++ b/docs/deployment_with_telemetry.md @@ -1,4 +1,4 @@ -[![Version](https://img.shields.io/badge/version-9.2.0-orange.svg)](https://github.com/0xProject/0x-mesh/releases) +[![Version](https://img.shields.io/badge/version-9.2.1-orange.svg)](https://github.com/0xProject/0x-mesh/releases) ## Deploying a Telemetry-Enabled Mesh Node diff --git a/docs/json_rpc_clients/typescript/README.md b/docs/json_rpc_clients/typescript/README.md index a9d7b4638..da0fecccc 100644 --- a/docs/json_rpc_clients/typescript/README.md +++ b/docs/json_rpc_clients/typescript/README.md @@ -1,4 +1,4 @@ -# @0x/mesh-rpc-client - v9.2.0 +# @0x/mesh-rpc-client - v9.2.1 ## @0x/mesh-rpc-client diff --git a/docs/json_rpc_clients/typescript/reference.md b/docs/json_rpc_clients/typescript/reference.md index 421ff2980..80913b51b 100644 --- a/docs/json_rpc_clients/typescript/reference.md +++ b/docs/json_rpc_clients/typescript/reference.md @@ -31,7 +31,7 @@ websocket endpoint. \+ **new WSClient**(`url`: string, `wsOpts?`: [WSOpts](#interface-wsopts)): *[WSClient](#class-wsclient)* -*Defined in [ws_client.ts:252](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/ws_client.ts#L252)* +*Defined in [ws_client.ts:252](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/ws_client.ts#L252)* Instantiates a new WSClient instance @@ -52,7 +52,7 @@ An instance of WSClient ▸ **addOrdersAsync**(`signedOrders`: SignedOrder[], `pinned`: boolean): *Promise‹[ValidationResults](#interface-validationresults)›* -*Defined in [ws_client.ts:281](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/ws_client.ts#L281)* +*Defined in [ws_client.ts:281](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/ws_client.ts#L281)* Adds an array of 0x signed orders to the Mesh node. @@ -73,7 +73,7 @@ ___ ▸ **destroy**(): *void* -*Defined in [ws_client.ts:421](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/ws_client.ts#L421)* +*Defined in [ws_client.ts:421](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/ws_client.ts#L421)* destroy unsubscribes all active subscriptions, closes the websocket connection and stops the internal heartbeat connection liveness check. @@ -86,7 +86,7 @@ ___ ▸ **getOrdersAsync**(`perPage`: number): *Promise‹[GetOrdersResponse](#interface-getordersresponse)›* -*Defined in [ws_client.ts:311](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/ws_client.ts#L311)* +*Defined in [ws_client.ts:311](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/ws_client.ts#L311)* Get all 0x signed orders currently stored in the Mesh node @@ -106,7 +106,7 @@ ___ ▸ **getOrdersForPageAsync**(`page`: number, `perPage`: number, `snapshotID?`: undefined | string): *Promise‹[GetOrdersResponse](#interface-getordersresponse)›* -*Defined in [ws_client.ts:342](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/ws_client.ts#L342)* +*Defined in [ws_client.ts:342](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/ws_client.ts#L342)* Get page of 0x signed orders stored on the Mesh node at the specified snapshot @@ -128,7 +128,7 @@ ___ ▸ **getStatsAsync**(): *Promise‹[GetStatsResponse](#interface-getstatsresponse)›* -*Defined in [ws_client.ts:302](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/ws_client.ts#L302)* +*Defined in [ws_client.ts:302](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/ws_client.ts#L302)* **Returns:** *Promise‹[GetStatsResponse](#interface-getstatsresponse)›* @@ -138,7 +138,7 @@ ___ ▸ **onClose**(`cb`: function): *void* -*Defined in [ws_client.ts:403](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/ws_client.ts#L403)* +*Defined in [ws_client.ts:403](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/ws_client.ts#L403)* Get notified when the underlying WS connection closes normally. If it closes with an error, WSClient automatically attempts to re-connect without emitting a `close` event. @@ -159,7 +159,7 @@ ___ ▸ **onReconnected**(`cb`: function): *void* -*Defined in [ws_client.ts:412](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/ws_client.ts#L412)* +*Defined in [ws_client.ts:412](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/ws_client.ts#L412)* Get notified when a connection to the underlying WS connection is re-established @@ -179,7 +179,7 @@ ___ ▸ **subscribeToOrdersAsync**(`cb`: function): *Promise‹string›* -*Defined in [ws_client.ts:363](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/ws_client.ts#L363)* +*Defined in [ws_client.ts:363](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/ws_client.ts#L363)* Subscribe to the 'orders' topic and receive order events from Mesh. This method returns a subscriptionId that can be used to `unsubscribe()` from this subscription. @@ -208,7 +208,7 @@ ___ ▸ **unsubscribeAsync**(`subscriptionId`: string): *Promise‹void›* -*Defined in [ws_client.ts:393](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/ws_client.ts#L393)* +*Defined in [ws_client.ts:393](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/ws_client.ts#L393)* Unsubscribe from a subscription @@ -249,7 +249,7 @@ Name | Type | Description | • **ERC1155ApprovalForAllEvent**: = "ERC1155ApprovalForAllEvent" -*Defined in [types.ts:222](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L222)* +*Defined in [types.ts:222](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L222)* ___ @@ -257,7 +257,7 @@ ___ • **ERC1155TransferBatchEvent**: = "ERC1155TransferBatchEvent" -*Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L224)* +*Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L224)* ___ @@ -265,7 +265,7 @@ ___ • **ERC1155TransferSingleEvent**: = "ERC1155TransferSingleEvent" -*Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L223)* +*Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L223)* ___ @@ -273,7 +273,7 @@ ___ • **ERC20ApprovalEvent**: = "ERC20ApprovalEvent" -*Defined in [types.ts:218](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L218)* +*Defined in [types.ts:218](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L218)* ___ @@ -281,7 +281,7 @@ ___ • **ERC20TransferEvent**: = "ERC20TransferEvent" -*Defined in [types.ts:217](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L217)* +*Defined in [types.ts:217](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L217)* ___ @@ -289,7 +289,7 @@ ___ • **ERC721ApprovalEvent**: = "ERC721ApprovalEvent" -*Defined in [types.ts:220](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L220)* +*Defined in [types.ts:220](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L220)* ___ @@ -297,7 +297,7 @@ ___ • **ERC721ApprovalForAllEvent**: = "ERC721ApprovalForAllEvent" -*Defined in [types.ts:221](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L221)* +*Defined in [types.ts:221](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L221)* ___ @@ -305,7 +305,7 @@ ___ • **ERC721TransferEvent**: = "ERC721TransferEvent" -*Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L219)* +*Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L219)* ___ @@ -313,7 +313,7 @@ ___ • **ExchangeCancelEvent**: = "ExchangeCancelEvent" -*Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L226)* +*Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L226)* ___ @@ -321,7 +321,7 @@ ___ • **ExchangeCancelUpToEvent**: = "ExchangeCancelUpToEvent" -*Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L227)* +*Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L227)* ___ @@ -329,7 +329,7 @@ ___ • **ExchangeFillEvent**: = "ExchangeFillEvent" -*Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L225)* +*Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L225)* ___ @@ -337,7 +337,7 @@ ___ • **WethDepositEvent**: = "WethDepositEvent" -*Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L228)* +*Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L228)* ___ @@ -345,7 +345,7 @@ ___ • **WethWithdrawalEvent**: = "WethWithdrawalEvent" -*Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L229)* +*Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L229)*
@@ -373,7 +373,7 @@ ___ • **Added**: = "ADDED" -*Defined in [types.ts:286](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L286)* +*Defined in [types.ts:286](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L286)* ___ @@ -381,7 +381,7 @@ ___ • **Cancelled**: = "CANCELLED" -*Defined in [types.ts:289](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L289)* +*Defined in [types.ts:289](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L289)* ___ @@ -389,7 +389,7 @@ ___ • **Expired**: = "EXPIRED" -*Defined in [types.ts:290](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L290)* +*Defined in [types.ts:290](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L290)* ___ @@ -397,7 +397,7 @@ ___ • **FillabilityIncreased**: = "FILLABILITY_INCREASED" -*Defined in [types.ts:294](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L294)* +*Defined in [types.ts:294](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L294)* ___ @@ -405,7 +405,7 @@ ___ • **Filled**: = "FILLED" -*Defined in [types.ts:287](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L287)* +*Defined in [types.ts:287](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L287)* ___ @@ -413,7 +413,7 @@ ___ • **FullyFilled**: = "FULLY_FILLED" -*Defined in [types.ts:288](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L288)* +*Defined in [types.ts:288](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L288)* ___ @@ -421,7 +421,7 @@ ___ • **Invalid**: = "INVALID" -*Defined in [types.ts:285](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L285)* +*Defined in [types.ts:285](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L285)* ___ @@ -429,7 +429,7 @@ ___ • **StoppedWatching**: = "STOPPED_WATCHING" -*Defined in [types.ts:292](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L292)* +*Defined in [types.ts:292](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L292)* ___ @@ -437,7 +437,7 @@ ___ • **Unexpired**: = "UNEXPIRED" -*Defined in [types.ts:291](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L291)* +*Defined in [types.ts:291](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L291)* ___ @@ -445,7 +445,7 @@ ___ • **Unfunded**: = "UNFUNDED" -*Defined in [types.ts:293](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L293)* +*Defined in [types.ts:293](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L293)*
@@ -477,7 +477,7 @@ ___ • **InternalError**: = "InternalError" -*Defined in [types.ts:358](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L358)* +*Defined in [types.ts:358](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L358)* ___ @@ -485,7 +485,7 @@ ___ • **MaxOrderSizeExceeded**: = "MaxOrderSizeExceeded" -*Defined in [types.ts:359](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L359)* +*Defined in [types.ts:359](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L359)* ___ @@ -493,7 +493,7 @@ ___ • **NetworkRequestFailed**: = "NetworkRequestFailed" -*Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L362)* +*Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L362)* ___ @@ -501,7 +501,7 @@ ___ • **OrderAlreadyStored**: = "OrderAlreadyStored" -*Defined in [types.ts:360](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L360)* +*Defined in [types.ts:360](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L360)* ___ @@ -509,7 +509,7 @@ ___ • **OrderCancelled**: = "OrderCancelled" -*Defined in [types.ts:367](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L367)* +*Defined in [types.ts:367](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L367)* ___ @@ -517,7 +517,7 @@ ___ • **OrderExpired**: = "OrderExpired" -*Defined in [types.ts:365](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L365)* +*Defined in [types.ts:365](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L365)* ___ @@ -525,7 +525,7 @@ ___ • **OrderForIncorrectChain**: = "OrderForIncorrectChain" -*Defined in [types.ts:361](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L361)* +*Defined in [types.ts:361](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L361)* ___ @@ -533,7 +533,7 @@ ___ • **OrderFullyFilled**: = "OrderFullyFilled" -*Defined in [types.ts:366](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L366)* +*Defined in [types.ts:366](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L366)* ___ @@ -541,7 +541,7 @@ ___ • **OrderHasInvalidMakerAssetAmount**: = "OrderHasInvalidMakerAssetAmount" -*Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L363)* +*Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L363)* ___ @@ -549,7 +549,7 @@ ___ • **OrderHasInvalidMakerAssetData**: = "OrderHasInvalidMakerAssetData" -*Defined in [types.ts:369](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L369)* +*Defined in [types.ts:369](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L369)* ___ @@ -557,7 +557,7 @@ ___ • **OrderHasInvalidSignature**: = "OrderHasInvalidSignature" -*Defined in [types.ts:371](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L371)* +*Defined in [types.ts:371](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L371)* ___ @@ -565,7 +565,7 @@ ___ • **OrderHasInvalidTakerAssetAmount**: = "OrderHasInvalidTakerAssetAmount" -*Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L364)* +*Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L364)* ___ @@ -573,7 +573,7 @@ ___ • **OrderHasInvalidTakerAssetData**: = "OrderHasInvalidTakerAssetData" -*Defined in [types.ts:370](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L370)* +*Defined in [types.ts:370](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L370)* ___ @@ -581,7 +581,7 @@ ___ • **OrderUnfunded**: = "OrderUnfunded" -*Defined in [types.ts:368](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L368)* +*Defined in [types.ts:368](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L368)*
@@ -602,7 +602,7 @@ ___ • **MeshError**: = "MESH_ERROR" -*Defined in [types.ts:353](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L353)* +*Defined in [types.ts:353](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L353)* ___ @@ -610,7 +610,7 @@ ___ • **MeshValidation**: = "MESH_VALIDATION" -*Defined in [types.ts:354](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L354)* +*Defined in [types.ts:354](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L354)* ___ @@ -618,7 +618,7 @@ ___ • **ZeroexValidation**: = "ZEROEX_VALIDATION" -*Defined in [types.ts:352](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L352)* +*Defined in [types.ts:352](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L352)*
@@ -644,7 +644,7 @@ ___ • **fillableTakerAssetAmount**: *BigNumber* -*Defined in [types.ts:335](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L335)* +*Defined in [types.ts:335](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L335)* ___ @@ -652,7 +652,7 @@ ___ • **isNew**: *boolean* -*Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L336)* +*Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L336)* ___ @@ -660,7 +660,7 @@ ___ • **orderHash**: *string* -*Defined in [types.ts:333](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L333)* +*Defined in [types.ts:333](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L333)* ___ @@ -668,7 +668,7 @@ ___ • **signedOrder**: *SignedOrder* -*Defined in [types.ts:334](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L334)* +*Defined in [types.ts:334](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L334)*
@@ -701,7 +701,7 @@ Source: https://github.com/theturtle32/WebSocket-Node/blob/master/docs/WebSocket • **assembleFragments**? : *undefined | false | true* -*Defined in [types.ts:16](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L16)* +*Defined in [types.ts:16](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L16)* ___ @@ -709,7 +709,7 @@ ___ • **closeTimeout**? : *undefined | number* -*Defined in [types.ts:17](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L17)* +*Defined in [types.ts:17](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L17)* ___ @@ -717,7 +717,7 @@ ___ • **fragmentOutgoingMessages**? : *undefined | false | true* -*Defined in [types.ts:14](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L14)* +*Defined in [types.ts:14](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L14)* ___ @@ -725,7 +725,7 @@ ___ • **fragmentationThreshold**? : *undefined | number* -*Defined in [types.ts:15](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L15)* +*Defined in [types.ts:15](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L15)* ___ @@ -733,7 +733,7 @@ ___ • **maxReceivedFrameSize**? : *undefined | number* -*Defined in [types.ts:12](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L12)* +*Defined in [types.ts:12](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L12)* ___ @@ -741,7 +741,7 @@ ___ • **maxReceivedMessageSize**? : *undefined | number* -*Defined in [types.ts:13](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L13)* +*Defined in [types.ts:13](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L13)* ___ @@ -749,7 +749,7 @@ ___ • **tlsOptions**? : *any* -*Defined in [types.ts:18](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L18)* +*Defined in [types.ts:18](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L18)* ___ @@ -757,7 +757,7 @@ ___ • **webSocketVersion**? : *undefined | number* -*Defined in [types.ts:11](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L11)* +*Defined in [types.ts:11](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L11)*
@@ -787,7 +787,7 @@ ___ • **address**: *string* -*Defined in [types.ts:279](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L279)* +*Defined in [types.ts:279](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L279)* ___ @@ -795,7 +795,7 @@ ___ • **blockHash**: *string* -*Defined in [types.ts:274](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L274)* +*Defined in [types.ts:274](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L274)* ___ @@ -803,7 +803,7 @@ ___ • **isRemoved**: *string* -*Defined in [types.ts:278](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L278)* +*Defined in [types.ts:278](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L278)* ___ @@ -811,7 +811,7 @@ ___ • **kind**: *[ContractEventKind](#enumeration-contracteventkind)* -*Defined in [types.ts:280](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L280)* +*Defined in [types.ts:280](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L280)* ___ @@ -819,7 +819,7 @@ ___ • **logIndex**: *number* -*Defined in [types.ts:277](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L277)* +*Defined in [types.ts:277](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L277)* ___ @@ -827,7 +827,7 @@ ___ • **parameters**: *[ContractEventParameters](#contracteventparameters)* -*Defined in [types.ts:281](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L281)* +*Defined in [types.ts:281](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L281)* ___ @@ -835,7 +835,7 @@ ___ • **txHash**: *string* -*Defined in [types.ts:275](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L275)* +*Defined in [types.ts:275](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L275)* ___ @@ -843,7 +843,7 @@ ___ • **txIndex**: *number* -*Defined in [types.ts:276](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L276)* +*Defined in [types.ts:276](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L276)*
@@ -868,7 +868,7 @@ ___ • **approved**: *boolean* -*Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L144)* +*Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L144)* ___ @@ -876,7 +876,7 @@ ___ • **operator**: *string* -*Defined in [types.ts:143](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L143)* +*Defined in [types.ts:143](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L143)* ___ @@ -884,7 +884,7 @@ ___ • **owner**: *string* -*Defined in [types.ts:142](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L142)* +*Defined in [types.ts:142](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L142)*
@@ -911,7 +911,7 @@ ___ • **from**: *string* -*Defined in [types.ts:127](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L127)* +*Defined in [types.ts:127](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L127)* ___ @@ -919,7 +919,7 @@ ___ • **ids**: *BigNumber[]* -*Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L129)* +*Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L129)* ___ @@ -927,7 +927,7 @@ ___ • **operator**: *string* -*Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L126)* +*Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L126)* ___ @@ -935,7 +935,7 @@ ___ • **to**: *string* -*Defined in [types.ts:128](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L128)* +*Defined in [types.ts:128](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L128)* ___ @@ -943,7 +943,7 @@ ___ • **values**: *BigNumber[]* -*Defined in [types.ts:130](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L130)* +*Defined in [types.ts:130](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L130)*
@@ -970,7 +970,7 @@ ___ • **from**: *string* -*Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L111)* +*Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L111)* ___ @@ -978,7 +978,7 @@ ___ • **id**: *BigNumber* -*Defined in [types.ts:113](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L113)* +*Defined in [types.ts:113](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L113)* ___ @@ -986,7 +986,7 @@ ___ • **operator**: *string* -*Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L110)* +*Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L110)* ___ @@ -994,7 +994,7 @@ ___ • **to**: *string* -*Defined in [types.ts:112](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L112)* +*Defined in [types.ts:112](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L112)* ___ @@ -1002,7 +1002,7 @@ ___ • **value**: *BigNumber* -*Defined in [types.ts:114](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L114)* +*Defined in [types.ts:114](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L114)*
@@ -1027,7 +1027,7 @@ ___ • **owner**: *string* -*Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L68)* +*Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L68)* ___ @@ -1035,7 +1035,7 @@ ___ • **spender**: *string* -*Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L69)* +*Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L69)* ___ @@ -1043,7 +1043,7 @@ ___ • **value**: *BigNumber* -*Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L70)* +*Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L70)*
@@ -1068,7 +1068,7 @@ ___ • **from**: *string* -*Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L56)* +*Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L56)* ___ @@ -1076,7 +1076,7 @@ ___ • **to**: *string* -*Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L57)* +*Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L57)* ___ @@ -1084,7 +1084,7 @@ ___ • **value**: *BigNumber* -*Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L58)* +*Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L58)*
@@ -1109,7 +1109,7 @@ ___ • **approved**: *string* -*Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L93)* +*Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L93)* ___ @@ -1117,7 +1117,7 @@ ___ • **owner**: *string* -*Defined in [types.ts:92](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L92)* +*Defined in [types.ts:92](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L92)* ___ @@ -1125,7 +1125,7 @@ ___ • **tokenId**: *BigNumber* -*Defined in [types.ts:94](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L94)* +*Defined in [types.ts:94](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L94)*
@@ -1150,7 +1150,7 @@ ___ • **approved**: *boolean* -*Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L106)* +*Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L106)* ___ @@ -1158,7 +1158,7 @@ ___ • **operator**: *string* -*Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L105)* +*Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L105)* ___ @@ -1166,7 +1166,7 @@ ___ • **owner**: *string* -*Defined in [types.ts:104](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L104)* +*Defined in [types.ts:104](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L104)*
@@ -1191,7 +1191,7 @@ ___ • **from**: *string* -*Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L80)* +*Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L80)* ___ @@ -1199,7 +1199,7 @@ ___ • **to**: *string* -*Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L81)* +*Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L81)* ___ @@ -1207,7 +1207,7 @@ ___ • **tokenId**: *BigNumber* -*Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L82)* +*Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L82)*
@@ -1235,7 +1235,7 @@ ___ • **feeRecipientAddress**: *string* -*Defined in [types.ts:178](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L178)* +*Defined in [types.ts:178](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L178)* ___ @@ -1243,7 +1243,7 @@ ___ • **makerAddress**: *string* -*Defined in [types.ts:176](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L176)* +*Defined in [types.ts:176](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L176)* ___ @@ -1251,7 +1251,7 @@ ___ • **makerAssetData**: *string* -*Defined in [types.ts:180](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L180)* +*Defined in [types.ts:180](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L180)* ___ @@ -1259,7 +1259,7 @@ ___ • **orderHash**: *string* -*Defined in [types.ts:179](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L179)* +*Defined in [types.ts:179](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L179)* ___ @@ -1267,7 +1267,7 @@ ___ • **senderAddress**: *string* -*Defined in [types.ts:177](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L177)* +*Defined in [types.ts:177](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L177)* ___ @@ -1275,7 +1275,7 @@ ___ • **takerAssetData**: *string* -*Defined in [types.ts:181](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L181)* +*Defined in [types.ts:181](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L181)*
@@ -1300,7 +1300,7 @@ ___ • **makerAddress**: *string* -*Defined in [types.ts:185](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L185)* +*Defined in [types.ts:185](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L185)* ___ @@ -1308,7 +1308,7 @@ ___ • **orderEpoch**: *BigNumber* -*Defined in [types.ts:187](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L187)* +*Defined in [types.ts:187](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L187)* ___ @@ -1316,7 +1316,7 @@ ___ • **senderAddress**: *string* -*Defined in [types.ts:186](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L186)* +*Defined in [types.ts:186](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L186)*
@@ -1349,7 +1349,7 @@ ___ • **feeRecipientAddress**: *string* -*Defined in [types.ts:151](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L151)* +*Defined in [types.ts:151](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L151)* ___ @@ -1357,7 +1357,7 @@ ___ • **makerAddress**: *string* -*Defined in [types.ts:148](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L148)* +*Defined in [types.ts:148](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L148)* ___ @@ -1365,7 +1365,7 @@ ___ • **makerAssetData**: *string* -*Defined in [types.ts:157](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L157)* +*Defined in [types.ts:157](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L157)* ___ @@ -1373,7 +1373,7 @@ ___ • **makerAssetFilledAmount**: *BigNumber* -*Defined in [types.ts:152](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L152)* +*Defined in [types.ts:152](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L152)* ___ @@ -1381,7 +1381,7 @@ ___ • **makerFeePaid**: *BigNumber* -*Defined in [types.ts:154](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L154)* +*Defined in [types.ts:154](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L154)* ___ @@ -1389,7 +1389,7 @@ ___ • **orderHash**: *string* -*Defined in [types.ts:156](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L156)* +*Defined in [types.ts:156](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L156)* ___ @@ -1397,7 +1397,7 @@ ___ • **senderAddress**: *string* -*Defined in [types.ts:150](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L150)* +*Defined in [types.ts:150](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L150)* ___ @@ -1405,7 +1405,7 @@ ___ • **takerAddress**: *string* -*Defined in [types.ts:149](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L149)* +*Defined in [types.ts:149](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L149)* ___ @@ -1413,7 +1413,7 @@ ___ • **takerAssetData**: *string* -*Defined in [types.ts:158](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L158)* +*Defined in [types.ts:158](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L158)* ___ @@ -1421,7 +1421,7 @@ ___ • **takerAssetFilledAmount**: *BigNumber* -*Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L153)* +*Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L153)* ___ @@ -1429,7 +1429,7 @@ ___ • **takerFeePaid**: *BigNumber* -*Defined in [types.ts:155](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L155)* +*Defined in [types.ts:155](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L155)*
@@ -1454,7 +1454,7 @@ ___ • **ordersInfos**: *[OrderInfo](#interface-orderinfo)[]* -*Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L415)* +*Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L415)* ___ @@ -1462,7 +1462,7 @@ ___ • **snapshotID**: *string* -*Defined in [types.ts:413](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L413)* +*Defined in [types.ts:413](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L413)* ___ @@ -1470,7 +1470,7 @@ ___ • **snapshotTimestamp**: *number* -*Defined in [types.ts:414](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L414)* +*Defined in [types.ts:414](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L414)*
@@ -1506,7 +1506,7 @@ ___ • **ethRPCRateLimitExpiredRequests**: *number* -*Defined in [types.ts:442](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L442)* +*Defined in [types.ts:442](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L442)* ___ @@ -1514,7 +1514,7 @@ ___ • **ethRPCRequestsSentInCurrentUTCDay**: *number* -*Defined in [types.ts:441](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L441)* +*Defined in [types.ts:441](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L441)* ___ @@ -1522,7 +1522,7 @@ ___ • **ethereumChainID**: *number* -*Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L433)* +*Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L433)* ___ @@ -1530,7 +1530,7 @@ ___ • **latestBlock**: *[LatestBlock](#interface-latestblock)* -*Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L434)* +*Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L434)* ___ @@ -1538,7 +1538,7 @@ ___ • **maxExpirationTime**: *string* -*Defined in [types.ts:439](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L439)* +*Defined in [types.ts:439](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L439)* ___ @@ -1546,7 +1546,7 @@ ___ • **numOrders**: *number* -*Defined in [types.ts:436](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L436)* +*Defined in [types.ts:436](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L436)* ___ @@ -1554,7 +1554,7 @@ ___ • **numOrdersIncludingRemoved**: *number* -*Defined in [types.ts:437](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L437)* +*Defined in [types.ts:437](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L437)* ___ @@ -1562,7 +1562,7 @@ ___ • **numPeers**: *number* -*Defined in [types.ts:435](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L435)* +*Defined in [types.ts:435](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L435)* ___ @@ -1570,7 +1570,7 @@ ___ • **numPinnedOrders**: *number* -*Defined in [types.ts:438](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L438)* +*Defined in [types.ts:438](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L438)* ___ @@ -1578,7 +1578,7 @@ ___ • **peerID**: *string* -*Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L432)* +*Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L432)* ___ @@ -1586,7 +1586,7 @@ ___ • **pubSubTopic**: *string* -*Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L430)* +*Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L430)* ___ @@ -1594,7 +1594,7 @@ ___ • **rendezvous**: *string* -*Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L431)* +*Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L431)* ___ @@ -1602,7 +1602,7 @@ ___ • **startOfCurrentUTCDay**: *string* -*Defined in [types.ts:440](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L440)* +*Defined in [types.ts:440](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L440)* ___ @@ -1610,7 +1610,7 @@ ___ • **version**: *string* -*Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L429)* +*Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L429)*
@@ -1634,7 +1634,7 @@ ___ • **result**: *string* -*Defined in [types.ts:304](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L304)* +*Defined in [types.ts:304](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L304)* ___ @@ -1642,7 +1642,7 @@ ___ • **subscription**: *string* -*Defined in [types.ts:303](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L303)* +*Defined in [types.ts:303](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L303)*
@@ -1666,7 +1666,7 @@ ___ • **hash**: *string* -*Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L425)* +*Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L425)* ___ @@ -1674,7 +1674,7 @@ ___ • **number**: *number* -*Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L424)* +*Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L424)*
@@ -1702,7 +1702,7 @@ ___ • **contractEvents**: *[ContractEvent](#interface-contractevent)[]* -*Defined in [types.ts:322](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L322)* +*Defined in [types.ts:322](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L322)* ___ @@ -1710,7 +1710,7 @@ ___ • **endState**: *[OrderEventEndState](#enumeration-ordereventendstate)* -*Defined in [types.ts:320](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L320)* +*Defined in [types.ts:320](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L320)* ___ @@ -1718,7 +1718,7 @@ ___ • **fillableTakerAssetAmount**: *BigNumber* -*Defined in [types.ts:321](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L321)* +*Defined in [types.ts:321](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L321)* ___ @@ -1726,7 +1726,7 @@ ___ • **orderHash**: *string* -*Defined in [types.ts:318](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L318)* +*Defined in [types.ts:318](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L318)* ___ @@ -1734,7 +1734,7 @@ ___ • **signedOrder**: *SignedOrder* -*Defined in [types.ts:319](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L319)* +*Defined in [types.ts:319](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L319)* ___ @@ -1742,7 +1742,7 @@ ___ • **timestampMs**: *number* -*Defined in [types.ts:317](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L317)* +*Defined in [types.ts:317](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L317)*
@@ -1766,7 +1766,7 @@ ___ • **result**: *[RawOrderEvent](#interface-raworderevent)[]* -*Defined in [types.ts:299](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L299)* +*Defined in [types.ts:299](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L299)* ___ @@ -1774,7 +1774,7 @@ ___ • **subscription**: *string* -*Defined in [types.ts:298](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L298)* +*Defined in [types.ts:298](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L298)*
@@ -1799,7 +1799,7 @@ ___ • **fillableTakerAssetAmount**: *BigNumber* -*Defined in [types.ts:348](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L348)* +*Defined in [types.ts:348](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L348)* ___ @@ -1807,7 +1807,7 @@ ___ • **orderHash**: *string* -*Defined in [types.ts:346](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L346)* +*Defined in [types.ts:346](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L346)* ___ @@ -1815,7 +1815,7 @@ ___ • **signedOrder**: *SignedOrder* -*Defined in [types.ts:347](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L347)* +*Defined in [types.ts:347](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L347)*
@@ -1841,7 +1841,7 @@ ___ • **fillableTakerAssetAmount**: *string* -*Defined in [types.ts:328](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L328)* +*Defined in [types.ts:328](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L328)* ___ @@ -1849,7 +1849,7 @@ ___ • **isNew**: *boolean* -*Defined in [types.ts:329](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L329)* +*Defined in [types.ts:329](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L329)* ___ @@ -1857,7 +1857,7 @@ ___ • **orderHash**: *string* -*Defined in [types.ts:326](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L326)* +*Defined in [types.ts:326](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L326)* ___ @@ -1865,7 +1865,7 @@ ___ • **signedOrder**: *[StringifiedSignedOrder](#interface-stringifiedsignedorder)* -*Defined in [types.ts:327](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L327)* +*Defined in [types.ts:327](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L327)*
@@ -1890,7 +1890,7 @@ ___ • **ordersInfos**: *[RawAcceptedOrderInfo](#interface-rawacceptedorderinfo)[]* -*Defined in [types.ts:406](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L406)* +*Defined in [types.ts:406](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L406)* ___ @@ -1898,7 +1898,7 @@ ___ • **snapshotID**: *string* -*Defined in [types.ts:404](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L404)* +*Defined in [types.ts:404](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L404)* ___ @@ -1906,7 +1906,7 @@ ___ • **snapshotTimestamp**: *string* -*Defined in [types.ts:405](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L405)* +*Defined in [types.ts:405](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L405)*
@@ -1934,7 +1934,7 @@ ___ • **contractEvents**: *[StringifiedContractEvent](#interface-stringifiedcontractevent)[]* -*Defined in [types.ts:313](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L313)* +*Defined in [types.ts:313](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L313)* ___ @@ -1942,7 +1942,7 @@ ___ • **endState**: *[OrderEventEndState](#enumeration-ordereventendstate)* -*Defined in [types.ts:311](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L311)* +*Defined in [types.ts:311](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L311)* ___ @@ -1950,7 +1950,7 @@ ___ • **fillableTakerAssetAmount**: *string* -*Defined in [types.ts:312](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L312)* +*Defined in [types.ts:312](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L312)* ___ @@ -1958,7 +1958,7 @@ ___ • **orderHash**: *string* -*Defined in [types.ts:309](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L309)* +*Defined in [types.ts:309](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L309)* ___ @@ -1966,7 +1966,7 @@ ___ • **signedOrder**: *[StringifiedSignedOrder](#interface-stringifiedsignedorder)* -*Defined in [types.ts:310](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L310)* +*Defined in [types.ts:310](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L310)* ___ @@ -1974,7 +1974,7 @@ ___ • **timestamp**: *string* -*Defined in [types.ts:308](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L308)* +*Defined in [types.ts:308](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L308)*
@@ -1999,7 +1999,7 @@ ___ • **fillableTakerAssetAmount**: *string* -*Defined in [types.ts:342](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L342)* +*Defined in [types.ts:342](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L342)* ___ @@ -2007,7 +2007,7 @@ ___ • **orderHash**: *string* -*Defined in [types.ts:340](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L340)* +*Defined in [types.ts:340](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L340)* ___ @@ -2015,7 +2015,7 @@ ___ • **signedOrder**: *[StringifiedSignedOrder](#interface-stringifiedsignedorder)* -*Defined in [types.ts:341](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L341)* +*Defined in [types.ts:341](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L341)*
@@ -2041,7 +2041,7 @@ ___ • **kind**: *[RejectedKind](#enumeration-rejectedkind)* -*Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L382)* +*Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L382)* ___ @@ -2049,7 +2049,7 @@ ___ • **orderHash**: *string* -*Defined in [types.ts:380](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L380)* +*Defined in [types.ts:380](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L380)* ___ @@ -2057,7 +2057,7 @@ ___ • **signedOrder**: *[StringifiedSignedOrder](#interface-stringifiedsignedorder)* -*Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L381)* +*Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L381)* ___ @@ -2065,7 +2065,7 @@ ___ • **status**: *[RejectedStatus](#interface-rejectedstatus)* -*Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L383)* +*Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L383)*
@@ -2089,7 +2089,7 @@ ___ • **accepted**: *[RawAcceptedOrderInfo](#interface-rawacceptedorderinfo)[]* -*Defined in [types.ts:394](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L394)* +*Defined in [types.ts:394](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L394)* ___ @@ -2097,7 +2097,7 @@ ___ • **rejected**: *[RawRejectedOrderInfo](#interface-rawrejectedorderinfo)[]* -*Defined in [types.ts:395](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L395)* +*Defined in [types.ts:395](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L395)*
@@ -2123,7 +2123,7 @@ ___ • **kind**: *[RejectedKind](#enumeration-rejectedkind)* -*Defined in [types.ts:389](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L389)* +*Defined in [types.ts:389](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L389)* ___ @@ -2131,7 +2131,7 @@ ___ • **orderHash**: *string* -*Defined in [types.ts:387](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L387)* +*Defined in [types.ts:387](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L387)* ___ @@ -2139,7 +2139,7 @@ ___ • **signedOrder**: *SignedOrder* -*Defined in [types.ts:388](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L388)* +*Defined in [types.ts:388](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L388)* ___ @@ -2147,7 +2147,7 @@ ___ • **status**: *[RejectedStatus](#interface-rejectedstatus)* -*Defined in [types.ts:390](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L390)* +*Defined in [types.ts:390](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L390)*
@@ -2171,7 +2171,7 @@ ___ • **code**: *[RejectedCode](#enumeration-rejectedcode)* -*Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L375)* +*Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L375)* ___ @@ -2179,7 +2179,7 @@ ___ • **message**: *string* -*Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L376)* +*Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L376)*
@@ -2209,7 +2209,7 @@ ___ • **address**: *string* -*Defined in [types.ts:253](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L253)* +*Defined in [types.ts:253](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L253)* ___ @@ -2217,7 +2217,7 @@ ___ • **blockHash**: *string* -*Defined in [types.ts:248](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L248)* +*Defined in [types.ts:248](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L248)* ___ @@ -2225,7 +2225,7 @@ ___ • **isRemoved**: *string* -*Defined in [types.ts:252](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L252)* +*Defined in [types.ts:252](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L252)* ___ @@ -2233,7 +2233,7 @@ ___ • **kind**: *string* -*Defined in [types.ts:254](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L254)* +*Defined in [types.ts:254](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L254)* ___ @@ -2241,7 +2241,7 @@ ___ • **logIndex**: *number* -*Defined in [types.ts:251](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L251)* +*Defined in [types.ts:251](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L251)* ___ @@ -2249,7 +2249,7 @@ ___ • **parameters**: *[StringifiedContractEventParameters](#stringifiedcontracteventparameters)* -*Defined in [types.ts:255](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L255)* +*Defined in [types.ts:255](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L255)* ___ @@ -2257,7 +2257,7 @@ ___ • **txHash**: *string* -*Defined in [types.ts:249](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L249)* +*Defined in [types.ts:249](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L249)* ___ @@ -2265,7 +2265,7 @@ ___ • **txIndex**: *number* -*Defined in [types.ts:250](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L250)* +*Defined in [types.ts:250](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L250)*
@@ -2292,7 +2292,7 @@ ___ • **from**: *string* -*Defined in [types.ts:135](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L135)* +*Defined in [types.ts:135](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L135)* ___ @@ -2300,7 +2300,7 @@ ___ • **ids**: *string[]* -*Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L137)* +*Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L137)* ___ @@ -2308,7 +2308,7 @@ ___ • **operator**: *string* -*Defined in [types.ts:134](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L134)* +*Defined in [types.ts:134](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L134)* ___ @@ -2316,7 +2316,7 @@ ___ • **to**: *string* -*Defined in [types.ts:136](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L136)* +*Defined in [types.ts:136](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L136)* ___ @@ -2324,7 +2324,7 @@ ___ • **values**: *string[]* -*Defined in [types.ts:138](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L138)* +*Defined in [types.ts:138](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L138)*
@@ -2351,7 +2351,7 @@ ___ • **from**: *string* -*Defined in [types.ts:119](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L119)* +*Defined in [types.ts:119](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L119)* ___ @@ -2359,7 +2359,7 @@ ___ • **id**: *string* -*Defined in [types.ts:121](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L121)* +*Defined in [types.ts:121](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L121)* ___ @@ -2367,7 +2367,7 @@ ___ • **operator**: *string* -*Defined in [types.ts:118](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L118)* +*Defined in [types.ts:118](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L118)* ___ @@ -2375,7 +2375,7 @@ ___ • **to**: *string* -*Defined in [types.ts:120](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L120)* +*Defined in [types.ts:120](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L120)* ___ @@ -2383,7 +2383,7 @@ ___ • **value**: *string* -*Defined in [types.ts:122](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L122)* +*Defined in [types.ts:122](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L122)*
@@ -2408,7 +2408,7 @@ ___ • **owner**: *string* -*Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L74)* +*Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L74)* ___ @@ -2416,7 +2416,7 @@ ___ • **spender**: *string* -*Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L75)* +*Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L75)* ___ @@ -2424,7 +2424,7 @@ ___ • **value**: *string* -*Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L76)* +*Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L76)*
@@ -2449,7 +2449,7 @@ ___ • **from**: *string* -*Defined in [types.ts:62](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L62)* +*Defined in [types.ts:62](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L62)* ___ @@ -2457,7 +2457,7 @@ ___ • **to**: *string* -*Defined in [types.ts:63](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L63)* +*Defined in [types.ts:63](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L63)* ___ @@ -2465,7 +2465,7 @@ ___ • **value**: *string* -*Defined in [types.ts:64](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L64)* +*Defined in [types.ts:64](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L64)*
@@ -2490,7 +2490,7 @@ ___ • **approved**: *string* -*Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L99)* +*Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L99)* ___ @@ -2498,7 +2498,7 @@ ___ • **owner**: *string* -*Defined in [types.ts:98](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L98)* +*Defined in [types.ts:98](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L98)* ___ @@ -2506,7 +2506,7 @@ ___ • **tokenId**: *string* -*Defined in [types.ts:100](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L100)* +*Defined in [types.ts:100](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L100)*
@@ -2531,7 +2531,7 @@ ___ • **from**: *string* -*Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L86)* +*Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L86)* ___ @@ -2539,7 +2539,7 @@ ___ • **to**: *string* -*Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L87)* +*Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L87)* ___ @@ -2547,7 +2547,7 @@ ___ • **tokenId**: *string* -*Defined in [types.ts:88](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L88)* +*Defined in [types.ts:88](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L88)*
@@ -2572,7 +2572,7 @@ ___ • **makerAddress**: *string* -*Defined in [types.ts:191](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L191)* +*Defined in [types.ts:191](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L191)* ___ @@ -2580,7 +2580,7 @@ ___ • **orderEpoch**: *string* -*Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L193)* +*Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L193)* ___ @@ -2588,7 +2588,7 @@ ___ • **senderAddress**: *string* -*Defined in [types.ts:192](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L192)* +*Defined in [types.ts:192](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L192)*
@@ -2621,7 +2621,7 @@ ___ • **feeRecipientAddress**: *string* -*Defined in [types.ts:165](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L165)* +*Defined in [types.ts:165](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L165)* ___ @@ -2629,7 +2629,7 @@ ___ • **makerAddress**: *string* -*Defined in [types.ts:162](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L162)* +*Defined in [types.ts:162](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L162)* ___ @@ -2637,7 +2637,7 @@ ___ • **makerAssetData**: *string* -*Defined in [types.ts:171](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L171)* +*Defined in [types.ts:171](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L171)* ___ @@ -2645,7 +2645,7 @@ ___ • **makerAssetFilledAmount**: *string* -*Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L166)* +*Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L166)* ___ @@ -2653,7 +2653,7 @@ ___ • **makerFeePaid**: *string* -*Defined in [types.ts:168](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L168)* +*Defined in [types.ts:168](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L168)* ___ @@ -2661,7 +2661,7 @@ ___ • **orderHash**: *string* -*Defined in [types.ts:170](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L170)* +*Defined in [types.ts:170](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L170)* ___ @@ -2669,7 +2669,7 @@ ___ • **senderAddress**: *string* -*Defined in [types.ts:164](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L164)* +*Defined in [types.ts:164](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L164)* ___ @@ -2677,7 +2677,7 @@ ___ • **takerAddress**: *string* -*Defined in [types.ts:163](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L163)* +*Defined in [types.ts:163](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L163)* ___ @@ -2685,7 +2685,7 @@ ___ • **takerAssetData**: *string* -*Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L172)* +*Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L172)* ___ @@ -2693,7 +2693,7 @@ ___ • **takerAssetFilledAmount**: *string* -*Defined in [types.ts:167](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L167)* +*Defined in [types.ts:167](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L167)* ___ @@ -2701,7 +2701,7 @@ ___ • **takerFeePaid**: *string* -*Defined in [types.ts:169](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L169)* +*Defined in [types.ts:169](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L169)*
@@ -2737,7 +2737,7 @@ ___ • **exchangeAddress**: *string* -*Defined in [types.ts:49](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L49)* +*Defined in [types.ts:49](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L49)* ___ @@ -2745,7 +2745,7 @@ ___ • **expirationTimeSeconds**: *string* -*Defined in [types.ts:51](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L51)* +*Defined in [types.ts:51](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L51)* ___ @@ -2753,7 +2753,7 @@ ___ • **feeRecipientAddress**: *string* -*Defined in [types.ts:50](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L50)* +*Defined in [types.ts:50](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L50)* ___ @@ -2761,7 +2761,7 @@ ___ • **makerAddress**: *string* -*Defined in [types.ts:40](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L40)* +*Defined in [types.ts:40](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L40)* ___ @@ -2769,7 +2769,7 @@ ___ • **makerAssetAmount**: *string* -*Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L44)* +*Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L44)* ___ @@ -2777,7 +2777,7 @@ ___ • **makerAssetData**: *string* -*Defined in [types.ts:46](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L46)* +*Defined in [types.ts:46](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L46)* ___ @@ -2785,7 +2785,7 @@ ___ • **makerFee**: *string* -*Defined in [types.ts:42](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L42)* +*Defined in [types.ts:42](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L42)* ___ @@ -2793,7 +2793,7 @@ ___ • **salt**: *string* -*Defined in [types.ts:48](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L48)* +*Defined in [types.ts:48](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L48)* ___ @@ -2801,7 +2801,7 @@ ___ • **senderAddress**: *string* -*Defined in [types.ts:39](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L39)* +*Defined in [types.ts:39](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L39)* ___ @@ -2809,7 +2809,7 @@ ___ • **signature**: *string* -*Defined in [types.ts:52](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L52)* +*Defined in [types.ts:52](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L52)* ___ @@ -2817,7 +2817,7 @@ ___ • **takerAddress**: *string* -*Defined in [types.ts:41](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L41)* +*Defined in [types.ts:41](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L41)* ___ @@ -2825,7 +2825,7 @@ ___ • **takerAssetAmount**: *string* -*Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L45)* +*Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L45)* ___ @@ -2833,7 +2833,7 @@ ___ • **takerAssetData**: *string* -*Defined in [types.ts:47](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L47)* +*Defined in [types.ts:47](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L47)* ___ @@ -2841,7 +2841,7 @@ ___ • **takerFee**: *string* -*Defined in [types.ts:43](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L43)* +*Defined in [types.ts:43](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L43)*
@@ -2865,7 +2865,7 @@ ___ • **owner**: *string* -*Defined in [types.ts:212](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L212)* +*Defined in [types.ts:212](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L212)* ___ @@ -2873,7 +2873,7 @@ ___ • **value**: *string* -*Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L213)* +*Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L213)*
@@ -2897,7 +2897,7 @@ ___ • **owner**: *string* -*Defined in [types.ts:202](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L202)* +*Defined in [types.ts:202](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L202)* ___ @@ -2905,7 +2905,7 @@ ___ • **value**: *string* -*Defined in [types.ts:203](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L203)* +*Defined in [types.ts:203](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L203)*
@@ -2929,7 +2929,7 @@ ___ • **accepted**: *[AcceptedOrderInfo](#interface-acceptedorderinfo)[]* -*Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L399)* +*Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L399)* ___ @@ -2937,7 +2937,7 @@ ___ • **rejected**: *[RejectedOrderInfo](#interface-rejectedorderinfo)[]* -*Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L400)* +*Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L400)*
@@ -2961,7 +2961,7 @@ ___ • **owner**: *string* -*Defined in [types.ts:207](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L207)* +*Defined in [types.ts:207](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L207)* ___ @@ -2969,7 +2969,7 @@ ___ • **value**: *BigNumber* -*Defined in [types.ts:208](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L208)* +*Defined in [types.ts:208](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L208)*
@@ -2993,7 +2993,7 @@ ___ • **owner**: *string* -*Defined in [types.ts:197](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L197)* +*Defined in [types.ts:197](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L197)* ___ @@ -3001,7 +3001,7 @@ ___ • **value**: *BigNumber* -*Defined in [types.ts:198](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L198)* +*Defined in [types.ts:198](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L198)*
@@ -3025,7 +3025,7 @@ ___ • **type**: *string* -*Defined in [types.ts:419](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L419)* +*Defined in [types.ts:419](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L419)* ___ @@ -3033,7 +3033,7 @@ ___ • **utf8Data**: *string* -*Defined in [types.ts:420](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L420)* +*Defined in [types.ts:420](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L420)*
@@ -3068,7 +3068,7 @@ reconnectDelay: time in milliseconds after which to attempt to reconnect to WS s • **clientConfig**? : *[ClientConfig](#interface-clientconfig)* -*Defined in [types.ts:34](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L34)* +*Defined in [types.ts:34](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L34)* ___ @@ -3076,7 +3076,7 @@ ___ • **headers**? : *undefined | __type* -*Defined in [types.ts:32](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L32)* +*Defined in [types.ts:32](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L32)* ___ @@ -3084,7 +3084,7 @@ ___ • **protocol**? : *undefined | string* -*Defined in [types.ts:33](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L33)* +*Defined in [types.ts:33](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L33)* ___ @@ -3092,7 +3092,7 @@ ___ • **reconnectDelay**? : *undefined | number* -*Defined in [types.ts:35](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L35)* +*Defined in [types.ts:35](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L35)* ___ @@ -3100,7 +3100,7 @@ ___ • **timeout**? : *undefined | number* -*Defined in [types.ts:31](https://github.com/0xProject/0x-mesh/blob/85a60d5/packages/rpc-client/src/types.ts#L31)* +*Defined in [types.ts:31](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/rpc-client/src/types.ts#L31)*
diff --git a/docs/rpc_api.md b/docs/rpc_api.md index 24c450355..eaa03d2c9 100644 --- a/docs/rpc_api.md +++ b/docs/rpc_api.md @@ -1,4 +1,4 @@ -[![Version](https://img.shields.io/badge/version-9.2.0-orange.svg)](https://github.com/0xProject/0x-mesh/releases) +[![Version](https://img.shields.io/badge/version-9.2.1-orange.svg)](https://github.com/0xProject/0x-mesh/releases) # 0x Mesh JSON-RPC API Documentation diff --git a/packages/browser-lite/package.json b/packages/browser-lite/package.json index ff894aa08..f8214bdac 100644 --- a/packages/browser-lite/package.json +++ b/packages/browser-lite/package.json @@ -1,6 +1,6 @@ { "name": "@0x/mesh-browser-lite", - "version": "9.2.0", + "version": "9.2.1", "description": "TypeScript and JavaScript bindings for running Mesh directly in the browser. To use this packages, you must use your own copy of the Mesh WebAssembly Binary", "main": "./lib/index.js", "license": "Apache-2.0", diff --git a/packages/browser/package.json b/packages/browser/package.json index 068e10f59..10c0564d9 100644 --- a/packages/browser/package.json +++ b/packages/browser/package.json @@ -1,6 +1,6 @@ { "name": "@0x/mesh-browser", - "version": "9.2.0", + "version": "9.2.1", "description": "TypeScript and JavaScript bindings for running Mesh directly in the browser.", "main": "./lib/index.js", "license": "Apache-2.0", @@ -20,7 +20,7 @@ "docsPath": "../../docs/browser-bindings/browser" }, "dependencies": { - "@0x/mesh-browser-lite": "^9.2.0", + "@0x/mesh-browser-lite": "^9.2.1", "base64-arraybuffer": "^0.2.0", "browserfs": "^1.4.3", "ethereum-types": "^3.0.0" diff --git a/packages/rpc-client/package.json b/packages/rpc-client/package.json index f434c9d10..644aa160c 100644 --- a/packages/rpc-client/package.json +++ b/packages/rpc-client/package.json @@ -1,6 +1,6 @@ { "name": "@0x/mesh-rpc-client", - "version": "9.2.0", + "version": "9.2.1", "engines": { "node": ">=6.12" }, From 70af3f76d03ae3e822514241a3982b7e4da6c475 Mon Sep 17 00:00:00 2001 From: Alex Towle Date: Wed, 18 Mar 2020 14:32:35 -0500 Subject: [PATCH 3/3] Fixed the docs --- .../browser-lite/reference.md | 1289 +---------- docs/browser-bindings/browser/reference.md | 2047 +++++++++++++++++ 2 files changed, 2064 insertions(+), 1272 deletions(-) create mode 100644 docs/browser-bindings/browser/reference.md diff --git a/docs/browser-bindings/browser-lite/reference.md b/docs/browser-bindings/browser-lite/reference.md index 6a0118797..b65d4e9b4 100644 --- a/docs/browser-bindings/browser-lite/reference.md +++ b/docs/browser-bindings/browser-lite/reference.md @@ -1666,115 +1666,6 @@ ___ *Defined in [types.ts:612](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L612)* -
- -# Interface: MeshWrapper - -### Hierarchy - -* **MeshWrapper** - - -### Methods - -## addOrdersAsync - -▸ **addOrdersAsync**(`orders`: [WrapperSignedOrder](#interface-wrappersignedorder)[], `pinned`: boolean): *Promise‹[WrapperValidationResults](#interface-wrappervalidationresults)›* - -*Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L227)* - -**Parameters:** - -Name | Type | ------- | ------ | -`orders` | [WrapperSignedOrder](#interface-wrappersignedorder)[] | -`pinned` | boolean | - -**Returns:** *Promise‹[WrapperValidationResults](#interface-wrappervalidationresults)›* - -___ - -## getOrdersForPageAsync - -▸ **getOrdersForPageAsync**(`page`: number, `perPage`: number, `snapshotID?`: undefined | string): *Promise‹[WrapperGetOrdersResponse](#interface-wrappergetordersresponse)›* - -*Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L226)* - -**Parameters:** - -Name | Type | ------- | ------ | -`page` | number | -`perPage` | number | -`snapshotID?` | undefined | string | - -**Returns:** *Promise‹[WrapperGetOrdersResponse](#interface-wrappergetordersresponse)›* - -___ - -## getStatsAsync - -▸ **getStatsAsync**(): *Promise‹[WrapperStats](#interface-wrapperstats)›* - -*Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L225)* - -**Returns:** *Promise‹[WrapperStats](#interface-wrapperstats)›* - -___ - -## onError - -▸ **onError**(`handler`: function): *void* - -*Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L223)* - -**Parameters:** - -▪ **handler**: *function* - -▸ (`err`: Error): *void* - -**Parameters:** - -Name | Type | ------- | ------ | -`err` | Error | - -**Returns:** *void* - -___ - -## onOrderEvents - -▸ **onOrderEvents**(`handler`: function): *void* - -*Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L224)* - -**Parameters:** - -▪ **handler**: *function* - -▸ (`events`: [WrapperOrderEvent](#interface-wrapperorderevent)[]): *void* - -**Parameters:** - -Name | Type | ------- | ------ | -`events` | [WrapperOrderEvent](#interface-wrapperorderevent)[] | - -**Returns:** *void* - -___ - -## startAsync - -▸ **startAsync**(): *Promise‹void›* - -*Defined in [types.ts:222](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L222)* - -**Returns:** *Promise‹void›* - -
# Interface: OrderEvent @@ -2155,1181 +2046,35 @@ ___
-# Interface: WrapperAcceptedOrderInfo - -### Hierarchy - -* **WrapperAcceptedOrderInfo** - - -### Properties - -## fillableTakerAssetAmount - -• **fillableTakerAssetAmount**: *string* - -*Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L552)* - -___ - -## isNew - -• **isNew**: *boolean* - -*Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L553)* - -___ - -## orderHash - -• **orderHash**: *string* - -*Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L550)* +# Functions -___ +## loadMeshStreamingForURLAsync +▸ **loadMeshStreamingWithURLAsync**(`url`: `string`): *Promise‹`void`›* -## signedOrder +*Defined in [index.ts:7](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/index.ts#L7)* -• **signedOrder**: *[WrapperSignedOrder](#interface-wrappersignedorder)* +Loads the Wasm module that is provided by fetching a url. -*Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L551)* +**Parameters:** +Name | Type | Description | +------ | ------ | ------ | +`url` | `string` | The URL to query for the Wasm binary |
-# Interface: WrapperConfig - -### Hierarchy - -* **WrapperConfig** - - -### Properties - -## `Optional` blockPollingIntervalSeconds - -• **blockPollingIntervalSeconds**? : *undefined | number* - -*Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L237)* +## loadMeshStreamingAsync -___ - -## `Optional` bootstrapList - -• **bootstrapList**? : *undefined | string* - -*Defined in [types.ts:236](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L236)* - -___ - -## `Optional` customContractAddresses - -• **customContractAddresses**? : *undefined | string* - -*Defined in [types.ts:242](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L242)* - -___ - -## `Optional` customOrderFilter - -• **customOrderFilter**? : *undefined | string* - -*Defined in [types.ts:244](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L244)* - -___ - -## `Optional` enableEthereumRPCRateLimiting - -• **enableEthereumRPCRateLimiting**? : *undefined | false | true* - -*Defined in [types.ts:241](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L241)* - -___ - -## ethereumChainID - -• **ethereumChainID**: *number* - -*Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L234)* - -___ - -## `Optional` ethereumRPCMaxContentLength - -• **ethereumRPCMaxContentLength**? : *undefined | number* - -*Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L238)* - -___ - -## `Optional` ethereumRPCMaxRequestsPer24HrUTC - -• **ethereumRPCMaxRequestsPer24HrUTC**? : *undefined | number* - -*Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L239)* - -___ - -## `Optional` ethereumRPCMaxRequestsPerSecond - -• **ethereumRPCMaxRequestsPerSecond**? : *undefined | number* - -*Defined in [types.ts:240](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L240)* - -___ - -## `Optional` ethereumRPCURL - -• **ethereumRPCURL**? : *undefined | string* - -*Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L233)* - -___ - -## `Optional` maxOrdersInStorage - -• **maxOrdersInStorage**? : *undefined | number* - -*Defined in [types.ts:243](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L243)* - -___ - -## `Optional` useBootstrapList - -• **useBootstrapList**? : *undefined | false | true* - -*Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L235)* - -___ - -## `Optional` verbosity - -• **verbosity**? : *undefined | number* - -*Defined in [types.ts:232](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L232)* - -___ +▸ **loadMeshStreamingAsync**(`response`: `Response | Promise`): *Promise‹`void`›* -## `Optional` web3Provider +*Defined in [index.ts:15](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/index.ts#L15)* -• **web3Provider**? : *ZeroExProvider* +Loads the Wasm module that is provided by a response. -*Defined in [types.ts:245](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L245)* +**Parameters:** +Name | Type | Description | +------ | ------ | ------ | +`response` | `Response or Promise` | The Wasm response that supplies the Wasm binary |
- -# Interface: WrapperContractEvent - -### Hierarchy - -* **WrapperContractEvent** - - -### Properties - -## address - -• **address**: *string* - -*Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L502)* - -___ - -## blockHash - -• **blockHash**: *string* - -*Defined in [types.ts:497](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L497)* - -___ - -## isRemoved - -• **isRemoved**: *boolean* - -*Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L501)* - -___ - -## kind - -• **kind**: *string* - -*Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L503)* - -___ - -## logIndex - -• **logIndex**: *number* - -*Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L500)* - -___ - -## parameters - -• **parameters**: *[WrapperContractEventParameters](#wrappercontracteventparameters)* - -*Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L504)* - -___ - -## txHash - -• **txHash**: *string* - -*Defined in [types.ts:498](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L498)* - -___ - -## txIndex - -• **txIndex**: *number* - -*Defined in [types.ts:499](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L499)* - - -
- -# Interface: WrapperERC1155TransferBatchEvent - -### Hierarchy - -* **WrapperERC1155TransferBatchEvent** - - -### Properties - -## from - -• **from**: *string* - -*Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L351)* - -___ - -## ids - -• **ids**: *string[]* - -*Defined in [types.ts:353](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L353)* - -___ - -## operator - -• **operator**: *string* - -*Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L350)* - -___ - -## to - -• **to**: *string* - -*Defined in [types.ts:352](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L352)* - -___ - -## values - -• **values**: *string[]* - -*Defined in [types.ts:354](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L354)* - - -
- -# Interface: WrapperERC1155TransferSingleEvent - -### Hierarchy - -* **WrapperERC1155TransferSingleEvent** - - -### Properties - -## from - -• **from**: *string* - -*Defined in [types.ts:335](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L335)* - -___ - -## id - -• **id**: *string* - -*Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L337)* - -___ - -## operator - -• **operator**: *string* - -*Defined in [types.ts:334](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L334)* - -___ - -## to - -• **to**: *string* - -*Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L336)* - -___ - -## value - -• **value**: *string* - -*Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L338)* - - -
- -# Interface: WrapperERC20ApprovalEvent - -### Hierarchy - -* **WrapperERC20ApprovalEvent** - - -### Properties - -## owner - -• **owner**: *string* - -*Defined in [types.ts:290](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L290)* - -___ - -## spender - -• **spender**: *string* - -*Defined in [types.ts:291](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L291)* - -___ - -## value - -• **value**: *string* - -*Defined in [types.ts:292](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L292)* - - -
- -# Interface: WrapperERC20TransferEvent - -### Hierarchy - -* **WrapperERC20TransferEvent** - - -### Properties - -## from - -• **from**: *string* - -*Defined in [types.ts:278](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L278)* - -___ - -## to - -• **to**: *string* - -*Defined in [types.ts:279](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L279)* - -___ - -## value - -• **value**: *string* - -*Defined in [types.ts:280](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L280)* - - -
- -# Interface: WrapperERC721ApprovalEvent - -### Hierarchy - -* **WrapperERC721ApprovalEvent** - - -### Properties - -## approved - -• **approved**: *string* - -*Defined in [types.ts:315](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L315)* - -___ - -## owner - -• **owner**: *string* - -*Defined in [types.ts:314](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L314)* - -___ - -## tokenId - -• **tokenId**: *string* - -*Defined in [types.ts:316](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L316)* - - -
- -# Interface: WrapperERC721TransferEvent - -### Hierarchy - -* **WrapperERC721TransferEvent** - - -### Properties - -## from - -• **from**: *string* - -*Defined in [types.ts:302](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L302)* - -___ - -## to - -• **to**: *string* - -*Defined in [types.ts:303](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L303)* - -___ - -## tokenId - -• **tokenId**: *string* - -*Defined in [types.ts:304](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L304)* - - -
- -# Interface: WrapperExchangeCancelUpToEvent - -### Hierarchy - -* **WrapperExchangeCancelUpToEvent** - - -### Properties - -## makerAddress - -• **makerAddress**: *string* - -*Defined in [types.ts:413](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L413)* - -___ - -## orderEpoch - -• **orderEpoch**: *string* - -*Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L415)* - -___ - -## orderSenderAddress - -• **orderSenderAddress**: *string* - -*Defined in [types.ts:414](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L414)* - - -
- -# Interface: WrapperExchangeFillEvent - -### Hierarchy - -* **WrapperExchangeFillEvent** - - -### Properties - -## feeRecipientAddress - -• **feeRecipientAddress**: *string* - -*Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L384)* - -___ - -## makerAddress - -• **makerAddress**: *string* - -*Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L381)* - -___ - -## makerAssetData - -• **makerAssetData**: *string* - -*Defined in [types.ts:391](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L391)* - -___ - -## makerAssetFilledAmount - -• **makerAssetFilledAmount**: *string* - -*Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L385)* - -___ - -## makerFeeAssetData - -• **makerFeeAssetData**: *string* - -*Defined in [types.ts:393](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L393)* - -___ - -## makerFeePaid - -• **makerFeePaid**: *string* - -*Defined in [types.ts:387](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L387)* - -___ - -## orderHash - -• **orderHash**: *string* - -*Defined in [types.ts:390](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L390)* - -___ - -## protocolFeePaid - -• **protocolFeePaid**: *string* - -*Defined in [types.ts:389](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L389)* - -___ - -## senderAddress - -• **senderAddress**: *string* - -*Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L383)* - -___ - -## takerAddress - -• **takerAddress**: *string* - -*Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L382)* - -___ - -## takerAssetData - -• **takerAssetData**: *string* - -*Defined in [types.ts:392](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L392)* - -___ - -## takerAssetFilledAmount - -• **takerAssetFilledAmount**: *string* - -*Defined in [types.ts:386](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L386)* - -___ - -## takerFeeAssetData - -• **takerFeeAssetData**: *string* - -*Defined in [types.ts:394](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L394)* - -___ - -## takerFeePaid - -• **takerFeePaid**: *string* - -*Defined in [types.ts:388](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L388)* - - -
- -# Interface: WrapperGetOrdersResponse - -### Hierarchy - -* **WrapperGetOrdersResponse** - - -### Properties - -## ordersInfos - -• **ordersInfos**: *[WrapperOrderInfo](#interface-wrapperorderinfo)[]* - -*Defined in [types.ts:12](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L12)* - -___ - -## snapshotID - -• **snapshotID**: *string* - -*Defined in [types.ts:10](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L10)* - -___ - -## snapshotTimestamp - -• **snapshotTimestamp**: *string* - -*Defined in [types.ts:11](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L11)* - - -
- -# Interface: WrapperOrderEvent - -### Hierarchy - -* **WrapperOrderEvent** - - -### Properties - -## contractEvents - -• **contractEvents**: *[WrapperContractEvent](#interface-wrappercontractevent)[]* - -*Defined in [types.ts:526](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L526)* - -___ - -## endState - -• **endState**: *[OrderEventEndState](#enumeration-ordereventendstate)* - -*Defined in [types.ts:524](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L524)* - -___ - -## fillableTakerAssetAmount - -• **fillableTakerAssetAmount**: *string* - -*Defined in [types.ts:525](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L525)* - -___ - -## orderHash - -• **orderHash**: *string* - -*Defined in [types.ts:522](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L522)* - -___ - -## signedOrder - -• **signedOrder**: *[WrapperSignedOrder](#interface-wrappersignedorder)* - -*Defined in [types.ts:523](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L523)* - -___ - -## timestamp - -• **timestamp**: *string* - -*Defined in [types.ts:521](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L521)* - - -
- -# Interface: WrapperOrderInfo - -### Hierarchy - -* **WrapperOrderInfo** - - -### Properties - -## fillableTakerAssetAmount - -• **fillableTakerAssetAmount**: *string* - -*Defined in [types.ts:24](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L24)* - -___ - -## orderHash - -• **orderHash**: *string* - -*Defined in [types.ts:22](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L22)* - -___ - -## signedOrder - -• **signedOrder**: *[WrapperSignedOrder](#interface-wrappersignedorder)* - -*Defined in [types.ts:23](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L23)* - - -
- -# Interface: WrapperRejectedOrderInfo - -### Hierarchy - -* **WrapperRejectedOrderInfo** - - -### Properties - -## kind - -• **kind**: *[RejectedOrderKind](#enumeration-rejectedorderkind)* - -*Defined in [types.ts:560](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L560)* - -___ - -## orderHash - -• **orderHash**: *string* - -*Defined in [types.ts:558](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L558)* - -___ - -## signedOrder - -• **signedOrder**: *[WrapperSignedOrder](#interface-wrappersignedorder)* - -*Defined in [types.ts:559](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L559)* - -___ - -## status - -• **status**: *[RejectedOrderStatus](#interface-rejectedorderstatus)* - -*Defined in [types.ts:561](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L561)* - - -
- -# Interface: WrapperSignedOrder - -### Hierarchy - -* **WrapperSignedOrder** - - -### Properties - -## chainId - -• **chainId**: *number* - -*Defined in [types.ts:268](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L268)* - -___ - -## exchangeAddress - -• **exchangeAddress**: *string* - -*Defined in [types.ts:267](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L267)* - -___ - -## expirationTimeSeconds - -• **expirationTimeSeconds**: *string* - -*Defined in [types.ts:264](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L264)* - -___ - -## feeRecipientAddress - -• **feeRecipientAddress**: *string* - -*Defined in [types.ts:263](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L263)* - -___ - -## makerAddress - -• **makerAddress**: *string* - -*Defined in [types.ts:252](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L252)* - -___ - -## makerAssetAmount - -• **makerAssetAmount**: *string* - -*Defined in [types.ts:254](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L254)* - -___ - -## makerAssetData - -• **makerAssetData**: *string* - -*Defined in [types.ts:253](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L253)* - -___ - -## makerFee - -• **makerFee**: *string* - -*Defined in [types.ts:255](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L255)* - -___ - -## makerFeeAssetData - -• **makerFeeAssetData**: *string* - -*Defined in [types.ts:256](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L256)* - -___ - -## salt - -• **salt**: *string* - -*Defined in [types.ts:265](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L265)* - -___ - -## senderAddress - -• **senderAddress**: *string* - -*Defined in [types.ts:262](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L262)* - -___ - -## signature - -• **signature**: *string* - -*Defined in [types.ts:266](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L266)* - -___ - -## takerAddress - -• **takerAddress**: *string* - -*Defined in [types.ts:257](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L257)* - -___ - -## takerAssetAmount - -• **takerAssetAmount**: *string* - -*Defined in [types.ts:260](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L260)* - -___ - -## takerAssetData - -• **takerAssetData**: *string* - -*Defined in [types.ts:258](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L258)* - -___ - -## takerFee - -• **takerFee**: *string* - -*Defined in [types.ts:261](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L261)* - -___ - -## takerFeeAssetData - -• **takerFeeAssetData**: *string* - -*Defined in [types.ts:259](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L259)* - - -
- -# Interface: WrapperStats - -### Hierarchy - -* **WrapperStats** - - -### Properties - -## ethRPCRateLimitExpiredRequests - -• **ethRPCRateLimitExpiredRequests**: *number* - -*Defined in [types.ts:631](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L631)* - -___ - -## ethRPCRequestsSentInCurrentUTCDay - -• **ethRPCRequestsSentInCurrentUTCDay**: *number* - -*Defined in [types.ts:630](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L630)* - -___ - -## ethereumChainID - -• **ethereumChainID**: *number* - -*Defined in [types.ts:622](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L622)* - -___ - -## latestBlock - -• **latestBlock**: *[LatestBlock](#interface-latestblock)* - -*Defined in [types.ts:623](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L623)* - -___ - -## maxExpirationTime - -• **maxExpirationTime**: *string* - -*Defined in [types.ts:628](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L628)* - -___ - -## numOrders - -• **numOrders**: *number* - -*Defined in [types.ts:625](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L625)* - -___ - -## numOrdersIncludingRemoved - -• **numOrdersIncludingRemoved**: *number* - -*Defined in [types.ts:626](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L626)* - -___ - -## numPeers - -• **numPeers**: *number* - -*Defined in [types.ts:624](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L624)* - -___ - -## numPinnedOrders - -• **numPinnedOrders**: *number* - -*Defined in [types.ts:627](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L627)* - -___ - -## peerID - -• **peerID**: *string* - -*Defined in [types.ts:621](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L621)* - -___ - -## pubSubTopic - -• **pubSubTopic**: *string* - -*Defined in [types.ts:618](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L618)* - -___ - -## rendezvous - -• **rendezvous**: *string* - -*Defined in [types.ts:619](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L619)* - -___ - -## secondaryRendezvous - -• **secondaryRendezvous**: *string[]* - -*Defined in [types.ts:620](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L620)* - -___ - -## startOfCurrentUTCDay - -• **startOfCurrentUTCDay**: *string* - -*Defined in [types.ts:629](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L629)* - -___ - -## version - -• **version**: *string* - -*Defined in [types.ts:617](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L617)* - - -
- -# Interface: WrapperValidationResults - -### Hierarchy - -* **WrapperValidationResults** - - -### Properties - -## accepted - -• **accepted**: *[WrapperAcceptedOrderInfo](#interface-wrapperacceptedorderinfo)[]* - -*Defined in [types.ts:544](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L544)* - -___ - -## rejected - -• **rejected**: *[WrapperRejectedOrderInfo](#interface-wrapperrejectedorderinfo)[]* - -*Defined in [types.ts:545](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L545)* - - -
- -# Interface: WrapperWethDepositEvent - -### Hierarchy - -* **WrapperWethDepositEvent** - - -### Properties - -## owner - -• **owner**: *string* - -*Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L434)* - -___ - -## value - -• **value**: *string* - -*Defined in [types.ts:435](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L435)* - - -
- -# Interface: WrapperWethWithdrawalEvent - -### Hierarchy - -* **WrapperWethWithdrawalEvent** - - -### Properties - -## owner - -• **owner**: *string* - -*Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L424)* - -___ - -## value - -• **value**: *string* - -*Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L425)* - - -
- -# Interface: ZeroExMesh - -### Hierarchy - -* **ZeroExMesh** - - -### Methods - -## newWrapperAsync - -▸ **newWrapperAsync**(`config`: [WrapperConfig](#interface-wrapperconfig)): *Promise‹[MeshWrapper](#interface-meshwrapper)›* - -*Defined in [types.ts:215](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L215)* - -**Parameters:** - -Name | Type | ------- | ------ | -`config` | [WrapperConfig](#interface-wrapperconfig) | - -**Returns:** *Promise‹[MeshWrapper](#interface-meshwrapper)›* - - -
- diff --git a/docs/browser-bindings/browser/reference.md b/docs/browser-bindings/browser/reference.md new file mode 100644 index 000000000..edc97dad3 --- /dev/null +++ b/docs/browser-bindings/browser/reference.md @@ -0,0 +1,2047 @@ +# Class: Mesh + +The main class for this package. Has methods for receiving order events and +sending orders through the 0x Mesh network. + +### Hierarchy + +* **Mesh** + + +### Constructors + +## constructer + +\+ **new Mesh**(`config`: [Config](#interface-config)): *[Mesh](#class-mesh)* + +*Defined in [mesh.ts:141](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/mesh.ts#L141)* + +Instantiates a new Mesh instance. + +**Parameters:** + +Name | Type | Description | +------ | ------ | ------ | +`config` | [Config](#interface-config) | Configuration options for Mesh | + +**Returns:** *[Mesh](#class-mesh)* + +An instance of Mesh + +### Methods + +## addOrdersAsync + +▸ **addOrdersAsync**(`orders`: SignedOrder[], `pinned`: boolean): *Promise‹[ValidationResults](#interface-validationresults)›* + +*Defined in [mesh.ts:291](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/mesh.ts#L291)* + +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 +watching it for changes (e.g. filled, canceled, expired). The returned +promise will only be rejected if there was an error validating or adding +the order; it will not be rejected for any invalid orders (check +results.rejected instead). + +**Parameters:** + +Name | Type | Default | Description | +------ | ------ | ------ | ------ | +`orders` | SignedOrder[] | - | An array of orders to add. | +`pinned` | boolean | true | Whether or not the orders should be pinned. Pinned orders will not be affected by any DDoS prevention or incentive mechanisms and will always stay in storage until they are no longer fillable. | + +**Returns:** *Promise‹[ValidationResults](#interface-validationresults)›* + +Validation results for the given orders, indicating which orders +were accepted and which were rejected. + +___ + +## getOrdersAsync + +▸ **getOrdersAsync**(`perPage`: number): *Promise‹[GetOrdersResponse](#interface-getordersresponse)›* + +*Defined in [mesh.ts:220](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/mesh.ts#L220)* + +Get all 0x signed orders currently stored in the Mesh node + +**Parameters:** + +Name | Type | Default | Description | +------ | ------ | ------ | ------ | +`perPage` | number | 200 | number of signedOrders to fetch per paginated request | + +**Returns:** *Promise‹[GetOrdersResponse](#interface-getordersresponse)›* + +the snapshotID, snapshotTimestamp and all orders, their hashes and fillableTakerAssetAmounts + +___ + +## getOrdersForPageAsync + +▸ **getOrdersForPageAsync**(`page`: number, `perPage`: number, `snapshotID?`: undefined | string): *Promise‹[GetOrdersResponse](#interface-getordersresponse)›* + +*Defined in [mesh.ts:262](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/mesh.ts#L262)* + +Get page of 0x signed orders stored on the Mesh node at the specified snapshot + +**Parameters:** + +Name | Type | Description | +------ | ------ | ------ | +`page` | number | Page index at which to retrieve orders | +`perPage` | number | Number of signedOrders to fetch per paginated request | +`snapshotID?` | undefined | string | The DB snapshot at which to fetch orders. If omitted, a new snapshot is created | + +**Returns:** *Promise‹[GetOrdersResponse](#interface-getordersresponse)›* + +the snapshotID, snapshotTimestamp and all orders, their hashes and fillableTakerAssetAmounts + +___ + +## getStatsAsync + +▸ **getStatsAsync**(): *Promise‹[Stats](#interface-stats)›* + +*Defined in [mesh.ts:203](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/mesh.ts#L203)* + +Returns various stats about Mesh, including the total number of orders +and the number of peers Mesh is connected to. + +**Returns:** *Promise‹[Stats](#interface-stats)›* + +___ + +## onError + +▸ **onError**(`handler`: function): *void* + +*Defined in [mesh.ts:161](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/mesh.ts#L161)* + +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. +In order to ensure no errors are missed, this should be called before +startAsync. + +**Parameters:** + +▪ **handler**: *function* + +The handler to be called. + +▸ (`err`: Error): *void* + +**Parameters:** + +Name | Type | +------ | ------ | +`err` | Error | + +**Returns:** *void* + +___ + +## onOrderEvents + +▸ **onOrderEvents**(`handler`: function): *void* + +*Defined in [mesh.ts:176](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/mesh.ts#L176)* + +Registers a handler which will be called for any incoming order events. +Order events are fired whenver an order is added, canceled, expired, or +filled. In order to ensure no events are missed, this should be called +before startAsync. + +**Parameters:** + +▪ **handler**: *function* + +The handler to be called. + +▸ (`events`: [OrderEvent](#interface-orderevent)[]): *void* + +**Parameters:** + +Name | Type | +------ | ------ | +`events` | [OrderEvent](#interface-orderevent)[] | + +**Returns:** *void* + +___ + +## startAsync + +▸ **startAsync**(): *Promise‹void›* + +*Defined in [mesh.ts:187](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/mesh.ts#L187)* + +Starts the Mesh node in the background. Mesh will automatically find +peers in the network and begin receiving orders from them. + +**Returns:** *Promise‹void›* + + +
+ +# Enumeration: ContractEventKind + + +### Enumeration members + +## ERC1155ApprovalForAllEvent + +• **ERC1155ApprovalForAllEvent**: = "ERC1155ApprovalForAllEvent" + +*Defined in [types.ts:444](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L444)* + +___ + +## ERC1155TransferBatchEvent + +• **ERC1155TransferBatchEvent**: = "ERC1155TransferBatchEvent" + +*Defined in [types.ts:446](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L446)* + +___ + +## ERC1155TransferSingleEvent + +• **ERC1155TransferSingleEvent**: = "ERC1155TransferSingleEvent" + +*Defined in [types.ts:445](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L445)* + +___ + +## ERC20ApprovalEvent + +• **ERC20ApprovalEvent**: = "ERC20ApprovalEvent" + +*Defined in [types.ts:440](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L440)* + +___ + +## ERC20TransferEvent + +• **ERC20TransferEvent**: = "ERC20TransferEvent" + +*Defined in [types.ts:439](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L439)* + +___ + +## ERC721ApprovalEvent + +• **ERC721ApprovalEvent**: = "ERC721ApprovalEvent" + +*Defined in [types.ts:442](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L442)* + +___ + +## ERC721ApprovalForAllEvent + +• **ERC721ApprovalForAllEvent**: = "ERC721ApprovalForAllEvent" + +*Defined in [types.ts:443](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L443)* + +___ + +## ERC721TransferEvent + +• **ERC721TransferEvent**: = "ERC721TransferEvent" + +*Defined in [types.ts:441](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L441)* + +___ + +## ExchangeCancelEvent + +• **ExchangeCancelEvent**: = "ExchangeCancelEvent" + +*Defined in [types.ts:448](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L448)* + +___ + +## ExchangeCancelUpToEvent + +• **ExchangeCancelUpToEvent**: = "ExchangeCancelUpToEvent" + +*Defined in [types.ts:449](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L449)* + +___ + +## ExchangeFillEvent + +• **ExchangeFillEvent**: = "ExchangeFillEvent" + +*Defined in [types.ts:447](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L447)* + +___ + +## WethDepositEvent + +• **WethDepositEvent**: = "WethDepositEvent" + +*Defined in [types.ts:450](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L450)* + +___ + +## WethWithdrawalEvent + +• **WethWithdrawalEvent**: = "WethWithdrawalEvent" + +*Defined in [types.ts:451](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L451)* + + +
+ +# Enumeration: OrderEventEndState + + +### Enumeration members + +## Added + +• **Added**: = "ADDED" + +*Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L509)* + +___ + +## Cancelled + +• **Cancelled**: = "CANCELLED" + +*Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L512)* + +___ + +## Expired + +• **Expired**: = "EXPIRED" + +*Defined in [types.ts:513](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L513)* + +___ + +## FillabilityIncreased + +• **FillabilityIncreased**: = "FILLABILITY_INCREASED" + +*Defined in [types.ts:516](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L516)* + +___ + +## Filled + +• **Filled**: = "FILLED" + +*Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L510)* + +___ + +## FullyFilled + +• **FullyFilled**: = "FULLY_FILLED" + +*Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L511)* + +___ + +## Invalid + +• **Invalid**: = "INVALID" + +*Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L508)* + +___ + +## StoppedWatching + +• **StoppedWatching**: = "STOPPED_WATCHING" + +*Defined in [types.ts:517](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L517)* + +___ + +## Unexpired + +• **Unexpired**: = "UNEXPIRED" + +*Defined in [types.ts:514](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L514)* + +___ + +## Unfunded + +• **Unfunded**: = "UNFUNDED" + +*Defined in [types.ts:515](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L515)* + + +
+ +# Enumeration: RejectedOrderKind + +A set of categories for rejected orders. + + +### Enumeration members + +## CoordinatorError + +• **CoordinatorError**: = "COORDINATOR_ERROR" + +*Defined in [types.ts:600](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L600)* + +___ + +## MeshError + +• **MeshError**: = "MESH_ERROR" + +*Defined in [types.ts:598](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L598)* + +___ + +## MeshValidation + +• **MeshValidation**: = "MESH_VALIDATION" + +*Defined in [types.ts:599](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L599)* + +___ + +## ZeroExValidation + +• **ZeroExValidation**: = "ZEROEX_VALIDATION" + +*Defined in [types.ts:597](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L597)* + + +
+ +# Enumeration: Verbosity + + +### Enumeration members + +## Debug + +• **Debug**: = 5 + +*Defined in [types.ts:209](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L209)* + +___ + +## Error + +• **Error**: = 2 + +*Defined in [types.ts:206](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L206)* + +___ + +## Fatal + +• **Fatal**: = 1 + +*Defined in [types.ts:205](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L205)* + +___ + +## Info + +• **Info**: = 4 + +*Defined in [types.ts:208](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L208)* + +___ + +## Panic + +• **Panic**: = 0 + +*Defined in [types.ts:204](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L204)* + +___ + +## Trace + +• **Trace**: = 6 + +*Defined in [types.ts:210](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L210)* + +___ + +## Warn + +• **Warn**: = 3 + +*Defined in [types.ts:207](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L207)* + + +
+ +# Interface: AcceptedOrderInfo + +Info for any orders that were accepted. + +### Hierarchy + +* **AcceptedOrderInfo** + + +### Properties + +## fillableTakerAssetAmount + +• **fillableTakerAssetAmount**: *BigNumber* + +*Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L578)* + +___ + +## isNew + +• **isNew**: *boolean* + +*Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L579)* + +___ + +## orderHash + +• **orderHash**: *string* + +*Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L576)* + +___ + +## signedOrder + +• **signedOrder**: *SignedOrder* + +*Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L577)* + + +
+ +# Interface: Config + +A set of configuration options for Mesh. + +### Hierarchy + +* **Config** + + +### Properties + +## `Optional` blockPollingIntervalSeconds + +• **blockPollingIntervalSeconds**? : *undefined | number* + +*Defined in [types.ts:116](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L116)* + +___ + +## `Optional` bootstrapList + +• **bootstrapList**? : *string[]* + +*Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L109)* + +___ + +## `Optional` customContractAddresses + +• **customContractAddresses**? : *[ContractAddresses](#interface-contractaddresses)* + +*Defined in [types.ts:160](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L160)* + +___ + +## `Optional` customOrderFilter + +• **customOrderFilter**? : *[JsonSchema](#interface-jsonschema)* + +*Defined in [types.ts:185](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L185)* + +___ + +## `Optional` enableEthereumRPCRateLimiting + +• **enableEthereumRPCRateLimiting**? : *undefined | false | true* + +*Defined in [types.ts:133](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L133)* + +___ + +## ethereumChainID + +• **ethereumChainID**: *number* + +*Defined in [types.ts:101](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L101)* + +___ + +## `Optional` ethereumRPCMaxContentLength + +• **ethereumRPCMaxContentLength**? : *undefined | number* + +*Defined in [types.ts:125](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L125)* + +___ + +## `Optional` ethereumRPCMaxRequestsPer24HrUTC + +• **ethereumRPCMaxRequestsPer24HrUTC**? : *undefined | number* + +*Defined in [types.ts:138](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L138)* + +___ + +## `Optional` ethereumRPCMaxRequestsPerSecond + +• **ethereumRPCMaxRequestsPerSecond**? : *undefined | number* + +*Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L144)* + +___ + +## `Optional` ethereumRPCURL + +• **ethereumRPCURL**? : *undefined | string* + +*Defined in [types.ts:98](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L98)* + +___ + +## `Optional` maxOrdersInStorage + +• **maxOrdersInStorage**? : *undefined | number* + +*Defined in [types.ts:165](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L165)* + +___ + +## `Optional` useBootstrapList + +• **useBootstrapList**? : *undefined | false | true* + +*Defined in [types.ts:104](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L104)* + +___ + +## `Optional` verbosity + +• **verbosity**? : *[Verbosity](#enumeration-verbosity)* + +*Defined in [types.ts:95](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L95)* + +___ + +## `Optional` web3Provider + +• **web3Provider**? : *SupportedProvider* + +*Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L188)* + + +
+ +# Interface: ContractAddresses + +### Hierarchy + +* **ContractAddresses** + + +### Properties + +## `Optional` coordinator + +• **coordinator**? : *undefined | string* + +*Defined in [types.ts:197](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L197)* + +___ + +## `Optional` coordinatorRegistry + +• **coordinatorRegistry**? : *undefined | string* + +*Defined in [types.ts:198](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L198)* + +___ + +## devUtils + +• **devUtils**: *string* + +*Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L193)* + +___ + +## erc1155Proxy + +• **erc1155Proxy**: *string* + +*Defined in [types.ts:196](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L196)* + +___ + +## erc20Proxy + +• **erc20Proxy**: *string* + +*Defined in [types.ts:194](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L194)* + +___ + +## erc721Proxy + +• **erc721Proxy**: *string* + +*Defined in [types.ts:195](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L195)* + +___ + +## exchange + +• **exchange**: *string* + +*Defined in [types.ts:192](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L192)* + +___ + +## `Optional` weth9 + +• **weth9**? : *undefined | string* + +*Defined in [types.ts:199](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L199)* + +___ + +## `Optional` zrxToken + +• **zrxToken**? : *undefined | string* + +*Defined in [types.ts:200](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L200)* + + +
+ +# Interface: ContractEvent + +### Hierarchy + +* **ContractEvent** + + +### Properties + +## address + +• **address**: *string* + +*Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L490)* + +___ + +## blockHash + +• **blockHash**: *string* + +*Defined in [types.ts:485](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L485)* + +___ + +## isRemoved + +• **isRemoved**: *boolean* + +*Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L489)* + +___ + +## kind + +• **kind**: *[ContractEventKind](#enumeration-contracteventkind)* + +*Defined in [types.ts:491](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L491)* + +___ + +## logIndex + +• **logIndex**: *number* + +*Defined in [types.ts:488](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L488)* + +___ + +## parameters + +• **parameters**: *[ContractEventParameters](#contracteventparameters)* + +*Defined in [types.ts:492](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L492)* + +___ + +## txHash + +• **txHash**: *string* + +*Defined in [types.ts:486](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L486)* + +___ + +## txIndex + +• **txIndex**: *number* + +*Defined in [types.ts:487](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L487)* + + +
+ +# Interface: ERC1155ApprovalForAllEvent + +### Hierarchy + +* **ERC1155ApprovalForAllEvent** + + +### Properties + +## approved + +• **approved**: *boolean* + +*Defined in [types.ts:360](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L360)* + +___ + +## operator + +• **operator**: *string* + +*Defined in [types.ts:359](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L359)* + +___ + +## owner + +• **owner**: *string* + +*Defined in [types.ts:358](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L358)* + + +
+ +# Interface: ERC1155TransferBatchEvent + +### Hierarchy + +* **ERC1155TransferBatchEvent** + + +### Properties + +## from + +• **from**: *string* + +*Defined in [types.ts:343](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L343)* + +___ + +## ids + +• **ids**: *BigNumber[]* + +*Defined in [types.ts:345](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L345)* + +___ + +## operator + +• **operator**: *string* + +*Defined in [types.ts:342](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L342)* + +___ + +## to + +• **to**: *string* + +*Defined in [types.ts:344](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L344)* + +___ + +## values + +• **values**: *BigNumber[]* + +*Defined in [types.ts:346](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L346)* + + +
+ +# Interface: ERC1155TransferSingleEvent + +### Hierarchy + +* **ERC1155TransferSingleEvent** + + +### Properties + +## from + +• **from**: *string* + +*Defined in [types.ts:327](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L327)* + +___ + +## id + +• **id**: *BigNumber* + +*Defined in [types.ts:329](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L329)* + +___ + +## operator + +• **operator**: *string* + +*Defined in [types.ts:326](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L326)* + +___ + +## to + +• **to**: *string* + +*Defined in [types.ts:328](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L328)* + +___ + +## value + +• **value**: *BigNumber* + +*Defined in [types.ts:330](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L330)* + + +
+ +# Interface: ERC20ApprovalEvent + +### Hierarchy + +* **ERC20ApprovalEvent** + + +### Properties + +## owner + +• **owner**: *string* + +*Defined in [types.ts:284](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L284)* + +___ + +## spender + +• **spender**: *string* + +*Defined in [types.ts:285](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L285)* + +___ + +## value + +• **value**: *BigNumber* + +*Defined in [types.ts:286](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L286)* + + +
+ +# Interface: ERC20TransferEvent + +### Hierarchy + +* **ERC20TransferEvent** + + +### Properties + +## from + +• **from**: *string* + +*Defined in [types.ts:272](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L272)* + +___ + +## to + +• **to**: *string* + +*Defined in [types.ts:273](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L273)* + +___ + +## value + +• **value**: *BigNumber* + +*Defined in [types.ts:274](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L274)* + + +
+ +# Interface: ERC721ApprovalEvent + +### Hierarchy + +* **ERC721ApprovalEvent** + + +### Properties + +## approved + +• **approved**: *string* + +*Defined in [types.ts:309](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L309)* + +___ + +## owner + +• **owner**: *string* + +*Defined in [types.ts:308](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L308)* + +___ + +## tokenId + +• **tokenId**: *BigNumber* + +*Defined in [types.ts:310](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L310)* + + +
+ +# Interface: ERC721ApprovalForAllEvent + +### Hierarchy + +* **ERC721ApprovalForAllEvent** + + +### Properties + +## approved + +• **approved**: *boolean* + +*Defined in [types.ts:322](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L322)* + +___ + +## operator + +• **operator**: *string* + +*Defined in [types.ts:321](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L321)* + +___ + +## owner + +• **owner**: *string* + +*Defined in [types.ts:320](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L320)* + + +
+ +# Interface: ERC721TransferEvent + +### Hierarchy + +* **ERC721TransferEvent** + + +### Properties + +## from + +• **from**: *string* + +*Defined in [types.ts:296](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L296)* + +___ + +## to + +• **to**: *string* + +*Defined in [types.ts:297](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L297)* + +___ + +## tokenId + +• **tokenId**: *BigNumber* + +*Defined in [types.ts:298](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L298)* + + +
+ +# Interface: ExchangeCancelEvent + +### Hierarchy + +* **ExchangeCancelEvent** + + +### Properties + +## feeRecipientAddress + +• **feeRecipientAddress**: *string* + +*Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L400)* + +___ + +## makerAddress + +• **makerAddress**: *string* + +*Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L398)* + +___ + +## makerAssetData + +• **makerAssetData**: *string* + +*Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L402)* + +___ + +## orderHash + +• **orderHash**: *string* + +*Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L401)* + +___ + +## senderAddress + +• **senderAddress**: *string* + +*Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L399)* + +___ + +## takerAssetData + +• **takerAssetData**: *string* + +*Defined in [types.ts:403](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L403)* + + +
+ +# Interface: ExchangeCancelUpToEvent + +### Hierarchy + +* **ExchangeCancelUpToEvent** + + +### Properties + +## makerAddress + +• **makerAddress**: *string* + +*Defined in [types.ts:407](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L407)* + +___ + +## orderEpoch + +• **orderEpoch**: *BigNumber* + +*Defined in [types.ts:409](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L409)* + +___ + +## orderSenderAddress + +• **orderSenderAddress**: *string* + +*Defined in [types.ts:408](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L408)* + + +
+ +# Interface: ExchangeFillEvent + +### Hierarchy + +* **ExchangeFillEvent** + + +### Properties + +## feeRecipientAddress + +• **feeRecipientAddress**: *string* + +*Defined in [types.ts:367](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L367)* + +___ + +## makerAddress + +• **makerAddress**: *string* + +*Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L364)* + +___ + +## makerAssetData + +• **makerAssetData**: *string* + +*Defined in [types.ts:374](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L374)* + +___ + +## makerAssetFilledAmount + +• **makerAssetFilledAmount**: *BigNumber* + +*Defined in [types.ts:368](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L368)* + +___ + +## makerFeeAssetData + +• **makerFeeAssetData**: *string* + +*Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L376)* + +___ + +## makerFeePaid + +• **makerFeePaid**: *BigNumber* + +*Defined in [types.ts:370](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L370)* + +___ + +## orderHash + +• **orderHash**: *string* + +*Defined in [types.ts:373](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L373)* + +___ + +## protocolFeePaid + +• **protocolFeePaid**: *BigNumber* + +*Defined in [types.ts:372](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L372)* + +___ + +## senderAddress + +• **senderAddress**: *string* + +*Defined in [types.ts:366](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L366)* + +___ + +## takerAddress + +• **takerAddress**: *string* + +*Defined in [types.ts:365](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L365)* + +___ + +## takerAssetData + +• **takerAssetData**: *string* + +*Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L375)* + +___ + +## takerAssetFilledAmount + +• **takerAssetFilledAmount**: *BigNumber* + +*Defined in [types.ts:369](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L369)* + +___ + +## takerFeeAssetData + +• **takerFeeAssetData**: *string* + +*Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L377)* + +___ + +## takerFeePaid + +• **takerFeePaid**: *BigNumber* + +*Defined in [types.ts:371](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L371)* + + +
+ +# Interface: GetOrdersResponse + +### Hierarchy + +* **GetOrdersResponse** + + +### Properties + +## ordersInfos + +• **ordersInfos**: *[OrderInfo](#interface-orderinfo)[]* + +*Defined in [types.ts:18](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L18)* + +___ + +## snapshotID + +• **snapshotID**: *string* + +*Defined in [types.ts:16](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L16)* + +___ + +## snapshotTimestamp + +• **snapshotTimestamp**: *number* + +*Defined in [types.ts:17](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L17)* + + +
+ +# Interface: JsonSchema + +An interface for JSON schema types, which are used for custom order filters. + +### Hierarchy + +* **JsonSchema** + + +### Properties + +## `Optional` $ref + +• **$ref**? : *undefined | string* + +*Defined in [types.ts:39](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L39)* + +___ + +## `Optional` $schema + +• **$schema**? : *undefined | string* + +*Defined in [types.ts:38](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L38)* + +___ + +## `Optional` additionalItems + +• **additionalItems**? : *boolean | [JsonSchema](#interface-jsonschema)* + +*Defined in [types.ts:50](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L50)* + +___ + +## `Optional` additionalProperties + +• **additionalProperties**? : *boolean | [JsonSchema](#interface-jsonschema)* + +*Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L58)* + +___ + +## `Optional` allOf + +• **allOf**? : *[JsonSchema](#interface-jsonschema)[]* + +*Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L80)* + +___ + +## `Optional` anyOf + +• **anyOf**? : *[JsonSchema](#interface-jsonschema)[]* + +*Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L81)* + +___ + +## `Optional` const + +• **const**? : *any* + +*Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L77)* + +___ + +## `Optional` definitions + +• **definitions**? : *undefined | object* + +*Defined in [types.ts:59](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L59)* + +___ + +## `Optional` dependencies + +• **dependencies**? : *undefined | object* + +*Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L68)* + +___ + +## `Optional` description + +• **description**? : *undefined | string* + +*Defined in [types.ts:41](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L41)* + +___ + +## `Optional` enum + +• **enum**? : *any[]* + +*Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L71)* + +___ + +## `Optional` exclusiveMaximum + +• **exclusiveMaximum**? : *undefined | false | true* + +*Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L44)* + +___ + +## `Optional` exclusiveMinimum + +• **exclusiveMinimum**? : *undefined | false | true* + +*Defined in [types.ts:46](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L46)* + +___ + +## `Optional` format + +• **format**? : *undefined | string* + +*Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L79)* + +___ + +## `Optional` id + +• **id**? : *undefined | string* + +*Defined in [types.ts:37](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L37)* + +___ + +## `Optional` items + +• **items**? : *[JsonSchema](#interface-jsonschema) | [JsonSchema](#interface-jsonschema)[]* + +*Defined in [types.ts:51](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L51)* + +___ + +## `Optional` maxItems + +• **maxItems**? : *undefined | number* + +*Defined in [types.ts:52](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L52)* + +___ + +## `Optional` maxLength + +• **maxLength**? : *undefined | number* + +*Defined in [types.ts:47](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L47)* + +___ + +## `Optional` maxProperties + +• **maxProperties**? : *undefined | number* + +*Defined in [types.ts:55](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L55)* + +___ + +## `Optional` maximum + +• **maximum**? : *undefined | number* + +*Defined in [types.ts:43](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L43)* + +___ + +## `Optional` minItems + +• **minItems**? : *undefined | number* + +*Defined in [types.ts:53](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L53)* + +___ + +## `Optional` minLength + +• **minLength**? : *undefined | number* + +*Defined in [types.ts:48](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L48)* + +___ + +## `Optional` minProperties + +• **minProperties**? : *undefined | number* + +*Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L56)* + +___ + +## `Optional` minimum + +• **minimum**? : *undefined | number* + +*Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L45)* + +___ + +## `Optional` multipleOf + +• **multipleOf**? : *undefined | number* + +*Defined in [types.ts:42](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L42)* + +___ + +## `Optional` not + +• **not**? : *[JsonSchema](#interface-jsonschema)* + +*Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L83)* + +___ + +## `Optional` oneOf + +• **oneOf**? : *[JsonSchema](#interface-jsonschema)[]* + +*Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L82)* + +___ + +## `Optional` pattern + +• **pattern**? : *string | RegExp* + +*Defined in [types.ts:49](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L49)* + +___ + +## `Optional` patternProperties + +• **patternProperties**? : *undefined | object* + +*Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L65)* + +___ + +## `Optional` properties + +• **properties**? : *undefined | object* + +*Defined in [types.ts:62](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L62)* + +___ + +## `Optional` required + +• **required**? : *string[]* + +*Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L57)* + +___ + +## `Optional` title + +• **title**? : *undefined | string* + +*Defined in [types.ts:40](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L40)* + +___ + +## `Optional` type + +• **type**? : *string | string[]* + +*Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L78)* + +___ + +## `Optional` uniqueItems + +• **uniqueItems**? : *undefined | false | true* + +*Defined in [types.ts:54](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L54)* + + +
+ +# Interface: LatestBlock + +### Hierarchy + +* **LatestBlock** + + +### Properties + +## hash + +• **hash**: *string* + +*Defined in [types.ts:613](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L613)* + +___ + +## number + +• **number**: *number* + +*Defined in [types.ts:612](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L612)* + + +
+ +# Interface: OrderEvent + +Order events are fired by Mesh whenever an order is added, canceled, expired, +or filled. + +### Hierarchy + +* **OrderEvent** + + +### Properties + +## contractEvents + +• **contractEvents**: *[ContractEvent](#interface-contractevent)[]* + +*Defined in [types.ts:539](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L539)* + +___ + +## endState + +• **endState**: *[OrderEventEndState](#enumeration-ordereventendstate)* + +*Defined in [types.ts:537](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L537)* + +___ + +## fillableTakerAssetAmount + +• **fillableTakerAssetAmount**: *BigNumber* + +*Defined in [types.ts:538](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L538)* + +___ + +## orderHash + +• **orderHash**: *string* + +*Defined in [types.ts:535](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L535)* + +___ + +## signedOrder + +• **signedOrder**: *SignedOrder* + +*Defined in [types.ts:536](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L536)* + +___ + +## timestampMs + +• **timestampMs**: *number* + +*Defined in [types.ts:534](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L534)* + + +
+ +# Interface: OrderInfo + +### Hierarchy + +* **OrderInfo** + + +### Properties + +## fillableTakerAssetAmount + +• **fillableTakerAssetAmount**: *BigNumber* + +*Defined in [types.ts:30](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L30)* + +___ + +## orderHash + +• **orderHash**: *string* + +*Defined in [types.ts:28](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L28)* + +___ + +## signedOrder + +• **signedOrder**: *SignedOrder* + +*Defined in [types.ts:29](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L29)* + + +
+ +# Interface: RejectedOrderInfo + +Info for any orders that were rejected, including the reason they were +rejected. + +### Hierarchy + +* **RejectedOrderInfo** + + +### Properties + +## kind + +• **kind**: *[RejectedOrderKind](#enumeration-rejectedorderkind)* + +*Defined in [types.ts:589](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L589)* + +___ + +## orderHash + +• **orderHash**: *string* + +*Defined in [types.ts:587](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L587)* + +___ + +## signedOrder + +• **signedOrder**: *SignedOrder* + +*Defined in [types.ts:588](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L588)* + +___ + +## status + +• **status**: *[RejectedOrderStatus](#interface-rejectedorderstatus)* + +*Defined in [types.ts:590](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L590)* + + +
+ +# Interface: RejectedOrderStatus + +Provides more information about why an order was rejected. + +### Hierarchy + +* **RejectedOrderStatus** + + +### Properties + +## code + +• **code**: *string* + +*Defined in [types.ts:607](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L607)* + +___ + +## message + +• **message**: *string* + +*Defined in [types.ts:608](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L608)* + + +
+ +# Interface: Stats + +### Hierarchy + +* **Stats** + + +### Properties + +## ethRPCRateLimitExpiredRequests + +• **ethRPCRateLimitExpiredRequests**: *number* + +*Defined in [types.ts:649](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L649)* + +___ + +## ethRPCRequestsSentInCurrentUTCDay + +• **ethRPCRequestsSentInCurrentUTCDay**: *number* + +*Defined in [types.ts:648](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L648)* + +___ + +## ethereumChainID + +• **ethereumChainID**: *number* + +*Defined in [types.ts:640](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L640)* + +___ + +## latestBlock + +• **latestBlock**: *[LatestBlock](#interface-latestblock)* + +*Defined in [types.ts:641](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L641)* + +___ + +## maxExpirationTime + +• **maxExpirationTime**: *BigNumber* + +*Defined in [types.ts:646](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L646)* + +___ + +## numOrders + +• **numOrders**: *number* + +*Defined in [types.ts:643](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L643)* + +___ + +## numOrdersIncludingRemoved + +• **numOrdersIncludingRemoved**: *number* + +*Defined in [types.ts:644](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L644)* + +___ + +## numPeers + +• **numPeers**: *number* + +*Defined in [types.ts:642](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L642)* + +___ + +## numPinnedOrders + +• **numPinnedOrders**: *number* + +*Defined in [types.ts:645](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L645)* + +___ + +## peerID + +• **peerID**: *string* + +*Defined in [types.ts:639](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L639)* + +___ + +## pubSubTopic + +• **pubSubTopic**: *string* + +*Defined in [types.ts:636](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L636)* + +___ + +## rendezvous + +• **rendezvous**: *string* + +*Defined in [types.ts:637](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L637)* + +___ + +## secondaryRendezvous + +• **secondaryRendezvous**: *string[]* + +*Defined in [types.ts:638](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L638)* + +___ + +## startOfCurrentUTCDay + +• **startOfCurrentUTCDay**: *Date* + +*Defined in [types.ts:647](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L647)* + +___ + +## version + +• **version**: *string* + +*Defined in [types.ts:635](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L635)* + + +
+ +# Interface: ValidationResults + +Indicates which orders where accepted, which were rejected, and why. + +### Hierarchy + +* **ValidationResults** + + +### Properties + +## accepted + +• **accepted**: *[AcceptedOrderInfo](#interface-acceptedorderinfo)[]* + +*Defined in [types.ts:568](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L568)* + +___ + +## rejected + +• **rejected**: *[RejectedOrderInfo](#interface-rejectedorderinfo)[]* + +*Defined in [types.ts:569](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L569)* + + +
+ +# Interface: WethDepositEvent + +### Hierarchy + +* **WethDepositEvent** + + +### Properties + +## owner + +• **owner**: *string* + +*Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L429)* + +___ + +## value + +• **value**: *BigNumber* + +*Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L430)* + + +
+ +# Interface: WethWithdrawalEvent + +### Hierarchy + +* **WethWithdrawalEvent** + + +### Properties + +## owner + +• **owner**: *string* + +*Defined in [types.ts:419](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L419)* + +___ + +## value + +• **value**: *BigNumber* + +*Defined in [types.ts:420](https://github.com/0xProject/0x-mesh/blob/aa55bae/packages/browser-lite/src/types.ts#L420)* + + +