From dc24254cbcd94b358f23cd12920a6f434c46f86c Mon Sep 17 00:00:00 2001 From: Oskar Paolini Date: Tue, 6 Apr 2021 20:22:58 +0200 Subject: [PATCH] release: 11.1.0 (#1063) * init v4 GossipSub - setup v4 orderfilter - enable v4 messageHandler - add configuration for NodeV4 * use proper topic for message_hander_v4 * add prometheus monitoring * disable cache for apollo * add PeersConnected and LatestBlock metrics, fix v4 logs Include `_v4` in ordersync_v4.go logs for easier identification. Also: - lower logStatsInterval for better prom metrics resolution - bump mesh version to 11.1.0 * update deployment docs * standardize ordersync_v4 logs * cut release 11.1.0 * lint - remove unused function --- README.md | 2 +- cmd/mesh/main.go | 20 + core/core.go | 43 +- core/message_handler.go | 9 + core/message_handler_v4.go | 10 + core/ordersync/ordersync.go | 5 +- core/ordersync_v4/ordersync_v4.go | 34 +- docs/browser-bindings/browser-lite/README.md | 2 +- .../browser-lite/reference.md | 406 +++++++-------- docs/browser-bindings/browser/README.md | 2 +- docs/browser-bindings/browser/reference.md | 402 +++++++-------- docs/deployment.md | 9 +- docs/deployment_with_telemetry.md | 2 +- docs/graphql-client/README.md | 2 +- docs/graphql-client/reference.md | 484 +++++++++--------- docs/graphql_api.md | 2 +- go.mod | 1 + go.sum | 1 + graphql/schema.resolvers.go | 22 +- metrics/metrics.go | 95 ++++ orderfilter/shared.go | 16 + p2p/node.go | 20 +- p2p/node_v4.go | 107 ++-- packages/mesh-browser-lite/package.json | 2 +- packages/mesh-browser-shim/package.json | 2 +- packages/mesh-browser/package.json | 4 +- packages/mesh-graphql-client/package.json | 4 +- packages/mesh-graphql-client/src/index.ts | 5 + packages/mesh-integration-tests/package.json | 4 +- .../mesh-webpack-example-lite/package.json | 2 +- packages/mesh-webpack-example/package.json | 2 +- zeroex/orderwatch/order_watcher.go | 3 + zeroex/orderwatch/order_watcher_v4.go | 125 ----- 33 files changed, 997 insertions(+), 852 deletions(-) create mode 100644 metrics/metrics.go diff --git a/README.md b/README.md index 457a0bbaa..9278ad316 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Version](https://img.shields.io/badge/version-11.0.3-orange.svg)](https://github.com/0xProject/0x-mesh/releases) +[![Version](https://img.shields.io/badge/version-11.1.0-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/cmd/mesh/main.go b/cmd/mesh/main.go index 741aece20..203bdcdb0 100644 --- a/cmd/mesh/main.go +++ b/cmd/mesh/main.go @@ -12,6 +12,7 @@ import ( "time" "github.com/0xProject/0x-mesh/core" + "github.com/0xProject/0x-mesh/metrics" "github.com/plaid/go-envvar/envvar" log "github.com/sirupsen/logrus" ) @@ -38,6 +39,13 @@ type standaloneConfig struct { // See https://github.com/graphql/graphiql for more information. By default, GraphiQL // is disabled. EnableGraphQLPlayground bool `envvar:"ENABLE_GRAPHQL_PLAYGROUND" default:"false"` + // EnablePrometheusMoniitoring determines whether or not to enable + // prometheus monitoring. The metrics are accessed by scraping + // {PrometheusMonitoringServerAddr}/metrics, prometheus is disabled. + EnablePrometheusMonitoring bool `envvar:"ENABLE_PROMETHEUS_MONITORING" default:"false"` + // PrometheusMonitoringServerAddr is the interface and port to use for + // prometheus server metrics endpoint. + PrometheusMonitoringServerAddr string `envvar:"PROMETHEUS_SERVER_ADDR" default:"0.0.0.0:8080"` } func main() { @@ -86,6 +94,18 @@ func main() { }() } + // NOTE: Prometehus is not an essential service to run. + if config.EnablePrometheusMonitoring { + wg.Add(1) + go func() { + defer wg.Done() + log.WithField("prometheus_server_addr", config.PrometheusMonitoringServerAddr).Info("starting Prometheus metrics server") + if err := metrics.ServeMetrics(ctx, config.PrometheusMonitoringServerAddr); err != nil { + log.Error(err) + } + }() + } + // Block until there is an error or the app is closed. select { case <-ctx.Done(): diff --git a/core/core.go b/core/core.go index c7306554f..5ec02c767 100644 --- a/core/core.go +++ b/core/core.go @@ -26,6 +26,7 @@ import ( "github.com/0xProject/0x-mesh/ethereum/ratelimit" "github.com/0xProject/0x-mesh/keys" "github.com/0xProject/0x-mesh/loghooks" + "github.com/0xProject/0x-mesh/metrics" "github.com/0xProject/0x-mesh/orderfilter" "github.com/0xProject/0x-mesh/p2p" "github.com/0xProject/0x-mesh/zeroex" @@ -56,8 +57,8 @@ const ( // for different Ethereum networks, but it should be good enough. estimatedNonPollingEthereumRPCRequestsPer24Hrs = 50000 // logStatsInterval is how often to log stats for this node. - logStatsInterval = 5 * time.Minute - version = "11.0.3" + logStatsInterval = 2 * time.Minute + version = "11.1.0" // ordersyncMinPeers is the minimum amount of peers to receive orders from // before considering the ordersync process finished. ordersyncMinPeers = 5 @@ -434,6 +435,26 @@ func getPublishTopics(chainID int, contractAddresses ethereum.ContractAddresses, } } +func getPublishTopicsV4(chainID int, contractAddresses ethereum.ContractAddresses, customFilter *orderfilter.Filter) ([]string, error) { + defaultTopic, err := orderfilter.GetDefaultTopicV4(chainID, contractAddresses) + if err != nil { + return nil, err + } + customTopic := customFilter.TopicV4() + if defaultTopic == customTopic { + // If we're just using the default order filter, we don't need to publish to + // multiple topics. + return []string{defaultTopic}, nil + } else { + // If we are using a custom order filter, publish to *both* the default + // topic and the custom topic. All orders that match the custom order filter + // must necessarily match the default filter. This also allows us to + // implement cross-topic forwarding in the future. + // See https://github.com/0xProject/0x-mesh/pull/563 + return []string{defaultTopic, customTopic}, nil + } +} + func (app *App) getRendezvousPoints() ([]string, error) { defaultRendezvousPoint := fmt.Sprintf("/0x-mesh/network/%d/version/2", app.config.EthereumChainID) defaultTopic, err := orderfilter.GetDefaultTopic(app.chainID, *app.contractAddresses) @@ -499,6 +520,12 @@ func (app *App) Start() error { return err } + // Get the publish topics depending on our custom order filter. + publishTopicsV4, err := getPublishTopicsV4(app.config.EthereumChainID, *app.contractAddresses, app.orderFilter) + if err != nil { + return err + } + // Create a child context so that we can preemptively cancel if there is an // error. innerCtx, cancel := context.WithCancel(app.ctx) @@ -622,7 +649,9 @@ func (app *App) Start() error { } nodeConfig := p2p.Config{ SubscribeTopic: app.orderFilter.Topic(), + SubscribeTopicV4: app.orderFilter.TopicV4(), PublishTopics: publishTopics, + PublishTopicsV4: publishTopicsV4, TCPPort: app.config.P2PTCPPort, WebSocketsPort: app.config.P2PWebSocketsPort, Insecure: false, @@ -929,7 +958,6 @@ func (app *App) AddOrders(ctx context.Context, signedOrders []*zeroex.SignedOrde return app.AddOrdersRaw(ctx, signedOrdersRaw, pinned, opts) } -// TODO(oskar) - finish func (app *App) AddOrdersV4(ctx context.Context, signedOrders []*zeroex.SignedOrderV4, pinned bool, opts *types.AddOrdersOpts) (*ordervalidator.ValidationResults, error) { signedOrdersRaw := []*json.RawMessage{} buf := &bytes.Buffer{} @@ -1131,6 +1159,7 @@ func (app *App) AddOrdersRawV4(ctx context.Context, signedOrdersRaw []*json.RawM // shareOrder immediately shares the given order on the GossipSub network. func (app *App) shareOrder(order *zeroex.SignedOrder) error { + defer metrics.OrdersShared.WithLabelValues(metrics.ProtocolV3).Inc() <-app.started encoded, err := encoding.OrderToRawMessage(app.orderFilter.Topic(), order) @@ -1142,13 +1171,14 @@ func (app *App) shareOrder(order *zeroex.SignedOrder) error { // shareOrderV4 immediately shares the given order on the GossipSub network. func (app *App) shareOrderV4(order *zeroex.SignedOrderV4) error { + defer metrics.OrdersShared.WithLabelValues(metrics.ProtocolV4).Inc() <-app.started encoded, err := json.Marshal(order) if err != nil { return err } - return app.node.Send(encoded) + return app.node.SendV4(encoded) } // AddPeer can be used to manually connect to a new peer. @@ -1285,6 +1315,8 @@ func (app *App) periodicallyLogStats(ctx context.Context) { log.WithError(err).Error("could not get stats") continue } + metrics.PeersConnected.Set(float64(stats.NumPeers)) + metrics.LatestBlock.Set(float64(stats.LatestBlock.Number.Int64())) log.WithFields(log.Fields{ "version": stats.Version, "pubSubTopic": stats.PubSubTopic, @@ -1294,6 +1326,9 @@ func (app *App) periodicallyLogStats(ctx context.Context) { "numOrders": stats.NumOrders, "numOrdersIncludingRemoved": stats.NumOrdersIncludingRemoved, "numPinnedOrders": stats.NumPinnedOrders, + "numOrdersV4": stats.NumOrdersV4, + "numOrdersIncludingRemovedV4": stats.NumOrdersIncludingRemovedV4, + "numPinnedOrdersV4": stats.NumPinnedOrdersV4, "numPeers": stats.NumPeers, "maxExpirationTime": stats.MaxExpirationTime, "startOfCurrentUTCDay": stats.StartOfCurrentUTCDay, diff --git a/core/message_handler.go b/core/message_handler.go index bb0e3b292..005836375 100644 --- a/core/message_handler.go +++ b/core/message_handler.go @@ -6,6 +6,7 @@ import ( "github.com/0xProject/0x-mesh/common/types" "github.com/0xProject/0x-mesh/constants" "github.com/0xProject/0x-mesh/encoding" + "github.com/0xProject/0x-mesh/metrics" "github.com/0xProject/0x-mesh/p2p" "github.com/0xProject/0x-mesh/zeroex" "github.com/0xProject/0x-mesh/zeroex/ordervalidator" @@ -103,6 +104,14 @@ func (app *App) HandleMessages(ctx context.Context, messages []*p2p.Message) err app.handlePeerScoreEvent(msg.From, psInvalidMessage) } } + + metrics.P2POrdersReceived. + WithLabelValues(metrics.ProtocolV3, metrics.ValidationAccepted). + Add(float64(len(validationResults.Accepted))) + + metrics.P2POrdersReceived. + WithLabelValues(metrics.ProtocolV3, metrics.ValidationRejected). + Add(float64(len(validationResults.Rejected))) return nil } diff --git a/core/message_handler_v4.go b/core/message_handler_v4.go index efdead1c6..0f7a5f19a 100644 --- a/core/message_handler_v4.go +++ b/core/message_handler_v4.go @@ -5,6 +5,7 @@ import ( "encoding/json" "github.com/0xProject/0x-mesh/common/types" + "github.com/0xProject/0x-mesh/metrics" "github.com/0xProject/0x-mesh/p2p" "github.com/0xProject/0x-mesh/zeroex" "github.com/0xProject/0x-mesh/zeroex/ordervalidator" @@ -90,5 +91,14 @@ func (app *App) HandleMessagesV4(ctx context.Context, messages []*p2p.Message) e app.handlePeerScoreEvent(msg.From, psInvalidMessage) } } + + metrics.P2POrdersReceived. + WithLabelValues(metrics.ProtocolV4, metrics.ValidationAccepted). + Add(float64(len(validationResults.Accepted))) + + metrics.P2POrdersReceived. + WithLabelValues(metrics.ProtocolV4, metrics.ValidationRejected). + Add(float64(len(validationResults.Rejected))) + return nil } diff --git a/core/ordersync/ordersync.go b/core/ordersync/ordersync.go index 2ca9ca394..81d3cc712 100644 --- a/core/ordersync/ordersync.go +++ b/core/ordersync/ordersync.go @@ -14,6 +14,7 @@ import ( "sync" "time" + "github.com/0xProject/0x-mesh/metrics" "github.com/0xProject/0x-mesh/p2p" "github.com/0xProject/0x-mesh/zeroex" "github.com/albrow/stringset" @@ -225,6 +226,7 @@ func (s *Service) HandleStream(stream network.Stream) { log.WithFields(log.Fields{ "requester": stream.Conn().RemotePeer().Pretty(), }).Trace("received ordersync request") + metrics.OrdersyncRequestsReceived.WithLabelValues(metrics.ProtocolV3).Inc() rawRes := s.handleRawRequest(rawReq, requesterID) if rawRes == nil { return @@ -311,7 +313,6 @@ func (s *Service) GetOrders(ctx context.Context, minPeers int) error { log.WithFields(log.Fields{ "provider": peerID.Pretty(), }).Trace("requesting orders from neighbor via ordersync") - wg.Add(1) go func(id peer.ID) { defer func() { @@ -323,6 +324,7 @@ func (s *Service) GetOrders(ctx context.Context, minPeers int) error { "error": err.Error(), "provider": id.Pretty(), }).Debug("could not get orders from peer via ordersync") + metrics.OrdersyncRequestsSent.WithLabelValues(metrics.ProtocolV3, metrics.OrdersyncSuccess).Inc() m.Lock() if nextFirstRequest != nil { nextRequestForPeer[id] = nextFirstRequest @@ -332,6 +334,7 @@ func (s *Service) GetOrders(ctx context.Context, minPeers int) error { log.WithFields(log.Fields{ "provider": id.Pretty(), }).Trace("successfully got orders from peer via ordersync") + metrics.OrdersyncRequestsSent.WithLabelValues(metrics.ProtocolV3, metrics.OrdersyncFailure).Inc() m.Lock() successfullySyncedPeers.Add(id.Pretty()) delete(nextRequestForPeer, id) diff --git a/core/ordersync_v4/ordersync_v4.go b/core/ordersync_v4/ordersync_v4.go index 1a3f60197..53e39ab33 100644 --- a/core/ordersync_v4/ordersync_v4.go +++ b/core/ordersync_v4/ordersync_v4.go @@ -15,6 +15,7 @@ import ( "github.com/0xProject/0x-mesh/common/types" "github.com/0xProject/0x-mesh/db" + "github.com/0xProject/0x-mesh/metrics" "github.com/0xProject/0x-mesh/p2p" "github.com/0xProject/0x-mesh/zeroex" "github.com/0xProject/0x-mesh/zeroex/orderwatch" @@ -109,13 +110,13 @@ func (s *Service) HandleStream(stream network.Stream) { // Pre-emptively close the stream if we can't accept anymore requests. log.WithFields(log.Fields{ "requester": stream.Conn().RemotePeer().Pretty(), - }).Warn("closing ordersync stream because rate limiter is backed up") + }).Warn("closing ordersync_v4 stream because rate limiter is backed up") _ = stream.Reset() return } log.WithFields(log.Fields{ "requester": stream.Conn().RemotePeer().Pretty(), - }).Trace("handling ordersync stream") + }).Trace("handling ordersync_v4 stream") defer func() { _ = stream.Close() }() @@ -125,7 +126,7 @@ func (s *Service) HandleStream(stream network.Stream) { if err := s.requestRateLimiter.Wait(s.ctx); err != nil { log.WithFields(log.Fields{ "requester": stream.Conn().RemotePeer().Pretty(), - }).Warn("ordersync rate limiter returned error") + }).Warn("ordersync_v4 rate limiter returned error") return } request, err := waitForRequest(s.ctx, stream) @@ -135,7 +136,8 @@ func (s *Service) HandleStream(stream network.Stream) { } log.WithFields(log.Fields{ "requester": stream.Conn().RemotePeer().Pretty(), - }).Trace("received ordersync V4 request") + }).Trace("received ordersync_v4 request") + metrics.OrdersyncRequestsReceived.WithLabelValues(metrics.ProtocolV4).Inc() response := s.handleRequest(request, requesterID) if response == nil { return @@ -144,7 +146,7 @@ func (s *Service) HandleStream(stream network.Stream) { log.WithFields(log.Fields{ "error": err.Error(), "requester": requesterID.Pretty(), - }).Warn("could not encode ordersync V4 response") + }).Warn("could not encode ordersync_v4 response") s.handlePeerScoreEvent(requesterID, psUnexpectedDisconnect) return } @@ -223,7 +225,7 @@ func (s *Service) GetOrders(ctx context.Context, minPeers int) error { log.WithFields(log.Fields{ "provider": peerID.Pretty(), - }).Trace("requesting orders from neighbor via ordersync") + }).Trace("requesting orders from neighbor via ordersync_v4") wg.Add(1) go func(id peer.ID) { @@ -235,7 +237,8 @@ func (s *Service) GetOrders(ctx context.Context, minPeers int) error { log.WithFields(log.Fields{ "error": err.Error(), "provider": id.Pretty(), - }).Debug("could not get orders from peer via ordersync") + }).Debug("could not get orders from peer via ordersync_v4") + metrics.OrdersyncRequestsSent.WithLabelValues(metrics.ProtocolV4, metrics.OrdersyncFailure).Inc() m.Lock() if nextFirstRequest != nil { nextRequestForPeer[id] = nextFirstRequest @@ -244,7 +247,8 @@ func (s *Service) GetOrders(ctx context.Context, minPeers int) error { } else { log.WithFields(log.Fields{ "provider": id.Pretty(), - }).Trace("successfully got orders from peer via ordersync") + }).Trace("successfully got orders from peer via ordersync_v4") + metrics.OrdersyncRequestsSent.WithLabelValues(metrics.ProtocolV4, metrics.OrdersyncSuccess).Inc() m.Lock() successfullySyncedPeers.Add(id.Pretty()) delete(nextRequestForPeer, id) @@ -266,7 +270,7 @@ func (s *Service) GetOrders(ctx context.Context, minPeers int) error { "delayBeforeNextRetry": delayBeforeNextRetry.String(), "minPeers": minPeers, "successfullySyncedPeers": successfullySyncedPeerLength, - }).Debug("ordersync could not get orders from enough peers (trying again soon)") + }).Debug("ordersync_v4 could not get orders from enough peers (trying again soon)") select { case <-ctx.Done(): return ctx.Err() @@ -278,7 +282,7 @@ func (s *Service) GetOrders(ctx context.Context, minPeers int) error { log.WithFields(log.Fields{ "minPeers": minPeers, "successfullySyncedPeers": len(successfullySyncedPeers), - }).Info("completed a round of ordersync") + }).Info("completed a round of ordersync_v4") return nil } @@ -332,7 +336,7 @@ func waitForRequest(parentCtx context.Context, stream network.Stream) (*Request, log.WithFields(log.Fields{ "error": err.Error(), "requester": stream.Conn().RemotePeer().Pretty(), - }).Warn("could not decode ordersync request") + }).Warn("could not decode ordersync_v4 request") errChan <- err return } @@ -344,7 +348,7 @@ func waitForRequest(parentCtx context.Context, stream network.Stream) (*Request, log.WithFields(log.Fields{ "error": ctx.Err(), "requester": stream.Conn().RemotePeer().Pretty(), - }).Warn("timed out waiting for ordersync request") + }).Warn("timed out waiting for ordersync_v4 request") return nil, ctx.Err() case err := <-errChan: return nil, err @@ -364,7 +368,7 @@ func waitForResponse(parentCtx context.Context, stream network.Stream) (*Respons log.WithFields(log.Fields{ "error": err.Error(), "provider": stream.Conn().RemotePeer().Pretty(), - }).Warn("could not decode ordersync response") + }).Warn("could not decode ordersync_v4 response") errChan <- err return } @@ -389,7 +393,7 @@ func (s *Service) handleRequest(request *Request, requesterID peer.ID) *Response // Early exit if channel closed? select { case <-s.ctx.Done(): - log.WithError(s.ctx.Err()).Warn("handleRequest v4 error") + log.WithError(s.ctx.Err()).Warn("handleRequest ordersync_v4 error") return nil default: } @@ -417,7 +421,7 @@ func (s *Service) handleRequest(request *Request, requesterID peer.ID) *Response Limit: uint(s.perPage), }) if err != nil { - log.WithError(err).Warn("handleRequest v4 error") + log.WithError(err).Warn("handleRequest ordersync_v4 error") return nil } var orders []*zeroex.SignedOrderV4 diff --git a/docs/browser-bindings/browser-lite/README.md b/docs/browser-bindings/browser-lite/README.md index 5bde101af..9eac32de5 100644 --- a/docs/browser-bindings/browser-lite/README.md +++ b/docs/browser-bindings/browser-lite/README.md @@ -1,4 +1,4 @@ -# @0x/mesh-browser-lite - v11.0.3 +# @0x/mesh-browser-lite - v11.1.0 ## @0x/mesh-browser-lite diff --git a/docs/browser-bindings/browser-lite/reference.md b/docs/browser-bindings/browser-lite/reference.md index 8ac4fd85a..768790794 100644 --- a/docs/browser-bindings/browser-lite/reference.md +++ b/docs/browser-bindings/browser-lite/reference.md @@ -13,7 +13,7 @@ sending orders through the 0x Mesh network. \+ **new Mesh**(`config`: [Config](#interface-config)): _[Mesh](#class-mesh)_ -_Defined in [mesh.ts:132](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/mesh.ts#L132)_ +_Defined in [mesh.ts:132](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/mesh.ts#L132)_ Instantiates a new Mesh instance. @@ -33,7 +33,7 @@ An instance of Mesh • **wrapper**? : _MeshWrapper_ -_Defined in [mesh.ts:129](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/mesh.ts#L129)_ +_Defined in [mesh.ts:129](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/mesh.ts#L129)_ ### Methods @@ -41,7 +41,7 @@ _Defined in [mesh.ts:129](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac ▸ **addOrdersAsync**(`orders`: SignedOrder[], `pinned`: boolean): _Promise‹[ValidationResults](#interface-validationresults)›_ -_Defined in [mesh.ts:269](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/mesh.ts#L269)_ +_Defined in [mesh.ts:269](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/mesh.ts#L269)_ Validates and adds the given orders to Mesh. If an order is successfully added, Mesh will share it with any peers in the network and start @@ -68,7 +68,7 @@ were accepted and which were rejected. ▸ **getOrdersAsync**(`perPage`: number): _Promise‹[GetOrdersResponse](#interface-getordersresponse)›_ -_Defined in [mesh.ts:207](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/mesh.ts#L207)_ +_Defined in [mesh.ts:207](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/mesh.ts#L207)_ Get all 0x signed orders currently stored in the Mesh node @@ -88,7 +88,7 @@ the snapshotID, snapshotTimestamp and all orders, their hashes and fillableTaker ▸ **getOrdersForPageAsync**(`perPage`: number, `minOrderHash?`: undefined | string): _Promise‹[GetOrdersResponse](#interface-getordersresponse)›_ -_Defined in [mesh.ts:240](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/mesh.ts#L240)_ +_Defined in [mesh.ts:240](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/mesh.ts#L240)_ Get page of 0x signed orders stored on the Mesh node at the specified snapshot @@ -109,7 +109,7 @@ Up to perPage orders with hash greater than minOrderHash, including order hashes ▸ **getStatsAsync**(): _Promise‹[Stats](#interface-stats)›_ -_Defined in [mesh.ts:190](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/mesh.ts#L190)_ +_Defined in [mesh.ts:190](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/mesh.ts#L190)_ Returns various stats about Mesh, including the total number of orders and the number of peers Mesh is connected to. @@ -122,7 +122,7 @@ and the number of peers Mesh is connected to. ▸ **onError**(`handler`: function): _void_ -_Defined in [mesh.ts:152](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/mesh.ts#L152)_ +_Defined in [mesh.ts:152](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/mesh.ts#L152)_ Registers a handler which will be called in the event of a critical error. Note that the handler will not be called for non-critical errors. @@ -151,7 +151,7 @@ The handler to be called. ▸ **onOrderEvents**(`handler`: function): _void_ -_Defined in [mesh.ts:165](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/mesh.ts#L165)_ +_Defined in [mesh.ts:165](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/mesh.ts#L165)_ Registers a handler which will be called for any incoming order events. Order events are fired whenver an order is added, canceled, expired, or @@ -180,7 +180,7 @@ The handler to be called. ▸ **startAsync**(): _Promise‹void›_ -_Defined in [mesh.ts:174](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/mesh.ts#L174)_ +_Defined in [mesh.ts:174](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/mesh.ts#L174)_ Starts the Mesh node in the background. Mesh will automatically find peers in the network and begin receiving orders from them. @@ -197,7 +197,7 @@ peers in the network and begin receiving orders from them. • **ERC1155ApprovalForAllEvent**: = "ERC1155ApprovalForAllEvent" -_Defined in [types.ts:505](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L505)_ +_Defined in [types.ts:505](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L505)_ --- @@ -205,7 +205,7 @@ _Defined in [types.ts:505](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ERC1155TransferBatchEvent**: = "ERC1155TransferBatchEvent" -_Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L507)_ +_Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L507)_ --- @@ -213,7 +213,7 @@ _Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ERC1155TransferSingleEvent**: = "ERC1155TransferSingleEvent" -_Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L506)_ +_Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L506)_ --- @@ -221,7 +221,7 @@ _Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ERC20ApprovalEvent**: = "ERC20ApprovalEvent" -_Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L501)_ +_Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L501)_ --- @@ -229,7 +229,7 @@ _Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ERC20TransferEvent**: = "ERC20TransferEvent" -_Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L500)_ +_Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L500)_ --- @@ -237,7 +237,7 @@ _Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ERC721ApprovalEvent**: = "ERC721ApprovalEvent" -_Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L503)_ +_Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L503)_ --- @@ -245,7 +245,7 @@ _Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ERC721ApprovalForAllEvent**: = "ERC721ApprovalForAllEvent" -_Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L504)_ +_Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L504)_ --- @@ -253,7 +253,7 @@ _Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ERC721TransferEvent**: = "ERC721TransferEvent" -_Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L502)_ +_Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L502)_ --- @@ -261,7 +261,7 @@ _Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ExchangeCancelEvent**: = "ExchangeCancelEvent" -_Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L509)_ +_Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L509)_ --- @@ -269,7 +269,7 @@ _Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ExchangeCancelUpToEvent**: = "ExchangeCancelUpToEvent" -_Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L510)_ +_Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L510)_ --- @@ -277,7 +277,7 @@ _Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ExchangeFillEvent**: = "ExchangeFillEvent" -_Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L508)_ +_Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L508)_ --- @@ -285,7 +285,7 @@ _Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **WethDepositEvent**: = "WethDepositEvent" -_Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L511)_ +_Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L511)_ --- @@ -293,7 +293,7 @@ _Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **WethWithdrawalEvent**: = "WethWithdrawalEvent" -_Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L512)_ +_Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L512)_
@@ -305,7 +305,7 @@ _Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Added**: = "ADDED" -_Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L575)_ +_Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L575)_ --- @@ -313,7 +313,7 @@ _Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Cancelled**: = "CANCELLED" -_Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L578)_ +_Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L578)_ --- @@ -321,7 +321,7 @@ _Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Expired**: = "EXPIRED" -_Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L579)_ +_Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L579)_ --- @@ -329,7 +329,7 @@ _Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **FillabilityIncreased**: = "FILLABILITY_INCREASED" -_Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L582)_ +_Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L582)_ --- @@ -337,7 +337,7 @@ _Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Filled**: = "FILLED" -_Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L576)_ +_Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L576)_ --- @@ -345,7 +345,7 @@ _Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **FullyFilled**: = "FULLY_FILLED" -_Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L577)_ +_Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L577)_ --- @@ -353,7 +353,7 @@ _Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Invalid**: = "INVALID" -_Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L574)_ +_Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L574)_ --- @@ -361,7 +361,7 @@ _Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **StoppedWatching**: = "STOPPED_WATCHING" -_Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L583)_ +_Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L583)_ --- @@ -369,7 +369,7 @@ _Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Unexpired**: = "UNEXPIRED" -_Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L580)_ +_Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L580)_ --- @@ -377,7 +377,7 @@ _Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Unfunded**: = "UNFUNDED" -_Defined in [types.ts:581](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L581)_ +_Defined in [types.ts:581](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L581)_
@@ -391,7 +391,7 @@ A set of categories for rejected orders. • **MeshError**: = "MESH_ERROR" -_Defined in [types.ts:714](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L714)_ +_Defined in [types.ts:714](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L714)_ --- @@ -399,7 +399,7 @@ _Defined in [types.ts:714](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **MeshValidation**: = "MESH_VALIDATION" -_Defined in [types.ts:715](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L715)_ +_Defined in [types.ts:715](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L715)_ --- @@ -407,7 +407,7 @@ _Defined in [types.ts:715](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ZeroExValidation**: = "ZEROEX_VALIDATION" -_Defined in [types.ts:713](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L713)_ +_Defined in [types.ts:713](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L713)_
@@ -419,7 +419,7 @@ _Defined in [types.ts:713](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Debug**: = 5 -_Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L238)_ +_Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L238)_ --- @@ -427,7 +427,7 @@ _Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Error**: = 2 -_Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L235)_ +_Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L235)_ --- @@ -435,7 +435,7 @@ _Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Fatal**: = 1 -_Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L234)_ +_Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L234)_ --- @@ -443,7 +443,7 @@ _Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Info**: = 4 -_Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L237)_ +_Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L237)_ --- @@ -451,7 +451,7 @@ _Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Panic**: = 0 -_Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L233)_ +_Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L233)_ --- @@ -459,7 +459,7 @@ _Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Trace**: = 6 -_Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L239)_ +_Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L239)_ --- @@ -467,7 +467,7 @@ _Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Warn**: = 3 -_Defined in [types.ts:236](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L236)_ +_Defined in [types.ts:236](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L236)_
@@ -485,7 +485,7 @@ Info for any orders that were accepted. • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [types.ts:694](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L694)_ +_Defined in [types.ts:694](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L694)_ --- @@ -493,7 +493,7 @@ _Defined in [types.ts:694](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **isNew**: _boolean_ -_Defined in [types.ts:695](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L695)_ +_Defined in [types.ts:695](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L695)_ --- @@ -501,7 +501,7 @@ _Defined in [types.ts:695](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **orderHash**: _string_ -_Defined in [types.ts:692](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L692)_ +_Defined in [types.ts:692](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L692)_ --- @@ -509,7 +509,7 @@ _Defined in [types.ts:692](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:693](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L693)_ +_Defined in [types.ts:693](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L693)_
@@ -527,7 +527,7 @@ A set of configuration options for Mesh. • **blockPollingIntervalSeconds**? : _undefined | number_ -_Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L144)_ +_Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L144)_ --- @@ -535,7 +535,7 @@ _Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **bootstrapList**? : _string[]_ -_Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L137)_ +_Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L137)_ --- @@ -543,7 +543,7 @@ _Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **customContractAddresses**? : _[ContractAddresses](#interface-contractaddresses)_ -_Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L188)_ +_Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L188)_ --- @@ -551,7 +551,7 @@ _Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **customOrderFilter**? : _[JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L213)_ +_Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L213)_ --- @@ -559,7 +559,7 @@ _Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **enableEthereumRPCRateLimiting**? : _undefined | false | true_ -_Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L161)_ +_Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L161)_ --- @@ -567,7 +567,7 @@ _Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ethereumChainID**: _number_ -_Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L129)_ +_Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L129)_ --- @@ -575,7 +575,7 @@ _Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ethereumRPCMaxContentLength**? : _undefined | number_ -_Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L153)_ +_Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L153)_ --- @@ -583,7 +583,7 @@ _Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ethereumRPCMaxRequestsPer24HrUTC**? : _undefined | number_ -_Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L166)_ +_Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L166)_ --- @@ -591,7 +591,7 @@ _Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ethereumRPCMaxRequestsPerSecond**? : _undefined | number_ -_Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L172)_ +_Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L172)_ --- @@ -599,7 +599,7 @@ _Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ethereumRPCURL**? : _undefined | string_ -_Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L126)_ +_Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L126)_ --- @@ -607,7 +607,7 @@ _Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **maxBytesPerSecond**? : _undefined | number_ -_Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L219)_ +_Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L219)_ --- @@ -615,7 +615,7 @@ _Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **maxOrdersInStorage**? : _undefined | number_ -_Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L193)_ +_Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L193)_ --- @@ -623,7 +623,7 @@ _Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **useBootstrapList**? : _undefined | false | true_ -_Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L132)_ +_Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L132)_ --- @@ -631,7 +631,7 @@ _Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **verbosity**? : _[Verbosity](#enumeration-verbosity)_ -_Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L123)_ +_Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L123)_ --- @@ -639,7 +639,7 @@ _Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **web3Provider**? : _SupportedProvider_ -_Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L216)_ +_Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L216)_
@@ -655,7 +655,7 @@ _Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **devUtils**: _string_ -_Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L224)_ +_Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L224)_ --- @@ -663,7 +663,7 @@ _Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **erc1155Proxy**: _string_ -_Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L227)_ +_Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L227)_ --- @@ -671,7 +671,7 @@ _Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **erc20Proxy**: _string_ -_Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L225)_ +_Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L225)_ --- @@ -679,7 +679,7 @@ _Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **erc721Proxy**: _string_ -_Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L226)_ +_Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L226)_ --- @@ -687,7 +687,7 @@ _Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **exchange**: _string_ -_Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L223)_ +_Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L223)_ --- @@ -695,7 +695,7 @@ _Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **weth9**? : _undefined | string_ -_Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L228)_ +_Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L228)_ --- @@ -703,7 +703,7 @@ _Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **zrxToken**? : _undefined | string_ -_Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L229)_ +_Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L229)_
@@ -719,7 +719,7 @@ _Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **address**: _string_ -_Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L553)_ +_Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L553)_ --- @@ -727,7 +727,7 @@ _Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **blockHash**: _string_ -_Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L548)_ +_Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L548)_ --- @@ -735,7 +735,7 @@ _Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **isRemoved**: _boolean_ -_Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L552)_ +_Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L552)_ --- @@ -743,7 +743,7 @@ _Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **kind**: _[ContractEventKind](#enumeration-contracteventkind)_ -_Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L554)_ +_Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L554)_ --- @@ -751,7 +751,7 @@ _Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **logIndex**: _number_ -_Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L551)_ +_Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L551)_ --- @@ -759,7 +759,7 @@ _Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **parameters**: _ContractEventParameters_ -_Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L555)_ +_Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L555)_ --- @@ -767,7 +767,7 @@ _Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **txHash**: _string_ -_Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L549)_ +_Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L549)_ --- @@ -775,7 +775,7 @@ _Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **txIndex**: _number_ -_Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L550)_ +_Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L550)_
@@ -791,7 +791,7 @@ _Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **approved**: _boolean_ -_Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L417)_ +_Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L417)_ --- @@ -799,7 +799,7 @@ _Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **operator**: _string_ -_Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L416)_ +_Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L416)_ --- @@ -807,7 +807,7 @@ _Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **owner**: _string_ -_Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L415)_ +_Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L415)_
@@ -823,7 +823,7 @@ _Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **from**: _string_ -_Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L399)_ +_Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L399)_ --- @@ -831,7 +831,7 @@ _Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ids**: _BigNumber[]_ -_Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L401)_ +_Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L401)_ --- @@ -839,7 +839,7 @@ _Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **operator**: _string_ -_Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L398)_ +_Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L398)_ --- @@ -847,7 +847,7 @@ _Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **to**: _string_ -_Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L400)_ +_Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L400)_ --- @@ -855,7 +855,7 @@ _Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **values**: _BigNumber[]_ -_Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L402)_ +_Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L402)_
@@ -871,7 +871,7 @@ _Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **from**: _string_ -_Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L382)_ +_Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L382)_ --- @@ -879,7 +879,7 @@ _Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **id**: _BigNumber_ -_Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L384)_ +_Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L384)_ --- @@ -887,7 +887,7 @@ _Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **operator**: _string_ -_Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L381)_ +_Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L381)_ --- @@ -895,7 +895,7 @@ _Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **to**: _string_ -_Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L383)_ +_Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L383)_ --- @@ -903,7 +903,7 @@ _Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **value**: _BigNumber_ -_Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L385)_ +_Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L385)_
@@ -919,7 +919,7 @@ _Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **owner**: _string_ -_Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L336)_ +_Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L336)_ --- @@ -927,7 +927,7 @@ _Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **spender**: _string_ -_Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L337)_ +_Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L337)_ --- @@ -935,7 +935,7 @@ _Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **value**: _BigNumber_ -_Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L338)_ +_Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L338)_
@@ -951,7 +951,7 @@ _Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **from**: _string_ -_Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L323)_ +_Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L323)_ --- @@ -959,7 +959,7 @@ _Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **to**: _string_ -_Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L324)_ +_Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L324)_ --- @@ -967,7 +967,7 @@ _Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **value**: _BigNumber_ -_Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L325)_ +_Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L325)_
@@ -983,7 +983,7 @@ _Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **approved**: _string_ -_Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L363)_ +_Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L363)_ --- @@ -991,7 +991,7 @@ _Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **owner**: _string_ -_Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L362)_ +_Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L362)_ --- @@ -999,7 +999,7 @@ _Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **tokenId**: _BigNumber_ -_Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L364)_ +_Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L364)_
@@ -1015,7 +1015,7 @@ _Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **approved**: _boolean_ -_Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L377)_ +_Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L377)_ --- @@ -1023,7 +1023,7 @@ _Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **operator**: _string_ -_Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L376)_ +_Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L376)_ --- @@ -1031,7 +1031,7 @@ _Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **owner**: _string_ -_Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L375)_ +_Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L375)_
@@ -1047,7 +1047,7 @@ _Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **from**: _string_ -_Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L349)_ +_Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L349)_ --- @@ -1055,7 +1055,7 @@ _Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **to**: _string_ -_Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L350)_ +_Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L350)_ --- @@ -1063,7 +1063,7 @@ _Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **tokenId**: _BigNumber_ -_Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L351)_ +_Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L351)_
@@ -1079,7 +1079,7 @@ _Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **feeRecipientAddress**: _string_ -_Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L458)_ +_Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L458)_ --- @@ -1087,7 +1087,7 @@ _Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **makerAddress**: _string_ -_Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L456)_ +_Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L456)_ --- @@ -1095,7 +1095,7 @@ _Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **makerAssetData**: _string_ -_Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L460)_ +_Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L460)_ --- @@ -1103,7 +1103,7 @@ _Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **orderHash**: _string_ -_Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L459)_ +_Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L459)_ --- @@ -1111,7 +1111,7 @@ _Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **senderAddress**: _string_ -_Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L457)_ +_Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L457)_ --- @@ -1119,7 +1119,7 @@ _Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **takerAssetData**: _string_ -_Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L461)_ +_Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L461)_
@@ -1135,7 +1135,7 @@ _Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **makerAddress**: _string_ -_Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L465)_ +_Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L465)_ --- @@ -1143,7 +1143,7 @@ _Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **orderEpoch**: _BigNumber_ -_Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L467)_ +_Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L467)_ --- @@ -1151,7 +1151,7 @@ _Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **orderSenderAddress**: _string_ -_Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L466)_ +_Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L466)_
@@ -1167,7 +1167,7 @@ _Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **feeRecipientAddress**: _string_ -_Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L424)_ +_Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L424)_ --- @@ -1175,7 +1175,7 @@ _Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **makerAddress**: _string_ -_Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L421)_ +_Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L421)_ --- @@ -1183,7 +1183,7 @@ _Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **makerAssetData**: _string_ -_Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L431)_ +_Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L431)_ --- @@ -1191,7 +1191,7 @@ _Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **makerAssetFilledAmount**: _BigNumber_ -_Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L425)_ +_Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L425)_ --- @@ -1199,7 +1199,7 @@ _Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **makerFeeAssetData**: _string_ -_Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L433)_ +_Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L433)_ --- @@ -1207,7 +1207,7 @@ _Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **makerFeePaid**: _BigNumber_ -_Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L427)_ +_Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L427)_ --- @@ -1215,7 +1215,7 @@ _Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **orderHash**: _string_ -_Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L430)_ +_Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L430)_ --- @@ -1223,7 +1223,7 @@ _Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **protocolFeePaid**: _BigNumber_ -_Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L429)_ +_Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L429)_ --- @@ -1231,7 +1231,7 @@ _Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **senderAddress**: _string_ -_Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L423)_ +_Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L423)_ --- @@ -1239,7 +1239,7 @@ _Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **takerAddress**: _string_ -_Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L422)_ +_Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L422)_ --- @@ -1247,7 +1247,7 @@ _Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **takerAssetData**: _string_ -_Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L432)_ +_Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L432)_ --- @@ -1255,7 +1255,7 @@ _Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **takerAssetFilledAmount**: _BigNumber_ -_Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L426)_ +_Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L426)_ --- @@ -1263,7 +1263,7 @@ _Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **takerFeeAssetData**: _string_ -_Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L434)_ +_Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L434)_ --- @@ -1271,7 +1271,7 @@ _Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **takerFeePaid**: _BigNumber_ -_Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L428)_ +_Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L428)_
@@ -1287,7 +1287,7 @@ _Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ordersInfos**: _[OrderInfo](#interface-orderinfo)[]_ -_Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L45)_ +_Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L45)_ --- @@ -1295,7 +1295,7 @@ _Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **timestamp**: _number_ -_Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L44)_ +_Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L44)_
@@ -1313,7 +1313,7 @@ An interface for JSON schema types, which are used for custom order filters. • **\$ref**? : _undefined | string_ -_Defined in [types.ts:67](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L67)_ +_Defined in [types.ts:67](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L67)_ --- @@ -1321,7 +1321,7 @@ _Defined in [types.ts:67](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **\$schema**? : _undefined | string_ -_Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L66)_ +_Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L66)_ --- @@ -1329,7 +1329,7 @@ _Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **additionalItems**? : _boolean | [JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L78)_ +_Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L78)_ --- @@ -1337,7 +1337,7 @@ _Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **additionalProperties**? : _boolean | [JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L86)_ +_Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L86)_ --- @@ -1345,7 +1345,7 @@ _Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **allOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L108)_ +_Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L108)_ --- @@ -1353,7 +1353,7 @@ _Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **anyOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L109)_ +_Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L109)_ --- @@ -1361,7 +1361,7 @@ _Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **const**? : _any_ -_Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L105)_ +_Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L105)_ --- @@ -1369,7 +1369,7 @@ _Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **definitions**? : _undefined | object_ -_Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L87)_ +_Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L87)_ --- @@ -1377,7 +1377,7 @@ _Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **dependencies**? : _undefined | object_ -_Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L96)_ +_Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L96)_ --- @@ -1385,7 +1385,7 @@ _Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **description**? : _undefined | string_ -_Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L69)_ +_Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L69)_ --- @@ -1393,7 +1393,7 @@ _Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **enum**? : _any[]_ -_Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L99)_ +_Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L99)_ --- @@ -1401,7 +1401,7 @@ _Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **exclusiveMaximum**? : _undefined | false | true_ -_Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L72)_ +_Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L72)_ --- @@ -1409,7 +1409,7 @@ _Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **exclusiveMinimum**? : _undefined | false | true_ -_Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L74)_ +_Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L74)_ --- @@ -1417,7 +1417,7 @@ _Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **format**? : _undefined | string_ -_Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L107)_ +_Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L107)_ --- @@ -1425,7 +1425,7 @@ _Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **id**? : _undefined | string_ -_Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L65)_ +_Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L65)_ --- @@ -1433,7 +1433,7 @@ _Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **items**? : _[JsonSchema](#interface-jsonschema) | [JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L79)_ +_Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L79)_ --- @@ -1441,7 +1441,7 @@ _Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **maxItems**? : _undefined | number_ -_Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L80)_ +_Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L80)_ --- @@ -1449,7 +1449,7 @@ _Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **maxLength**? : _undefined | number_ -_Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L75)_ +_Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L75)_ --- @@ -1457,7 +1457,7 @@ _Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **maxProperties**? : _undefined | number_ -_Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L83)_ +_Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L83)_ --- @@ -1465,7 +1465,7 @@ _Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **maximum**? : _undefined | number_ -_Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L71)_ +_Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L71)_ --- @@ -1473,7 +1473,7 @@ _Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **minItems**? : _undefined | number_ -_Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L81)_ +_Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L81)_ --- @@ -1481,7 +1481,7 @@ _Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **minLength**? : _undefined | number_ -_Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L76)_ +_Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L76)_ --- @@ -1489,7 +1489,7 @@ _Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **minProperties**? : _undefined | number_ -_Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L84)_ +_Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L84)_ --- @@ -1497,7 +1497,7 @@ _Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **minimum**? : _undefined | number_ -_Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L73)_ +_Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L73)_ --- @@ -1505,7 +1505,7 @@ _Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **multipleOf**? : _undefined | number_ -_Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L70)_ +_Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L70)_ --- @@ -1513,7 +1513,7 @@ _Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **not**? : _[JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L111)_ +_Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L111)_ --- @@ -1521,7 +1521,7 @@ _Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **oneOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L110)_ +_Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L110)_ --- @@ -1529,7 +1529,7 @@ _Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **pattern**? : _string | RegExp_ -_Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L77)_ +_Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L77)_ --- @@ -1537,7 +1537,7 @@ _Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **patternProperties**? : _undefined | object_ -_Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L93)_ +_Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L93)_ --- @@ -1545,7 +1545,7 @@ _Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **properties**? : _undefined | object_ -_Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L90)_ +_Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L90)_ --- @@ -1553,7 +1553,7 @@ _Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **required**? : _string[]_ -_Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L85)_ +_Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L85)_ --- @@ -1561,7 +1561,7 @@ _Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **title**? : _undefined | string_ -_Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L68)_ +_Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L68)_ --- @@ -1569,7 +1569,7 @@ _Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **type**? : _string | string[]_ -_Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L106)_ +_Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L106)_ --- @@ -1577,7 +1577,7 @@ _Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **uniqueItems**? : _undefined | false | true_ -_Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L82)_ +_Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L82)_
@@ -1593,7 +1593,7 @@ _Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **hash**: _string_ -_Defined in [types.ts:734](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L734)_ +_Defined in [types.ts:734](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L734)_ --- @@ -1601,7 +1601,7 @@ _Defined in [types.ts:734](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **number**: _BigNumber_ -_Defined in [types.ts:733](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L733)_ +_Defined in [types.ts:733](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L733)_
@@ -1620,7 +1620,7 @@ or filled. • **contractEvents**: _[ContractEvent](#interface-contractevent)[]_ -_Defined in [types.ts:606](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L606)_ +_Defined in [types.ts:606](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L606)_ --- @@ -1628,7 +1628,7 @@ _Defined in [types.ts:606](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **endState**: _[OrderEventEndState](#enumeration-ordereventendstate)_ -_Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L604)_ +_Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L604)_ --- @@ -1636,7 +1636,7 @@ _Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L605)_ +_Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L605)_ --- @@ -1644,7 +1644,7 @@ _Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **orderHash**: _string_ -_Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L602)_ +_Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L602)_ --- @@ -1652,7 +1652,7 @@ _Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L603)_ +_Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L603)_ --- @@ -1660,7 +1660,7 @@ _Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **timestampMs**: _number_ -_Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L601)_ +_Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L601)_
@@ -1676,7 +1676,7 @@ _Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L58)_ +_Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L58)_ --- @@ -1684,7 +1684,7 @@ _Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **orderHash**: _string_ -_Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L56)_ +_Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L56)_ --- @@ -1692,7 +1692,7 @@ _Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L57)_ +_Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L57)_
@@ -1711,7 +1711,7 @@ rejected. • **kind**: _[RejectedOrderKind](#enumeration-rejectedorderkind)_ -_Defined in [types.ts:705](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L705)_ +_Defined in [types.ts:705](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L705)_ --- @@ -1719,7 +1719,7 @@ _Defined in [types.ts:705](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **orderHash**: _string_ -_Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L703)_ +_Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L703)_ --- @@ -1727,7 +1727,7 @@ _Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L704)_ +_Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L704)_ --- @@ -1735,7 +1735,7 @@ _Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **status**: _[RejectedOrderStatus](#interface-rejectedorderstatus)_ -_Defined in [types.ts:706](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L706)_ +_Defined in [types.ts:706](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L706)_
@@ -1753,7 +1753,7 @@ Provides more information about why an order was rejected. • **code**: _string_ -_Defined in [types.ts:722](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L722)_ +_Defined in [types.ts:722](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L722)_ --- @@ -1761,7 +1761,7 @@ _Defined in [types.ts:722](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **message**: _string_ -_Defined in [types.ts:723](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L723)_ +_Defined in [types.ts:723](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L723)_
@@ -1777,7 +1777,7 @@ _Defined in [types.ts:723](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ethRPCRateLimitExpiredRequests**: _number_ -_Defined in [types.ts:774](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L774)_ +_Defined in [types.ts:774](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L774)_ --- @@ -1785,7 +1785,7 @@ _Defined in [types.ts:774](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ethRPCRequestsSentInCurrentUTCDay**: _number_ -_Defined in [types.ts:773](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L773)_ +_Defined in [types.ts:773](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L773)_ --- @@ -1793,7 +1793,7 @@ _Defined in [types.ts:773](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ethereumChainID**: _number_ -_Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L765)_ +_Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L765)_ --- @@ -1801,7 +1801,7 @@ _Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **latestBlock**? : _[LatestBlock](#interface-latestblock)_ -_Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L766)_ +_Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L766)_ --- @@ -1809,7 +1809,7 @@ _Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **maxExpirationTime**: _BigNumber_ -_Defined in [types.ts:771](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L771)_ +_Defined in [types.ts:771](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L771)_ --- @@ -1817,7 +1817,7 @@ _Defined in [types.ts:771](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **numOrders**: _number_ -_Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L768)_ +_Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L768)_ --- @@ -1825,7 +1825,7 @@ _Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **numOrdersIncludingRemoved**: _number_ -_Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L769)_ +_Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L769)_ --- @@ -1833,7 +1833,7 @@ _Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **numPeers**: _number_ -_Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L767)_ +_Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L767)_ --- @@ -1841,7 +1841,7 @@ _Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **numPinnedOrders**: _number_ -_Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L770)_ +_Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L770)_ --- @@ -1849,7 +1849,7 @@ _Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **peerID**: _string_ -_Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L764)_ +_Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L764)_ --- @@ -1857,7 +1857,7 @@ _Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **pubSubTopic**: _string_ -_Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L761)_ +_Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L761)_ --- @@ -1865,7 +1865,7 @@ _Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **rendezvous**: _string_ -_Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L762)_ +_Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L762)_ --- @@ -1873,7 +1873,7 @@ _Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **secondaryRendezvous**: _string[]_ -_Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L763)_ +_Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L763)_ --- @@ -1881,7 +1881,7 @@ _Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **startOfCurrentUTCDay**: _Date_ -_Defined in [types.ts:772](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L772)_ +_Defined in [types.ts:772](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L772)_ --- @@ -1889,7 +1889,7 @@ _Defined in [types.ts:772](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **version**: _string_ -_Defined in [types.ts:760](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L760)_ +_Defined in [types.ts:760](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L760)_
@@ -1907,7 +1907,7 @@ Indicates which orders where accepted, which were rejected, and why. • **accepted**: _[AcceptedOrderInfo](#interface-acceptedorderinfo)[]_ -_Defined in [types.ts:684](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L684)_ +_Defined in [types.ts:684](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L684)_ --- @@ -1915,7 +1915,7 @@ _Defined in [types.ts:684](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **rejected**: _[RejectedOrderInfo](#interface-rejectedorderinfo)[]_ -_Defined in [types.ts:685](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L685)_ +_Defined in [types.ts:685](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L685)_
@@ -1931,7 +1931,7 @@ _Defined in [types.ts:685](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **owner**: _string_ -_Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L489)_ +_Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L489)_ --- @@ -1939,7 +1939,7 @@ _Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **value**: _BigNumber_ -_Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L490)_ +_Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L490)_
@@ -1955,7 +1955,7 @@ _Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **owner**: _string_ -_Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L478)_ +_Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L478)_ --- @@ -1963,7 +1963,7 @@ _Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **value**: _BigNumber_ -_Defined in [types.ts:479](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L479)_ +_Defined in [types.ts:479](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L479)_
@@ -1973,7 +1973,7 @@ _Defined in [types.ts:479](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa ▸ **loadMeshStreamingWithURLAsync**(`url`: `string`): _Promise‹`void`›_ -_Defined in [index.ts:7](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/index.ts#L7)_ +_Defined in [index.ts:7](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/index.ts#L7)_ Loads the Wasm module that is provided by fetching a url. @@ -1989,7 +1989,7 @@ Loads the Wasm module that is provided by fetching a url. ▸ **loadMeshStreamingAsync**(`response`: `Response | Promise`): _Promise‹`void`›_ -_Defined in [index.ts:15](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/index.ts#L15)_ +_Defined in [index.ts:15](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/index.ts#L15)_ Loads the Wasm module that is provided by a response. diff --git a/docs/browser-bindings/browser/README.md b/docs/browser-bindings/browser/README.md index d2fcb2f8d..5fb4f7b15 100644 --- a/docs/browser-bindings/browser/README.md +++ b/docs/browser-bindings/browser/README.md @@ -1,4 +1,4 @@ -# @0x/mesh-browser - v11.0.3 +# @0x/mesh-browser - v11.1.0 ## @0x/mesh-browser diff --git a/docs/browser-bindings/browser/reference.md b/docs/browser-bindings/browser/reference.md index ccca84e89..6024cf55d 100644 --- a/docs/browser-bindings/browser/reference.md +++ b/docs/browser-bindings/browser/reference.md @@ -13,7 +13,7 @@ sending orders through the 0x Mesh network. \+ **new Mesh**(`config`: [Config](#interface-config)): _[Mesh](#class-mesh)_ -_Defined in [mesh.ts:132](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/mesh.ts#L132)_ +_Defined in [mesh.ts:132](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/mesh.ts#L132)_ Instantiates a new Mesh instance. @@ -33,7 +33,7 @@ An instance of Mesh • **wrapper**? : _MeshWrapper_ -_Defined in [mesh.ts:129](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/mesh.ts#L129)_ +_Defined in [mesh.ts:129](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/mesh.ts#L129)_ ### Methods @@ -41,7 +41,7 @@ _Defined in [mesh.ts:129](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac ▸ **addOrdersAsync**(`orders`: SignedOrder[], `pinned`: boolean): _Promise‹[ValidationResults](#interface-validationresults)›_ -_Defined in [mesh.ts:269](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/mesh.ts#L269)_ +_Defined in [mesh.ts:269](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/mesh.ts#L269)_ Validates and adds the given orders to Mesh. If an order is successfully added, Mesh will share it with any peers in the network and start @@ -68,7 +68,7 @@ were accepted and which were rejected. ▸ **getOrdersAsync**(`perPage`: number): _Promise‹[GetOrdersResponse](#interface-getordersresponse)›_ -_Defined in [mesh.ts:207](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/mesh.ts#L207)_ +_Defined in [mesh.ts:207](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/mesh.ts#L207)_ Get all 0x signed orders currently stored in the Mesh node @@ -88,7 +88,7 @@ the snapshotID, snapshotTimestamp and all orders, their hashes and fillableTaker ▸ **getOrdersForPageAsync**(`perPage`: number, `minOrderHash?`: undefined | string): _Promise‹[GetOrdersResponse](#interface-getordersresponse)›_ -_Defined in [mesh.ts:240](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/mesh.ts#L240)_ +_Defined in [mesh.ts:240](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/mesh.ts#L240)_ Get page of 0x signed orders stored on the Mesh node at the specified snapshot @@ -109,7 +109,7 @@ Up to perPage orders with hash greater than minOrderHash, including order hashes ▸ **getStatsAsync**(): _Promise‹[Stats](#interface-stats)›_ -_Defined in [mesh.ts:190](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/mesh.ts#L190)_ +_Defined in [mesh.ts:190](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/mesh.ts#L190)_ Returns various stats about Mesh, including the total number of orders and the number of peers Mesh is connected to. @@ -122,7 +122,7 @@ and the number of peers Mesh is connected to. ▸ **onError**(`handler`: function): _void_ -_Defined in [mesh.ts:152](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/mesh.ts#L152)_ +_Defined in [mesh.ts:152](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/mesh.ts#L152)_ Registers a handler which will be called in the event of a critical error. Note that the handler will not be called for non-critical errors. @@ -151,7 +151,7 @@ The handler to be called. ▸ **onOrderEvents**(`handler`: function): _void_ -_Defined in [mesh.ts:165](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/mesh.ts#L165)_ +_Defined in [mesh.ts:165](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/mesh.ts#L165)_ Registers a handler which will be called for any incoming order events. Order events are fired whenver an order is added, canceled, expired, or @@ -180,7 +180,7 @@ The handler to be called. ▸ **startAsync**(): _Promise‹void›_ -_Defined in [mesh.ts:174](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/mesh.ts#L174)_ +_Defined in [mesh.ts:174](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/mesh.ts#L174)_ Starts the Mesh node in the background. Mesh will automatically find peers in the network and begin receiving orders from them. @@ -197,7 +197,7 @@ peers in the network and begin receiving orders from them. • **ERC1155ApprovalForAllEvent**: = "ERC1155ApprovalForAllEvent" -_Defined in [types.ts:505](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L505)_ +_Defined in [types.ts:505](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L505)_ --- @@ -205,7 +205,7 @@ _Defined in [types.ts:505](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ERC1155TransferBatchEvent**: = "ERC1155TransferBatchEvent" -_Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L507)_ +_Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L507)_ --- @@ -213,7 +213,7 @@ _Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ERC1155TransferSingleEvent**: = "ERC1155TransferSingleEvent" -_Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L506)_ +_Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L506)_ --- @@ -221,7 +221,7 @@ _Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ERC20ApprovalEvent**: = "ERC20ApprovalEvent" -_Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L501)_ +_Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L501)_ --- @@ -229,7 +229,7 @@ _Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ERC20TransferEvent**: = "ERC20TransferEvent" -_Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L500)_ +_Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L500)_ --- @@ -237,7 +237,7 @@ _Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ERC721ApprovalEvent**: = "ERC721ApprovalEvent" -_Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L503)_ +_Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L503)_ --- @@ -245,7 +245,7 @@ _Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ERC721ApprovalForAllEvent**: = "ERC721ApprovalForAllEvent" -_Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L504)_ +_Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L504)_ --- @@ -253,7 +253,7 @@ _Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ERC721TransferEvent**: = "ERC721TransferEvent" -_Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L502)_ +_Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L502)_ --- @@ -261,7 +261,7 @@ _Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ExchangeCancelEvent**: = "ExchangeCancelEvent" -_Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L509)_ +_Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L509)_ --- @@ -269,7 +269,7 @@ _Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ExchangeCancelUpToEvent**: = "ExchangeCancelUpToEvent" -_Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L510)_ +_Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L510)_ --- @@ -277,7 +277,7 @@ _Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ExchangeFillEvent**: = "ExchangeFillEvent" -_Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L508)_ +_Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L508)_ --- @@ -285,7 +285,7 @@ _Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **WethDepositEvent**: = "WethDepositEvent" -_Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L511)_ +_Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L511)_ --- @@ -293,7 +293,7 @@ _Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **WethWithdrawalEvent**: = "WethWithdrawalEvent" -_Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L512)_ +_Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L512)_
@@ -305,7 +305,7 @@ _Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Added**: = "ADDED" -_Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L575)_ +_Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L575)_ --- @@ -313,7 +313,7 @@ _Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Cancelled**: = "CANCELLED" -_Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L578)_ +_Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L578)_ --- @@ -321,7 +321,7 @@ _Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Expired**: = "EXPIRED" -_Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L579)_ +_Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L579)_ --- @@ -329,7 +329,7 @@ _Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **FillabilityIncreased**: = "FILLABILITY_INCREASED" -_Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L582)_ +_Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L582)_ --- @@ -337,7 +337,7 @@ _Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Filled**: = "FILLED" -_Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L576)_ +_Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L576)_ --- @@ -345,7 +345,7 @@ _Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **FullyFilled**: = "FULLY_FILLED" -_Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L577)_ +_Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L577)_ --- @@ -353,7 +353,7 @@ _Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Invalid**: = "INVALID" -_Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L574)_ +_Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L574)_ --- @@ -361,7 +361,7 @@ _Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **StoppedWatching**: = "STOPPED_WATCHING" -_Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L583)_ +_Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L583)_ --- @@ -369,7 +369,7 @@ _Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Unexpired**: = "UNEXPIRED" -_Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L580)_ +_Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L580)_ --- @@ -377,7 +377,7 @@ _Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Unfunded**: = "UNFUNDED" -_Defined in [types.ts:581](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L581)_ +_Defined in [types.ts:581](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L581)_
@@ -391,7 +391,7 @@ A set of categories for rejected orders. • **MeshError**: = "MESH_ERROR" -_Defined in [types.ts:714](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L714)_ +_Defined in [types.ts:714](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L714)_ --- @@ -399,7 +399,7 @@ _Defined in [types.ts:714](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **MeshValidation**: = "MESH_VALIDATION" -_Defined in [types.ts:715](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L715)_ +_Defined in [types.ts:715](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L715)_ --- @@ -407,7 +407,7 @@ _Defined in [types.ts:715](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ZeroExValidation**: = "ZEROEX_VALIDATION" -_Defined in [types.ts:713](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L713)_ +_Defined in [types.ts:713](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L713)_
@@ -419,7 +419,7 @@ _Defined in [types.ts:713](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Debug**: = 5 -_Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L238)_ +_Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L238)_ --- @@ -427,7 +427,7 @@ _Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Error**: = 2 -_Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L235)_ +_Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L235)_ --- @@ -435,7 +435,7 @@ _Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Fatal**: = 1 -_Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L234)_ +_Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L234)_ --- @@ -443,7 +443,7 @@ _Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Info**: = 4 -_Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L237)_ +_Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L237)_ --- @@ -451,7 +451,7 @@ _Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Panic**: = 0 -_Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L233)_ +_Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L233)_ --- @@ -459,7 +459,7 @@ _Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Trace**: = 6 -_Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L239)_ +_Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L239)_ --- @@ -467,7 +467,7 @@ _Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **Warn**: = 3 -_Defined in [types.ts:236](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L236)_ +_Defined in [types.ts:236](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L236)_
@@ -485,7 +485,7 @@ Info for any orders that were accepted. • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [types.ts:694](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L694)_ +_Defined in [types.ts:694](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L694)_ --- @@ -493,7 +493,7 @@ _Defined in [types.ts:694](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **isNew**: _boolean_ -_Defined in [types.ts:695](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L695)_ +_Defined in [types.ts:695](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L695)_ --- @@ -501,7 +501,7 @@ _Defined in [types.ts:695](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **orderHash**: _string_ -_Defined in [types.ts:692](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L692)_ +_Defined in [types.ts:692](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L692)_ --- @@ -509,7 +509,7 @@ _Defined in [types.ts:692](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:693](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L693)_ +_Defined in [types.ts:693](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L693)_
@@ -527,7 +527,7 @@ A set of configuration options for Mesh. • **blockPollingIntervalSeconds**? : _undefined | number_ -_Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L144)_ +_Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L144)_ --- @@ -535,7 +535,7 @@ _Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **bootstrapList**? : _string[]_ -_Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L137)_ +_Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L137)_ --- @@ -543,7 +543,7 @@ _Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **customContractAddresses**? : _[ContractAddresses](#interface-contractaddresses)_ -_Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L188)_ +_Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L188)_ --- @@ -551,7 +551,7 @@ _Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **customOrderFilter**? : _[JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L213)_ +_Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L213)_ --- @@ -559,7 +559,7 @@ _Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **enableEthereumRPCRateLimiting**? : _undefined | false | true_ -_Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L161)_ +_Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L161)_ --- @@ -567,7 +567,7 @@ _Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ethereumChainID**: _number_ -_Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L129)_ +_Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L129)_ --- @@ -575,7 +575,7 @@ _Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ethereumRPCMaxContentLength**? : _undefined | number_ -_Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L153)_ +_Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L153)_ --- @@ -583,7 +583,7 @@ _Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ethereumRPCMaxRequestsPer24HrUTC**? : _undefined | number_ -_Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L166)_ +_Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L166)_ --- @@ -591,7 +591,7 @@ _Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ethereumRPCMaxRequestsPerSecond**? : _undefined | number_ -_Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L172)_ +_Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L172)_ --- @@ -599,7 +599,7 @@ _Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ethereumRPCURL**? : _undefined | string_ -_Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L126)_ +_Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L126)_ --- @@ -607,7 +607,7 @@ _Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **maxBytesPerSecond**? : _undefined | number_ -_Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L219)_ +_Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L219)_ --- @@ -615,7 +615,7 @@ _Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **maxOrdersInStorage**? : _undefined | number_ -_Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L193)_ +_Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L193)_ --- @@ -623,7 +623,7 @@ _Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **useBootstrapList**? : _undefined | false | true_ -_Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L132)_ +_Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L132)_ --- @@ -631,7 +631,7 @@ _Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **verbosity**? : _[Verbosity](#enumeration-verbosity)_ -_Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L123)_ +_Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L123)_ --- @@ -639,7 +639,7 @@ _Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **web3Provider**? : _SupportedProvider_ -_Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L216)_ +_Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L216)_
@@ -655,7 +655,7 @@ _Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **devUtils**: _string_ -_Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L224)_ +_Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L224)_ --- @@ -663,7 +663,7 @@ _Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **erc1155Proxy**: _string_ -_Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L227)_ +_Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L227)_ --- @@ -671,7 +671,7 @@ _Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **erc20Proxy**: _string_ -_Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L225)_ +_Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L225)_ --- @@ -679,7 +679,7 @@ _Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **erc721Proxy**: _string_ -_Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L226)_ +_Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L226)_ --- @@ -687,7 +687,7 @@ _Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **exchange**: _string_ -_Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L223)_ +_Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L223)_ --- @@ -695,7 +695,7 @@ _Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **weth9**? : _undefined | string_ -_Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L228)_ +_Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L228)_ --- @@ -703,7 +703,7 @@ _Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **zrxToken**? : _undefined | string_ -_Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L229)_ +_Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L229)_
@@ -719,7 +719,7 @@ _Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **address**: _string_ -_Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L553)_ +_Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L553)_ --- @@ -727,7 +727,7 @@ _Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **blockHash**: _string_ -_Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L548)_ +_Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L548)_ --- @@ -735,7 +735,7 @@ _Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **isRemoved**: _boolean_ -_Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L552)_ +_Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L552)_ --- @@ -743,7 +743,7 @@ _Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **kind**: _[ContractEventKind](#enumeration-contracteventkind)_ -_Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L554)_ +_Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L554)_ --- @@ -751,7 +751,7 @@ _Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **logIndex**: _number_ -_Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L551)_ +_Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L551)_ --- @@ -759,7 +759,7 @@ _Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **parameters**: _ContractEventParameters_ -_Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L555)_ +_Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L555)_ --- @@ -767,7 +767,7 @@ _Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **txHash**: _string_ -_Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L549)_ +_Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L549)_ --- @@ -775,7 +775,7 @@ _Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **txIndex**: _number_ -_Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L550)_ +_Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L550)_
@@ -791,7 +791,7 @@ _Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **approved**: _boolean_ -_Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L417)_ +_Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L417)_ --- @@ -799,7 +799,7 @@ _Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **operator**: _string_ -_Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L416)_ +_Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L416)_ --- @@ -807,7 +807,7 @@ _Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **owner**: _string_ -_Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L415)_ +_Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L415)_
@@ -823,7 +823,7 @@ _Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **from**: _string_ -_Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L399)_ +_Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L399)_ --- @@ -831,7 +831,7 @@ _Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ids**: _BigNumber[]_ -_Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L401)_ +_Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L401)_ --- @@ -839,7 +839,7 @@ _Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **operator**: _string_ -_Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L398)_ +_Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L398)_ --- @@ -847,7 +847,7 @@ _Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **to**: _string_ -_Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L400)_ +_Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L400)_ --- @@ -855,7 +855,7 @@ _Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **values**: _BigNumber[]_ -_Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L402)_ +_Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L402)_
@@ -871,7 +871,7 @@ _Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **from**: _string_ -_Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L382)_ +_Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L382)_ --- @@ -879,7 +879,7 @@ _Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **id**: _BigNumber_ -_Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L384)_ +_Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L384)_ --- @@ -887,7 +887,7 @@ _Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **operator**: _string_ -_Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L381)_ +_Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L381)_ --- @@ -895,7 +895,7 @@ _Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **to**: _string_ -_Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L383)_ +_Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L383)_ --- @@ -903,7 +903,7 @@ _Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **value**: _BigNumber_ -_Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L385)_ +_Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L385)_
@@ -919,7 +919,7 @@ _Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **owner**: _string_ -_Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L336)_ +_Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L336)_ --- @@ -927,7 +927,7 @@ _Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **spender**: _string_ -_Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L337)_ +_Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L337)_ --- @@ -935,7 +935,7 @@ _Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **value**: _BigNumber_ -_Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L338)_ +_Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L338)_
@@ -951,7 +951,7 @@ _Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **from**: _string_ -_Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L323)_ +_Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L323)_ --- @@ -959,7 +959,7 @@ _Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **to**: _string_ -_Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L324)_ +_Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L324)_ --- @@ -967,7 +967,7 @@ _Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **value**: _BigNumber_ -_Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L325)_ +_Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L325)_
@@ -983,7 +983,7 @@ _Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **approved**: _string_ -_Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L363)_ +_Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L363)_ --- @@ -991,7 +991,7 @@ _Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **owner**: _string_ -_Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L362)_ +_Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L362)_ --- @@ -999,7 +999,7 @@ _Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **tokenId**: _BigNumber_ -_Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L364)_ +_Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L364)_
@@ -1015,7 +1015,7 @@ _Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **approved**: _boolean_ -_Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L377)_ +_Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L377)_ --- @@ -1023,7 +1023,7 @@ _Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **operator**: _string_ -_Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L376)_ +_Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L376)_ --- @@ -1031,7 +1031,7 @@ _Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **owner**: _string_ -_Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L375)_ +_Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L375)_
@@ -1047,7 +1047,7 @@ _Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **from**: _string_ -_Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L349)_ +_Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L349)_ --- @@ -1055,7 +1055,7 @@ _Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **to**: _string_ -_Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L350)_ +_Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L350)_ --- @@ -1063,7 +1063,7 @@ _Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **tokenId**: _BigNumber_ -_Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L351)_ +_Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L351)_
@@ -1079,7 +1079,7 @@ _Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **feeRecipientAddress**: _string_ -_Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L458)_ +_Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L458)_ --- @@ -1087,7 +1087,7 @@ _Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **makerAddress**: _string_ -_Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L456)_ +_Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L456)_ --- @@ -1095,7 +1095,7 @@ _Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **makerAssetData**: _string_ -_Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L460)_ +_Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L460)_ --- @@ -1103,7 +1103,7 @@ _Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **orderHash**: _string_ -_Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L459)_ +_Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L459)_ --- @@ -1111,7 +1111,7 @@ _Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **senderAddress**: _string_ -_Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L457)_ +_Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L457)_ --- @@ -1119,7 +1119,7 @@ _Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **takerAssetData**: _string_ -_Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L461)_ +_Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L461)_
@@ -1135,7 +1135,7 @@ _Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **makerAddress**: _string_ -_Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L465)_ +_Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L465)_ --- @@ -1143,7 +1143,7 @@ _Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **orderEpoch**: _BigNumber_ -_Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L467)_ +_Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L467)_ --- @@ -1151,7 +1151,7 @@ _Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **orderSenderAddress**: _string_ -_Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L466)_ +_Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L466)_
@@ -1167,7 +1167,7 @@ _Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **feeRecipientAddress**: _string_ -_Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L424)_ +_Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L424)_ --- @@ -1175,7 +1175,7 @@ _Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **makerAddress**: _string_ -_Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L421)_ +_Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L421)_ --- @@ -1183,7 +1183,7 @@ _Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **makerAssetData**: _string_ -_Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L431)_ +_Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L431)_ --- @@ -1191,7 +1191,7 @@ _Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **makerAssetFilledAmount**: _BigNumber_ -_Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L425)_ +_Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L425)_ --- @@ -1199,7 +1199,7 @@ _Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **makerFeeAssetData**: _string_ -_Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L433)_ +_Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L433)_ --- @@ -1207,7 +1207,7 @@ _Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **makerFeePaid**: _BigNumber_ -_Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L427)_ +_Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L427)_ --- @@ -1215,7 +1215,7 @@ _Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **orderHash**: _string_ -_Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L430)_ +_Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L430)_ --- @@ -1223,7 +1223,7 @@ _Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **protocolFeePaid**: _BigNumber_ -_Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L429)_ +_Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L429)_ --- @@ -1231,7 +1231,7 @@ _Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **senderAddress**: _string_ -_Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L423)_ +_Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L423)_ --- @@ -1239,7 +1239,7 @@ _Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **takerAddress**: _string_ -_Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L422)_ +_Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L422)_ --- @@ -1247,7 +1247,7 @@ _Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **takerAssetData**: _string_ -_Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L432)_ +_Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L432)_ --- @@ -1255,7 +1255,7 @@ _Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **takerAssetFilledAmount**: _BigNumber_ -_Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L426)_ +_Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L426)_ --- @@ -1263,7 +1263,7 @@ _Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **takerFeeAssetData**: _string_ -_Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L434)_ +_Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L434)_ --- @@ -1271,7 +1271,7 @@ _Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **takerFeePaid**: _BigNumber_ -_Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L428)_ +_Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L428)_
@@ -1287,7 +1287,7 @@ _Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ordersInfos**: _[OrderInfo](#interface-orderinfo)[]_ -_Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L45)_ +_Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L45)_ --- @@ -1295,7 +1295,7 @@ _Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **timestamp**: _number_ -_Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L44)_ +_Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L44)_
@@ -1313,7 +1313,7 @@ An interface for JSON schema types, which are used for custom order filters. • **\$ref**? : _undefined | string_ -_Defined in [types.ts:67](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L67)_ +_Defined in [types.ts:67](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L67)_ --- @@ -1321,7 +1321,7 @@ _Defined in [types.ts:67](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **\$schema**? : _undefined | string_ -_Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L66)_ +_Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L66)_ --- @@ -1329,7 +1329,7 @@ _Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **additionalItems**? : _boolean | [JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L78)_ +_Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L78)_ --- @@ -1337,7 +1337,7 @@ _Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **additionalProperties**? : _boolean | [JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L86)_ +_Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L86)_ --- @@ -1345,7 +1345,7 @@ _Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **allOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L108)_ +_Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L108)_ --- @@ -1353,7 +1353,7 @@ _Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **anyOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L109)_ +_Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L109)_ --- @@ -1361,7 +1361,7 @@ _Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **const**? : _any_ -_Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L105)_ +_Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L105)_ --- @@ -1369,7 +1369,7 @@ _Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **definitions**? : _undefined | object_ -_Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L87)_ +_Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L87)_ --- @@ -1377,7 +1377,7 @@ _Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **dependencies**? : _undefined | object_ -_Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L96)_ +_Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L96)_ --- @@ -1385,7 +1385,7 @@ _Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **description**? : _undefined | string_ -_Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L69)_ +_Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L69)_ --- @@ -1393,7 +1393,7 @@ _Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **enum**? : _any[]_ -_Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L99)_ +_Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L99)_ --- @@ -1401,7 +1401,7 @@ _Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **exclusiveMaximum**? : _undefined | false | true_ -_Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L72)_ +_Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L72)_ --- @@ -1409,7 +1409,7 @@ _Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **exclusiveMinimum**? : _undefined | false | true_ -_Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L74)_ +_Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L74)_ --- @@ -1417,7 +1417,7 @@ _Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **format**? : _undefined | string_ -_Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L107)_ +_Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L107)_ --- @@ -1425,7 +1425,7 @@ _Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **id**? : _undefined | string_ -_Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L65)_ +_Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L65)_ --- @@ -1433,7 +1433,7 @@ _Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **items**? : _[JsonSchema](#interface-jsonschema) | [JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L79)_ +_Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L79)_ --- @@ -1441,7 +1441,7 @@ _Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **maxItems**? : _undefined | number_ -_Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L80)_ +_Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L80)_ --- @@ -1449,7 +1449,7 @@ _Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **maxLength**? : _undefined | number_ -_Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L75)_ +_Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L75)_ --- @@ -1457,7 +1457,7 @@ _Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **maxProperties**? : _undefined | number_ -_Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L83)_ +_Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L83)_ --- @@ -1465,7 +1465,7 @@ _Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **maximum**? : _undefined | number_ -_Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L71)_ +_Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L71)_ --- @@ -1473,7 +1473,7 @@ _Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **minItems**? : _undefined | number_ -_Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L81)_ +_Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L81)_ --- @@ -1481,7 +1481,7 @@ _Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **minLength**? : _undefined | number_ -_Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L76)_ +_Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L76)_ --- @@ -1489,7 +1489,7 @@ _Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **minProperties**? : _undefined | number_ -_Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L84)_ +_Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L84)_ --- @@ -1497,7 +1497,7 @@ _Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **minimum**? : _undefined | number_ -_Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L73)_ +_Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L73)_ --- @@ -1505,7 +1505,7 @@ _Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **multipleOf**? : _undefined | number_ -_Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L70)_ +_Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L70)_ --- @@ -1513,7 +1513,7 @@ _Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **not**? : _[JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L111)_ +_Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L111)_ --- @@ -1521,7 +1521,7 @@ _Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **oneOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L110)_ +_Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L110)_ --- @@ -1529,7 +1529,7 @@ _Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **pattern**? : _string | RegExp_ -_Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L77)_ +_Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L77)_ --- @@ -1537,7 +1537,7 @@ _Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **patternProperties**? : _undefined | object_ -_Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L93)_ +_Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L93)_ --- @@ -1545,7 +1545,7 @@ _Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **properties**? : _undefined | object_ -_Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L90)_ +_Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L90)_ --- @@ -1553,7 +1553,7 @@ _Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **required**? : _string[]_ -_Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L85)_ +_Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L85)_ --- @@ -1561,7 +1561,7 @@ _Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **title**? : _undefined | string_ -_Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L68)_ +_Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L68)_ --- @@ -1569,7 +1569,7 @@ _Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **type**? : _string | string[]_ -_Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L106)_ +_Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L106)_ --- @@ -1577,7 +1577,7 @@ _Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **uniqueItems**? : _undefined | false | true_ -_Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L82)_ +_Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L82)_
@@ -1593,7 +1593,7 @@ _Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **hash**: _string_ -_Defined in [types.ts:734](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L734)_ +_Defined in [types.ts:734](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L734)_ --- @@ -1601,7 +1601,7 @@ _Defined in [types.ts:734](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **number**: _BigNumber_ -_Defined in [types.ts:733](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L733)_ +_Defined in [types.ts:733](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L733)_
@@ -1620,7 +1620,7 @@ or filled. • **contractEvents**: _[ContractEvent](#interface-contractevent)[]_ -_Defined in [types.ts:606](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L606)_ +_Defined in [types.ts:606](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L606)_ --- @@ -1628,7 +1628,7 @@ _Defined in [types.ts:606](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **endState**: _[OrderEventEndState](#enumeration-ordereventendstate)_ -_Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L604)_ +_Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L604)_ --- @@ -1636,7 +1636,7 @@ _Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L605)_ +_Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L605)_ --- @@ -1644,7 +1644,7 @@ _Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **orderHash**: _string_ -_Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L602)_ +_Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L602)_ --- @@ -1652,7 +1652,7 @@ _Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L603)_ +_Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L603)_ --- @@ -1660,7 +1660,7 @@ _Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **timestampMs**: _number_ -_Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L601)_ +_Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L601)_
@@ -1676,7 +1676,7 @@ _Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L58)_ +_Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L58)_ --- @@ -1684,7 +1684,7 @@ _Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **orderHash**: _string_ -_Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L56)_ +_Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L56)_ --- @@ -1692,7 +1692,7 @@ _Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pac • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L57)_ +_Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L57)_
@@ -1711,7 +1711,7 @@ rejected. • **kind**: _[RejectedOrderKind](#enumeration-rejectedorderkind)_ -_Defined in [types.ts:705](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L705)_ +_Defined in [types.ts:705](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L705)_ --- @@ -1719,7 +1719,7 @@ _Defined in [types.ts:705](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **orderHash**: _string_ -_Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L703)_ +_Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L703)_ --- @@ -1727,7 +1727,7 @@ _Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L704)_ +_Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L704)_ --- @@ -1735,7 +1735,7 @@ _Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **status**: _[RejectedOrderStatus](#interface-rejectedorderstatus)_ -_Defined in [types.ts:706](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L706)_ +_Defined in [types.ts:706](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L706)_
@@ -1753,7 +1753,7 @@ Provides more information about why an order was rejected. • **code**: _string_ -_Defined in [types.ts:722](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L722)_ +_Defined in [types.ts:722](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L722)_ --- @@ -1761,7 +1761,7 @@ _Defined in [types.ts:722](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **message**: _string_ -_Defined in [types.ts:723](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L723)_ +_Defined in [types.ts:723](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L723)_
@@ -1777,7 +1777,7 @@ _Defined in [types.ts:723](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ethRPCRateLimitExpiredRequests**: _number_ -_Defined in [types.ts:774](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L774)_ +_Defined in [types.ts:774](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L774)_ --- @@ -1785,7 +1785,7 @@ _Defined in [types.ts:774](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ethRPCRequestsSentInCurrentUTCDay**: _number_ -_Defined in [types.ts:773](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L773)_ +_Defined in [types.ts:773](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L773)_ --- @@ -1793,7 +1793,7 @@ _Defined in [types.ts:773](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **ethereumChainID**: _number_ -_Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L765)_ +_Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L765)_ --- @@ -1801,7 +1801,7 @@ _Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **latestBlock**? : _[LatestBlock](#interface-latestblock)_ -_Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L766)_ +_Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L766)_ --- @@ -1809,7 +1809,7 @@ _Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **maxExpirationTime**: _BigNumber_ -_Defined in [types.ts:771](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L771)_ +_Defined in [types.ts:771](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L771)_ --- @@ -1817,7 +1817,7 @@ _Defined in [types.ts:771](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **numOrders**: _number_ -_Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L768)_ +_Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L768)_ --- @@ -1825,7 +1825,7 @@ _Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **numOrdersIncludingRemoved**: _number_ -_Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L769)_ +_Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L769)_ --- @@ -1833,7 +1833,7 @@ _Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **numPeers**: _number_ -_Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L767)_ +_Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L767)_ --- @@ -1841,7 +1841,7 @@ _Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **numPinnedOrders**: _number_ -_Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L770)_ +_Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L770)_ --- @@ -1849,7 +1849,7 @@ _Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **peerID**: _string_ -_Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L764)_ +_Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L764)_ --- @@ -1857,7 +1857,7 @@ _Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **pubSubTopic**: _string_ -_Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L761)_ +_Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L761)_ --- @@ -1865,7 +1865,7 @@ _Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **rendezvous**: _string_ -_Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L762)_ +_Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L762)_ --- @@ -1873,7 +1873,7 @@ _Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **secondaryRendezvous**: _string[]_ -_Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L763)_ +_Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L763)_ --- @@ -1881,7 +1881,7 @@ _Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **startOfCurrentUTCDay**: _Date_ -_Defined in [types.ts:772](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L772)_ +_Defined in [types.ts:772](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L772)_ --- @@ -1889,7 +1889,7 @@ _Defined in [types.ts:772](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **version**: _string_ -_Defined in [types.ts:760](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L760)_ +_Defined in [types.ts:760](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L760)_
@@ -1907,7 +1907,7 @@ Indicates which orders where accepted, which were rejected, and why. • **accepted**: _[AcceptedOrderInfo](#interface-acceptedorderinfo)[]_ -_Defined in [types.ts:684](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L684)_ +_Defined in [types.ts:684](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L684)_ --- @@ -1915,7 +1915,7 @@ _Defined in [types.ts:684](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **rejected**: _[RejectedOrderInfo](#interface-rejectedorderinfo)[]_ -_Defined in [types.ts:685](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L685)_ +_Defined in [types.ts:685](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L685)_
@@ -1931,7 +1931,7 @@ _Defined in [types.ts:685](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **owner**: _string_ -_Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L489)_ +_Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L489)_ --- @@ -1939,7 +1939,7 @@ _Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **value**: _BigNumber_ -_Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L490)_ +_Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L490)_
@@ -1955,7 +1955,7 @@ _Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **owner**: _string_ -_Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L478)_ +_Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L478)_ --- @@ -1963,6 +1963,6 @@ _Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/2a7e4503/pa • **value**: _BigNumber_ -_Defined in [types.ts:479](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-browser-lite/src/types.ts#L479)_ +_Defined in [types.ts:479](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-browser-lite/src/types.ts#L479)_
diff --git a/docs/deployment.md b/docs/deployment.md index 65b53f95e..3968af884 100644 --- a/docs/deployment.md +++ b/docs/deployment.md @@ -1,4 +1,4 @@ -[![Version](https://img.shields.io/badge/version-11.0.3-orange.svg)](https://github.com/0xProject/0x-mesh/releases) +[![Version](https://img.shields.io/badge/version-11.1.0-orange.svg)](https://github.com/0xProject/0x-mesh/releases) # 0x Mesh Deployment Guide @@ -214,5 +214,12 @@ type standaloneConfig struct { // See https://github.com/graphql/graphiql for more information. By default, GraphiQL // is disabled. EnableGraphQLPlayground bool `envvar:"ENABLE_GRAPHQL_PLAYGROUND" default:"false"` + // EnablePrometheusMoniitoring determines whether or not to enable + // prometheus monitoring. The metrics are accessed by scraping + // {PrometheusMonitoringServerAddr}/metrics, prometheus is disabled. + EnablePrometheusMonitoring bool `envvar:"ENABLE_PROMETHEUS_MONITORING" default:"false"` + // PrometheusMonitoringServerAddr is the interface and port to use for + // prometheus server metrics endpoint. + PrometheusMonitoringServerAddr string `envvar:"PROMETHEUS_SERVER_ADDR" default:"0.0.0.0:8080"` } ``` diff --git a/docs/deployment_with_telemetry.md b/docs/deployment_with_telemetry.md index 2571ded78..c772a5f01 100644 --- a/docs/deployment_with_telemetry.md +++ b/docs/deployment_with_telemetry.md @@ -1,4 +1,4 @@ -[![Version](https://img.shields.io/badge/version-11.0.3-orange.svg)](https://github.com/0xProject/0x-mesh/releases) +[![Version](https://img.shields.io/badge/version-11.1.0-orange.svg)](https://github.com/0xProject/0x-mesh/releases) ## Deploying a Telemetry-Enabled Mesh Node diff --git a/docs/graphql-client/README.md b/docs/graphql-client/README.md index 390a0fda6..9be75b369 100644 --- a/docs/graphql-client/README.md +++ b/docs/graphql-client/README.md @@ -1,4 +1,4 @@ -# @0x/mesh-graphql-client - v11.0.3 +# @0x/mesh-graphql-client - v11.1.0 ## @0x/mesh-graphql-client diff --git a/docs/graphql-client/reference.md b/docs/graphql-client/reference.md index f7b17731a..d101968f2 100644 --- a/docs/graphql-client/reference.md +++ b/docs/graphql-client/reference.md @@ -14,7 +14,7 @@ _Overrides void_ -_Defined in [packages/mesh-graphql-client/src/browser_link.ts:8](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/browser_link.ts#L8)_ +_Defined in [packages/mesh-graphql-client/src/browser_link.ts:8](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/browser_link.ts#L8)_ **Parameters:** @@ -48,7 +48,7 @@ Defined in node_modules/@apollo/client/link/core/ApolloLink.d.ts:12 _Overrides void_ -_Defined in [packages/mesh-graphql-client/src/browser_link.ts:13](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/browser_link.ts#L13)_ +_Defined in [packages/mesh-graphql-client/src/browser_link.ts:13](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/browser_link.ts#L13)_ **Parameters:** @@ -200,7 +200,7 @@ Defined in node_modules/@apollo/client/link/core/ApolloLink.d.ts:7 \+ **new MeshGraphQLClient**(`linkConfig`: [LinkConfig](#interface-linkconfig)): _[MeshGraphQLClient](#class-meshgraphqlclient)_ -_Defined in [packages/mesh-graphql-client/src/index.ts:96](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/index.ts#L96)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:96](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/index.ts#L96)_ **Parameters:** @@ -216,7 +216,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:96](https://github.com/0x ▸ **addOrdersAsync**(`orders`: SignedOrder[], `pinned`: boolean, `opts?`: [AddOrdersOpts](#interface-addordersopts)): _Promise‹[AddOrdersResults](#interface-addordersresults)‹[OrderWithMetadata](#interface-orderwithmetadata), SignedOrder››_ -_Defined in [packages/mesh-graphql-client/src/index.ts:193](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/index.ts#L193)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:194](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/index.ts#L194)_ **Parameters:** @@ -234,7 +234,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:193](https://github.com/0 ▸ **addOrdersV4Async**(`orders`: [SignedOrderV4](#signedorderv4)››\* -_Defined in [packages/mesh-graphql-client/src/index.ts:222](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/index.ts#L222)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:223](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/index.ts#L223)_ **Parameters:** @@ -252,7 +252,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:222](https://github.com/0 ▸ **findOrdersAsync**(`query`: [OrderQuery](#interface-orderquery)): _Promise‹[OrderWithMetadata](#interface-orderwithmetadata)[]›_ -_Defined in [packages/mesh-graphql-client/src/index.ts:285](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/index.ts#L285)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:288](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/index.ts#L288)_ **Parameters:** @@ -268,7 +268,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:285](https://github.com/0 ▸ **findOrdersV4Async**(`query`: [OrderQuery](#interface-orderquery)): _Promise‹[OrderWithMetadataV4](#interface-orderwithmetadatav4)[]›_ -_Defined in [packages/mesh-graphql-client/src/index.ts:302](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/index.ts#L302)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:306](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/index.ts#L306)_ **Parameters:** @@ -284,7 +284,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:302](https://github.com/0 ▸ **getOrderAsync**(`hash`: string): _Promise‹[OrderWithMetadata](#interface-orderwithmetadata) | null›_ -_Defined in [packages/mesh-graphql-client/src/index.ts:253](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/index.ts#L253)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:254](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/index.ts#L254)_ **Parameters:** @@ -300,7 +300,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:253](https://github.com/0 ▸ **getOrderV4Async**(`hash`: string): _Promise‹[OrderWithMetadataV4](#interface-orderwithmetadatav4) | null›_ -_Defined in [packages/mesh-graphql-client/src/index.ts:269](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/index.ts#L269)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:271](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/index.ts#L271)_ **Parameters:** @@ -316,7 +316,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:269](https://github.com/0 ▸ **getStatsAsync**(): _Promise‹[Stats](#interface-stats)›_ -_Defined in [packages/mesh-graphql-client/src/index.ts:182](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/index.ts#L182)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:182](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/index.ts#L182)_ **Returns:** _Promise‹[Stats](#interface-stats)›_ @@ -326,7 +326,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:182](https://github.com/0 ▸ **onOrderEvents**(): _Observable‹[OrderEvent](#interface-orderevent)[]›_ -_Defined in [packages/mesh-graphql-client/src/index.ts:323](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/index.ts#L323)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:328](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/index.ts#L328)_ **Returns:** _Observable‹[OrderEvent](#interface-orderevent)[]›_ @@ -336,7 +336,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:323](https://github.com/0 ▸ **onReconnected**(`cb`: function): _void_ -_Defined in [packages/mesh-graphql-client/src/index.ts:319](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/index.ts#L319)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:324](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/index.ts#L324)_ **Parameters:** @@ -352,7 +352,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:319](https://github.com/0 ▸ **rawQueryAsync**<**T**, **TVariables**>(`options`: QueryOptions‹TVariables›): _Promise‹ApolloQueryResult‹T››_ -_Defined in [packages/mesh-graphql-client/src/index.ts:370](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/index.ts#L370)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:375](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/index.ts#L375)_ **Type parameters:** @@ -378,7 +378,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:370](https://github.com/0 • **ERC1155ApprovalForAllEvent**: = "ERC1155ApprovalForAllEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:176](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L176)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:176](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L176)_ --- @@ -386,7 +386,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:176](https://github.com/0 • **ERC1155TransferBatchEvent**: = "ERC1155TransferBatchEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:178](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L178)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:178](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L178)_ --- @@ -394,7 +394,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:178](https://github.com/0 • **ERC1155TransferSingleEvent**: = "ERC1155TransferSingleEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:177](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L177)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:177](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L177)_ --- @@ -402,7 +402,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:177](https://github.com/0 • **ERC20ApprovalEvent**: = "ERC20ApprovalEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:172](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L172)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:172](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L172)_ --- @@ -410,7 +410,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:172](https://github.com/0 • **ERC20TransferEvent**: = "ERC20TransferEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:171](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L171)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:171](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L171)_ --- @@ -418,7 +418,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:171](https://github.com/0 • **ERC721ApprovalEvent**: = "ERC721ApprovalEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:174](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L174)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:174](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L174)_ --- @@ -426,7 +426,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:174](https://github.com/0 • **ERC721ApprovalForAllEvent**: = "ERC721ApprovalForAllEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:175](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L175)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:175](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L175)_ --- @@ -434,7 +434,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:175](https://github.com/0 • **ERC721TransferEvent**: = "ERC721TransferEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:173](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L173)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:173](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L173)_ --- @@ -442,7 +442,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:173](https://github.com/0 • **ExchangeCancelEvent**: = "ExchangeCancelEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:180](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L180)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:180](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L180)_ --- @@ -450,7 +450,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:180](https://github.com/0 • **ExchangeCancelUpToEvent**: = "ExchangeCancelUpToEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:181](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L181)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:181](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L181)_ --- @@ -458,7 +458,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:181](https://github.com/0 • **ExchangeFillEvent**: = "ExchangeFillEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:179](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L179)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:179](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L179)_ --- @@ -466,7 +466,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:179](https://github.com/0 • **WethDepositEvent**: = "WethDepositEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:182](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L182)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:182](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L182)_ --- @@ -474,7 +474,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:182](https://github.com/0 • **WethWithdrawalEvent**: = "WethWithdrawalEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:183](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L183)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:183](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L183)_
@@ -486,7 +486,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:183](https://github.com/0 • **Equal**: = "EQUAL" -_Defined in [packages/mesh-graphql-client/src/types.ts:222](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L222)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:222](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L222)_ --- @@ -494,7 +494,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:222](https://github.com/0 • **Greater**: = "GREATER" -_Defined in [packages/mesh-graphql-client/src/types.ts:224](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L224)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:224](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L224)_ --- @@ -502,7 +502,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:224](https://github.com/0 • **GreaterOrEqual**: = "GREATER_OR_EQUAL" -_Defined in [packages/mesh-graphql-client/src/types.ts:225](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L225)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:225](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L225)_ --- @@ -510,7 +510,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:225](https://github.com/0 • **Less**: = "LESS" -_Defined in [packages/mesh-graphql-client/src/types.ts:226](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L226)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:226](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L226)_ --- @@ -518,7 +518,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:226](https://github.com/0 • **LessOrEqual**: = "LESS_OR_EQUAL" -_Defined in [packages/mesh-graphql-client/src/types.ts:227](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L227)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:227](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L227)_ --- @@ -526,7 +526,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:227](https://github.com/0 • **NotEqual**: = "NOT_EQUAL" -_Defined in [packages/mesh-graphql-client/src/types.ts:223](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L223)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:223](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L223)_
@@ -538,7 +538,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:223](https://github.com/0 • **Added**: = "ADDED" -_Defined in [packages/mesh-graphql-client/src/types.ts:189](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L189)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:189](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L189)_ --- @@ -546,7 +546,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:189](https://github.com/0 • **Cancelled**: = "CANCELLED" -_Defined in [packages/mesh-graphql-client/src/types.ts:195](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L195)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:195](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L195)_ --- @@ -554,7 +554,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:195](https://github.com/0 • **Expired**: = "EXPIRED" -_Defined in [packages/mesh-graphql-client/src/types.ts:197](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L197)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:197](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L197)_ --- @@ -562,7 +562,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:197](https://github.com/0 • **FillabilityIncreased**: = "FILLABILITY_INCREASED" -_Defined in [packages/mesh-graphql-client/src/types.ts:206](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L206)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:206](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L206)_ --- @@ -570,7 +570,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:206](https://github.com/0 • **Filled**: = "FILLED" -_Defined in [packages/mesh-graphql-client/src/types.ts:191](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L191)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:191](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L191)_ --- @@ -578,7 +578,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:191](https://github.com/0 • **FullyFilled**: = "FULLY_FILLED" -_Defined in [packages/mesh-graphql-client/src/types.ts:193](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L193)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:193](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L193)_ --- @@ -586,7 +586,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:193](https://github.com/0 • **Invalid**: = "INVALID" -_Defined in [packages/mesh-graphql-client/src/types.ts:199](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L199)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:199](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L199)_ --- @@ -594,7 +594,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:199](https://github.com/0 • **StoppedWatching**: = "STOPPED_WATCHING" -_Defined in [packages/mesh-graphql-client/src/types.ts:211](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L211)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:211](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L211)_ --- @@ -602,7 +602,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:211](https://github.com/0 • **Unexpired**: = "UNEXPIRED" -_Defined in [packages/mesh-graphql-client/src/types.ts:201](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L201)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:201](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L201)_ --- @@ -610,7 +610,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:201](https://github.com/0 • **Unfunded**: = "UNFUNDED" -_Defined in [packages/mesh-graphql-client/src/types.ts:203](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L203)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:203](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L203)_
@@ -622,7 +622,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:203](https://github.com/0 • **DatabaseFullOfOrders**: = "DATABASE_FULL_OF_ORDERS" -_Defined in [packages/mesh-graphql-client/src/types.ts:146](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L146)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:146](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L146)_ --- @@ -630,7 +630,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:146](https://github.com/0 • **EthRpcRequestFailed**: = "ETH_RPC_REQUEST_FAILED" -_Defined in [packages/mesh-graphql-client/src/types.ts:127](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L127)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:127](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L127)_ --- @@ -638,7 +638,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:127](https://github.com/0 • **IncorrectExchangeAddress**: = "INCORRECT_EXCHANGE_ADDRESS" -_Defined in [packages/mesh-graphql-client/src/types.ts:144](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L144)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:144](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L144)_ --- @@ -646,7 +646,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:144](https://github.com/0 • **InternalError**: = "INTERNAL_ERROR" -_Defined in [packages/mesh-graphql-client/src/types.ts:140](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L140)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:140](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L140)_ --- @@ -654,7 +654,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:140](https://github.com/0 • **MaxOrderSizeExceeded**: = "MAX_ORDER_SIZE_EXCEEDED" -_Defined in [packages/mesh-graphql-client/src/types.ts:141](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L141)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:141](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L141)_ --- @@ -662,7 +662,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:141](https://github.com/0 • **OrderAlreadyStoredAndUnfillable**: = "ORDER_ALREADY_STORED_AND_UNFILLABLE" -_Defined in [packages/mesh-graphql-client/src/types.ts:142](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L142)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:142](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L142)_ --- @@ -670,7 +670,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:142](https://github.com/0 • **OrderCancelled**: = "ORDER_CANCELLED" -_Defined in [packages/mesh-graphql-client/src/types.ts:132](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L132)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:132](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L132)_ --- @@ -678,7 +678,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:132](https://github.com/0 • **OrderExpired**: = "ORDER_EXPIRED" -_Defined in [packages/mesh-graphql-client/src/types.ts:130](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L130)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:130](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L130)_ --- @@ -686,7 +686,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:130](https://github.com/0 • **OrderForIncorrectChain**: = "ORDER_FOR_INCORRECT_CHAIN" -_Defined in [packages/mesh-graphql-client/src/types.ts:143](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L143)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:143](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L143)_ --- @@ -694,7 +694,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:143](https://github.com/0 • **OrderFullyFilled**: = "ORDER_FULLY_FILLED" -_Defined in [packages/mesh-graphql-client/src/types.ts:131](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L131)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:131](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L131)_ --- @@ -702,7 +702,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:131](https://github.com/0 • **OrderHasInvalidMakerAssetAmount**: = "ORDER_HAS_INVALID_MAKER_ASSET_AMOUNT" -_Defined in [packages/mesh-graphql-client/src/types.ts:128](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L128)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:128](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L128)_ --- @@ -710,7 +710,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:128](https://github.com/0 • **OrderHasInvalidMakerAssetData**: = "ORDER_HAS_INVALID_MAKER_ASSET_DATA" -_Defined in [packages/mesh-graphql-client/src/types.ts:134](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L134)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:134](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L134)_ --- @@ -718,7 +718,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:134](https://github.com/0 • **OrderHasInvalidMakerFeeAssetData**: = "ORDER_HAS_INVALID_MAKER_FEE_ASSET_DATA" -_Defined in [packages/mesh-graphql-client/src/types.ts:135](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L135)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:135](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L135)_ --- @@ -726,7 +726,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:135](https://github.com/0 • **OrderHasInvalidSignature**: = "ORDER_HAS_INVALID_SIGNATURE" -_Defined in [packages/mesh-graphql-client/src/types.ts:138](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L138)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:138](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L138)_ --- @@ -734,7 +734,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:138](https://github.com/0 • **OrderHasInvalidTakerAssetAmount**: = "ORDER_HAS_INVALID_TAKER_ASSET_AMOUNT" -_Defined in [packages/mesh-graphql-client/src/types.ts:129](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L129)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:129](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L129)_ --- @@ -742,7 +742,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:129](https://github.com/0 • **OrderHasInvalidTakerAssetData**: = "ORDER_HAS_INVALID_TAKER_ASSET_DATA" -_Defined in [packages/mesh-graphql-client/src/types.ts:136](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L136)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:136](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L136)_ --- @@ -750,7 +750,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:136](https://github.com/0 • **OrderHasInvalidTakerFeeAssetData**: = "ORDER_HAS_INVALID_TAKER_FEE_ASSET_DATA" -_Defined in [packages/mesh-graphql-client/src/types.ts:137](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L137)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:137](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L137)_ --- @@ -758,7 +758,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:137](https://github.com/0 • **OrderMaxExpirationExceeded**: = "ORDER_MAX_EXPIRATION_EXCEEDED" -_Defined in [packages/mesh-graphql-client/src/types.ts:139](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L139)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:139](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L139)_ --- @@ -766,7 +766,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:139](https://github.com/0 • **OrderUnfunded**: = "ORDER_UNFUNDED" -_Defined in [packages/mesh-graphql-client/src/types.ts:133](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L133)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:133](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L133)_ --- @@ -774,7 +774,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:133](https://github.com/0 • **SenderAddressNotAllowed**: = "SENDER_ADDRESS_NOT_ALLOWED" -_Defined in [packages/mesh-graphql-client/src/types.ts:145](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L145)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:145](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L145)_ --- @@ -782,7 +782,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:145](https://github.com/0 • **TakerAddressNotAllowed**: = "TAKER_ADDRESS_NOT_ALLOWED" -_Defined in [packages/mesh-graphql-client/src/types.ts:147](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L147)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:147](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L147)_
@@ -794,7 +794,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:147](https://github.com/0 • **Asc**: = "ASC" -_Defined in [packages/mesh-graphql-client/src/types.ts:217](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L217)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:217](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L217)_ --- @@ -802,7 +802,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:217](https://github.com/0 • **Desc**: = "DESC" -_Defined in [packages/mesh-graphql-client/src/types.ts:218](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L218)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:218](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L218)_
@@ -818,7 +818,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:218](https://github.com/0 • **httpUrl**? : _undefined | string_ -_Defined in [packages/mesh-graphql-client/src/index.ts:87](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/index.ts#L87)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:87](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/index.ts#L87)_ --- @@ -826,7 +826,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:87](https://github.com/0x • **mesh**? : _Mesh_ -_Defined in [packages/mesh-graphql-client/src/index.ts:89](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/index.ts#L89)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:89](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/index.ts#L89)_ --- @@ -834,7 +834,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:89](https://github.com/0x • **webSocketUrl**? : _undefined | string_ -_Defined in [packages/mesh-graphql-client/src/index.ts:88](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/index.ts#L88)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:88](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/index.ts#L88)_
@@ -854,7 +854,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:88](https://github.com/0x • **isNew**: _boolean_ -_Defined in [packages/mesh-graphql-client/src/types.ts:109](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L109)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:109](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L109)_ --- @@ -862,7 +862,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:109](https://github.com/0 • **order**: _T_ -_Defined in [packages/mesh-graphql-client/src/types.ts:106](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L106)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:106](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L106)_
@@ -878,7 +878,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:106](https://github.com/0 • **keepCancelled**? : _undefined | false | true_ -_Defined in [packages/mesh-graphql-client/src/types.ts:6](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L6)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:6](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L6)_ --- @@ -886,7 +886,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:6](https://github.com/0xP • **keepExpired**? : _undefined | false | true_ -_Defined in [packages/mesh-graphql-client/src/types.ts:7](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L7)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:7](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L7)_ --- @@ -894,7 +894,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:7](https://github.com/0xP • **keepFullyFilled**? : _undefined | false | true_ -_Defined in [packages/mesh-graphql-client/src/types.ts:8](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L8)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:8](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L8)_ --- @@ -902,7 +902,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:8](https://github.com/0xP • **keepUnfunded**? : _undefined | false | true_ -_Defined in [packages/mesh-graphql-client/src/types.ts:9](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L9)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:9](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L9)_
@@ -924,7 +924,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:9](https://github.com/0xP • **addOrders**: _[StringifiedAddOrdersResults](#interface-stringifiedaddordersresults)‹T, K›_ -_Defined in [packages/mesh-graphql-client/src/types.ts:25](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L25)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:25](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L25)_
@@ -946,7 +946,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:25](https://github.com/0x • **addOrdersV4**: _[StringifiedAddOrdersResults](#interface-stringifiedaddordersresults)‹T, K›_ -_Defined in [packages/mesh-graphql-client/src/types.ts:32](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L32)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:32](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L32)_
@@ -968,7 +968,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:32](https://github.com/0x • **accepted**: _[AcceptedOrderResult](#interface-acceptedorderresult)‹T›[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:97](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L97)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:97](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L97)_ --- @@ -976,7 +976,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:97](https://github.com/0x • **rejected**: _[RejectedOrderResult](#interface-rejectedorderresult)‹K›[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:100](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L100)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:100](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L100)_
@@ -992,7 +992,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:100](https://github.com/0 • **address**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:164](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L164)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:164](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L164)_ --- @@ -1000,7 +1000,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:164](https://github.com/0 • **blockHash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:159](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L159)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:159](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L159)_ --- @@ -1008,7 +1008,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:159](https://github.com/0 • **isRemoved**: _boolean_ -_Defined in [packages/mesh-graphql-client/src/types.ts:163](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L163)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:163](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L163)_ --- @@ -1016,7 +1016,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:163](https://github.com/0 • **kind**: _[ContractEventKind](#enumeration-contracteventkind)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:165](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L165)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:165](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L165)_ --- @@ -1024,7 +1024,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:165](https://github.com/0 • **logIndex**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:162](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L162)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:162](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L162)_ --- @@ -1032,7 +1032,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:162](https://github.com/0 • **parameters**: _any_ -_Defined in [packages/mesh-graphql-client/src/types.ts:167](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L167)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:167](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L167)_ --- @@ -1040,7 +1040,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:167](https://github.com/0 • **txHash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:160](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L160)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:160](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L160)_ --- @@ -1048,7 +1048,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:160](https://github.com/0 • **txIndex**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:161](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L161)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:161](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L161)_
@@ -1064,7 +1064,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:161](https://github.com/0 • **hash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:78](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L78)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:78](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L78)_ --- @@ -1072,7 +1072,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:78](https://github.com/0x • **number**: _BigNumber_ -_Defined in [packages/mesh-graphql-client/src/types.ts:77](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L77)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:77](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L77)_
@@ -1088,7 +1088,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:77](https://github.com/0x • **contractEvents**: _[ContractEvent](#interface-contractevent)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:155](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L155)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:155](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L155)_ --- @@ -1096,7 +1096,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:155](https://github.com/0 • **endState**: _[OrderEventEndState](#enumeration-ordereventendstate)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:154](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L154)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:154](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L154)_ --- @@ -1104,7 +1104,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:154](https://github.com/0 • **order**? : _[OrderWithMetadata](#interface-orderwithmetadata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:152](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L152)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:152](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L152)_ --- @@ -1112,7 +1112,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:152](https://github.com/0 • **orderv4**? : _[OrderWithMetadataV4](#interface-orderwithmetadatav4)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:153](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L153)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:153](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L153)_ --- @@ -1120,7 +1120,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:153](https://github.com/0 • **timestampMs**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:151](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L151)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:151](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L151)_
@@ -1136,7 +1136,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:151](https://github.com/0 • **orderEvents**: _[StringifiedOrderEvent](#interface-stringifiedorderevent)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:52](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L52)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:52](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L52)_
@@ -1152,7 +1152,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:52](https://github.com/0x • **field**: _[OrderField](#orderfield)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:236](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L236)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:236](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L236)_ --- @@ -1160,7 +1160,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:236](https://github.com/0 • **kind**: _[FilterKind](#enumeration-filterkind)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:237](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L237)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:237](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L237)_ --- @@ -1168,7 +1168,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:237](https://github.com/0 • **value**: _OrderWithMetadata[OrderField]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:238](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L238)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:238](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L238)_
@@ -1184,7 +1184,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:238](https://github.com/0 • **filters**? : _[OrderFilter](#interface-orderfilter)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:242](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L242)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:242](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L242)_ --- @@ -1192,7 +1192,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:242](https://github.com/0 • **limit**? : _undefined | number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:244](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L244)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:244](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L244)_ --- @@ -1200,7 +1200,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:244](https://github.com/0 • **sort**? : _[OrderSort](#interface-ordersort)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:243](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L243)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:243](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L243)_
@@ -1216,7 +1216,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:243](https://github.com/0 • **order**: _[StringifiedOrderWithMetadata](#interface-stringifiedorderwithmetadata) | null_ -_Defined in [packages/mesh-graphql-client/src/types.ts:36](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L36)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:36](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L36)_
@@ -1232,7 +1232,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:36](https://github.com/0x • **orderv4**: _[StringifiedOrderWithMetadataV4](#interface-stringifiedorderwithmetadatav4) | null_ -_Defined in [packages/mesh-graphql-client/src/types.ts:40](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L40)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:40](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L40)_
@@ -1248,7 +1248,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:40](https://github.com/0x • **direction**: _[SortDirection](#enumeration-sortdirection)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:232](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L232)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:232](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L232)_ --- @@ -1256,7 +1256,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:232](https://github.com/0 • **field**: _[OrderField](#orderfield)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:231](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L231)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:231](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L231)_
@@ -1272,7 +1272,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:231](https://github.com/0 • **orders**: _[StringifiedOrderWithMetadata](#interface-stringifiedorderwithmetadata)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:44](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L44)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:44](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L44)_
@@ -1288,7 +1288,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:44](https://github.com/0x • **ordersv4**: _[StringifiedOrderWithMetadataV4](#interface-stringifiedorderwithmetadatav4)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:48](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L48)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:48](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L48)_
@@ -1338,7 +1338,7 @@ Defined in node_modules/@0x/types/lib/index.d.ts:8 • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [packages/mesh-graphql-client/src/types.ts:83](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L83)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:83](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L83)_ --- @@ -1346,7 +1346,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:83](https://github.com/0x • **hash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:82](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L82)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:82](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L82)_ --- @@ -1492,7 +1492,7 @@ Defined in node_modules/@0x/protocol-utils/lib/src/orders.d.ts:21 • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [packages/mesh-graphql-client/src/types.ts:91](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L91)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:91](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L91)_ --- @@ -1500,7 +1500,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:91](https://github.com/0x • **hash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:90](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L90)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:90](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L90)_ --- @@ -1556,7 +1556,7 @@ Defined in node_modules/@0x/protocol-utils/lib/src/orders.d.ts:20 • **signature**: _Signature_ -_Defined in [packages/mesh-graphql-client/src/types.ts:87](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L87)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:87](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L87)_ --- @@ -1616,7 +1616,7 @@ Defined in node_modules/@0x/protocol-utils/lib/src/orders.d.ts:32 • **code**: _[RejectedOrderCode](#enumeration-rejectedordercode)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:120](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L120)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:120](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L120)_ --- @@ -1624,7 +1624,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:120](https://github.com/0 • **hash**? : _undefined | string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:114](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L114)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:114](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L114)_ --- @@ -1632,7 +1632,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:114](https://github.com/0 • **message**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:123](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L123)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:123](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L123)_ --- @@ -1640,7 +1640,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:123](https://github.com/0 • **order**: _K_ -_Defined in [packages/mesh-graphql-client/src/types.ts:117](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L117)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:117](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L117)_
@@ -1656,7 +1656,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:117](https://github.com/0 • **ethRPCRateLimitExpiredRequests**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:73](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L73)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:73](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L73)_ --- @@ -1664,7 +1664,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:73](https://github.com/0x • **ethRPCRequestsSentInCurrentUTCDay**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:72](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L72)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:72](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L72)_ --- @@ -1672,7 +1672,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:72](https://github.com/0x • **ethereumChainID**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:61](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L61)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:61](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L61)_ --- @@ -1680,7 +1680,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:61](https://github.com/0x • **latestBlock**: _[LatestBlock](#interface-latestblock)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:62](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L62)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:62](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L62)_ --- @@ -1688,7 +1688,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:62](https://github.com/0x • **maxExpirationTime**: _BigNumber_ -_Defined in [packages/mesh-graphql-client/src/types.ts:70](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L70)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:70](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L70)_ --- @@ -1696,7 +1696,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:70](https://github.com/0x • **numOrders**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:64](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L64)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:64](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L64)_ --- @@ -1704,7 +1704,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:64](https://github.com/0x • **numOrdersIncludingRemoved**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:66](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L66)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:66](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L66)_ --- @@ -1712,7 +1712,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:66](https://github.com/0x • **numOrdersIncludingRemovedV4**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:67](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L67)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:67](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L67)_ --- @@ -1720,7 +1720,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:67](https://github.com/0x • **numOrdersV4**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:65](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L65)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:65](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L65)_ --- @@ -1728,7 +1728,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:65](https://github.com/0x • **numPeers**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:63](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L63)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:63](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L63)_ --- @@ -1736,7 +1736,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:63](https://github.com/0x • **numPinnedOrders**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:68](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L68)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:68](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L68)_ --- @@ -1744,7 +1744,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:68](https://github.com/0x • **numPinnedOrdersV4**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:69](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L69)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:69](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L69)_ --- @@ -1752,7 +1752,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:69](https://github.com/0x • **peerID**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:60](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L60)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:60](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L60)_ --- @@ -1760,7 +1760,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:60](https://github.com/0x • **pubSubTopic**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:57](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L57)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:57](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L57)_ --- @@ -1768,7 +1768,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:57](https://github.com/0x • **rendezvous**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:58](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L58)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:58](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L58)_ --- @@ -1776,7 +1776,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:58](https://github.com/0x • **secondaryRendezvous**: _string[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:59](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L59)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:59](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L59)_ --- @@ -1784,7 +1784,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:59](https://github.com/0x • **startOfCurrentUTCDay**: _Date_ -_Defined in [packages/mesh-graphql-client/src/types.ts:71](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L71)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:71](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L71)_ --- @@ -1792,7 +1792,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:71](https://github.com/0x • **version**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:56](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L56)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:56](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L56)_
@@ -1808,7 +1808,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:56](https://github.com/0x • **stats**: _[StringifiedStats](#interface-stringifiedstats)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:13](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L13)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:13](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L13)_
@@ -1828,7 +1828,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:13](https://github.com/0x • **isNew**: _boolean_ -_Defined in [packages/mesh-graphql-client/src/types.ts:333](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L333)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:333](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L333)_ --- @@ -1836,7 +1836,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:333](https://github.com/0 • **order**: _T_ -_Defined in [packages/mesh-graphql-client/src/types.ts:332](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L332)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:332](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L332)_
@@ -1858,7 +1858,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:332](https://github.com/0 • **accepted**: _[StringifiedAcceptedOrderResult](#interface-stringifiedacceptedorderresult)‹T›[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:327](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L327)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:327](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L327)_ --- @@ -1866,7 +1866,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:327](https://github.com/0 • **rejected**: _[StringifiedRejectedOrderResult](#interface-stringifiedrejectedorderresult)‹K›[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:328](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L328)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:328](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L328)_
@@ -1882,7 +1882,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:328](https://github.com/0 • **hash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:249](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L249)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:249](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L249)_ --- @@ -1890,7 +1890,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:249](https://github.com/0 • **number**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:248](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L248)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:248](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L248)_
@@ -1906,7 +1906,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:248](https://github.com/0 • **contractEvents**: _[ContractEvent](#interface-contractevent)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:349](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L349)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:349](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L349)_ --- @@ -1914,7 +1914,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:349](https://github.com/0 • **endState**: _[OrderEventEndState](#enumeration-ordereventendstate)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:347](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L347)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:347](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L347)_ --- @@ -1922,7 +1922,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:347](https://github.com/0 • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [packages/mesh-graphql-client/src/types.ts:348](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L348)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:348](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L348)_ --- @@ -1930,7 +1930,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:348](https://github.com/0 • **order**: _[StringifiedOrderWithMetadata](#interface-stringifiedorderwithmetadata) | null_ -_Defined in [packages/mesh-graphql-client/src/types.ts:345](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L345)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:345](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L345)_ --- @@ -1938,7 +1938,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:345](https://github.com/0 • **orderv4**: _[StringifiedOrderWithMetadataV4](#interface-stringifiedorderwithmetadatav4) | null_ -_Defined in [packages/mesh-graphql-client/src/types.ts:346](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L346)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:346](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L346)_ --- @@ -1946,7 +1946,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:346](https://github.com/0 • **timestamp**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:344](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L344)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:344](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L344)_
@@ -1966,7 +1966,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:344](https://github.com/0 _Inherited from [StringifiedSignedOrder](#chainid)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:274](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L274)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:274](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L274)_ --- @@ -1976,7 +1976,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:274](https://github.com/0 _Inherited from [StringifiedSignedOrder](#exchangeaddress)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:275](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L275)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:275](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L275)_ --- @@ -1986,7 +1986,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:275](https://github.com/0 _Inherited from [StringifiedSignedOrder](#expirationtimeseconds)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:284](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L284)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:284](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L284)_ --- @@ -1996,7 +1996,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:284](https://github.com/0 _Inherited from [StringifiedSignedOrder](#feerecipientaddress)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:278](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L278)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:278](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L278)_ --- @@ -2004,7 +2004,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:278](https://github.com/0 • **fillableTakerAssetAmount**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:320](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L320)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:320](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L320)_ --- @@ -2012,7 +2012,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:320](https://github.com/0 • **hash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:319](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L319)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:319](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L319)_ --- @@ -2022,7 +2022,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:319](https://github.com/0 _Inherited from [StringifiedSignedOrder](#makeraddress)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:276](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L276)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:276](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L276)_ --- @@ -2032,7 +2032,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:276](https://github.com/0 _Inherited from [StringifiedSignedOrder](#makerassetamount)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:280](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L280)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:280](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L280)_ --- @@ -2042,7 +2042,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:280](https://github.com/0 _Inherited from [StringifiedSignedOrder](#makerassetdata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:286](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L286)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:286](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L286)_ --- @@ -2052,7 +2052,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:286](https://github.com/0 _Inherited from [StringifiedSignedOrder](#makerfee)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:282](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L282)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:282](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L282)_ --- @@ -2062,7 +2062,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:282](https://github.com/0 _Inherited from [StringifiedSignedOrder](#makerfeeassetdata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:288](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L288)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:288](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L288)_ --- @@ -2072,7 +2072,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:288](https://github.com/0 _Inherited from [StringifiedSignedOrder](#salt)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:285](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L285)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:285](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L285)_ --- @@ -2082,7 +2082,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:285](https://github.com/0 _Inherited from [StringifiedSignedOrder](#senderaddress)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:279](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L279)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:279](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L279)_ --- @@ -2092,7 +2092,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:279](https://github.com/0 _Inherited from [StringifiedSignedOrder](#signature)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:290](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L290)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:290](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L290)_ --- @@ -2102,7 +2102,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:290](https://github.com/0 _Inherited from [StringifiedSignedOrder](#takeraddress)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:277](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L277)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:277](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L277)_ --- @@ -2112,7 +2112,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:277](https://github.com/0 _Inherited from [StringifiedSignedOrder](#takerassetamount)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:281](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L281)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:281](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L281)_ --- @@ -2122,7 +2122,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:281](https://github.com/0 _Inherited from [StringifiedSignedOrder](#takerassetdata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:287](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L287)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:287](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L287)_ --- @@ -2132,7 +2132,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:287](https://github.com/0 _Inherited from [StringifiedSignedOrder](#takerfee)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:283](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L283)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:283](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L283)_ --- @@ -2142,7 +2142,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:283](https://github.com/0 _Inherited from [StringifiedSignedOrder](#takerfeeassetdata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:289](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L289)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:289](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L289)_
@@ -2162,7 +2162,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:289](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#chainid)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:294](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L294)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:294](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L294)_ --- @@ -2172,7 +2172,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:294](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#expiry)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:306](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L306)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:306](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L306)_ --- @@ -2182,7 +2182,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:306](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#feerecipient)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:304](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L304)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:304](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L304)_ --- @@ -2190,7 +2190,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:304](https://github.com/0 • **fillableTakerAssetAmount**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:315](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L315)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:315](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L315)_ --- @@ -2198,7 +2198,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:315](https://github.com/0 • **hash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:314](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L314)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:314](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L314)_ --- @@ -2208,7 +2208,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:314](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#maker)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:301](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L301)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:301](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L301)_ --- @@ -2218,7 +2218,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:301](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#makeramount)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:298](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L298)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:298](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L298)_ --- @@ -2228,7 +2228,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:298](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#makertoken)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:296](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L296)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:296](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L296)_ --- @@ -2238,7 +2238,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:296](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#pool)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:305](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L305)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:305](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L305)_ --- @@ -2248,7 +2248,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:305](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#salt)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:307](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L307)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:307](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L307)_ --- @@ -2258,7 +2258,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:307](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#sender)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:303](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L303)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:303](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L303)_ --- @@ -2268,7 +2268,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:303](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#signaturer)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:309](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L309)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:309](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L309)_ --- @@ -2278,7 +2278,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:309](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#signatures)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:310](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L310)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:310](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L310)_ --- @@ -2288,7 +2288,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:310](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#signaturetype)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:308](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L308)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:308](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L308)_ --- @@ -2298,7 +2298,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:308](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#signaturev)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:311](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L311)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:311](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L311)_ --- @@ -2308,7 +2308,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:311](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#taker)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:302](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L302)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:302](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L302)_ --- @@ -2318,7 +2318,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:302](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#takeramount)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:299](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L299)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:299](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L299)_ --- @@ -2328,7 +2328,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:299](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#takertoken)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:297](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L297)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:297](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L297)_ --- @@ -2338,7 +2338,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:297](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#takertokenfeeamount)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:300](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L300)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:300](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L300)_ --- @@ -2348,7 +2348,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:300](https://github.com/0 _Inherited from [StringifiedSignedOrderV4](#verifyingcontract)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:295](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L295)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:295](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L295)_
@@ -2368,7 +2368,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:295](https://github.com/0 • **code**: _[RejectedOrderCode](#enumeration-rejectedordercode)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:339](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L339)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:339](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L339)_ --- @@ -2376,7 +2376,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:339](https://github.com/0 • **hash**? : _undefined | string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:337](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L337)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:337](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L337)_ --- @@ -2384,7 +2384,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:337](https://github.com/0 • **message**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:340](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L340)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:340](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L340)_ --- @@ -2392,7 +2392,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:340](https://github.com/0 • **order**: _K_ -_Defined in [packages/mesh-graphql-client/src/types.ts:338](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L338)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:338](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L338)_
@@ -2410,7 +2410,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:338](https://github.com/0 • **chainId**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:274](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L274)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:274](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L274)_ --- @@ -2418,7 +2418,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:274](https://github.com/0 • **exchangeAddress**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:275](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L275)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:275](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L275)_ --- @@ -2426,7 +2426,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:275](https://github.com/0 • **expirationTimeSeconds**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:284](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L284)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:284](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L284)_ --- @@ -2434,7 +2434,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:284](https://github.com/0 • **feeRecipientAddress**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:278](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L278)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:278](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L278)_ --- @@ -2442,7 +2442,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:278](https://github.com/0 • **makerAddress**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:276](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L276)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:276](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L276)_ --- @@ -2450,7 +2450,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:276](https://github.com/0 • **makerAssetAmount**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:280](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L280)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:280](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L280)_ --- @@ -2458,7 +2458,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:280](https://github.com/0 • **makerAssetData**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:286](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L286)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:286](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L286)_ --- @@ -2466,7 +2466,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:286](https://github.com/0 • **makerFee**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:282](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L282)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:282](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L282)_ --- @@ -2474,7 +2474,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:282](https://github.com/0 • **makerFeeAssetData**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:288](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L288)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:288](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L288)_ --- @@ -2482,7 +2482,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:288](https://github.com/0 • **salt**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:285](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L285)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:285](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L285)_ --- @@ -2490,7 +2490,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:285](https://github.com/0 • **senderAddress**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:279](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L279)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:279](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L279)_ --- @@ -2498,7 +2498,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:279](https://github.com/0 • **signature**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:290](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L290)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:290](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L290)_ --- @@ -2506,7 +2506,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:290](https://github.com/0 • **takerAddress**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:277](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L277)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:277](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L277)_ --- @@ -2514,7 +2514,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:277](https://github.com/0 • **takerAssetAmount**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:281](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L281)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:281](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L281)_ --- @@ -2522,7 +2522,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:281](https://github.com/0 • **takerAssetData**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:287](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L287)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:287](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L287)_ --- @@ -2530,7 +2530,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:287](https://github.com/0 • **takerFee**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:283](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L283)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:283](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L283)_ --- @@ -2538,7 +2538,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:283](https://github.com/0 • **takerFeeAssetData**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:289](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L289)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:289](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L289)_
@@ -2556,7 +2556,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:289](https://github.com/0 • **chainId**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:294](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L294)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:294](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L294)_ --- @@ -2564,7 +2564,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:294](https://github.com/0 • **expiry**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:306](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L306)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:306](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L306)_ --- @@ -2572,7 +2572,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:306](https://github.com/0 • **feeRecipient**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:304](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L304)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:304](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L304)_ --- @@ -2580,7 +2580,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:304](https://github.com/0 • **maker**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:301](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L301)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:301](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L301)_ --- @@ -2588,7 +2588,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:301](https://github.com/0 • **makerAmount**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:298](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L298)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:298](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L298)_ --- @@ -2596,7 +2596,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:298](https://github.com/0 • **makerToken**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:296](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L296)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:296](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L296)_ --- @@ -2604,7 +2604,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:296](https://github.com/0 • **pool**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:305](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L305)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:305](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L305)_ --- @@ -2612,7 +2612,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:305](https://github.com/0 • **salt**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:307](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L307)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:307](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L307)_ --- @@ -2620,7 +2620,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:307](https://github.com/0 • **sender**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:303](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L303)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:303](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L303)_ --- @@ -2628,7 +2628,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:303](https://github.com/0 • **signatureR**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:309](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L309)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:309](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L309)_ --- @@ -2636,7 +2636,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:309](https://github.com/0 • **signatureS**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:310](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L310)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:310](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L310)_ --- @@ -2644,7 +2644,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:310](https://github.com/0 • **signatureType**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:308](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L308)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:308](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L308)_ --- @@ -2652,7 +2652,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:308](https://github.com/0 • **signatureV**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:311](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L311)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:311](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L311)_ --- @@ -2660,7 +2660,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:311](https://github.com/0 • **taker**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:302](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L302)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:302](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L302)_ --- @@ -2668,7 +2668,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:302](https://github.com/0 • **takerAmount**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:299](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L299)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:299](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L299)_ --- @@ -2676,7 +2676,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:299](https://github.com/0 • **takerToken**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:297](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L297)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:297](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L297)_ --- @@ -2684,7 +2684,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:297](https://github.com/0 • **takerTokenFeeAmount**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:300](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L300)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:300](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L300)_ --- @@ -2692,7 +2692,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:300](https://github.com/0 • **verifyingContract**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:295](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L295)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:295](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L295)_
@@ -2708,7 +2708,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:295](https://github.com/0 • **ethRPCRateLimitExpiredRequests**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:270](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L270)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:270](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L270)_ --- @@ -2716,7 +2716,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:270](https://github.com/0 • **ethRPCRequestsSentInCurrentUTCDay**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:269](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L269)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:269](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L269)_ --- @@ -2724,7 +2724,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:269](https://github.com/0 • **ethereumChainID**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:258](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L258)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:258](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L258)_ --- @@ -2732,7 +2732,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:258](https://github.com/0 • **latestBlock**: _[StringifiedLatestBlock](#interface-stringifiedlatestblock)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:259](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L259)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:259](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L259)_ --- @@ -2740,7 +2740,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:259](https://github.com/0 • **maxExpirationTime**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:267](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L267)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:267](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L267)_ --- @@ -2748,7 +2748,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:267](https://github.com/0 • **numOrders**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:261](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L261)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:261](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L261)_ --- @@ -2756,7 +2756,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:261](https://github.com/0 • **numOrdersIncludingRemoved**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:263](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L263)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:263](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L263)_ --- @@ -2764,7 +2764,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:263](https://github.com/0 • **numOrdersIncludingRemovedV4**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:264](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L264)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:264](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L264)_ --- @@ -2772,7 +2772,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:264](https://github.com/0 • **numOrdersV4**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:262](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L262)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:262](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L262)_ --- @@ -2780,7 +2780,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:262](https://github.com/0 • **numPeers**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:260](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L260)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:260](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L260)_ --- @@ -2788,7 +2788,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:260](https://github.com/0 • **numPinnedOrders**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:265](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L265)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:265](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L265)_ --- @@ -2796,7 +2796,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:265](https://github.com/0 • **numPinnedOrdersV4**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:266](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L266)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:266](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L266)_ --- @@ -2804,7 +2804,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:266](https://github.com/0 • **peerID**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:257](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L257)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:257](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L257)_ --- @@ -2812,7 +2812,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:257](https://github.com/0 • **pubSubTopic**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:254](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L254)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:254](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L254)_ --- @@ -2820,7 +2820,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:254](https://github.com/0 • **rendezvous**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:255](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L255)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:255](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L255)_ --- @@ -2828,7 +2828,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:255](https://github.com/0 • **secondaryRendezvous**: _string[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:256](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L256)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:256](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L256)_ --- @@ -2836,7 +2836,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:256](https://github.com/0 • **startOfCurrentUTCDay**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:268](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L268)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:268](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L268)_ --- @@ -2844,6 +2844,6 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:268](https://github.com/0 • **version**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:253](https://github.com/0xProject/0x-mesh/blob/2a7e4503/packages/mesh-graphql-client/src/types.ts#L253)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:253](https://github.com/0xProject/0x-mesh/blob/fe52e966/packages/mesh-graphql-client/src/types.ts#L253)_
diff --git a/docs/graphql_api.md b/docs/graphql_api.md index 805a2d48f..ac98e8ccb 100644 --- a/docs/graphql_api.md +++ b/docs/graphql_api.md @@ -1,4 +1,4 @@ -[![Version](https://img.shields.io/badge/version-11.0.3-orange.svg)](https://github.com/0xProject/0x-mesh/releases) +[![Version](https://img.shields.io/badge/version-11.1.0-orange.svg)](https://github.com/0xProject/0x-mesh/releases) # 0x Mesh GraphQL API Documentation diff --git a/go.mod b/go.mod index 90ffdfc7c..521d8c7dc 100644 --- a/go.mod +++ b/go.mod @@ -73,6 +73,7 @@ require ( github.com/pborman/uuid v0.0.0-20180906182336-adf5a7427709 github.com/pkg/errors v0.9.1 // indirect github.com/plaid/go-envvar v1.1.0 + github.com/prometheus/client_golang v1.0.0 github.com/prometheus/tsdb v0.10.0 // indirect github.com/rjeczalik/notify v0.9.2 // indirect github.com/rs/cors v1.7.0 // indirect diff --git a/go.sum b/go.sum index 4e11a050d..2a068c576 100644 --- a/go.sum +++ b/go.sum @@ -863,6 +863,7 @@ github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5Fsn github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90 h1:S/YWwWx/RA8rT8tKFRuGUZhuA90OyIBpPCXkcbwU8DE= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4 h1:gQz4mCbXsO+nc9n1hCxHcGA3Zx3Eo+UHZoInFGUIXNM= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/common v0.0.0-20180801064454-c7de2306084e/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= diff --git a/graphql/schema.resolvers.go b/graphql/schema.resolvers.go index dfefceb4c..0457a0751 100644 --- a/graphql/schema.resolvers.go +++ b/graphql/schema.resolvers.go @@ -10,6 +10,7 @@ import ( "github.com/0xProject/0x-mesh/db" "github.com/0xProject/0x-mesh/graphql/generated" "github.com/0xProject/0x-mesh/graphql/gqltypes" + "github.com/0xProject/0x-mesh/metrics" "github.com/0xProject/0x-mesh/zeroex" "github.com/ethereum/go-ethereum/common" log "github.com/sirupsen/logrus" @@ -26,6 +27,12 @@ func (r *mutationResolver) AddOrders(ctx context.Context, orders []*gqltypes.New if err != nil { return nil, err } + metrics.OrdersAddedViaGraphQl.WithLabelValues(metrics.ProtocolV3, metrics.ValidationAccepted). + Add(float64(len(results.Accepted))) + + metrics.OrdersAddedViaGraphQl.WithLabelValues(metrics.ProtocolV3, metrics.ValidationRejected). + Add(float64(len(results.Rejected))) + return gqltypes.AddOrdersResultsFromValidationResults(results) } @@ -40,13 +47,20 @@ func (r *mutationResolver) AddOrdersV4(ctx context.Context, orders []*gqltypes.N if err != nil { return nil, err } - returnResult, err := gqltypes.AddOrdersResultsFromValidationResultsV4(results) + metrics.OrdersAddedViaGraphQl.WithLabelValues(metrics.ProtocolV4, metrics.ValidationAccepted). + Add(float64(len(results.Accepted))) + + metrics.OrdersAddedViaGraphQl.WithLabelValues(metrics.ProtocolV4, metrics.ValidationRejected). + Add(float64(len(results.Rejected))) + return returnResult, err } func (r *queryResolver) Order(ctx context.Context, hash string) (*gqltypes.OrderWithMetadata, error) { + defer metrics.GraphqlQueries.WithLabelValues("order").Inc() + order, err := r.app.GetOrder(common.HexToHash(hash)) if err != nil { if err == db.ErrNotFound { @@ -58,6 +72,7 @@ func (r *queryResolver) Order(ctx context.Context, hash string) (*gqltypes.Order } func (r *queryResolver) Orderv4(ctx context.Context, hash string) (*gqltypes.OrderV4WithMetadata, error) { + defer metrics.GraphqlQueries.WithLabelValues("orderv4").Inc() order, err := r.app.GetOrderV4(common.HexToHash(hash)) if err != nil { if err == db.ErrNotFound { @@ -65,10 +80,12 @@ func (r *queryResolver) Orderv4(ctx context.Context, hash string) (*gqltypes.Ord } return nil, err } + return gqltypes.OrderWithMetadataFromCommonTypeV4(order), nil } func (r *queryResolver) Orders(ctx context.Context, sort []*gqltypes.OrderSort, filters []*gqltypes.OrderFilter, limit *int) ([]*gqltypes.OrderWithMetadata, error) { + defer metrics.GraphqlQueries.WithLabelValues("orders").Inc() // TODO(albrow): More validation of query args. We can assume // basic structure is correct but may need to validate // some of the semantics. @@ -115,10 +132,12 @@ func (r *queryResolver) Orders(ctx context.Context, sort []*gqltypes.OrderSort, if err != nil { return nil, err } + return gqltypes.OrdersWithMetadataFromCommonType(orders), nil } func (r *queryResolver) Ordersv4(ctx context.Context, sort []*gqltypes.OrderSortV4, filters []*gqltypes.OrderFilterV4, limit *int) ([]*gqltypes.OrderV4WithMetadata, error) { + defer metrics.GraphqlQueries.WithLabelValues("ordersv4").Inc() query := &db.OrderQueryV4{ // We never include orders that are marked as removed. Filters: []db.OrderFilterV4{ @@ -166,6 +185,7 @@ func (r *queryResolver) Ordersv4(ctx context.Context, sort []*gqltypes.OrderSort } func (r *queryResolver) Stats(ctx context.Context) (*gqltypes.Stats, error) { + defer metrics.GraphqlQueries.WithLabelValues("stats").Inc() stats, err := r.app.GetStats() if err != nil { return nil, err diff --git a/metrics/metrics.go b/metrics/metrics.go new file mode 100644 index 000000000..821fb0f46 --- /dev/null +++ b/metrics/metrics.go @@ -0,0 +1,95 @@ +package metrics + +import ( + "context" + "net/http" + + "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" + "github.com/prometheus/client_golang/prometheus/promhttp" +) + +const ( + ProtocolVersionLabel = "protocol_version" + ProtocolV3 = "v3" + ProtocolV4 = "v4" + ValidationStatusLabel = "validation_status" + ValidationAccepted = "accepted" + ValidationRejected = "rejected" + QueryLabel = "query" + OrdersyncStatusLabel = "status" + OrdersyncSuccess = "success" + OrdersyncFailure = "failure" +) + +var ( + OrdersShared = promauto.NewCounterVec(prometheus.CounterOpts{ + Name: "mesh_orders_shared_total", + Help: "The total number of shared orders", + }, + []string{ + ProtocolVersionLabel, + }) + + OrdersStored = promauto.NewGaugeVec(prometheus.GaugeOpts{ + Name: "mesh_orders_total", + Help: "Current total number of stored orders", + }, + []string{ + ProtocolVersionLabel, + }) + PeersConnected = promauto.NewGauge(prometheus.GaugeOpts{ + Name: "mesh_peers_connected_total", + Help: "Current total number of connected peers", + }) + + OrdersAddedViaGraphQl = promauto.NewCounterVec(prometheus.CounterOpts{ + Name: "mesh_graphql_orders_added", + Help: "Total number of orders added / rejected via graphql", + }, + []string{ + ProtocolVersionLabel, + ValidationStatusLabel, + }) + + P2POrdersReceived = promauto.NewCounterVec(prometheus.CounterOpts{ + Name: "mesh_p2p_orders_received", + Help: "Number of orders received", + }, []string{ + ProtocolVersionLabel, + ValidationStatusLabel, + }) + + GraphqlQueries = promauto.NewCounterVec(prometheus.CounterOpts{ + Name: "mesh_graphql_queries_total", + Help: "Total number of GraphQL endpoint queries handled", + }, []string{ + QueryLabel, + }) + + OrdersyncRequestsReceived = promauto.NewCounterVec(prometheus.CounterOpts{ + Name: "mesh_ordersync_requests_received", + Help: "Number of ordersync requests received", + }, []string{ + ProtocolVersionLabel, + }) + + OrdersyncRequestsSent = promauto.NewCounterVec(prometheus.CounterOpts{ + Name: "mesh_ordersync_requests_sent", + Help: "Number of ordersync requests sent", + }, []string{ + ProtocolVersionLabel, + OrdersyncStatusLabel, + }) + + LatestBlock = promauto.NewGauge(prometheus.GaugeOpts{ + Name: "mesh_latest_block", + Help: "Latest block number recognized by mesh", + }) +) + +func ServeMetrics(ctx context.Context, serveAddr string) error { + http.Handle("/metrics", promhttp.Handler()) + + return http.ListenAndServe(serveAddr, nil) +} diff --git a/orderfilter/shared.go b/orderfilter/shared.go index 91c0601a7..fbff0a217 100644 --- a/orderfilter/shared.go +++ b/orderfilter/shared.go @@ -17,6 +17,7 @@ import ( const ( pubsubTopicVersion = 3 + pubsubTopicVersionV4 = 4 topicVersionFormat = "/0x-orders/version/%d%s" topicChainIDAndSchemaFormat = "/chain/%d/schema/%s" fullTopicFormat = "/0x-orders/version/%d/chain/%d/schema/%s" @@ -45,6 +46,14 @@ func GetDefaultTopic(chainID int, contractAddresses ethereum.ContractAddresses) return defaultFilter.Topic(), nil } +func GetDefaultTopicV4(chainID int, contractAddresses ethereum.ContractAddresses) (string, error) { + defaultFilter, err := GetDefaultFilter(chainID, contractAddresses) + if err != nil { + return "", err + } + return defaultFilter.TopicV4(), nil +} + // MatchOrder returns true if the order passes the filter. It only returns an // error if there was a problem with validation. For details about // orders that do not pass the filter, use ValidateOrder. @@ -95,6 +104,13 @@ func (f *Filter) Topic() string { return fmt.Sprintf(fullTopicFormat, pubsubTopicVersion, f.chainID, f.encodedSchema) } +func (f *Filter) TopicV4() string { + if f.encodedSchema == "" { + f.encodedSchema = f.generateEncodedSchema() + } + return fmt.Sprintf(fullTopicFormat, pubsubTopicVersionV4, f.chainID, f.encodedSchema) +} + // Dummy declaration to ensure that ValidatePubSubMessage matches the expected // signature for pubsub.Validator. var _ pubsub.Validator = (&Filter{}).ValidatePubSubMessage diff --git a/p2p/node.go b/p2p/node.go index c798ef862..bce033b5a 100644 --- a/p2p/node.go +++ b/p2p/node.go @@ -107,12 +107,19 @@ type Node struct { // Config contains configuration options for a Node. type Config struct { // SubscribeTopic is the topic to subscribe to for new messages. Only messages - // that are published on this topic will be received and processed. + // that are published on this topic will be received and processed for v3. SubscribeTopic string + // SubscribeTopicV4 is the topic to subscribe to for new v4 messages. Only messages + // that are published on this topic will be received and processed for v4. + SubscribeTopicV4 string // PublishTopics are the topics to publish messages to. Messages may be // published to more than one topic (e.g. a topic for all orders and a topic // for orders with a specific asset). PublishTopics []string + // PublishTopics are the topics to publish v4 messages to. Messages may be + // published to more than one topic (e.g. a topic for all orders and a topic + // for orders with a specific asset). + PublishTopicsV4 []string // TCPPort is the port on which to listen for incoming TCP connections. TCPPort int // WebSocketsPort is the port on which to listen for incoming WebSockets @@ -431,6 +438,17 @@ func (n *Node) Start() error { messageHandlerErrChan <- n.startMessageHandler(innerCtx) }() + // Start message handler v4 loop. + messageHandlerV4ErrChan := make(chan error, 1) + wg.Add(1) + go func() { + defer wg.Done() + defer func() { + log.Debug("closing p2p v4 message handler loop") + }() + messageHandlerV4ErrChan <- n.startMessageHandlerV4(innerCtx) + }() + // Start peer discovery loop. peerDiscoveryErrChan := make(chan error, 1) wg.Add(1) diff --git a/p2p/node_v4.go b/p2p/node_v4.go index 3f41da517..6a1f181a6 100644 --- a/p2p/node_v4.go +++ b/p2p/node_v4.go @@ -7,72 +7,95 @@ import ( mathrand "math/rand" ) -const ( - // GossipSub topic for V4 orders - gossipSubOrdersV4Topic = "0x-orders-v4" -) - func (n *Node) SendV4(data []byte) error { var firstErr error - err := n.pubsub.Publish(gossipSubOrdersV4Topic, data) //nolint:staticcheck - if err != nil && firstErr == nil { - firstErr = err + for _, topic := range n.config.PublishTopicsV4 { + err := n.pubsub.Publish(topic, data) //nolint:staticcheck + if err != nil && firstErr == nil { + firstErr = err + } } return firstErr } -func (n *Node) startMessageHandlerV4(ctx context.Context) error { +func (n *Node) receiveAndHandleMessagesV4(ctx context.Context) error { // Subscribe to topic if we haven't already if n.subV4 == nil { var err error - n.subV4, err = n.pubsub.Subscribe(gossipSubOrdersV4Topic) + n.subV4, err = n.pubsub.Subscribe(n.config.SubscribeTopicV4) if err != nil { return err } } + + // Receive up to maxReceiveBatch messages. + incoming, err := n.receiveBatchV4(ctx) + if err != nil { + return err + } + if len(incoming) == 0 { + return nil + } + if err := n.messageHandler.HandleMessagesV4(ctx, incoming); err != nil { + return fmt.Errorf("could not validate or store v4 messages: %s", err.Error()) + } + + return nil +} + +func (n *Node) receiveV4(ctx context.Context) (*Message, error) { + msg, err := n.subV4.Next(ctx) + if err != nil { + return nil, err + } + return &Message{From: msg.GetFrom(), Data: msg.Data}, nil +} + +func (n *Node) receiveBatchV4(ctx context.Context) ([]*Message, error) { + // Receive a batch of messages so we can handle them in bulk + messages := []*Message{} for { + if len(messages) >= maxReceiveBatch { + return messages, nil + } + // If the parent context was canceled, break. select { case <-ctx.Done(): - return nil + return messages, nil default: } - // Receive a batch of messages so we can handle them in bulk - messages := []*Message{} - for { - // If the parent context was canceled, break. - select { - case <-ctx.Done(): - break - default: + // Receive message + receiveCtx, receiveCancel := context.WithTimeout(n.ctx, receiveTimeout) + msg, err := n.receiveV4(receiveCtx) + receiveCancel() + if err != nil { + if err == context.Canceled || err == context.DeadlineExceeded { + return messages, nil + } else { + return nil, err } + } + // Skip self messages + if msg.From == n.host.ID() { + continue + } - // Receive message - receiveCtx, receiveCancel := context.WithTimeout(n.ctx, receiveTimeout) - msg, err := n.subV4.Next(receiveCtx) - receiveCancel() - if err != nil { - if err == context.Canceled || err == context.DeadlineExceeded { - break - } else { - return err - } - } - // Skip self messages - if msg.GetFrom() == n.host.ID() { - continue - } + // Add to batch + messages = append(messages, msg) + } +} - // Add to batch - messages = append(messages, &Message{From: msg.GetFrom(), Data: msg.Data}) - if len(messages) >= maxReceiveBatch { - break - } +func (n *Node) startMessageHandlerV4(ctx context.Context) error { + for { + select { + case <-ctx.Done(): + return nil + default: } - // Handle messages - if err := n.messageHandler.HandleMessagesV4(ctx, messages); err != nil { - return fmt.Errorf("could not validate or store V4 order messages: %s", err.Error()) + if err := n.receiveAndHandleMessagesV4(ctx); err != nil { + return err } // Check bandwidth usage non-deterministically diff --git a/packages/mesh-browser-lite/package.json b/packages/mesh-browser-lite/package.json index 282301fb2..38d40c752 100644 --- a/packages/mesh-browser-lite/package.json +++ b/packages/mesh-browser-lite/package.json @@ -1,6 +1,6 @@ { "name": "@0x/mesh-browser-lite", - "version": "11.0.3", + "version": "11.1.0", "description": "TypeScript and JavaScript bindings for running Mesh directly in the browser. To use this packages, you must use your own copy of the Mesh WebAssembly Binary", "main": "./lib/index.js", "license": "Apache-2.0", diff --git a/packages/mesh-browser-shim/package.json b/packages/mesh-browser-shim/package.json index c63ec3e87..b952253e6 100644 --- a/packages/mesh-browser-shim/package.json +++ b/packages/mesh-browser-shim/package.json @@ -19,7 +19,7 @@ "webpack-cli": "^3.3.10" }, "dependencies": { - "@0x/mesh-browser-lite": "^11.0.3", + "@0x/mesh-browser-lite": "^11.1.0", "dexie": "^3.0.1" } } diff --git a/packages/mesh-browser/package.json b/packages/mesh-browser/package.json index 8853fd36d..98d5f09fa 100644 --- a/packages/mesh-browser/package.json +++ b/packages/mesh-browser/package.json @@ -1,6 +1,6 @@ { "name": "@0x/mesh-browser", - "version": "11.0.3", + "version": "11.1.0", "description": "TypeScript and JavaScript bindings for running Mesh directly in the browser.", "main": "./lib/index.js", "license": "Apache-2.0", @@ -35,7 +35,7 @@ "webpack-cli": "^3.3.10" }, "dependencies": { - "@0x/mesh-browser-lite": "^11.0.3", + "@0x/mesh-browser-lite": "^11.1.0", "base64-arraybuffer": "^0.2.0", "ethereum-types": "^3.0.0" } diff --git a/packages/mesh-graphql-client/package.json b/packages/mesh-graphql-client/package.json index 549f66a96..71dbe0743 100644 --- a/packages/mesh-graphql-client/package.json +++ b/packages/mesh-graphql-client/package.json @@ -1,6 +1,6 @@ { "name": "@0x/mesh-graphql-client", - "version": "11.0.3", + "version": "11.1.0", "description": "A client for the Mesh GraphQL API", "main": "./lib/src/index.js", "license": "Apache-2.0", @@ -49,7 +49,7 @@ }, "dependencies": { "@0x/protocol-utils": "^1.1.4", - "@0x/mesh-browser-lite": "^11.0.3", + "@0x/mesh-browser-lite": "^11.1.0", "@0x/types": "^3.2.0", "@0x/utils": "^6.2.0", "@apollo/client": "^3.3.6", diff --git a/packages/mesh-graphql-client/src/index.ts b/packages/mesh-graphql-client/src/index.ts index e7e969e6e..d2da7031c 100644 --- a/packages/mesh-graphql-client/src/index.ts +++ b/packages/mesh-graphql-client/src/index.ts @@ -181,6 +181,7 @@ export class MeshGraphQLClient { public async getStatsAsync(): Promise { const resp: ApolloQueryResult = await this._client.query({ + fetchPolicy: 'no-cache', query: statsQuery, }); if (resp.data === undefined) { @@ -253,6 +254,7 @@ export class MeshGraphQLClient { public async getOrderAsync(hash: string): Promise { const resp: ApolloQueryResult = await this._client.query({ query: orderQuery, + fetchPolicy: 'no-cache', variables: { hash, }, @@ -269,6 +271,7 @@ export class MeshGraphQLClient { public async getOrderV4Async(hash: string): Promise { const resp: ApolloQueryResult = await this._client.query({ query: orderQueryV4, + fetchPolicy: 'no-cache', variables: { hash, }, @@ -287,6 +290,7 @@ export class MeshGraphQLClient { ): Promise { const resp: ApolloQueryResult = await this._client.query({ query: ordersQuery, + fetchPolicy: 'no-cache', variables: { sort: query.sort || [], filters: query.filters?.map(convertFilterValue) || [], @@ -304,6 +308,7 @@ export class MeshGraphQLClient { ): Promise { const resp: ApolloQueryResult = await this._client.query({ query: ordersQueryV4, + fetchPolicy: 'no-cache', variables: { sort: query.sort || [], filters: query.filters?.map(convertFilterValue) || [], diff --git a/packages/mesh-integration-tests/package.json b/packages/mesh-integration-tests/package.json index c2c9b88a5..ec5cc369a 100644 --- a/packages/mesh-integration-tests/package.json +++ b/packages/mesh-integration-tests/package.json @@ -22,8 +22,8 @@ "webpack-cli": "^3.3.7" }, "dependencies": { - "@0x/mesh-browser": "^11.0.3", - "@0x/mesh-graphql-client": "^11.0.3", + "@0x/mesh-browser": "^11.1.0", + "@0x/mesh-graphql-client": "^11.1.0", "@0x/order-utils": "^10.0.1", "@0x/subproviders": "^6.0.2", "@0x/utils": "^6.2.0" diff --git a/packages/mesh-webpack-example-lite/package.json b/packages/mesh-webpack-example-lite/package.json index edd422333..512bd9cf7 100644 --- a/packages/mesh-webpack-example-lite/package.json +++ b/packages/mesh-webpack-example-lite/package.json @@ -23,6 +23,6 @@ "webpack-cli": "^3.3.7" }, "dependencies": { - "@0x/mesh-browser-lite": "^11.0.3" + "@0x/mesh-browser-lite": "^11.1.0" } } diff --git a/packages/mesh-webpack-example/package.json b/packages/mesh-webpack-example/package.json index 0170e792e..b28378f57 100644 --- a/packages/mesh-webpack-example/package.json +++ b/packages/mesh-webpack-example/package.json @@ -21,6 +21,6 @@ "webpack-cli": "^3.3.7" }, "dependencies": { - "@0x/mesh-browser": "^11.0.3" + "@0x/mesh-browser": "^11.1.0" } } diff --git a/zeroex/orderwatch/order_watcher.go b/zeroex/orderwatch/order_watcher.go index 43c48b76e..1eadce6e4 100644 --- a/zeroex/orderwatch/order_watcher.go +++ b/zeroex/orderwatch/order_watcher.go @@ -14,6 +14,7 @@ import ( "github.com/0xProject/0x-mesh/db" "github.com/0xProject/0x-mesh/ethereum" "github.com/0xProject/0x-mesh/ethereum/blockwatch" + "github.com/0xProject/0x-mesh/metrics" "github.com/0xProject/0x-mesh/zeroex" "github.com/0xProject/0x-mesh/zeroex/ordervalidator" "github.com/0xProject/0x-mesh/zeroex/orderwatch/decoder" @@ -262,6 +263,8 @@ func (w *Watcher) removedCheckerLoop(ctx context.Context) error { if err != nil { return err } + metrics.OrdersStored.WithLabelValues(metrics.ProtocolV3).Set(float64(count)) + metrics.OrdersStored.WithLabelValues(metrics.ProtocolV4).Set(float64(countV4)) totalCount := count + countV4 databaseUtilization := float64(totalCount) / float64(w.maxOrders) diff --git a/zeroex/orderwatch/order_watcher_v4.go b/zeroex/orderwatch/order_watcher_v4.go index 6405d875c..c207bca60 100644 --- a/zeroex/orderwatch/order_watcher_v4.go +++ b/zeroex/orderwatch/order_watcher_v4.go @@ -14,131 +14,6 @@ import ( logger "github.com/sirupsen/logrus" ) -// add adds a 0x order to the DB and watches it for changes in fillability. It -// will no-op (and return nil) if the order has already been added. If pinned is -// true, the orders will be marked as 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. -func (w *Watcher) addv4(orderInfos []*ordervalidator.AcceptedOrderInfo, validationBlock *types.MiniHeader, pinned bool, opts *types.AddOrdersOpts) ([]*zeroex.OrderEvent, error) { - now := time.Now().UTC() - orderEvents := []*zeroex.OrderEvent{} - dbOrders := []*types.OrderWithMetadata{} - - for _, orderInfo := range orderInfos { - dbOrder, err := w.orderInfoToOrderWithMetadata(orderInfo, pinned, now, validationBlock, opts) - if err != nil { - return nil, err - } - dbOrders = append(dbOrders, dbOrder) - - // We create an ADDED event for all orders in orderInfos. - // Some orders might not actually be added, as a workaround we - // will also emit a STOPPED_WATCHING event in some cases (see - // below) - addedEvent := &zeroex.OrderEvent{ - Timestamp: now, - OrderHash: orderInfo.OrderHash, - SignedOrder: orderInfo.SignedOrder, - FillableTakerAssetAmount: orderInfo.FillableTakerAssetAmount, - EndState: zeroex.ESOrderAdded, - } - orderEvents = append(orderEvents, addedEvent) - } - - addedMap := map[common.Hash]*types.OrderWithMetadata{} - alreadyStored, addedOrders, removedOrders, err := w.db.AddOrders(dbOrders) - alreadyStoredSet := map[common.Hash]struct{}{} - if err != nil { - return nil, err - } - for _, hash := range alreadyStored { - // Add each hash to a set of already stored hashes. This allows for faster - // lookups later on. - alreadyStoredSet[hash] = struct{}{} - } - for _, order := range addedOrders { - err = w.setupInMemoryOrderState(order) - if err != nil { - return orderEvents, err - } - addedMap[order.Hash] = order - w.recentlyValidatedOrdersMu.Lock() - w.recentlyValidatedOrders = append(w.recentlyValidatedOrders, order) - w.recentlyValidatedOrdersMu.Unlock() - } - for _, order := range removedOrders { - stoppedWatchingEvent := &zeroex.OrderEvent{ - Timestamp: now, - OrderHash: order.Hash, - SignedOrder: order.SignedOrder(), - FillableTakerAssetAmount: order.FillableTakerAssetAmount, - EndState: zeroex.ESStoppedWatching, - } - orderEvents = append(orderEvents, stoppedWatchingEvent) - - // Remove in-memory state - err = w.removeAssetDataAddressFromEventDecoder(order.OrderV3.MakerAssetData) - if err != nil { - // This should never happen since the same error would have happened when adding - // the assetData to the EventDecoder. - logger.WithFields(logger.Fields{ - "error": err.Error(), - "signedOrder": order.SignedOrder(), - }).Error("Unexpected error when trying to remove an assetData from decoder") - return nil, err - } - } - - // HACK(albrow): We need to handle orders in the orderInfos argument that - // were never added due to the max expiration time effectively changing - // within the database transaction above. In other words, new orders that - // _were_ added can change the effective max expiration time, meaning some - // orders in orderInfos were actually not added. This should not happen - // often. For now, we respond by emitting an ADDED event (above) immediately - // followed by a STOPPED_WATCHING event. If this order was submitted via - // GraphQL, the GraphQL client will see a response that indicates the order was - // successfully added, and then it will look like we immediately stopped - // watching it. This is not too far off from what really happened but is - // slightly inefficient. - // - // We can detect this by looking for orders that we should have added but - // are not included in either wasAdded map or the alreadyStored set. - // - // TODO(albrow): In the future, we should add an additional return value and - // then react to that differently depending on whether the order was - // received via GraphQL or from a peer. In the former case, we should return an - // GraphQL error response indicating that the order was not in fact added. In - // the latter case, we should not emit any order events but might potentially - // want to adjust the peer's score. - for _, orderToAdd := range orderInfos { - _, wasAdded := addedMap[orderToAdd.OrderHash] - _, alreadyStored := alreadyStoredSet[orderToAdd.OrderHash] - if !wasAdded && !alreadyStored { - stoppedWatchingEvent := &zeroex.OrderEvent{ - Timestamp: now, - OrderHash: orderToAdd.OrderHash, - SignedOrder: orderToAdd.SignedOrder, - FillableTakerAssetAmount: orderToAdd.FillableTakerAssetAmount, - EndState: zeroex.ESStoppedWatching, - } - orderEvents = append(orderEvents, stoppedWatchingEvent) - } - } - - if len(removedOrders) > 0 { - newMaxExpirationTime, err := w.db.GetCurrentMaxExpirationTime() - if err != nil { - return nil, err - } - logger.WithFields(logger.Fields{ - "ordersRemoved": len(removedOrders), - "newMaxExpirationTime": newMaxExpirationTime.String(), - }).Debug("removed orders due to exceeding max expiration time") - } - - return orderEvents, nil -} - // ValidateAndStoreValidOrdersV4 applies general 0x validation and Mesh-specific validation to // the given v4 orders and if they are valid, adds them to the OrderWatcher func (w *Watcher) ValidateAndStoreValidOrdersV4(ctx context.Context, orders []*zeroex.SignedOrderV4, chainID int, pinned bool, opts *types.AddOrdersOpts) (*ordervalidator.ValidationResults, error) {