From 0caa1da62b7743587956551dfea01f6c472d05f2 Mon Sep 17 00:00:00 2001 From: Oskar Paolini Date: Mon, 4 Jan 2021 13:26:29 +0100 Subject: [PATCH] Release 10.2.0 (#993) * Use write-ahead log for journal mode for sqlite * test mutex and local approval * fix critical errors during invalid ERC20 event spec * Revert "Use write-ahead log for journal mode for sqlite" This reverts commit 6048e09c0ad662deac60f94609be1d6bcd07fbfa. * remove unused marshaller * use multiple datastore paths, add test for ERC20 approvals * fix linter and comment * add mutex around contractAddressToSeenCount map this should solve the issue with panics around concurrent map read writes * use the same defaults for newDB * implement simple concurrent counter for addresses * add configuration to resolver, dropping of slow subscribers * version bump * fix ts building * exclude graphql_server.go from js builds * cut release 10.2.0 Co-authored-by: Mason Liang --- README.md | 2 +- cmd/mesh/graphql_server.go | 12 +- cmd/mesh/main.go | 6 +- core/core.go | 2 +- core/new_db.go | 13 +- db/common.go | 11 +- db/sql_implementation.go | 83 +++- 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 | 2 +- docs/deployment_with_telemetry.md | 2 +- docs/graphql-client/README.md | 2 +- docs/graphql-client/reference.md | 368 ++++++++-------- docs/graphql_api.md | 2 +- graphql/resolver.go | 18 +- graphql/schema.resolvers.go | 13 +- integration-tests/browser_integration_test.go | 7 +- packages/mesh-browser-lite/package.json | 2 +- packages/mesh-browser-shim/package.json | 2 +- packages/mesh-browser/go/mesh-browser/main.go | 10 +- packages/mesh-browser/package.json | 4 +- packages/mesh-graphql-client/package.json | 4 +- packages/mesh-integration-tests/package.json | 4 +- .../mesh-webpack-example-lite/package.json | 2 +- packages/mesh-webpack-example/package.json | 2 +- zeroex/orderwatch/decoder/event_decoder.go | 22 +- .../orderwatch/decoder/event_decoder_test.go | 26 ++ zeroex/orderwatch/order_watcher.go | 38 +- zeroex/orderwatch/order_watcher_utils.go | 41 ++ 31 files changed, 848 insertions(+), 664 deletions(-) create mode 100644 zeroex/orderwatch/order_watcher_utils.go diff --git a/README.md b/README.md index 742f06db8..165bdb43f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Version](https://img.shields.io/badge/version-10.1.0-orange.svg)](https://github.com/0xProject/0x-mesh/releases) +[![Version](https://img.shields.io/badge/version-10.2.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/graphql_server.go b/cmd/mesh/graphql_server.go index 7c8dbd5b5..c6c1dfc65 100644 --- a/cmd/mesh/graphql_server.go +++ b/cmd/mesh/graphql_server.go @@ -1,3 +1,5 @@ +// +build !js + package main import ( @@ -17,23 +19,25 @@ import ( // the signal to shutdown. const gracefulShutdownTimeout = 10 * time.Second -func serveGraphQL(ctx context.Context, app *core.App, addr string, enableGraphiQL bool) error { +func serveGraphQL(ctx context.Context, app *core.App, config *standaloneConfig) error { handler := http.NewServeMux() // Set up handler for GraphiQL - if enableGraphiQL { + if config.EnableGraphQLServer { handler.Handle("/", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { _, _ = w.Write(graphiQLPage) })) } // Set up handler for GrqphQL queries - resolver := graphql.NewResolver(app) + resolver := graphql.NewResolver(app, &graphql.ResolverConfig{ + SlowSubscriberTimeout: config.GraphQLSlowSubscriberTimeout, + }) graphQLServer := gqlserver.NewDefaultServer(generated.NewExecutableSchema(generated.Config{Resolvers: resolver})) handler.Handle("/graphql", graphQLServer) // Start the server - server := &http.Server{Addr: addr, Handler: handler} + server := &http.Server{Addr: config.GraphQLServerAddr, Handler: handler} go func() { <-ctx.Done() shutdownContext, cancel := context.WithTimeout(context.Background(), gracefulShutdownTimeout) diff --git a/cmd/mesh/main.go b/cmd/mesh/main.go index 3a5a7c885..741aece20 100644 --- a/cmd/mesh/main.go +++ b/cmd/mesh/main.go @@ -9,6 +9,7 @@ import ( "context" "os" "sync" + "time" "github.com/0xProject/0x-mesh/core" "github.com/plaid/go-envvar/envvar" @@ -29,6 +30,9 @@ type standaloneConfig struct { // By default, 0x Mesh will listen on 0.0.0.0 (all available addresses) and // port 60557. GraphQLServerAddr string `envvar:"GRAPHQL_SERVER_ADDR" default:"0.0.0.0:60557"` + // GraphQLSlowSubscriberTimeout is the maximum amount of time subscriber has to + // accept events before being dropped. + GraphQLSlowSubscriberTimeout time.Duration `envvar:"GRAPHQL_SLOW_SUBSCRIBER_TIMEOUT" default:"2s"` // EnableGraphQLPlayground determines whether or not to enable GraphiQL, an interactive // GraphQL playground which can be accessed by visiting GraphQLServerAddr in a browser. // See https://github.com/graphql/graphiql for more information. By default, GraphiQL @@ -76,7 +80,7 @@ func main() { go func() { defer wg.Done() log.WithField("graphql_server_addr", config.GraphQLServerAddr).Info("starting GraphQL server") - if err := serveGraphQL(ctx, app, config.GraphQLServerAddr, config.EnableGraphQLPlayground); err != nil { + if err := serveGraphQL(ctx, app, &config); err != nil { graphQLErrChan <- err } }() diff --git a/core/core.go b/core/core.go index a5d7656ca..4f22bab00 100644 --- a/core/core.go +++ b/core/core.go @@ -56,7 +56,7 @@ const ( estimatedNonPollingEthereumRPCRequestsPer24Hrs = 50000 // logStatsInterval is how often to log stats for this node. logStatsInterval = 5 * time.Minute - version = "10.1.0" + version = "10.2.0" // ordersyncMinPeers is the minimum amount of peers to receive orders from // before considering the ordersync process finished. ordersyncMinPeers = 5 diff --git a/core/new_db.go b/core/new_db.go index 5ae4d8df8..2b78e5ce4 100644 --- a/core/new_db.go +++ b/core/new_db.go @@ -10,10 +10,15 @@ import ( ) func newDB(ctx context.Context, config Config) (*db.DB, error) { - databasePath := filepath.Join(config.DataDir, "sqlite-db", "db.sqlite") + meshDatabasePath := filepath.Join(config.DataDir, "db", "db.sqlite?_journal=WAL") + peerStoreDatabasePath := filepath.Join(config.DataDir, "db", "peerstore.sqlite?_journal=WAL") + dhtDatabasePath := filepath.Join(config.DataDir, "db", "dht.sqlite?_journal=WAL") + return db.New(ctx, &db.Options{ - DriverName: "sqlite3", - DataSourceName: databasePath, - MaxOrders: config.MaxOrdersInStorage, + DriverName: "sqlite3", + DataSourceName: meshDatabasePath, + DataSourcePeerStoreName: peerStoreDatabasePath, + DataSourceDHTName: dhtDatabasePath, + MaxOrders: config.MaxOrdersInStorage, }) } diff --git a/db/common.go b/db/common.go index d75bd353a..5757ea964 100644 --- a/db/common.go +++ b/db/common.go @@ -50,10 +50,13 @@ type Database interface { } type Options struct { - DriverName string `json:"driverName"` - DataSourceName string `json:"dataSourceName"` - MaxOrders int `json:"maxOrders"` - MaxMiniHeaders int `json:"maxMiniHeaders"` + DriverName string `json:"driverName"` + DataSourceName string `json:"dataSourceName"` + DataSourcePeerStoreName string `json:"dataSourcePeerStoreName"` + DataSourceDHTName string `json:"dataSourceDHTName"` + DataDir string `json:"dataDir"` + MaxOrders int `json:"maxOrders"` + MaxMiniHeaders int `json:"maxMiniHeaders"` } func parseOptions(opts *Options) *Options { diff --git a/db/sql_implementation.go b/db/sql_implementation.go index d0f7cc3f3..496751a7c 100644 --- a/db/sql_implementation.go +++ b/db/sql_implementation.go @@ -20,8 +20,9 @@ import ( "github.com/google/uuid" "github.com/ido50/sqlz" ds "github.com/ipfs/go-datastore" - "github.com/ipfs/go-ds-sql" + sqlds "github.com/ipfs/go-ds-sql" "github.com/jmoiron/sqlx" + _ "github.com/mattn/go-sqlite3" ) @@ -34,7 +35,13 @@ var _ Database = (*DB)(nil) type DB struct { ctx context.Context sqldb *sqlz.DB - opts *Options + // Additional connection contexts are created to avoid the `database is + // locked` issue when libp2p accesses the peerstore and DHT tables + // concurrently over the same connection. ref: + // https://github.com/0xProject/0x-mesh/pull/873 + dhtSQLdb *sqlz.DB + peerSQLdb *sqlz.DB + opts *Options // mu is used to protect all reads and writes to the database. This is a solution to the // `database is locked` error that appears on SQLite. https://github.com/mattn/go-sqlite3/issues/607 @@ -44,20 +51,25 @@ type DB struct { func defaultOptions() *Options { return &Options{ - DriverName: "sqlite3", - DataSourceName: "0x_mesh/db/db.sqlite", - MaxOrders: 100000, - MaxMiniHeaders: 20, + DriverName: "sqlite3", + DataSourceName: "0x_mesh/db/db.sqlite", + DataSourceDHTName: "0x_mesh/db/dht.sqlite", + DataSourcePeerStoreName: "0x_mesh/db/peerstore.sqlite", + MaxOrders: 100000, + MaxMiniHeaders: 20, } } // TestOptions returns a set of options suitable for testing. func TestOptions() *Options { + testingDir := filepath.Join("/tmp", "mesh_testing", uuid.New().String()) return &Options{ - DriverName: "sqlite3", - DataSourceName: filepath.Join("/tmp", "mesh_testing", uuid.New().String(), "db.sqlite"), - MaxOrders: 100, - MaxMiniHeaders: 20, + DriverName: "sqlite3", + DataSourceName: filepath.Join(testingDir, "db.sqlite"), + DataSourceDHTName: filepath.Join(testingDir, "dht.sqlite"), + DataSourcePeerStoreName: filepath.Join(testingDir, "peerstore.sqlite"), + MaxOrders: 100, + MaxMiniHeaders: 20, } } @@ -69,8 +81,11 @@ func New(ctx context.Context, opts *Options) (*DB, error) { connectCtx, cancel := context.WithTimeout(ctx, connectTimeout) defer cancel() - if err := os.MkdirAll(filepath.Dir(opts.DataSourceName), os.ModePerm); err != nil && err != os.ErrExist { - return nil, err + pathsToCreate := []string{opts.DataSourceName, opts.DataSourceDHTName, opts.DataSourcePeerStoreName} + for _, path := range pathsToCreate { + if err := os.MkdirAll(filepath.Dir(path), os.ModePerm); err != nil && err != os.ErrExist { + return nil, err + } } sqldb, err := sqlx.ConnectContext(connectCtx, opts.DriverName, opts.DataSourceName) @@ -78,16 +93,30 @@ func New(ctx context.Context, opts *Options) (*DB, error) { return nil, err } - // Automatically close the database connection when the context is canceled. + dhtSQLdb, err := sqlx.ConnectContext(connectCtx, opts.DriverName, opts.DataSourceDHTName) + if err != nil { + return nil, err + } + + peerSQLdb, err := sqlx.ConnectContext(connectCtx, opts.DriverName, opts.DataSourcePeerStoreName) + if err != nil { + return nil, err + } + + // Automatically close the database connections when the context is canceled. go func() { <-ctx.Done() _ = sqldb.Close() + _ = dhtSQLdb.Close() + _ = peerSQLdb.Close() }() db := &DB{ - ctx: ctx, - sqldb: sqlz.Newx(sqldb), - opts: opts, + ctx: ctx, + sqldb: sqlz.Newx(sqldb), + dhtSQLdb: sqlz.Newx(dhtSQLdb), + peerSQLdb: sqlz.Newx(peerSQLdb), + opts: opts, } if err := db.migrate(); err != nil { return nil, err @@ -97,11 +126,11 @@ func New(ctx context.Context, opts *Options) (*DB, error) { } func (db *DB) DHTStore() ds.Batching { - return sqlds.NewDatastore(db.sqldb.DB.DB, NewSqliteQueriesForTable("dhtstore")) + return sqlds.NewDatastore(db.dhtSQLdb.DB.DB, NewSqliteQueriesForTable("dhtstore")) } func (db *DB) PeerStore() ds.Batching { - return sqlds.NewDatastore(db.sqldb.DB.DB, NewSqliteQueriesForTable("peerstore")) + return sqlds.NewDatastore(db.peerSQLdb.DB.DB, NewSqliteQueriesForTable("peerstore")) } // TODO(albrow): Use a proper migration tool. We don't technically need this @@ -157,12 +186,15 @@ CREATE TABLE IF NOT EXISTS metadata ( ethRPCRequestsSentInCurrentUTCDay BIGINT NOT NULL, startOfCurrentUTCDay DATETIME NOT NULL ); +` +const peerstoreSchema = ` CREATE TABLE IF NOT EXISTS peerstore ( key TEXT NOT NULL UNIQUE, data BYTEA NOT NULL ); - +` +const dhtSchema = ` CREATE TABLE IF NOT EXISTS dhtstore ( key TEXT NOT NULL UNIQUE, data BYTEA NOT NULL @@ -307,7 +339,18 @@ const updateMetadataQuery = `UPDATE metadata SET func (db *DB) migrate() error { _, err := db.sqldb.ExecContext(db.ctx, schema) - return convertErr(err) + if err != nil { + return fmt.Errorf("meshdb schema migration failed with err: %s", err) + } + _, err = db.peerSQLdb.ExecContext(db.ctx, peerstoreSchema) + if err != nil { + return fmt.Errorf("peerstore schema migration failed with err: %s", err) + } + _, err = db.dhtSQLdb.ExecContext(db.ctx, dhtSchema) + if err != nil { + return fmt.Errorf("dht schema migration failed with err: %s", err) + } + return nil } // ReadWriteTransactionalContext acquires a write lock, executes the transaction, then immediately releases the lock. diff --git a/docs/browser-bindings/browser-lite/README.md b/docs/browser-bindings/browser-lite/README.md index dd8119ee4..47ebe6ef6 100644 --- a/docs/browser-bindings/browser-lite/README.md +++ b/docs/browser-bindings/browser-lite/README.md @@ -1,4 +1,4 @@ -# @0x/mesh-browser-lite - v10.1.0 +# @0x/mesh-browser-lite - v10.2.0 ## @0x/mesh-browser-lite diff --git a/docs/browser-bindings/browser-lite/reference.md b/docs/browser-bindings/browser-lite/reference.md index 875b416d1..8d247d8d1 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/b8104145/packages/mesh-browser-lite/src/mesh.ts#L132)_ +_Defined in [mesh.ts:132](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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/b8104145/packages/mesh-browser-lite/src/mesh.ts#L129)_ +_Defined in [mesh.ts:129](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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/b8104145/pac ▸ **addOrdersAsync**(`orders`: SignedOrder[], `pinned`: boolean): _Promise‹[ValidationResults](#interface-validationresults)›_ -_Defined in [mesh.ts:269](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/mesh.ts#L269)_ +_Defined in [mesh.ts:269](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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/b8104145/packages/mesh-browser-lite/src/mesh.ts#L207)_ +_Defined in [mesh.ts:207](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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/b8104145/packages/mesh-browser-lite/src/mesh.ts#L240)_ +_Defined in [mesh.ts:240](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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/b8104145/packages/mesh-browser-lite/src/mesh.ts#L190)_ +_Defined in [mesh.ts:190](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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/b8104145/packages/mesh-browser-lite/src/mesh.ts#L152)_ +_Defined in [mesh.ts:152](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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/b8104145/packages/mesh-browser-lite/src/mesh.ts#L165)_ +_Defined in [mesh.ts:165](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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/b8104145/packages/mesh-browser-lite/src/mesh.ts#L174)_ +_Defined in [mesh.ts:174](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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/b8104145/packages/mesh-browser-lite/src/types.ts#L505)_ +_Defined in [types.ts:505](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L505)_ --- @@ -205,7 +205,7 @@ _Defined in [types.ts:505](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ERC1155TransferBatchEvent**: = "ERC1155TransferBatchEvent" -_Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L507)_ +_Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L507)_ --- @@ -213,7 +213,7 @@ _Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ERC1155TransferSingleEvent**: = "ERC1155TransferSingleEvent" -_Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L506)_ +_Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L506)_ --- @@ -221,7 +221,7 @@ _Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ERC20ApprovalEvent**: = "ERC20ApprovalEvent" -_Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L501)_ +_Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L501)_ --- @@ -229,7 +229,7 @@ _Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ERC20TransferEvent**: = "ERC20TransferEvent" -_Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L500)_ +_Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L500)_ --- @@ -237,7 +237,7 @@ _Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ERC721ApprovalEvent**: = "ERC721ApprovalEvent" -_Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L503)_ +_Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L503)_ --- @@ -245,7 +245,7 @@ _Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ERC721ApprovalForAllEvent**: = "ERC721ApprovalForAllEvent" -_Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L504)_ +_Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L504)_ --- @@ -253,7 +253,7 @@ _Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ERC721TransferEvent**: = "ERC721TransferEvent" -_Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L502)_ +_Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L502)_ --- @@ -261,7 +261,7 @@ _Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ExchangeCancelEvent**: = "ExchangeCancelEvent" -_Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L509)_ +_Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L509)_ --- @@ -269,7 +269,7 @@ _Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ExchangeCancelUpToEvent**: = "ExchangeCancelUpToEvent" -_Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L510)_ +_Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L510)_ --- @@ -277,7 +277,7 @@ _Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ExchangeFillEvent**: = "ExchangeFillEvent" -_Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L508)_ +_Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L508)_ --- @@ -285,7 +285,7 @@ _Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **WethDepositEvent**: = "WethDepositEvent" -_Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L511)_ +_Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L511)_ --- @@ -293,7 +293,7 @@ _Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **WethWithdrawalEvent**: = "WethWithdrawalEvent" -_Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L512)_ +_Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L512)_
@@ -305,7 +305,7 @@ _Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Added**: = "ADDED" -_Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L575)_ +_Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L575)_ --- @@ -313,7 +313,7 @@ _Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Cancelled**: = "CANCELLED" -_Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L578)_ +_Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L578)_ --- @@ -321,7 +321,7 @@ _Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Expired**: = "EXPIRED" -_Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L579)_ +_Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L579)_ --- @@ -329,7 +329,7 @@ _Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **FillabilityIncreased**: = "FILLABILITY_INCREASED" -_Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L582)_ +_Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L582)_ --- @@ -337,7 +337,7 @@ _Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Filled**: = "FILLED" -_Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L576)_ +_Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L576)_ --- @@ -345,7 +345,7 @@ _Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **FullyFilled**: = "FULLY_FILLED" -_Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L577)_ +_Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L577)_ --- @@ -353,7 +353,7 @@ _Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Invalid**: = "INVALID" -_Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L574)_ +_Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L574)_ --- @@ -361,7 +361,7 @@ _Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **StoppedWatching**: = "STOPPED_WATCHING" -_Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L583)_ +_Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L583)_ --- @@ -369,7 +369,7 @@ _Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Unexpired**: = "UNEXPIRED" -_Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L580)_ +_Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L580)_ --- @@ -377,7 +377,7 @@ _Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Unfunded**: = "UNFUNDED" -_Defined in [types.ts:581](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L581)_ +_Defined in [types.ts:581](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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:713](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L713)_ +_Defined in [types.ts:713](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L713)_ --- @@ -399,7 +399,7 @@ _Defined in [types.ts:713](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **MeshValidation**: = "MESH_VALIDATION" -_Defined in [types.ts:714](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L714)_ +_Defined in [types.ts:714](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L714)_ --- @@ -407,7 +407,7 @@ _Defined in [types.ts:714](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ZeroExValidation**: = "ZEROEX_VALIDATION" -_Defined in [types.ts:712](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L712)_ +_Defined in [types.ts:712](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L712)_
@@ -419,7 +419,7 @@ _Defined in [types.ts:712](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Debug**: = 5 -_Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L238)_ +_Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L238)_ --- @@ -427,7 +427,7 @@ _Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Error**: = 2 -_Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L235)_ +_Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L235)_ --- @@ -435,7 +435,7 @@ _Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Fatal**: = 1 -_Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L234)_ +_Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L234)_ --- @@ -443,7 +443,7 @@ _Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Info**: = 4 -_Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L237)_ +_Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L237)_ --- @@ -451,7 +451,7 @@ _Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Panic**: = 0 -_Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L233)_ +_Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L233)_ --- @@ -459,7 +459,7 @@ _Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Trace**: = 6 -_Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L239)_ +_Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L239)_ --- @@ -467,7 +467,7 @@ _Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Warn**: = 3 -_Defined in [types.ts:236](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L236)_ +_Defined in [types.ts:236](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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:693](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L693)_ +_Defined in [types.ts:693](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L693)_ --- @@ -493,7 +493,7 @@ _Defined in [types.ts:693](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **isNew**: _boolean_ -_Defined in [types.ts:694](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L694)_ +_Defined in [types.ts:694](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L694)_ --- @@ -501,7 +501,7 @@ _Defined in [types.ts:694](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **orderHash**: _string_ -_Defined in [types.ts:691](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L691)_ +_Defined in [types.ts:691](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L691)_ --- @@ -509,7 +509,7 @@ _Defined in [types.ts:691](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:692](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L692)_ +_Defined in [types.ts:692](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L692)_
@@ -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/b8104145/packages/mesh-browser-lite/src/types.ts#L144)_ +_Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L144)_ --- @@ -535,7 +535,7 @@ _Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **bootstrapList**? : _string[]_ -_Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L137)_ +_Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L137)_ --- @@ -543,7 +543,7 @@ _Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **customContractAddresses**? : _[ContractAddresses](#interface-contractaddresses)_ -_Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L188)_ +_Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L188)_ --- @@ -551,7 +551,7 @@ _Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **customOrderFilter**? : _[JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L213)_ +_Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L213)_ --- @@ -559,7 +559,7 @@ _Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **enableEthereumRPCRateLimiting**? : _undefined | false | true_ -_Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L161)_ +_Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L161)_ --- @@ -567,7 +567,7 @@ _Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ethereumChainID**: _number_ -_Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L129)_ +_Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L129)_ --- @@ -575,7 +575,7 @@ _Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ethereumRPCMaxContentLength**? : _undefined | number_ -_Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L153)_ +_Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L153)_ --- @@ -583,7 +583,7 @@ _Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ethereumRPCMaxRequestsPer24HrUTC**? : _undefined | number_ -_Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L166)_ +_Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L166)_ --- @@ -591,7 +591,7 @@ _Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ethereumRPCMaxRequestsPerSecond**? : _undefined | number_ -_Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L172)_ +_Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L172)_ --- @@ -599,7 +599,7 @@ _Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ethereumRPCURL**? : _undefined | string_ -_Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L126)_ +_Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L126)_ --- @@ -607,7 +607,7 @@ _Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **maxBytesPerSecond**? : _undefined | number_ -_Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L219)_ +_Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L219)_ --- @@ -615,7 +615,7 @@ _Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **maxOrdersInStorage**? : _undefined | number_ -_Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L193)_ +_Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L193)_ --- @@ -623,7 +623,7 @@ _Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **useBootstrapList**? : _undefined | false | true_ -_Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L132)_ +_Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L132)_ --- @@ -631,7 +631,7 @@ _Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **verbosity**? : _[Verbosity](#enumeration-verbosity)_ -_Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L123)_ +_Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L123)_ --- @@ -639,7 +639,7 @@ _Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **web3Provider**? : _SupportedProvider_ -_Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L216)_ +_Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L216)_
@@ -655,7 +655,7 @@ _Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **devUtils**: _string_ -_Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L224)_ +_Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L224)_ --- @@ -663,7 +663,7 @@ _Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **erc1155Proxy**: _string_ -_Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L227)_ +_Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L227)_ --- @@ -671,7 +671,7 @@ _Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **erc20Proxy**: _string_ -_Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L225)_ +_Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L225)_ --- @@ -679,7 +679,7 @@ _Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **erc721Proxy**: _string_ -_Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L226)_ +_Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L226)_ --- @@ -687,7 +687,7 @@ _Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **exchange**: _string_ -_Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L223)_ +_Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L223)_ --- @@ -695,7 +695,7 @@ _Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **weth9**? : _undefined | string_ -_Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L228)_ +_Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L228)_ --- @@ -703,7 +703,7 @@ _Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **zrxToken**? : _undefined | string_ -_Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L229)_ +_Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L229)_
@@ -719,7 +719,7 @@ _Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **address**: _string_ -_Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L553)_ +_Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L553)_ --- @@ -727,7 +727,7 @@ _Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **blockHash**: _string_ -_Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L548)_ +_Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L548)_ --- @@ -735,7 +735,7 @@ _Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **isRemoved**: _boolean_ -_Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L552)_ +_Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L552)_ --- @@ -743,7 +743,7 @@ _Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **kind**: _[ContractEventKind](#enumeration-contracteventkind)_ -_Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L554)_ +_Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L554)_ --- @@ -751,7 +751,7 @@ _Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **logIndex**: _number_ -_Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L551)_ +_Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L551)_ --- @@ -759,7 +759,7 @@ _Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **parameters**: _ContractEventParameters_ -_Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L555)_ +_Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L555)_ --- @@ -767,7 +767,7 @@ _Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **txHash**: _string_ -_Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L549)_ +_Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L549)_ --- @@ -775,7 +775,7 @@ _Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **txIndex**: _number_ -_Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L550)_ +_Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L550)_
@@ -791,7 +791,7 @@ _Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **approved**: _boolean_ -_Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L417)_ +_Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L417)_ --- @@ -799,7 +799,7 @@ _Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **operator**: _string_ -_Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L416)_ +_Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L416)_ --- @@ -807,7 +807,7 @@ _Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **owner**: _string_ -_Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L415)_ +_Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L415)_
@@ -823,7 +823,7 @@ _Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **from**: _string_ -_Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L399)_ +_Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L399)_ --- @@ -831,7 +831,7 @@ _Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ids**: _BigNumber[]_ -_Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L401)_ +_Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L401)_ --- @@ -839,7 +839,7 @@ _Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **operator**: _string_ -_Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L398)_ +_Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L398)_ --- @@ -847,7 +847,7 @@ _Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **to**: _string_ -_Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L400)_ +_Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L400)_ --- @@ -855,7 +855,7 @@ _Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **values**: _BigNumber[]_ -_Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L402)_ +_Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L402)_
@@ -871,7 +871,7 @@ _Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **from**: _string_ -_Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L382)_ +_Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L382)_ --- @@ -879,7 +879,7 @@ _Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **id**: _BigNumber_ -_Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L384)_ +_Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L384)_ --- @@ -887,7 +887,7 @@ _Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **operator**: _string_ -_Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L381)_ +_Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L381)_ --- @@ -895,7 +895,7 @@ _Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **to**: _string_ -_Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L383)_ +_Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L383)_ --- @@ -903,7 +903,7 @@ _Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **value**: _BigNumber_ -_Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L385)_ +_Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L385)_
@@ -919,7 +919,7 @@ _Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **owner**: _string_ -_Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L336)_ +_Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L336)_ --- @@ -927,7 +927,7 @@ _Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **spender**: _string_ -_Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L337)_ +_Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L337)_ --- @@ -935,7 +935,7 @@ _Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **value**: _BigNumber_ -_Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L338)_ +_Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L338)_
@@ -951,7 +951,7 @@ _Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **from**: _string_ -_Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L323)_ +_Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L323)_ --- @@ -959,7 +959,7 @@ _Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **to**: _string_ -_Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L324)_ +_Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L324)_ --- @@ -967,7 +967,7 @@ _Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **value**: _BigNumber_ -_Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L325)_ +_Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L325)_
@@ -983,7 +983,7 @@ _Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **approved**: _string_ -_Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L363)_ +_Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L363)_ --- @@ -991,7 +991,7 @@ _Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **owner**: _string_ -_Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L362)_ +_Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L362)_ --- @@ -999,7 +999,7 @@ _Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **tokenId**: _BigNumber_ -_Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L364)_ +_Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L364)_
@@ -1015,7 +1015,7 @@ _Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **approved**: _boolean_ -_Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L377)_ +_Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L377)_ --- @@ -1023,7 +1023,7 @@ _Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **operator**: _string_ -_Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L376)_ +_Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L376)_ --- @@ -1031,7 +1031,7 @@ _Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **owner**: _string_ -_Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L375)_ +_Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L375)_
@@ -1047,7 +1047,7 @@ _Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **from**: _string_ -_Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L349)_ +_Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L349)_ --- @@ -1055,7 +1055,7 @@ _Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **to**: _string_ -_Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L350)_ +_Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L350)_ --- @@ -1063,7 +1063,7 @@ _Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **tokenId**: _BigNumber_ -_Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L351)_ +_Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L351)_
@@ -1079,7 +1079,7 @@ _Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **feeRecipientAddress**: _string_ -_Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L458)_ +_Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L458)_ --- @@ -1087,7 +1087,7 @@ _Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **makerAddress**: _string_ -_Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L456)_ +_Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L456)_ --- @@ -1095,7 +1095,7 @@ _Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **makerAssetData**: _string_ -_Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L460)_ +_Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L460)_ --- @@ -1103,7 +1103,7 @@ _Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **orderHash**: _string_ -_Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L459)_ +_Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L459)_ --- @@ -1111,7 +1111,7 @@ _Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **senderAddress**: _string_ -_Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L457)_ +_Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L457)_ --- @@ -1119,7 +1119,7 @@ _Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **takerAssetData**: _string_ -_Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L461)_ +_Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L461)_
@@ -1135,7 +1135,7 @@ _Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **makerAddress**: _string_ -_Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L465)_ +_Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L465)_ --- @@ -1143,7 +1143,7 @@ _Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **orderEpoch**: _BigNumber_ -_Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L467)_ +_Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L467)_ --- @@ -1151,7 +1151,7 @@ _Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **orderSenderAddress**: _string_ -_Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L466)_ +_Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L466)_
@@ -1167,7 +1167,7 @@ _Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **feeRecipientAddress**: _string_ -_Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L424)_ +_Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L424)_ --- @@ -1175,7 +1175,7 @@ _Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **makerAddress**: _string_ -_Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L421)_ +_Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L421)_ --- @@ -1183,7 +1183,7 @@ _Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **makerAssetData**: _string_ -_Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L431)_ +_Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L431)_ --- @@ -1191,7 +1191,7 @@ _Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **makerAssetFilledAmount**: _BigNumber_ -_Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L425)_ +_Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L425)_ --- @@ -1199,7 +1199,7 @@ _Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **makerFeeAssetData**: _string_ -_Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L433)_ +_Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L433)_ --- @@ -1207,7 +1207,7 @@ _Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **makerFeePaid**: _BigNumber_ -_Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L427)_ +_Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L427)_ --- @@ -1215,7 +1215,7 @@ _Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **orderHash**: _string_ -_Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L430)_ +_Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L430)_ --- @@ -1223,7 +1223,7 @@ _Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **protocolFeePaid**: _BigNumber_ -_Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L429)_ +_Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L429)_ --- @@ -1231,7 +1231,7 @@ _Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **senderAddress**: _string_ -_Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L423)_ +_Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L423)_ --- @@ -1239,7 +1239,7 @@ _Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **takerAddress**: _string_ -_Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L422)_ +_Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L422)_ --- @@ -1247,7 +1247,7 @@ _Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **takerAssetData**: _string_ -_Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L432)_ +_Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L432)_ --- @@ -1255,7 +1255,7 @@ _Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **takerAssetFilledAmount**: _BigNumber_ -_Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L426)_ +_Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L426)_ --- @@ -1263,7 +1263,7 @@ _Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **takerFeeAssetData**: _string_ -_Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L434)_ +_Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L434)_ --- @@ -1271,7 +1271,7 @@ _Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **takerFeePaid**: _BigNumber_ -_Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L428)_ +_Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L428)_
@@ -1287,7 +1287,7 @@ _Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ordersInfos**: _[OrderInfo](#interface-orderinfo)[]_ -_Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L45)_ +_Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L45)_ --- @@ -1295,7 +1295,7 @@ _Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **timestamp**: _number_ -_Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L44)_ +_Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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/b8104145/packages/mesh-browser-lite/src/types.ts#L67)_ +_Defined in [types.ts:67](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L67)_ --- @@ -1321,7 +1321,7 @@ _Defined in [types.ts:67](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **\$schema**? : _undefined | string_ -_Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L66)_ +_Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L66)_ --- @@ -1329,7 +1329,7 @@ _Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **additionalItems**? : _boolean | [JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L78)_ +_Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L78)_ --- @@ -1337,7 +1337,7 @@ _Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **additionalProperties**? : _boolean | [JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L86)_ +_Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L86)_ --- @@ -1345,7 +1345,7 @@ _Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **allOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L108)_ +_Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L108)_ --- @@ -1353,7 +1353,7 @@ _Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **anyOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L109)_ +_Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L109)_ --- @@ -1361,7 +1361,7 @@ _Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **const**? : _any_ -_Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L105)_ +_Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L105)_ --- @@ -1369,7 +1369,7 @@ _Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **definitions**? : _undefined | object_ -_Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L87)_ +_Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L87)_ --- @@ -1377,7 +1377,7 @@ _Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **dependencies**? : _undefined | object_ -_Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L96)_ +_Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L96)_ --- @@ -1385,7 +1385,7 @@ _Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **description**? : _undefined | string_ -_Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L69)_ +_Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L69)_ --- @@ -1393,7 +1393,7 @@ _Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **enum**? : _any[]_ -_Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L99)_ +_Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L99)_ --- @@ -1401,7 +1401,7 @@ _Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **exclusiveMaximum**? : _undefined | false | true_ -_Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L72)_ +_Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L72)_ --- @@ -1409,7 +1409,7 @@ _Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **exclusiveMinimum**? : _undefined | false | true_ -_Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L74)_ +_Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L74)_ --- @@ -1417,7 +1417,7 @@ _Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **format**? : _undefined | string_ -_Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L107)_ +_Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L107)_ --- @@ -1425,7 +1425,7 @@ _Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **id**? : _undefined | string_ -_Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L65)_ +_Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L65)_ --- @@ -1433,7 +1433,7 @@ _Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **items**? : _[JsonSchema](#interface-jsonschema) | [JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L79)_ +_Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L79)_ --- @@ -1441,7 +1441,7 @@ _Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **maxItems**? : _undefined | number_ -_Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L80)_ +_Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L80)_ --- @@ -1449,7 +1449,7 @@ _Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **maxLength**? : _undefined | number_ -_Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L75)_ +_Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L75)_ --- @@ -1457,7 +1457,7 @@ _Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **maxProperties**? : _undefined | number_ -_Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L83)_ +_Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L83)_ --- @@ -1465,7 +1465,7 @@ _Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **maximum**? : _undefined | number_ -_Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L71)_ +_Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L71)_ --- @@ -1473,7 +1473,7 @@ _Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **minItems**? : _undefined | number_ -_Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L81)_ +_Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L81)_ --- @@ -1481,7 +1481,7 @@ _Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **minLength**? : _undefined | number_ -_Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L76)_ +_Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L76)_ --- @@ -1489,7 +1489,7 @@ _Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **minProperties**? : _undefined | number_ -_Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L84)_ +_Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L84)_ --- @@ -1497,7 +1497,7 @@ _Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **minimum**? : _undefined | number_ -_Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L73)_ +_Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L73)_ --- @@ -1505,7 +1505,7 @@ _Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **multipleOf**? : _undefined | number_ -_Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L70)_ +_Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L70)_ --- @@ -1513,7 +1513,7 @@ _Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **not**? : _[JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L111)_ +_Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L111)_ --- @@ -1521,7 +1521,7 @@ _Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **oneOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L110)_ +_Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L110)_ --- @@ -1529,7 +1529,7 @@ _Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **pattern**? : _string | RegExp_ -_Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L77)_ +_Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L77)_ --- @@ -1537,7 +1537,7 @@ _Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **patternProperties**? : _undefined | object_ -_Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L93)_ +_Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L93)_ --- @@ -1545,7 +1545,7 @@ _Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **properties**? : _undefined | object_ -_Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L90)_ +_Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L90)_ --- @@ -1553,7 +1553,7 @@ _Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **required**? : _string[]_ -_Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L85)_ +_Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L85)_ --- @@ -1561,7 +1561,7 @@ _Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **title**? : _undefined | string_ -_Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L68)_ +_Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L68)_ --- @@ -1569,7 +1569,7 @@ _Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **type**? : _string | string[]_ -_Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L106)_ +_Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L106)_ --- @@ -1577,7 +1577,7 @@ _Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **uniqueItems**? : _undefined | false | true_ -_Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L82)_ +_Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L82)_
@@ -1593,7 +1593,7 @@ _Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **hash**: _string_ -_Defined in [types.ts:733](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L733)_ +_Defined in [types.ts:733](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L733)_ --- @@ -1601,7 +1601,7 @@ _Defined in [types.ts:733](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **number**: _BigNumber_ -_Defined in [types.ts:732](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L732)_ +_Defined in [types.ts:732](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L732)_
@@ -1620,7 +1620,7 @@ or filled. • **contractEvents**: _[ContractEvent](#interface-contractevent)[]_ -_Defined in [types.ts:606](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L606)_ +_Defined in [types.ts:606](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L606)_ --- @@ -1628,7 +1628,7 @@ _Defined in [types.ts:606](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **endState**: _[OrderEventEndState](#enumeration-ordereventendstate)_ -_Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L604)_ +_Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L604)_ --- @@ -1636,7 +1636,7 @@ _Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L605)_ +_Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L605)_ --- @@ -1644,7 +1644,7 @@ _Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **orderHash**: _string_ -_Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L602)_ +_Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L602)_ --- @@ -1652,7 +1652,7 @@ _Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L603)_ +_Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L603)_ --- @@ -1660,7 +1660,7 @@ _Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **timestampMs**: _number_ -_Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L601)_ +_Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L601)_
@@ -1676,7 +1676,7 @@ _Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L58)_ +_Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L58)_ --- @@ -1684,7 +1684,7 @@ _Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **orderHash**: _string_ -_Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L56)_ +_Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L56)_ --- @@ -1692,7 +1692,7 @@ _Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L57)_ +_Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L57)_
@@ -1711,7 +1711,7 @@ rejected. • **kind**: _[RejectedOrderKind](#enumeration-rejectedorderkind)_ -_Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L704)_ +_Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L704)_ --- @@ -1719,7 +1719,7 @@ _Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **orderHash**: _string_ -_Defined in [types.ts:702](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L702)_ +_Defined in [types.ts:702](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L702)_ --- @@ -1727,7 +1727,7 @@ _Defined in [types.ts:702](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L703)_ +_Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L703)_ --- @@ -1735,7 +1735,7 @@ _Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **status**: _[RejectedOrderStatus](#interface-rejectedorderstatus)_ -_Defined in [types.ts:705](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L705)_ +_Defined in [types.ts:705](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L705)_
@@ -1753,7 +1753,7 @@ Provides more information about why an order was rejected. • **code**: _string_ -_Defined in [types.ts:721](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L721)_ +_Defined in [types.ts:721](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L721)_ --- @@ -1761,7 +1761,7 @@ _Defined in [types.ts:721](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **message**: _string_ -_Defined in [types.ts:722](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L722)_ +_Defined in [types.ts:722](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L722)_
@@ -1777,7 +1777,7 @@ _Defined in [types.ts:722](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ethRPCRateLimitExpiredRequests**: _number_ -_Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L770)_ +_Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L770)_ --- @@ -1785,7 +1785,7 @@ _Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ethRPCRequestsSentInCurrentUTCDay**: _number_ -_Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L769)_ +_Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L769)_ --- @@ -1793,7 +1793,7 @@ _Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ethereumChainID**: _number_ -_Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L761)_ +_Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L761)_ --- @@ -1801,7 +1801,7 @@ _Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **latestBlock**? : _[LatestBlock](#interface-latestblock)_ -_Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L762)_ +_Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L762)_ --- @@ -1809,7 +1809,7 @@ _Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **maxExpirationTime**: _BigNumber_ -_Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L767)_ +_Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L767)_ --- @@ -1817,7 +1817,7 @@ _Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **numOrders**: _number_ -_Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L764)_ +_Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L764)_ --- @@ -1825,7 +1825,7 @@ _Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **numOrdersIncludingRemoved**: _number_ -_Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L765)_ +_Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L765)_ --- @@ -1833,7 +1833,7 @@ _Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **numPeers**: _number_ -_Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L763)_ +_Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L763)_ --- @@ -1841,7 +1841,7 @@ _Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **numPinnedOrders**: _number_ -_Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L766)_ +_Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L766)_ --- @@ -1849,7 +1849,7 @@ _Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **peerID**: _string_ -_Defined in [types.ts:760](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L760)_ +_Defined in [types.ts:760](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L760)_ --- @@ -1857,7 +1857,7 @@ _Defined in [types.ts:760](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **pubSubTopic**: _string_ -_Defined in [types.ts:757](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L757)_ +_Defined in [types.ts:757](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L757)_ --- @@ -1865,7 +1865,7 @@ _Defined in [types.ts:757](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **rendezvous**: _string_ -_Defined in [types.ts:758](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L758)_ +_Defined in [types.ts:758](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L758)_ --- @@ -1873,7 +1873,7 @@ _Defined in [types.ts:758](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **secondaryRendezvous**: _string[]_ -_Defined in [types.ts:759](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L759)_ +_Defined in [types.ts:759](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L759)_ --- @@ -1881,7 +1881,7 @@ _Defined in [types.ts:759](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **startOfCurrentUTCDay**: _Date_ -_Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L768)_ +_Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L768)_ --- @@ -1889,7 +1889,7 @@ _Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **version**: _string_ -_Defined in [types.ts:756](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L756)_ +_Defined in [types.ts:756](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L756)_
@@ -1907,7 +1907,7 @@ Indicates which orders where accepted, which were rejected, and why. • **accepted**: _[AcceptedOrderInfo](#interface-acceptedorderinfo)[]_ -_Defined in [types.ts:683](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L683)_ +_Defined in [types.ts:683](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L683)_ --- @@ -1915,7 +1915,7 @@ _Defined in [types.ts:683](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **rejected**: _[RejectedOrderInfo](#interface-rejectedorderinfo)[]_ -_Defined in [types.ts:684](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L684)_ +_Defined in [types.ts:684](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L684)_
@@ -1931,7 +1931,7 @@ _Defined in [types.ts:684](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **owner**: _string_ -_Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L489)_ +_Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L489)_ --- @@ -1939,7 +1939,7 @@ _Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **value**: _BigNumber_ -_Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L490)_ +_Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L490)_
@@ -1955,7 +1955,7 @@ _Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **owner**: _string_ -_Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L478)_ +_Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L478)_ --- @@ -1963,7 +1963,7 @@ _Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **value**: _BigNumber_ -_Defined in [types.ts:479](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L479)_ +_Defined in [types.ts:479](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L479)_
@@ -1973,7 +1973,7 @@ _Defined in [types.ts:479](https://github.com/0xProject/0x-mesh/blob/b8104145/pa ▸ **loadMeshStreamingWithURLAsync**(`url`: `string`): _Promise‹`void`›_ -_Defined in [index.ts:7](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/index.ts#L7)_ +_Defined in [index.ts:7](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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/b8104145/packages/mesh-browser-lite/src/index.ts#L15)_ +_Defined in [index.ts:15](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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 204c9940b..7583b8ac7 100644 --- a/docs/browser-bindings/browser/README.md +++ b/docs/browser-bindings/browser/README.md @@ -1,4 +1,4 @@ -# @0x/mesh-browser - v10.1.0 +# @0x/mesh-browser - v10.2.0 ## @0x/mesh-browser diff --git a/docs/browser-bindings/browser/reference.md b/docs/browser-bindings/browser/reference.md index 01785adcf..38454d60b 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/b8104145/packages/mesh-browser-lite/src/mesh.ts#L132)_ +_Defined in [mesh.ts:132](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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/b8104145/packages/mesh-browser-lite/src/mesh.ts#L129)_ +_Defined in [mesh.ts:129](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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/b8104145/pac ▸ **addOrdersAsync**(`orders`: SignedOrder[], `pinned`: boolean): _Promise‹[ValidationResults](#interface-validationresults)›_ -_Defined in [mesh.ts:269](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/mesh.ts#L269)_ +_Defined in [mesh.ts:269](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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/b8104145/packages/mesh-browser-lite/src/mesh.ts#L207)_ +_Defined in [mesh.ts:207](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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/b8104145/packages/mesh-browser-lite/src/mesh.ts#L240)_ +_Defined in [mesh.ts:240](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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/b8104145/packages/mesh-browser-lite/src/mesh.ts#L190)_ +_Defined in [mesh.ts:190](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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/b8104145/packages/mesh-browser-lite/src/mesh.ts#L152)_ +_Defined in [mesh.ts:152](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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/b8104145/packages/mesh-browser-lite/src/mesh.ts#L165)_ +_Defined in [mesh.ts:165](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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/b8104145/packages/mesh-browser-lite/src/mesh.ts#L174)_ +_Defined in [mesh.ts:174](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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/b8104145/packages/mesh-browser-lite/src/types.ts#L505)_ +_Defined in [types.ts:505](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L505)_ --- @@ -205,7 +205,7 @@ _Defined in [types.ts:505](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ERC1155TransferBatchEvent**: = "ERC1155TransferBatchEvent" -_Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L507)_ +_Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L507)_ --- @@ -213,7 +213,7 @@ _Defined in [types.ts:507](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ERC1155TransferSingleEvent**: = "ERC1155TransferSingleEvent" -_Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L506)_ +_Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L506)_ --- @@ -221,7 +221,7 @@ _Defined in [types.ts:506](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ERC20ApprovalEvent**: = "ERC20ApprovalEvent" -_Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L501)_ +_Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L501)_ --- @@ -229,7 +229,7 @@ _Defined in [types.ts:501](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ERC20TransferEvent**: = "ERC20TransferEvent" -_Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L500)_ +_Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L500)_ --- @@ -237,7 +237,7 @@ _Defined in [types.ts:500](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ERC721ApprovalEvent**: = "ERC721ApprovalEvent" -_Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L503)_ +_Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L503)_ --- @@ -245,7 +245,7 @@ _Defined in [types.ts:503](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ERC721ApprovalForAllEvent**: = "ERC721ApprovalForAllEvent" -_Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L504)_ +_Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L504)_ --- @@ -253,7 +253,7 @@ _Defined in [types.ts:504](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ERC721TransferEvent**: = "ERC721TransferEvent" -_Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L502)_ +_Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L502)_ --- @@ -261,7 +261,7 @@ _Defined in [types.ts:502](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ExchangeCancelEvent**: = "ExchangeCancelEvent" -_Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L509)_ +_Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L509)_ --- @@ -269,7 +269,7 @@ _Defined in [types.ts:509](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ExchangeCancelUpToEvent**: = "ExchangeCancelUpToEvent" -_Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L510)_ +_Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L510)_ --- @@ -277,7 +277,7 @@ _Defined in [types.ts:510](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ExchangeFillEvent**: = "ExchangeFillEvent" -_Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L508)_ +_Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L508)_ --- @@ -285,7 +285,7 @@ _Defined in [types.ts:508](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **WethDepositEvent**: = "WethDepositEvent" -_Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L511)_ +_Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L511)_ --- @@ -293,7 +293,7 @@ _Defined in [types.ts:511](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **WethWithdrawalEvent**: = "WethWithdrawalEvent" -_Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L512)_ +_Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L512)_
@@ -305,7 +305,7 @@ _Defined in [types.ts:512](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Added**: = "ADDED" -_Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L575)_ +_Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L575)_ --- @@ -313,7 +313,7 @@ _Defined in [types.ts:575](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Cancelled**: = "CANCELLED" -_Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L578)_ +_Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L578)_ --- @@ -321,7 +321,7 @@ _Defined in [types.ts:578](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Expired**: = "EXPIRED" -_Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L579)_ +_Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L579)_ --- @@ -329,7 +329,7 @@ _Defined in [types.ts:579](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **FillabilityIncreased**: = "FILLABILITY_INCREASED" -_Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L582)_ +_Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L582)_ --- @@ -337,7 +337,7 @@ _Defined in [types.ts:582](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Filled**: = "FILLED" -_Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L576)_ +_Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L576)_ --- @@ -345,7 +345,7 @@ _Defined in [types.ts:576](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **FullyFilled**: = "FULLY_FILLED" -_Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L577)_ +_Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L577)_ --- @@ -353,7 +353,7 @@ _Defined in [types.ts:577](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Invalid**: = "INVALID" -_Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L574)_ +_Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L574)_ --- @@ -361,7 +361,7 @@ _Defined in [types.ts:574](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **StoppedWatching**: = "STOPPED_WATCHING" -_Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L583)_ +_Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L583)_ --- @@ -369,7 +369,7 @@ _Defined in [types.ts:583](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Unexpired**: = "UNEXPIRED" -_Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L580)_ +_Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L580)_ --- @@ -377,7 +377,7 @@ _Defined in [types.ts:580](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Unfunded**: = "UNFUNDED" -_Defined in [types.ts:581](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L581)_ +_Defined in [types.ts:581](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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:713](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L713)_ +_Defined in [types.ts:713](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L713)_ --- @@ -399,7 +399,7 @@ _Defined in [types.ts:713](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **MeshValidation**: = "MESH_VALIDATION" -_Defined in [types.ts:714](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L714)_ +_Defined in [types.ts:714](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L714)_ --- @@ -407,7 +407,7 @@ _Defined in [types.ts:714](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ZeroExValidation**: = "ZEROEX_VALIDATION" -_Defined in [types.ts:712](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L712)_ +_Defined in [types.ts:712](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L712)_
@@ -419,7 +419,7 @@ _Defined in [types.ts:712](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Debug**: = 5 -_Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L238)_ +_Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L238)_ --- @@ -427,7 +427,7 @@ _Defined in [types.ts:238](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Error**: = 2 -_Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L235)_ +_Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L235)_ --- @@ -435,7 +435,7 @@ _Defined in [types.ts:235](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Fatal**: = 1 -_Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L234)_ +_Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L234)_ --- @@ -443,7 +443,7 @@ _Defined in [types.ts:234](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Info**: = 4 -_Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L237)_ +_Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L237)_ --- @@ -451,7 +451,7 @@ _Defined in [types.ts:237](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Panic**: = 0 -_Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L233)_ +_Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L233)_ --- @@ -459,7 +459,7 @@ _Defined in [types.ts:233](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Trace**: = 6 -_Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L239)_ +_Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L239)_ --- @@ -467,7 +467,7 @@ _Defined in [types.ts:239](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **Warn**: = 3 -_Defined in [types.ts:236](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L236)_ +_Defined in [types.ts:236](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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:693](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L693)_ +_Defined in [types.ts:693](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L693)_ --- @@ -493,7 +493,7 @@ _Defined in [types.ts:693](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **isNew**: _boolean_ -_Defined in [types.ts:694](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L694)_ +_Defined in [types.ts:694](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L694)_ --- @@ -501,7 +501,7 @@ _Defined in [types.ts:694](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **orderHash**: _string_ -_Defined in [types.ts:691](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L691)_ +_Defined in [types.ts:691](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L691)_ --- @@ -509,7 +509,7 @@ _Defined in [types.ts:691](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:692](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L692)_ +_Defined in [types.ts:692](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L692)_
@@ -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/b8104145/packages/mesh-browser-lite/src/types.ts#L144)_ +_Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L144)_ --- @@ -535,7 +535,7 @@ _Defined in [types.ts:144](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **bootstrapList**? : _string[]_ -_Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L137)_ +_Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L137)_ --- @@ -543,7 +543,7 @@ _Defined in [types.ts:137](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **customContractAddresses**? : _[ContractAddresses](#interface-contractaddresses)_ -_Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L188)_ +_Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L188)_ --- @@ -551,7 +551,7 @@ _Defined in [types.ts:188](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **customOrderFilter**? : _[JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L213)_ +_Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L213)_ --- @@ -559,7 +559,7 @@ _Defined in [types.ts:213](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **enableEthereumRPCRateLimiting**? : _undefined | false | true_ -_Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L161)_ +_Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L161)_ --- @@ -567,7 +567,7 @@ _Defined in [types.ts:161](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ethereumChainID**: _number_ -_Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L129)_ +_Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L129)_ --- @@ -575,7 +575,7 @@ _Defined in [types.ts:129](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ethereumRPCMaxContentLength**? : _undefined | number_ -_Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L153)_ +_Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L153)_ --- @@ -583,7 +583,7 @@ _Defined in [types.ts:153](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ethereumRPCMaxRequestsPer24HrUTC**? : _undefined | number_ -_Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L166)_ +_Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L166)_ --- @@ -591,7 +591,7 @@ _Defined in [types.ts:166](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ethereumRPCMaxRequestsPerSecond**? : _undefined | number_ -_Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L172)_ +_Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L172)_ --- @@ -599,7 +599,7 @@ _Defined in [types.ts:172](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ethereumRPCURL**? : _undefined | string_ -_Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L126)_ +_Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L126)_ --- @@ -607,7 +607,7 @@ _Defined in [types.ts:126](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **maxBytesPerSecond**? : _undefined | number_ -_Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L219)_ +_Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L219)_ --- @@ -615,7 +615,7 @@ _Defined in [types.ts:219](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **maxOrdersInStorage**? : _undefined | number_ -_Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L193)_ +_Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L193)_ --- @@ -623,7 +623,7 @@ _Defined in [types.ts:193](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **useBootstrapList**? : _undefined | false | true_ -_Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L132)_ +_Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L132)_ --- @@ -631,7 +631,7 @@ _Defined in [types.ts:132](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **verbosity**? : _[Verbosity](#enumeration-verbosity)_ -_Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L123)_ +_Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L123)_ --- @@ -639,7 +639,7 @@ _Defined in [types.ts:123](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **web3Provider**? : _SupportedProvider_ -_Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L216)_ +_Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L216)_
@@ -655,7 +655,7 @@ _Defined in [types.ts:216](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **devUtils**: _string_ -_Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L224)_ +_Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L224)_ --- @@ -663,7 +663,7 @@ _Defined in [types.ts:224](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **erc1155Proxy**: _string_ -_Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L227)_ +_Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L227)_ --- @@ -671,7 +671,7 @@ _Defined in [types.ts:227](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **erc20Proxy**: _string_ -_Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L225)_ +_Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L225)_ --- @@ -679,7 +679,7 @@ _Defined in [types.ts:225](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **erc721Proxy**: _string_ -_Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L226)_ +_Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L226)_ --- @@ -687,7 +687,7 @@ _Defined in [types.ts:226](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **exchange**: _string_ -_Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L223)_ +_Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L223)_ --- @@ -695,7 +695,7 @@ _Defined in [types.ts:223](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **weth9**? : _undefined | string_ -_Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L228)_ +_Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L228)_ --- @@ -703,7 +703,7 @@ _Defined in [types.ts:228](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **zrxToken**? : _undefined | string_ -_Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L229)_ +_Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L229)_
@@ -719,7 +719,7 @@ _Defined in [types.ts:229](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **address**: _string_ -_Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L553)_ +_Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L553)_ --- @@ -727,7 +727,7 @@ _Defined in [types.ts:553](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **blockHash**: _string_ -_Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L548)_ +_Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L548)_ --- @@ -735,7 +735,7 @@ _Defined in [types.ts:548](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **isRemoved**: _boolean_ -_Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L552)_ +_Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L552)_ --- @@ -743,7 +743,7 @@ _Defined in [types.ts:552](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **kind**: _[ContractEventKind](#enumeration-contracteventkind)_ -_Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L554)_ +_Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L554)_ --- @@ -751,7 +751,7 @@ _Defined in [types.ts:554](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **logIndex**: _number_ -_Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L551)_ +_Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L551)_ --- @@ -759,7 +759,7 @@ _Defined in [types.ts:551](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **parameters**: _ContractEventParameters_ -_Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L555)_ +_Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L555)_ --- @@ -767,7 +767,7 @@ _Defined in [types.ts:555](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **txHash**: _string_ -_Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L549)_ +_Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L549)_ --- @@ -775,7 +775,7 @@ _Defined in [types.ts:549](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **txIndex**: _number_ -_Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L550)_ +_Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L550)_
@@ -791,7 +791,7 @@ _Defined in [types.ts:550](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **approved**: _boolean_ -_Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L417)_ +_Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L417)_ --- @@ -799,7 +799,7 @@ _Defined in [types.ts:417](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **operator**: _string_ -_Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L416)_ +_Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L416)_ --- @@ -807,7 +807,7 @@ _Defined in [types.ts:416](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **owner**: _string_ -_Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L415)_ +_Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L415)_
@@ -823,7 +823,7 @@ _Defined in [types.ts:415](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **from**: _string_ -_Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L399)_ +_Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L399)_ --- @@ -831,7 +831,7 @@ _Defined in [types.ts:399](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ids**: _BigNumber[]_ -_Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L401)_ +_Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L401)_ --- @@ -839,7 +839,7 @@ _Defined in [types.ts:401](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **operator**: _string_ -_Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L398)_ +_Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L398)_ --- @@ -847,7 +847,7 @@ _Defined in [types.ts:398](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **to**: _string_ -_Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L400)_ +_Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L400)_ --- @@ -855,7 +855,7 @@ _Defined in [types.ts:400](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **values**: _BigNumber[]_ -_Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L402)_ +_Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L402)_
@@ -871,7 +871,7 @@ _Defined in [types.ts:402](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **from**: _string_ -_Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L382)_ +_Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L382)_ --- @@ -879,7 +879,7 @@ _Defined in [types.ts:382](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **id**: _BigNumber_ -_Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L384)_ +_Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L384)_ --- @@ -887,7 +887,7 @@ _Defined in [types.ts:384](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **operator**: _string_ -_Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L381)_ +_Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L381)_ --- @@ -895,7 +895,7 @@ _Defined in [types.ts:381](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **to**: _string_ -_Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L383)_ +_Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L383)_ --- @@ -903,7 +903,7 @@ _Defined in [types.ts:383](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **value**: _BigNumber_ -_Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L385)_ +_Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L385)_
@@ -919,7 +919,7 @@ _Defined in [types.ts:385](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **owner**: _string_ -_Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L336)_ +_Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L336)_ --- @@ -927,7 +927,7 @@ _Defined in [types.ts:336](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **spender**: _string_ -_Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L337)_ +_Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L337)_ --- @@ -935,7 +935,7 @@ _Defined in [types.ts:337](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **value**: _BigNumber_ -_Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L338)_ +_Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L338)_
@@ -951,7 +951,7 @@ _Defined in [types.ts:338](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **from**: _string_ -_Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L323)_ +_Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L323)_ --- @@ -959,7 +959,7 @@ _Defined in [types.ts:323](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **to**: _string_ -_Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L324)_ +_Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L324)_ --- @@ -967,7 +967,7 @@ _Defined in [types.ts:324](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **value**: _BigNumber_ -_Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L325)_ +_Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L325)_
@@ -983,7 +983,7 @@ _Defined in [types.ts:325](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **approved**: _string_ -_Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L363)_ +_Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L363)_ --- @@ -991,7 +991,7 @@ _Defined in [types.ts:363](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **owner**: _string_ -_Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L362)_ +_Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L362)_ --- @@ -999,7 +999,7 @@ _Defined in [types.ts:362](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **tokenId**: _BigNumber_ -_Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L364)_ +_Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L364)_
@@ -1015,7 +1015,7 @@ _Defined in [types.ts:364](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **approved**: _boolean_ -_Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L377)_ +_Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L377)_ --- @@ -1023,7 +1023,7 @@ _Defined in [types.ts:377](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **operator**: _string_ -_Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L376)_ +_Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L376)_ --- @@ -1031,7 +1031,7 @@ _Defined in [types.ts:376](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **owner**: _string_ -_Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L375)_ +_Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L375)_
@@ -1047,7 +1047,7 @@ _Defined in [types.ts:375](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **from**: _string_ -_Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L349)_ +_Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L349)_ --- @@ -1055,7 +1055,7 @@ _Defined in [types.ts:349](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **to**: _string_ -_Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L350)_ +_Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L350)_ --- @@ -1063,7 +1063,7 @@ _Defined in [types.ts:350](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **tokenId**: _BigNumber_ -_Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L351)_ +_Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L351)_
@@ -1079,7 +1079,7 @@ _Defined in [types.ts:351](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **feeRecipientAddress**: _string_ -_Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L458)_ +_Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L458)_ --- @@ -1087,7 +1087,7 @@ _Defined in [types.ts:458](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **makerAddress**: _string_ -_Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L456)_ +_Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L456)_ --- @@ -1095,7 +1095,7 @@ _Defined in [types.ts:456](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **makerAssetData**: _string_ -_Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L460)_ +_Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L460)_ --- @@ -1103,7 +1103,7 @@ _Defined in [types.ts:460](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **orderHash**: _string_ -_Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L459)_ +_Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L459)_ --- @@ -1111,7 +1111,7 @@ _Defined in [types.ts:459](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **senderAddress**: _string_ -_Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L457)_ +_Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L457)_ --- @@ -1119,7 +1119,7 @@ _Defined in [types.ts:457](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **takerAssetData**: _string_ -_Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L461)_ +_Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L461)_
@@ -1135,7 +1135,7 @@ _Defined in [types.ts:461](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **makerAddress**: _string_ -_Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L465)_ +_Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L465)_ --- @@ -1143,7 +1143,7 @@ _Defined in [types.ts:465](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **orderEpoch**: _BigNumber_ -_Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L467)_ +_Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L467)_ --- @@ -1151,7 +1151,7 @@ _Defined in [types.ts:467](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **orderSenderAddress**: _string_ -_Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L466)_ +_Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L466)_
@@ -1167,7 +1167,7 @@ _Defined in [types.ts:466](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **feeRecipientAddress**: _string_ -_Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L424)_ +_Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L424)_ --- @@ -1175,7 +1175,7 @@ _Defined in [types.ts:424](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **makerAddress**: _string_ -_Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L421)_ +_Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L421)_ --- @@ -1183,7 +1183,7 @@ _Defined in [types.ts:421](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **makerAssetData**: _string_ -_Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L431)_ +_Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L431)_ --- @@ -1191,7 +1191,7 @@ _Defined in [types.ts:431](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **makerAssetFilledAmount**: _BigNumber_ -_Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L425)_ +_Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L425)_ --- @@ -1199,7 +1199,7 @@ _Defined in [types.ts:425](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **makerFeeAssetData**: _string_ -_Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L433)_ +_Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L433)_ --- @@ -1207,7 +1207,7 @@ _Defined in [types.ts:433](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **makerFeePaid**: _BigNumber_ -_Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L427)_ +_Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L427)_ --- @@ -1215,7 +1215,7 @@ _Defined in [types.ts:427](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **orderHash**: _string_ -_Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L430)_ +_Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L430)_ --- @@ -1223,7 +1223,7 @@ _Defined in [types.ts:430](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **protocolFeePaid**: _BigNumber_ -_Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L429)_ +_Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L429)_ --- @@ -1231,7 +1231,7 @@ _Defined in [types.ts:429](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **senderAddress**: _string_ -_Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L423)_ +_Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L423)_ --- @@ -1239,7 +1239,7 @@ _Defined in [types.ts:423](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **takerAddress**: _string_ -_Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L422)_ +_Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L422)_ --- @@ -1247,7 +1247,7 @@ _Defined in [types.ts:422](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **takerAssetData**: _string_ -_Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L432)_ +_Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L432)_ --- @@ -1255,7 +1255,7 @@ _Defined in [types.ts:432](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **takerAssetFilledAmount**: _BigNumber_ -_Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L426)_ +_Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L426)_ --- @@ -1263,7 +1263,7 @@ _Defined in [types.ts:426](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **takerFeeAssetData**: _string_ -_Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L434)_ +_Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L434)_ --- @@ -1271,7 +1271,7 @@ _Defined in [types.ts:434](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **takerFeePaid**: _BigNumber_ -_Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L428)_ +_Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L428)_
@@ -1287,7 +1287,7 @@ _Defined in [types.ts:428](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ordersInfos**: _[OrderInfo](#interface-orderinfo)[]_ -_Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L45)_ +_Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L45)_ --- @@ -1295,7 +1295,7 @@ _Defined in [types.ts:45](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **timestamp**: _number_ -_Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L44)_ +_Defined in [types.ts:44](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/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/b8104145/packages/mesh-browser-lite/src/types.ts#L67)_ +_Defined in [types.ts:67](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L67)_ --- @@ -1321,7 +1321,7 @@ _Defined in [types.ts:67](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **\$schema**? : _undefined | string_ -_Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L66)_ +_Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L66)_ --- @@ -1329,7 +1329,7 @@ _Defined in [types.ts:66](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **additionalItems**? : _boolean | [JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L78)_ +_Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L78)_ --- @@ -1337,7 +1337,7 @@ _Defined in [types.ts:78](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **additionalProperties**? : _boolean | [JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L86)_ +_Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L86)_ --- @@ -1345,7 +1345,7 @@ _Defined in [types.ts:86](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **allOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L108)_ +_Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L108)_ --- @@ -1353,7 +1353,7 @@ _Defined in [types.ts:108](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **anyOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L109)_ +_Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L109)_ --- @@ -1361,7 +1361,7 @@ _Defined in [types.ts:109](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **const**? : _any_ -_Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L105)_ +_Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L105)_ --- @@ -1369,7 +1369,7 @@ _Defined in [types.ts:105](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **definitions**? : _undefined | object_ -_Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L87)_ +_Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L87)_ --- @@ -1377,7 +1377,7 @@ _Defined in [types.ts:87](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **dependencies**? : _undefined | object_ -_Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L96)_ +_Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L96)_ --- @@ -1385,7 +1385,7 @@ _Defined in [types.ts:96](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **description**? : _undefined | string_ -_Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L69)_ +_Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L69)_ --- @@ -1393,7 +1393,7 @@ _Defined in [types.ts:69](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **enum**? : _any[]_ -_Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L99)_ +_Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L99)_ --- @@ -1401,7 +1401,7 @@ _Defined in [types.ts:99](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **exclusiveMaximum**? : _undefined | false | true_ -_Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L72)_ +_Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L72)_ --- @@ -1409,7 +1409,7 @@ _Defined in [types.ts:72](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **exclusiveMinimum**? : _undefined | false | true_ -_Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L74)_ +_Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L74)_ --- @@ -1417,7 +1417,7 @@ _Defined in [types.ts:74](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **format**? : _undefined | string_ -_Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L107)_ +_Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L107)_ --- @@ -1425,7 +1425,7 @@ _Defined in [types.ts:107](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **id**? : _undefined | string_ -_Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L65)_ +_Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L65)_ --- @@ -1433,7 +1433,7 @@ _Defined in [types.ts:65](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **items**? : _[JsonSchema](#interface-jsonschema) | [JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L79)_ +_Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L79)_ --- @@ -1441,7 +1441,7 @@ _Defined in [types.ts:79](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **maxItems**? : _undefined | number_ -_Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L80)_ +_Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L80)_ --- @@ -1449,7 +1449,7 @@ _Defined in [types.ts:80](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **maxLength**? : _undefined | number_ -_Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L75)_ +_Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L75)_ --- @@ -1457,7 +1457,7 @@ _Defined in [types.ts:75](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **maxProperties**? : _undefined | number_ -_Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L83)_ +_Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L83)_ --- @@ -1465,7 +1465,7 @@ _Defined in [types.ts:83](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **maximum**? : _undefined | number_ -_Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L71)_ +_Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L71)_ --- @@ -1473,7 +1473,7 @@ _Defined in [types.ts:71](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **minItems**? : _undefined | number_ -_Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L81)_ +_Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L81)_ --- @@ -1481,7 +1481,7 @@ _Defined in [types.ts:81](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **minLength**? : _undefined | number_ -_Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L76)_ +_Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L76)_ --- @@ -1489,7 +1489,7 @@ _Defined in [types.ts:76](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **minProperties**? : _undefined | number_ -_Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L84)_ +_Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L84)_ --- @@ -1497,7 +1497,7 @@ _Defined in [types.ts:84](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **minimum**? : _undefined | number_ -_Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L73)_ +_Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L73)_ --- @@ -1505,7 +1505,7 @@ _Defined in [types.ts:73](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **multipleOf**? : _undefined | number_ -_Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L70)_ +_Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L70)_ --- @@ -1513,7 +1513,7 @@ _Defined in [types.ts:70](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **not**? : _[JsonSchema](#interface-jsonschema)_ -_Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L111)_ +_Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L111)_ --- @@ -1521,7 +1521,7 @@ _Defined in [types.ts:111](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **oneOf**? : _[JsonSchema](#interface-jsonschema)[]_ -_Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L110)_ +_Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L110)_ --- @@ -1529,7 +1529,7 @@ _Defined in [types.ts:110](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **pattern**? : _string | RegExp_ -_Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L77)_ +_Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L77)_ --- @@ -1537,7 +1537,7 @@ _Defined in [types.ts:77](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **patternProperties**? : _undefined | object_ -_Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L93)_ +_Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L93)_ --- @@ -1545,7 +1545,7 @@ _Defined in [types.ts:93](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **properties**? : _undefined | object_ -_Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L90)_ +_Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L90)_ --- @@ -1553,7 +1553,7 @@ _Defined in [types.ts:90](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **required**? : _string[]_ -_Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L85)_ +_Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L85)_ --- @@ -1561,7 +1561,7 @@ _Defined in [types.ts:85](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **title**? : _undefined | string_ -_Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L68)_ +_Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L68)_ --- @@ -1569,7 +1569,7 @@ _Defined in [types.ts:68](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **type**? : _string | string[]_ -_Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L106)_ +_Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L106)_ --- @@ -1577,7 +1577,7 @@ _Defined in [types.ts:106](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **uniqueItems**? : _undefined | false | true_ -_Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L82)_ +_Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L82)_
@@ -1593,7 +1593,7 @@ _Defined in [types.ts:82](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **hash**: _string_ -_Defined in [types.ts:733](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L733)_ +_Defined in [types.ts:733](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L733)_ --- @@ -1601,7 +1601,7 @@ _Defined in [types.ts:733](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **number**: _BigNumber_ -_Defined in [types.ts:732](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L732)_ +_Defined in [types.ts:732](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L732)_
@@ -1620,7 +1620,7 @@ or filled. • **contractEvents**: _[ContractEvent](#interface-contractevent)[]_ -_Defined in [types.ts:606](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L606)_ +_Defined in [types.ts:606](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L606)_ --- @@ -1628,7 +1628,7 @@ _Defined in [types.ts:606](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **endState**: _[OrderEventEndState](#enumeration-ordereventendstate)_ -_Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L604)_ +_Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L604)_ --- @@ -1636,7 +1636,7 @@ _Defined in [types.ts:604](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L605)_ +_Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L605)_ --- @@ -1644,7 +1644,7 @@ _Defined in [types.ts:605](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **orderHash**: _string_ -_Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L602)_ +_Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L602)_ --- @@ -1652,7 +1652,7 @@ _Defined in [types.ts:602](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L603)_ +_Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L603)_ --- @@ -1660,7 +1660,7 @@ _Defined in [types.ts:603](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **timestampMs**: _number_ -_Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L601)_ +_Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L601)_
@@ -1676,7 +1676,7 @@ _Defined in [types.ts:601](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L58)_ +_Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L58)_ --- @@ -1684,7 +1684,7 @@ _Defined in [types.ts:58](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **orderHash**: _string_ -_Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L56)_ +_Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L56)_ --- @@ -1692,7 +1692,7 @@ _Defined in [types.ts:56](https://github.com/0xProject/0x-mesh/blob/b8104145/pac • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L57)_ +_Defined in [types.ts:57](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L57)_
@@ -1711,7 +1711,7 @@ rejected. • **kind**: _[RejectedOrderKind](#enumeration-rejectedorderkind)_ -_Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L704)_ +_Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L704)_ --- @@ -1719,7 +1719,7 @@ _Defined in [types.ts:704](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **orderHash**: _string_ -_Defined in [types.ts:702](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L702)_ +_Defined in [types.ts:702](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L702)_ --- @@ -1727,7 +1727,7 @@ _Defined in [types.ts:702](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **signedOrder**: _SignedOrder_ -_Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L703)_ +_Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L703)_ --- @@ -1735,7 +1735,7 @@ _Defined in [types.ts:703](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **status**: _[RejectedOrderStatus](#interface-rejectedorderstatus)_ -_Defined in [types.ts:705](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L705)_ +_Defined in [types.ts:705](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L705)_
@@ -1753,7 +1753,7 @@ Provides more information about why an order was rejected. • **code**: _string_ -_Defined in [types.ts:721](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L721)_ +_Defined in [types.ts:721](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L721)_ --- @@ -1761,7 +1761,7 @@ _Defined in [types.ts:721](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **message**: _string_ -_Defined in [types.ts:722](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L722)_ +_Defined in [types.ts:722](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L722)_
@@ -1777,7 +1777,7 @@ _Defined in [types.ts:722](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ethRPCRateLimitExpiredRequests**: _number_ -_Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L770)_ +_Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L770)_ --- @@ -1785,7 +1785,7 @@ _Defined in [types.ts:770](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ethRPCRequestsSentInCurrentUTCDay**: _number_ -_Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L769)_ +_Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L769)_ --- @@ -1793,7 +1793,7 @@ _Defined in [types.ts:769](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **ethereumChainID**: _number_ -_Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L761)_ +_Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L761)_ --- @@ -1801,7 +1801,7 @@ _Defined in [types.ts:761](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **latestBlock**? : _[LatestBlock](#interface-latestblock)_ -_Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L762)_ +_Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L762)_ --- @@ -1809,7 +1809,7 @@ _Defined in [types.ts:762](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **maxExpirationTime**: _BigNumber_ -_Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L767)_ +_Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L767)_ --- @@ -1817,7 +1817,7 @@ _Defined in [types.ts:767](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **numOrders**: _number_ -_Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L764)_ +_Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L764)_ --- @@ -1825,7 +1825,7 @@ _Defined in [types.ts:764](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **numOrdersIncludingRemoved**: _number_ -_Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L765)_ +_Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L765)_ --- @@ -1833,7 +1833,7 @@ _Defined in [types.ts:765](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **numPeers**: _number_ -_Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L763)_ +_Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L763)_ --- @@ -1841,7 +1841,7 @@ _Defined in [types.ts:763](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **numPinnedOrders**: _number_ -_Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L766)_ +_Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L766)_ --- @@ -1849,7 +1849,7 @@ _Defined in [types.ts:766](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **peerID**: _string_ -_Defined in [types.ts:760](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L760)_ +_Defined in [types.ts:760](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L760)_ --- @@ -1857,7 +1857,7 @@ _Defined in [types.ts:760](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **pubSubTopic**: _string_ -_Defined in [types.ts:757](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L757)_ +_Defined in [types.ts:757](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L757)_ --- @@ -1865,7 +1865,7 @@ _Defined in [types.ts:757](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **rendezvous**: _string_ -_Defined in [types.ts:758](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L758)_ +_Defined in [types.ts:758](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L758)_ --- @@ -1873,7 +1873,7 @@ _Defined in [types.ts:758](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **secondaryRendezvous**: _string[]_ -_Defined in [types.ts:759](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L759)_ +_Defined in [types.ts:759](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L759)_ --- @@ -1881,7 +1881,7 @@ _Defined in [types.ts:759](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **startOfCurrentUTCDay**: _Date_ -_Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L768)_ +_Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L768)_ --- @@ -1889,7 +1889,7 @@ _Defined in [types.ts:768](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **version**: _string_ -_Defined in [types.ts:756](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L756)_ +_Defined in [types.ts:756](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L756)_
@@ -1907,7 +1907,7 @@ Indicates which orders where accepted, which were rejected, and why. • **accepted**: _[AcceptedOrderInfo](#interface-acceptedorderinfo)[]_ -_Defined in [types.ts:683](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L683)_ +_Defined in [types.ts:683](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L683)_ --- @@ -1915,7 +1915,7 @@ _Defined in [types.ts:683](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **rejected**: _[RejectedOrderInfo](#interface-rejectedorderinfo)[]_ -_Defined in [types.ts:684](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L684)_ +_Defined in [types.ts:684](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L684)_
@@ -1931,7 +1931,7 @@ _Defined in [types.ts:684](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **owner**: _string_ -_Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L489)_ +_Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L489)_ --- @@ -1939,7 +1939,7 @@ _Defined in [types.ts:489](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **value**: _BigNumber_ -_Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L490)_ +_Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L490)_
@@ -1955,7 +1955,7 @@ _Defined in [types.ts:490](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **owner**: _string_ -_Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L478)_ +_Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L478)_ --- @@ -1963,6 +1963,6 @@ _Defined in [types.ts:478](https://github.com/0xProject/0x-mesh/blob/b8104145/pa • **value**: _BigNumber_ -_Defined in [types.ts:479](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-browser-lite/src/types.ts#L479)_ +_Defined in [types.ts:479](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-browser-lite/src/types.ts#L479)_
diff --git a/docs/deployment.md b/docs/deployment.md index 571fe4d0c..7b595bd1a 100644 --- a/docs/deployment.md +++ b/docs/deployment.md @@ -1,4 +1,4 @@ -[![Version](https://img.shields.io/badge/version-10.1.0-orange.svg)](https://github.com/0xProject/0x-mesh/releases) +[![Version](https://img.shields.io/badge/version-10.2.0-orange.svg)](https://github.com/0xProject/0x-mesh/releases) # 0x Mesh Deployment Guide diff --git a/docs/deployment_with_telemetry.md b/docs/deployment_with_telemetry.md index d41290458..f244dfc90 100644 --- a/docs/deployment_with_telemetry.md +++ b/docs/deployment_with_telemetry.md @@ -1,4 +1,4 @@ -[![Version](https://img.shields.io/badge/version-10.1.0-orange.svg)](https://github.com/0xProject/0x-mesh/releases) +[![Version](https://img.shields.io/badge/version-10.2.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 eae869b18..54038ad63 100644 --- a/docs/graphql-client/README.md +++ b/docs/graphql-client/README.md @@ -1,4 +1,4 @@ -# @0x/mesh-graphql-client - v10.1.0 +# @0x/mesh-graphql-client - v10.2.0 ## @0x/mesh-graphql-client diff --git a/docs/graphql-client/reference.md b/docs/graphql-client/reference.md index 472f16e34..0488dcf1d 100644 --- a/docs/graphql-client/reference.md +++ b/docs/graphql-client/reference.md @@ -14,7 +14,7 @@ _Overrides void_ -_Defined in [packages/mesh-graphql-client/src/browser_link.ts:7](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/browser_link.ts#L7)_ +_Defined in [packages/mesh-graphql-client/src/browser_link.ts:7](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/browser_link.ts#L7)_ **Parameters:** @@ -48,7 +48,7 @@ Defined in node_modules/@apollo/client/link/core/ApolloLink.d.ts:12 _Overrides void_ -_Defined in [packages/mesh-graphql-client/src/browser_link.ts:12](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/browser_link.ts#L12)_ +_Defined in [packages/mesh-graphql-client/src/browser_link.ts:12](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/browser_link.ts#L12)_ **Parameters:** @@ -206,7 +206,7 @@ Defined in node_modules/@apollo/client/link/core/ApolloLink.d.ts:7 \+ **new MeshGraphQLClient**(`linkConfig`: [LinkConfig](#interface-linkconfig)): _[MeshGraphQLClient](#class-meshgraphqlclient)_ -_Defined in [packages/mesh-graphql-client/src/index.ts:250](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/index.ts#L250)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:250](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/index.ts#L250)_ **Parameters:** @@ -222,7 +222,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:250](https://github.com/0 ▸ **addOrdersAsync**(`orders`: SignedOrder[], `pinned`: boolean, `opts?`: [AddOrdersOpts](#interface-addordersopts)): _Promise‹[AddOrdersResults](#interface-addordersresults)›_ -_Defined in [packages/mesh-graphql-client/src/index.ts:335](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/index.ts#L335)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:335](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/index.ts#L335)_ **Parameters:** @@ -240,7 +240,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:335](https://github.com/0 ▸ **findOrdersAsync**(`query`: [OrderQuery](#interface-orderquery)): _Promise‹[OrderWithMetadata](#interface-orderwithmetadata)[]›_ -_Defined in [packages/mesh-graphql-client/src/index.ts:377](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/index.ts#L377)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:377](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/index.ts#L377)_ **Parameters:** @@ -256,7 +256,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:377](https://github.com/0 ▸ **getOrderAsync**(`hash`: string): _Promise‹[OrderWithMetadata](#interface-orderwithmetadata) | null›_ -_Defined in [packages/mesh-graphql-client/src/index.ts:361](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/index.ts#L361)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:361](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/index.ts#L361)_ **Parameters:** @@ -272,7 +272,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:361](https://github.com/0 ▸ **getStatsAsync**(): _Promise‹[Stats](#interface-stats)›_ -_Defined in [packages/mesh-graphql-client/src/index.ts:324](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/index.ts#L324)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:324](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/index.ts#L324)_ **Returns:** _Promise‹[Stats](#interface-stats)›_ @@ -282,7 +282,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:324](https://github.com/0 ▸ **onOrderEvents**(): _Observable‹[OrderEvent](#interface-orderevent)[]›_ -_Defined in [packages/mesh-graphql-client/src/index.ts:394](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/index.ts#L394)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:394](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/index.ts#L394)_ **Returns:** _Observable‹[OrderEvent](#interface-orderevent)[]›_ @@ -292,7 +292,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:394](https://github.com/0 ▸ **rawQueryAsync**<**T**, **TVariables**>(`options`: QueryOptions‹TVariables›): _Promise‹ApolloQueryResult‹T››_ -_Defined in [packages/mesh-graphql-client/src/index.ts:440](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/index.ts#L440)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:440](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/index.ts#L440)_ **Type parameters:** @@ -318,7 +318,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:440](https://github.com/0 • **ERC1155ApprovalForAllEvent**: = "ERC1155ApprovalForAllEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:137](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L137)_ --- @@ -326,7 +326,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:137](https://github.com/0 • **ERC1155TransferBatchEvent**: = "ERC1155TransferBatchEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:139](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L139)_ --- @@ -334,7 +334,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:139](https://github.com/0 • **ERC1155TransferSingleEvent**: = "ERC1155TransferSingleEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:138](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L138)_ --- @@ -342,7 +342,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:138](https://github.com/0 • **ERC20ApprovalEvent**: = "ERC20ApprovalEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:133](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L133)_ --- @@ -350,7 +350,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:133](https://github.com/0 • **ERC20TransferEvent**: = "ERC20TransferEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:132](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L132)_ --- @@ -358,7 +358,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:132](https://github.com/0 • **ERC721ApprovalEvent**: = "ERC721ApprovalEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:135](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L135)_ --- @@ -366,7 +366,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:135](https://github.com/0 • **ERC721ApprovalForAllEvent**: = "ERC721ApprovalForAllEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:136](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L136)_ --- @@ -374,7 +374,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:136](https://github.com/0 • **ERC721TransferEvent**: = "ERC721TransferEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:134](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L134)_ --- @@ -382,7 +382,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:134](https://github.com/0 • **ExchangeCancelEvent**: = "ExchangeCancelEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:141](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L141)_ --- @@ -390,7 +390,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:141](https://github.com/0 • **ExchangeCancelUpToEvent**: = "ExchangeCancelUpToEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:142](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L142)_ --- @@ -398,7 +398,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:142](https://github.com/0 • **ExchangeFillEvent**: = "ExchangeFillEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:140](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L140)_ --- @@ -406,7 +406,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:140](https://github.com/0 • **WethDepositEvent**: = "WethDepositEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:143](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L143)_ --- @@ -414,7 +414,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:143](https://github.com/0 • **WethWithdrawalEvent**: = "WethWithdrawalEvent" -_Defined in [packages/mesh-graphql-client/src/types.ts:144](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L144)_
@@ -426,7 +426,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:144](https://github.com/0 • **Equal**: = "EQUAL" -_Defined in [packages/mesh-graphql-client/src/types.ts:181](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L181)_ --- @@ -434,7 +434,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:181](https://github.com/0 • **Greater**: = "GREATER" -_Defined in [packages/mesh-graphql-client/src/types.ts:183](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L183)_ --- @@ -442,7 +442,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:183](https://github.com/0 • **GreaterOrEqual**: = "GREATER_OR_EQUAL" -_Defined in [packages/mesh-graphql-client/src/types.ts:184](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L184)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:184](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L184)_ --- @@ -450,7 +450,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:184](https://github.com/0 • **Less**: = "LESS" -_Defined in [packages/mesh-graphql-client/src/types.ts:185](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L185)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:185](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L185)_ --- @@ -458,7 +458,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:185](https://github.com/0 • **LessOrEqual**: = "LESS_OR_EQUAL" -_Defined in [packages/mesh-graphql-client/src/types.ts:186](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L186)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:186](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L186)_ --- @@ -466,7 +466,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:186](https://github.com/0 • **NotEqual**: = "NOT_EQUAL" -_Defined in [packages/mesh-graphql-client/src/types.ts:182](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L182)_
@@ -478,7 +478,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:182](https://github.com/0 • **Added**: = "ADDED" -_Defined in [packages/mesh-graphql-client/src/types.ts:150](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L150)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:150](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L150)_ --- @@ -486,7 +486,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:150](https://github.com/0 • **Cancelled**: = "CANCELLED" -_Defined in [packages/mesh-graphql-client/src/types.ts:156](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L156)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:156](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L156)_ --- @@ -494,7 +494,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:156](https://github.com/0 • **Expired**: = "EXPIRED" -_Defined in [packages/mesh-graphql-client/src/types.ts:158](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L158)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:158](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L158)_ --- @@ -502,7 +502,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:158](https://github.com/0 • **FillabilityIncreased**: = "FILLABILITY_INCREASED" -_Defined in [packages/mesh-graphql-client/src/types.ts:165](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L165)_ --- @@ -510,7 +510,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:165](https://github.com/0 • **Filled**: = "FILLED" -_Defined in [packages/mesh-graphql-client/src/types.ts:152](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L152)_ --- @@ -518,7 +518,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:152](https://github.com/0 • **FullyFilled**: = "FULLY_FILLED" -_Defined in [packages/mesh-graphql-client/src/types.ts:154](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L154)_ --- @@ -526,7 +526,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:154](https://github.com/0 • **StoppedWatching**: = "STOPPED_WATCHING" -_Defined in [packages/mesh-graphql-client/src/types.ts:170](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L170)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:170](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L170)_ --- @@ -534,7 +534,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:170](https://github.com/0 • **Unexpired**: = "UNEXPIRED" -_Defined in [packages/mesh-graphql-client/src/types.ts:160](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L160)_ --- @@ -542,7 +542,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:160](https://github.com/0 • **Unfunded**: = "UNFUNDED" -_Defined in [packages/mesh-graphql-client/src/types.ts:162](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L162)_
@@ -554,7 +554,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:162](https://github.com/0 • **DatabaseFullOfOrders**: = "DATABASE_FULL_OF_ORDERS" -_Defined in [packages/mesh-graphql-client/src/types.ts:109](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L109)_ --- @@ -562,7 +562,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:109](https://github.com/0 • **EthRpcRequestFailed**: = "ETH_RPC_REQUEST_FAILED" -_Defined in [packages/mesh-graphql-client/src/types.ts:90](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L90)_ --- @@ -570,7 +570,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:90](https://github.com/0x • **IncorrectExchangeAddress**: = "INCORRECT_EXCHANGE_ADDRESS" -_Defined in [packages/mesh-graphql-client/src/types.ts:107](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L107)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:107](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L107)_ --- @@ -578,7 +578,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:107](https://github.com/0 • **InternalError**: = "INTERNAL_ERROR" -_Defined in [packages/mesh-graphql-client/src/types.ts:103](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L103)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:103](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L103)_ --- @@ -586,7 +586,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:103](https://github.com/0 • **MaxOrderSizeExceeded**: = "MAX_ORDER_SIZE_EXCEEDED" -_Defined in [packages/mesh-graphql-client/src/types.ts:104](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L104)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:104](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L104)_ --- @@ -594,7 +594,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:104](https://github.com/0 • **OrderAlreadyStoredAndUnfillable**: = "ORDER_ALREADY_STORED_AND_UNFILLABLE" -_Defined in [packages/mesh-graphql-client/src/types.ts:105](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L105)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:105](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L105)_ --- @@ -602,7 +602,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:105](https://github.com/0 • **OrderCancelled**: = "ORDER_CANCELLED" -_Defined in [packages/mesh-graphql-client/src/types.ts:95](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L95)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:95](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L95)_ --- @@ -610,7 +610,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:95](https://github.com/0x • **OrderExpired**: = "ORDER_EXPIRED" -_Defined in [packages/mesh-graphql-client/src/types.ts:93](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L93)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:93](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L93)_ --- @@ -618,7 +618,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:93](https://github.com/0x • **OrderForIncorrectChain**: = "ORDER_FOR_INCORRECT_CHAIN" -_Defined in [packages/mesh-graphql-client/src/types.ts:106](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L106)_ --- @@ -626,7 +626,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:106](https://github.com/0 • **OrderFullyFilled**: = "ORDER_FULLY_FILLED" -_Defined in [packages/mesh-graphql-client/src/types.ts:94](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L94)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:94](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L94)_ --- @@ -634,7 +634,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:94](https://github.com/0x • **OrderHasInvalidMakerAssetAmount**: = "ORDER_HAS_INVALID_MAKER_ASSET_AMOUNT" -_Defined in [packages/mesh-graphql-client/src/types.ts:91](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L91)_ --- @@ -642,7 +642,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:91](https://github.com/0x • **OrderHasInvalidMakerAssetData**: = "ORDER_HAS_INVALID_MAKER_ASSET_DATA" -_Defined in [packages/mesh-graphql-client/src/types.ts:97](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L97)_ --- @@ -650,7 +650,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:97](https://github.com/0x • **OrderHasInvalidMakerFeeAssetData**: = "ORDER_HAS_INVALID_MAKER_FEE_ASSET_DATA" -_Defined in [packages/mesh-graphql-client/src/types.ts:98](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L98)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:98](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L98)_ --- @@ -658,7 +658,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:98](https://github.com/0x • **OrderHasInvalidSignature**: = "ORDER_HAS_INVALID_SIGNATURE" -_Defined in [packages/mesh-graphql-client/src/types.ts:101](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L101)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:101](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L101)_ --- @@ -666,7 +666,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:101](https://github.com/0 • **OrderHasInvalidTakerAssetAmount**: = "ORDER_HAS_INVALID_TAKER_ASSET_AMOUNT" -_Defined in [packages/mesh-graphql-client/src/types.ts:92](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L92)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:92](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L92)_ --- @@ -674,7 +674,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:92](https://github.com/0x • **OrderHasInvalidTakerAssetData**: = "ORDER_HAS_INVALID_TAKER_ASSET_DATA" -_Defined in [packages/mesh-graphql-client/src/types.ts:99](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L99)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:99](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L99)_ --- @@ -682,7 +682,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:99](https://github.com/0x • **OrderHasInvalidTakerFeeAssetData**: = "ORDER_HAS_INVALID_TAKER_FEE_ASSET_DATA" -_Defined in [packages/mesh-graphql-client/src/types.ts:100](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L100)_ --- @@ -690,7 +690,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:100](https://github.com/0 • **OrderMaxExpirationExceeded**: = "ORDER_MAX_EXPIRATION_EXCEEDED" -_Defined in [packages/mesh-graphql-client/src/types.ts:102](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L102)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:102](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L102)_ --- @@ -698,7 +698,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:102](https://github.com/0 • **OrderUnfunded**: = "ORDER_UNFUNDED" -_Defined in [packages/mesh-graphql-client/src/types.ts:96](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L96)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:96](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L96)_ --- @@ -706,7 +706,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:96](https://github.com/0x • **SenderAddressNotAllowed**: = "SENDER_ADDRESS_NOT_ALLOWED" -_Defined in [packages/mesh-graphql-client/src/types.ts:108](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L108)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:108](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L108)_
@@ -718,7 +718,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:108](https://github.com/0 • **Asc**: = "ASC" -_Defined in [packages/mesh-graphql-client/src/types.ts:176](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L176)_ --- @@ -726,7 +726,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:176](https://github.com/0 • **Desc**: = "DESC" -_Defined in [packages/mesh-graphql-client/src/types.ts:177](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L177)_
@@ -742,7 +742,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:177](https://github.com/0 • **httpUrl**? : _undefined | string_ -_Defined in [packages/mesh-graphql-client/src/index.ts:242](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/index.ts#L242)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:242](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/index.ts#L242)_ --- @@ -750,7 +750,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:242](https://github.com/0 • **mesh**? : _Mesh_ -_Defined in [packages/mesh-graphql-client/src/index.ts:244](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/index.ts#L244)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:244](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/index.ts#L244)_ --- @@ -758,7 +758,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:244](https://github.com/0 • **webSocketUrl**? : _undefined | string_ -_Defined in [packages/mesh-graphql-client/src/index.ts:243](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/index.ts#L243)_ +_Defined in [packages/mesh-graphql-client/src/index.ts:243](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/index.ts#L243)_
@@ -774,7 +774,7 @@ _Defined in [packages/mesh-graphql-client/src/index.ts:243](https://github.com/0 • **isNew**: _boolean_ -_Defined in [packages/mesh-graphql-client/src/types.ts:73](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L73)_ --- @@ -782,7 +782,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:73](https://github.com/0x • **order**: _[OrderWithMetadata](#interface-orderwithmetadata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:70](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L70)_
@@ -798,7 +798,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:70](https://github.com/0x • **keepCancelled**? : _undefined | false | true_ -_Defined in [packages/mesh-graphql-client/src/types.ts:5](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L5)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:5](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L5)_ --- @@ -806,7 +806,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:5](https://github.com/0xP • **keepExpired**? : _undefined | false | true_ -_Defined in [packages/mesh-graphql-client/src/types.ts:6](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L6)_ --- @@ -814,7 +814,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:6](https://github.com/0xP • **keepFullyFilled**? : _undefined | false | true_ -_Defined in [packages/mesh-graphql-client/src/types.ts:7](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L7)_ --- @@ -822,7 +822,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:7](https://github.com/0xP • **keepUnfunded**? : _undefined | false | true_ -_Defined in [packages/mesh-graphql-client/src/types.ts:8](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L8)_
@@ -838,7 +838,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:8](https://github.com/0xP • **addOrders**: _[StringifiedAddOrdersResults](#interface-stringifiedaddordersresults)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:16](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L16)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:16](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L16)_
@@ -854,7 +854,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:16](https://github.com/0x • **accepted**: _[AcceptedOrderResult](#interface-acceptedorderresult)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:62](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L62)_ --- @@ -862,7 +862,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:62](https://github.com/0x • **rejected**: _[RejectedOrderResult](#interface-rejectedorderresult)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:65](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L65)_
@@ -878,7 +878,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:65](https://github.com/0x • **address**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:125](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L125)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:125](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L125)_ --- @@ -886,7 +886,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:125](https://github.com/0 • **blockHash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:120](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L120)_ --- @@ -894,7 +894,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:120](https://github.com/0 • **isRemoved**: _boolean_ -_Defined in [packages/mesh-graphql-client/src/types.ts:124](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L124)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:124](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L124)_ --- @@ -902,7 +902,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:124](https://github.com/0 • **kind**: _[ContractEventKind](#enumeration-contracteventkind)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:126](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L126)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:126](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L126)_ --- @@ -910,7 +910,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:126](https://github.com/0 • **logIndex**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:123](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L123)_ --- @@ -918,7 +918,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:123](https://github.com/0 • **parameters**: _any_ -_Defined in [packages/mesh-graphql-client/src/types.ts:128](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L128)_ --- @@ -926,7 +926,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:128](https://github.com/0 • **txHash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:121](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L121)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:121](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L121)_ --- @@ -934,7 +934,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:121](https://github.com/0 • **txIndex**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:122](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L122)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:122](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L122)_
@@ -950,7 +950,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:122](https://github.com/0 • **hash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:51](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L51)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:51](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L51)_ --- @@ -958,7 +958,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:51](https://github.com/0x • **number**: _BigNumber_ -_Defined in [packages/mesh-graphql-client/src/types.ts:50](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L50)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:50](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L50)_
@@ -974,7 +974,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:50](https://github.com/0x • **contractEvents**: _[ContractEvent](#interface-contractevent)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:116](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L116)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:116](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L116)_ --- @@ -982,7 +982,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:116](https://github.com/0 • **endState**: _[OrderEventEndState](#enumeration-ordereventendstate)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:115](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L115)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:115](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L115)_ --- @@ -990,7 +990,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:115](https://github.com/0 • **order**: _[OrderWithMetadata](#interface-orderwithmetadata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:114](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L114)_ --- @@ -998,7 +998,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:114](https://github.com/0 • **timestampMs**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:113](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L113)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:113](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L113)_
@@ -1014,7 +1014,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:113](https://github.com/0 • **orderEvents**: _[StringifiedOrderEvent](#interface-stringifiedorderevent)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:28](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L28)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:28](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L28)_
@@ -1030,7 +1030,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:28](https://github.com/0x • **field**: _[OrderField](#orderfield)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:195](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L195)_ --- @@ -1038,7 +1038,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:195](https://github.com/0 • **kind**: _[FilterKind](#enumeration-filterkind)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:196](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L196)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:196](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L196)_ --- @@ -1046,7 +1046,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:196](https://github.com/0 • **value**: _OrderWithMetadata[OrderField]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:197](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L197)_
@@ -1062,7 +1062,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:197](https://github.com/0 • **filters**? : _[OrderFilter](#interface-orderfilter)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:201](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L201)_ --- @@ -1070,7 +1070,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:201](https://github.com/0 • **limit**? : _undefined | number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:203](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L203)_ --- @@ -1078,7 +1078,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:203](https://github.com/0 • **sort**? : _[OrderSort](#interface-ordersort)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:202](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L202)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:202](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L202)_
@@ -1094,7 +1094,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:202](https://github.com/0 • **order**: _[StringifiedOrderWithMetadata](#interface-stringifiedorderwithmetadata) | null_ -_Defined in [packages/mesh-graphql-client/src/types.ts:20](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L20)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:20](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L20)_
@@ -1110,7 +1110,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:20](https://github.com/0x • **direction**: _[SortDirection](#enumeration-sortdirection)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:191](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L191)_ --- @@ -1118,7 +1118,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:191](https://github.com/0 • **field**: _[OrderField](#orderfield)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:190](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L190)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:190](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L190)_
@@ -1134,7 +1134,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:190](https://github.com/0 • **orders**: _[StringifiedOrderWithMetadata](#interface-stringifiedorderwithmetadata)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:24](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L24)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:24](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L24)_
@@ -1184,7 +1184,7 @@ Defined in node_modules/@0x/types/lib/index.d.ts:8 • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [packages/mesh-graphql-client/src/types.ts:56](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L56)_ --- @@ -1192,7 +1192,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:56](https://github.com/0x • **hash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:55](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L55)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:55](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L55)_ --- @@ -1312,7 +1312,7 @@ Defined in node_modules/@0x/types/lib/index.d.ts:19 • **code**: _[RejectedOrderCode](#enumeration-rejectedordercode)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:83](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L83)_ --- @@ -1320,7 +1320,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:83](https://github.com/0x • **hash**? : _undefined | string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:78](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L78)_ --- @@ -1328,7 +1328,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:78](https://github.com/0x • **message**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:86](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L86)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:86](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L86)_ --- @@ -1336,7 +1336,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:86](https://github.com/0x • **order**: _SignedOrder_ -_Defined in [packages/mesh-graphql-client/src/types.ts:80](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L80)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:80](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L80)_
@@ -1352,7 +1352,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:80](https://github.com/0x • **ethRPCRateLimitExpiredRequests**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:46](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L46)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:46](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L46)_ --- @@ -1360,7 +1360,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:46](https://github.com/0x • **ethRPCRequestsSentInCurrentUTCDay**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:45](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L45)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:45](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L45)_ --- @@ -1368,7 +1368,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:45](https://github.com/0x • **ethereumChainID**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:37](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L37)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:37](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L37)_ --- @@ -1376,7 +1376,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:37](https://github.com/0x • **latestBlock**: _[LatestBlock](#interface-latestblock)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:38](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L38)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:38](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L38)_ --- @@ -1384,7 +1384,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:38](https://github.com/0x • **maxExpirationTime**: _BigNumber_ -_Defined in [packages/mesh-graphql-client/src/types.ts:43](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L43)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:43](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L43)_ --- @@ -1392,7 +1392,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:43](https://github.com/0x • **numOrders**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:40](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L40)_ --- @@ -1400,7 +1400,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:40](https://github.com/0x • **numOrdersIncludingRemoved**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:41](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L41)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:41](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L41)_ --- @@ -1408,7 +1408,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:41](https://github.com/0x • **numPeers**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:39](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L39)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:39](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L39)_ --- @@ -1416,7 +1416,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:39](https://github.com/0x • **numPinnedOrders**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:42](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L42)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:42](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L42)_ --- @@ -1424,7 +1424,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:42](https://github.com/0x • **peerID**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:36](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L36)_ --- @@ -1432,7 +1432,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:36](https://github.com/0x • **pubSubTopic**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:33](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L33)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:33](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L33)_ --- @@ -1440,7 +1440,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:33](https://github.com/0x • **rendezvous**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:34](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L34)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:34](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L34)_ --- @@ -1448,7 +1448,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:34](https://github.com/0x • **secondaryRendezvous**: _string[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:35](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L35)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:35](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L35)_ --- @@ -1456,7 +1456,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:35](https://github.com/0x • **startOfCurrentUTCDay**: _Date_ -_Defined in [packages/mesh-graphql-client/src/types.ts:44](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L44)_ --- @@ -1464,7 +1464,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:44](https://github.com/0x • **version**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:32](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L32)_
@@ -1480,7 +1480,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:32](https://github.com/0x • **stats**: _[StringifiedStats](#interface-stringifiedstats)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:12](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L12)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:12](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L12)_
@@ -1496,7 +1496,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:12](https://github.com/0x • **isNew**: _boolean_ -_Defined in [packages/mesh-graphql-client/src/types.ts:261](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L261)_ --- @@ -1504,7 +1504,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:261](https://github.com/0 • **order**: _[StringifiedOrderWithMetadata](#interface-stringifiedorderwithmetadata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:260](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L260)_
@@ -1520,7 +1520,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:260](https://github.com/0 • **accepted**: _[StringifiedAcceptedOrderResult](#interface-stringifiedacceptedorderresult)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:255](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L255)_ --- @@ -1528,7 +1528,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:255](https://github.com/0 • **rejected**: _[StringifiedRejectedOrderResult](#interface-stringifiedrejectedorderresult)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:256](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L256)_
@@ -1544,7 +1544,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:256](https://github.com/0 • **hash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:208](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L208)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:208](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L208)_ --- @@ -1552,7 +1552,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:208](https://github.com/0 • **number**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:207](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L207)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:207](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L207)_
@@ -1568,7 +1568,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:207](https://github.com/0 • **contractEvents**: _[ContractEvent](#interface-contractevent)[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:276](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L276)_ --- @@ -1576,7 +1576,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:276](https://github.com/0 • **endState**: _[OrderEventEndState](#enumeration-ordereventendstate)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:274](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L274)_ --- @@ -1584,7 +1584,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:274](https://github.com/0 • **fillableTakerAssetAmount**: _BigNumber_ -_Defined in [packages/mesh-graphql-client/src/types.ts:275](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L275)_ --- @@ -1592,7 +1592,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:275](https://github.com/0 • **order**: _[StringifiedOrderWithMetadata](#interface-stringifiedorderwithmetadata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:273](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L273)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:273](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L273)_ --- @@ -1600,7 +1600,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:273](https://github.com/0 • **timestamp**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:272](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L272)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:272](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L272)_
@@ -1620,7 +1620,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:272](https://github.com/0 _Inherited from [StringifiedSignedOrder](#chainid)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:230](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L230)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:230](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L230)_ --- @@ -1630,7 +1630,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:230](https://github.com/0 _Inherited from [StringifiedSignedOrder](#exchangeaddress)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:231](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L231)_ --- @@ -1640,7 +1640,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:231](https://github.com/0 _Inherited from [StringifiedSignedOrder](#expirationtimeseconds)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:240](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L240)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:240](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L240)_ --- @@ -1650,7 +1650,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:240](https://github.com/0 _Inherited from [StringifiedSignedOrder](#feerecipientaddress)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:234](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L234)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:234](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L234)_ --- @@ -1658,7 +1658,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:234](https://github.com/0 • **fillableTakerAssetAmount**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:251](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L251)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:251](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L251)_ --- @@ -1666,7 +1666,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:251](https://github.com/0 • **hash**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:250](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L250)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:250](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L250)_ --- @@ -1676,7 +1676,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:250](https://github.com/0 _Inherited from [StringifiedSignedOrder](#makeraddress)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:232](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L232)_ --- @@ -1686,7 +1686,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:232](https://github.com/0 _Inherited from [StringifiedSignedOrder](#makerassetamount)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:236](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L236)_ --- @@ -1696,7 +1696,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:236](https://github.com/0 _Inherited from [StringifiedSignedOrder](#makerassetdata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:242](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L242)_ --- @@ -1706,7 +1706,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:242](https://github.com/0 _Inherited from [StringifiedSignedOrder](#makerfee)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:238](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L238)_ --- @@ -1716,7 +1716,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:238](https://github.com/0 _Inherited from [StringifiedSignedOrder](#makerfeeassetdata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:244](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L244)_ --- @@ -1726,7 +1726,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:244](https://github.com/0 _Inherited from [StringifiedSignedOrder](#salt)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:241](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L241)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:241](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L241)_ --- @@ -1736,7 +1736,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:241](https://github.com/0 _Inherited from [StringifiedSignedOrder](#senderaddress)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:235](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L235)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:235](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L235)_ --- @@ -1746,7 +1746,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:235](https://github.com/0 _Inherited from [StringifiedSignedOrder](#signature)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:246](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L246)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:246](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L246)_ --- @@ -1756,7 +1756,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:246](https://github.com/0 _Inherited from [StringifiedSignedOrder](#takeraddress)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:233](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L233)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:233](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L233)_ --- @@ -1766,7 +1766,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:233](https://github.com/0 _Inherited from [StringifiedSignedOrder](#takerassetamount)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:237](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L237)_ --- @@ -1776,7 +1776,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:237](https://github.com/0 _Inherited from [StringifiedSignedOrder](#takerassetdata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:243](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L243)_ --- @@ -1786,7 +1786,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:243](https://github.com/0 _Inherited from [StringifiedSignedOrder](#takerfee)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:239](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L239)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:239](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L239)_ --- @@ -1796,7 +1796,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:239](https://github.com/0 _Inherited from [StringifiedSignedOrder](#takerfeeassetdata)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:245](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L245)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:245](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L245)_
@@ -1812,7 +1812,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:245](https://github.com/0 • **code**: _[RejectedOrderCode](#enumeration-rejectedordercode)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:267](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L267)_ --- @@ -1820,7 +1820,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:267](https://github.com/0 • **hash**? : _undefined | string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:265](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L265)_ --- @@ -1828,7 +1828,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:265](https://github.com/0 • **message**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:268](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L268)_ --- @@ -1836,7 +1836,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:268](https://github.com/0 • **order**: _[StringifiedSignedOrder](#interface-stringifiedsignedorder)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:266](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L266)_
@@ -1854,7 +1854,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:266](https://github.com/0 • **chainId**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:230](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L230)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:230](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L230)_ --- @@ -1862,7 +1862,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:230](https://github.com/0 • **exchangeAddress**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:231](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L231)_ --- @@ -1870,7 +1870,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:231](https://github.com/0 • **expirationTimeSeconds**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:240](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L240)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:240](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L240)_ --- @@ -1878,7 +1878,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:240](https://github.com/0 • **feeRecipientAddress**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:234](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L234)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:234](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L234)_ --- @@ -1886,7 +1886,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:234](https://github.com/0 • **makerAddress**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:232](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L232)_ --- @@ -1894,7 +1894,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:232](https://github.com/0 • **makerAssetAmount**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:236](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L236)_ --- @@ -1902,7 +1902,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:236](https://github.com/0 • **makerAssetData**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:242](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L242)_ --- @@ -1910,7 +1910,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:242](https://github.com/0 • **makerFee**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:238](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L238)_ --- @@ -1918,7 +1918,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:238](https://github.com/0 • **makerFeeAssetData**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:244](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L244)_ --- @@ -1926,7 +1926,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:244](https://github.com/0 • **salt**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:241](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L241)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:241](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L241)_ --- @@ -1934,7 +1934,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:241](https://github.com/0 • **senderAddress**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:235](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L235)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:235](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L235)_ --- @@ -1942,7 +1942,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:235](https://github.com/0 • **signature**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:246](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L246)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:246](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L246)_ --- @@ -1950,7 +1950,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:246](https://github.com/0 • **takerAddress**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:233](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L233)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:233](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L233)_ --- @@ -1958,7 +1958,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:233](https://github.com/0 • **takerAssetAmount**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:237](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L237)_ --- @@ -1966,7 +1966,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:237](https://github.com/0 • **takerAssetData**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:243](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L243)_ --- @@ -1974,7 +1974,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:243](https://github.com/0 • **takerFee**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:239](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L239)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:239](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L239)_ --- @@ -1982,7 +1982,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:239](https://github.com/0 • **takerFeeAssetData**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:245](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L245)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:245](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L245)_
@@ -1998,7 +1998,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:245](https://github.com/0 • **ethRPCRateLimitExpiredRequests**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:226](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L226)_ --- @@ -2006,7 +2006,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:226](https://github.com/0 • **ethRPCRequestsSentInCurrentUTCDay**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:225](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L225)_ --- @@ -2014,7 +2014,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:225](https://github.com/0 • **ethereumChainID**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:217](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L217)_ --- @@ -2022,7 +2022,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:217](https://github.com/0 • **latestBlock**: _[StringifiedLatestBlock](#interface-stringifiedlatestblock)_ -_Defined in [packages/mesh-graphql-client/src/types.ts:218](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L218)_ --- @@ -2030,7 +2030,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:218](https://github.com/0 • **maxExpirationTime**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:223](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L223)_ --- @@ -2038,7 +2038,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:223](https://github.com/0 • **numOrders**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:220](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L220)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:220](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L220)_ --- @@ -2046,7 +2046,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:220](https://github.com/0 • **numOrdersIncludingRemoved**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:221](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L221)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:221](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L221)_ --- @@ -2054,7 +2054,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:221](https://github.com/0 • **numPeers**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:219](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L219)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:219](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L219)_ --- @@ -2062,7 +2062,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:219](https://github.com/0 • **numPinnedOrders**: _number_ -_Defined in [packages/mesh-graphql-client/src/types.ts:222](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L222)_ --- @@ -2070,7 +2070,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:222](https://github.com/0 • **peerID**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:216](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L216)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:216](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L216)_ --- @@ -2078,7 +2078,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:216](https://github.com/0 • **pubSubTopic**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:213](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L213)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:213](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L213)_ --- @@ -2086,7 +2086,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:213](https://github.com/0 • **rendezvous**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:214](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L214)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:214](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L214)_ --- @@ -2094,7 +2094,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:214](https://github.com/0 • **secondaryRendezvous**: _string[]_ -_Defined in [packages/mesh-graphql-client/src/types.ts:215](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L215)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:215](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L215)_ --- @@ -2102,7 +2102,7 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:215](https://github.com/0 • **startOfCurrentUTCDay**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:224](https://github.com/0xProject/0x-mesh/blob/b8104145/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/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L224)_ --- @@ -2110,6 +2110,6 @@ _Defined in [packages/mesh-graphql-client/src/types.ts:224](https://github.com/0 • **version**: _string_ -_Defined in [packages/mesh-graphql-client/src/types.ts:212](https://github.com/0xProject/0x-mesh/blob/b8104145/packages/mesh-graphql-client/src/types.ts#L212)_ +_Defined in [packages/mesh-graphql-client/src/types.ts:212](https://github.com/0xProject/0x-mesh/blob/5f6ccc31/packages/mesh-graphql-client/src/types.ts#L212)_
diff --git a/docs/graphql_api.md b/docs/graphql_api.md index 62d70de87..7ee154619 100644 --- a/docs/graphql_api.md +++ b/docs/graphql_api.md @@ -1,4 +1,4 @@ -[![Version](https://img.shields.io/badge/version-10.1.0-orange.svg)](https://github.com/0xProject/0x-mesh/releases) +[![Version](https://img.shields.io/badge/version-10.2.0-orange.svg)](https://github.com/0xProject/0x-mesh/releases) # 0x Mesh GraphQL API Documentation diff --git a/graphql/resolver.go b/graphql/resolver.go index bf8f88d0a..0bb6e5bfe 100644 --- a/graphql/resolver.go +++ b/graphql/resolver.go @@ -1,13 +1,23 @@ package graphql -import "github.com/0xProject/0x-mesh/core" +import ( + "time" + + "github.com/0xProject/0x-mesh/core" +) + +type ResolverConfig struct { + SlowSubscriberTimeout time.Duration +} type Resolver struct { - app *core.App + app *core.App + config *ResolverConfig } -func NewResolver(app *core.App) *Resolver { +func NewResolver(app *core.App, config *ResolverConfig) *Resolver { return &Resolver{ - app: app, + app: app, + config: config, } } diff --git a/graphql/schema.resolvers.go b/graphql/schema.resolvers.go index 220bedfeb..cd642369b 100644 --- a/graphql/schema.resolvers.go +++ b/graphql/schema.resolvers.go @@ -5,12 +5,14 @@ package graphql import ( "context" + "time" "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/zeroex" "github.com/ethereum/go-ethereum/common" + log "github.com/sirupsen/logrus" ) func (r *mutationResolver) AddOrders(ctx context.Context, orders []*gqltypes.NewOrder, pinned *bool, opts *gqltypes.AddOrdersOpts) (*gqltypes.AddOrdersResults, error) { @@ -114,7 +116,16 @@ func (r *subscriptionResolver) OrderEvents(ctx context.Context) (<-chan []*gqlty panic(err) } case orderEvents := <-zeroExChan: - gqlChan <- gqltypes.OrderEventsFromZeroExType(orderEvents) + select { + case gqlChan <- gqltypes.OrderEventsFromZeroExType(orderEvents): + log.Debugf("sent %d orders to subscriber", len(orderEvents)) + case <-time.After(r.config.SlowSubscriberTimeout): + log.Debug("subscriber is slow or disconnected, unsubscribing") + subscription.Unsubscribe() + close(gqlChan) + return + } + } } }() diff --git a/integration-tests/browser_integration_test.go b/integration-tests/browser_integration_test.go index ace4d4f42..624d54048 100644 --- a/integration-tests/browser_integration_test.go +++ b/integration-tests/browser_integration_test.go @@ -103,9 +103,10 @@ func testBrowserIntegration(testBundlePath string) func(*testing.T) { go func() { defer wg.Done() // Wait for the GraphQL server to start before sending the order. - _, err := waitForLogSubstring(ctx, standaloneLogMessages, "starting GraphQL server") - require.NoError(t, err, "GraphQL server didn't start") - time.Sleep(serverStartWaitTime) + // TODO: Have a reliable way of making sure the graphQL + // server actually started in the form of a test GraphQL + // request. + time.Sleep(2 * time.Second) graphQLClient := gqlclient.New(graphQLServerURL) require.NoError(t, err) results, err := graphQLClient.AddOrders(ctx, []*zeroex.SignedOrder{standaloneOrder}) diff --git a/packages/mesh-browser-lite/package.json b/packages/mesh-browser-lite/package.json index cdf346f0d..09783ccbd 100644 --- a/packages/mesh-browser-lite/package.json +++ b/packages/mesh-browser-lite/package.json @@ -1,6 +1,6 @@ { "name": "@0x/mesh-browser-lite", - "version": "10.1.0", + "version": "10.2.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 738cdded1..2f940986e 100644 --- a/packages/mesh-browser-shim/package.json +++ b/packages/mesh-browser-shim/package.json @@ -19,7 +19,7 @@ "webpack-cli": "^3.3.10" }, "dependencies": { - "@0x/mesh-browser-lite": "^10.1.0", + "@0x/mesh-browser-lite": "^10.2.0", "dexie": "^3.0.1" } } diff --git a/packages/mesh-browser/go/mesh-browser/main.go b/packages/mesh-browser/go/mesh-browser/main.go index af43858c3..745bd992a 100644 --- a/packages/mesh-browser/go/mesh-browser/main.go +++ b/packages/mesh-browser/go/mesh-browser/main.go @@ -85,10 +85,12 @@ func NewMeshWrapper(config core.Config) (*MeshWrapper, error) { return nil, err } return &MeshWrapper{ - app: app, - ctx: ctx, - cancel: cancel, - resolver: graphql.NewResolver(app), + app: app, + ctx: ctx, + cancel: cancel, + resolver: graphql.NewResolver(app, &graphql.ResolverConfig{ + SlowSubscriberTimeout: 2 * time.Second, + }), }, nil } diff --git a/packages/mesh-browser/package.json b/packages/mesh-browser/package.json index 730148a25..255928a8f 100644 --- a/packages/mesh-browser/package.json +++ b/packages/mesh-browser/package.json @@ -1,6 +1,6 @@ { "name": "@0x/mesh-browser", - "version": "10.1.0", + "version": "10.2.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": "^10.1.0", + "@0x/mesh-browser-lite": "^10.2.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 5364f9e83..7d36a80c3 100644 --- a/packages/mesh-graphql-client/package.json +++ b/packages/mesh-graphql-client/package.json @@ -1,6 +1,6 @@ { "name": "@0x/mesh-graphql-client", - "version": "10.1.0", + "version": "10.2.0", "description": "A client for the Mesh GraphQL API", "main": "./lib/src/index.js", "license": "Apache-2.0", @@ -43,7 +43,7 @@ "websocket": "^1.0.31" }, "dependencies": { - "@0x/mesh-browser-lite": "^10.1.0", + "@0x/mesh-browser-lite": "^10.2.0", "@0x/types": "^3.2.0", "@0x/utils": "^5.4.0", "@apollo/client": "^3.2.3", diff --git a/packages/mesh-integration-tests/package.json b/packages/mesh-integration-tests/package.json index 6474f1a5d..163bd44e4 100644 --- a/packages/mesh-integration-tests/package.json +++ b/packages/mesh-integration-tests/package.json @@ -22,8 +22,8 @@ "webpack-cli": "^3.3.7" }, "dependencies": { - "@0x/mesh-browser": "^10.1.0", - "@0x/mesh-graphql-client": "^10.1.0", + "@0x/mesh-browser": "^10.2.0", + "@0x/mesh-graphql-client": "^10.2.0", "@0x/order-utils": "^10.0.1", "@0x/subproviders": "^6.0.2", "@0x/utils": "^5.1.1" diff --git a/packages/mesh-webpack-example-lite/package.json b/packages/mesh-webpack-example-lite/package.json index e80ea4454..f871885d7 100644 --- a/packages/mesh-webpack-example-lite/package.json +++ b/packages/mesh-webpack-example-lite/package.json @@ -23,6 +23,6 @@ "webpack-cli": "^3.3.7" }, "dependencies": { - "@0x/mesh-browser-lite": "^10.1.0" + "@0x/mesh-browser-lite": "^10.2.0" } } diff --git a/packages/mesh-webpack-example/package.json b/packages/mesh-webpack-example/package.json index 2eb66c229..562936c78 100644 --- a/packages/mesh-webpack-example/package.json +++ b/packages/mesh-webpack-example/package.json @@ -21,6 +21,6 @@ "webpack-cli": "^3.3.7" }, "dependencies": { - "@0x/mesh-browser": "^10.1.0" + "@0x/mesh-browser": "^10.2.0" } } diff --git a/zeroex/orderwatch/decoder/event_decoder.go b/zeroex/orderwatch/decoder/event_decoder.go index 9c462fe07..7088810e2 100644 --- a/zeroex/orderwatch/decoder/event_decoder.go +++ b/zeroex/orderwatch/decoder/event_decoder.go @@ -609,6 +609,21 @@ func (e UntrackedTokenError) Error() string { return fmt.Sprintf("event for an untracked token: contract address: %s, topic: %s", e.TokenAddress.Hex(), e.Topic.Hex()) } +// AbiParserError is thrown when the decoder fails to parse topics from a +// retrieved log. +// NOTE(oskar): this error occurs during abi.ParseTopics and can be a result of +// certain tokens not conforming to the ERC20 event standard, for example not +// using indexed log parameters. +type AbiTopicParserError struct { + Topics []common.Hash + ContractAddress common.Address + parserError error +} + +func (e AbiTopicParserError) Error() string { + return fmt.Sprintf("abi parser error: %s for contract address: %s, topics: %v", e.parserError.Error(), e.ContractAddress, e.Topics) +} + // Decoder decodes events relevant to the fillability of 0x orders. Since ERC20 & ERC721 events // have the same signatures, but different meanings, all ERC20 & ERC721 contract addresses must // be added to the decoder ahead of time. @@ -924,5 +939,10 @@ func unpackLog(decodedEvent interface{}, event string, log types.Log, _abi abi.A indexed = append(indexed, arg) } } - return abi.ParseTopics(decodedEvent, indexed, log.Topics[1:]) + err := abi.ParseTopics(decodedEvent, indexed, log.Topics[1:]) + if err != nil { + return AbiTopicParserError{Topics: log.Topics, ContractAddress: log.Address, parserError: err} + } + + return nil } diff --git a/zeroex/orderwatch/decoder/event_decoder_test.go b/zeroex/orderwatch/decoder/event_decoder_test.go index 6c8bc8ea4..eb87129a7 100644 --- a/zeroex/orderwatch/decoder/event_decoder_test.go +++ b/zeroex/orderwatch/decoder/event_decoder_test.go @@ -23,6 +23,10 @@ const erc20ApprovalLog string = "{\"address\":\"0x02b3c88b805f1c6982e38ea1d40a1d const wethWithdrawalLog string = "{\"address\":\"0x02b3c88b805f1c6982e38ea1d40a1d83f159c3d4\",\"topics\":[\"0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65\",\"0x000000000000000000000000b3fa5ba98fdb56e493c4c362920289a42948294e\"],\"data\":\"0x00000000000000000000000000000000000000000000000004e8b5d353f6e400\",\"blockNumber\":\"0x726c3c\",\"transactionHash\":\"0xce1bfaad43cfb1a24cc3c85aa86c4bf867ff545cb13b3d947a2290a6890e27ac\",\"transactionIndex\":\"0x29\",\"blockHash\":\"0xd087cf26990c7d216925f07a0e3745aa4a193842e65e2215275231b069e23dfc\",\"logIndex\":\"0x38\",\"removed\":false}" const wethDepositLog string = "{\"address\":\"0x02b3c88b805f1c6982e38ea1d40a1d83f159c3d4\",\"topics\":[\"0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c\",\"0x00000000000000000000000081228ea33d680b0f51271abab1105886ecd01c2c\"],\"data\":\"0x00000000000000000000000000000000000000000000000002c68af0bb140000\",\"blockNumber\":\"0x726c20\",\"transactionHash\":\"0xd321c2d2aabe50187740b31bb4078c76c01075281816b3039af0a43f91ea9467\",\"transactionIndex\":\"0x2e\",\"blockHash\":\"0x151d07e1b6099fc4ef1f2281eec9edba0ce8df9c4e2e5bab1c6b5fcd1c09dd97\",\"logIndex\":\"0x23\",\"removed\":false}" +const erc20ApprovalLogTest string = ` +{"address":"0x45080a6531d671ddff20db42f93792a489685e32","topics":["0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925"],"data":"0x000000000000000000000000c7e6068615bf084ba10e42c2d3e5d84d98b397ea0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","blockNumber":"0xacc4c2","transactionHash":"0x9c4a49ae0f7f7bbaf1c99872e31ff1eb1a30825142bb07405d9ccfc7e58e9efd","transactionIndex":"0x71","blockHash":"0x84da91d61dc0bc70b3d9049fb6b95d19a70e720a4d46add33517642fe193fb12","logIndex":"0x130","removed":false} +` + var erc721TokenAddress common.Address = common.HexToAddress("0x5d00d312e171be5342067c09bae883f9bcb2003b") const erc721TransferLog string = "{\"address\":\"0x5d00d312e171be5342067c09bae883f9bcb2003b\",\"topics\":[\"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\",\"0x000000000000000000000000d8c67d024db85b271b6f6eeac5234e29c4d6bbb5\",\"0x000000000000000000000000f13685a175b95faa79db765631483ac79fb3d8e8\",\"0x000000000000000000000000000000000000000000000000000000000000c5b1\"],\"data\":\"0x\",\"blockNumber\":\"0x6f503c\",\"transactionHash\":\"0x9f2b5ef09d2cebd36ee2accd8a95eb3def06c59d984f177c134b34fa5444b102\",\"transactionIndex\":\"0x20\",\"blockHash\":\"0x8c65e77bde1be54e4ca53c1eaf0936ae136a67afe58a4a0e482560f5f98a5cab\",\"logIndex\":\"0x2d\",\"removed\":false}" @@ -96,6 +100,28 @@ func TestDecodeERC20Approval(t *testing.T) { } +func TestDecodeERC20ApprovalForNonConformingImplementation(t *testing.T) { + var approvalLog types.Log + err := unmarshalLogStr(erc20ApprovalLogTest, &approvalLog) + if err != nil { + t.Fatal(err.Error()) + } + decoder, err := New() + if err != nil { + t.Fatal(err.Error()) + } + decoder.AddKnownERC20(common.HexToAddress("0x45080a6531d671ddff20db42f93792a489685e32")) + var actualEvent ERC20ApprovalEvent + err = decoder.Decode(approvalLog, &actualEvent) + if err == nil { + t.Fatal("we expect this ERC20 approval to fail because of bad Approval event implementation") + } + + if _, ok := err.(AbiTopicParserError); !ok { + t.Fatal("expected the error to be of type AbiTopicParserError") + } +} + func TestDecodeERC721Transfer(t *testing.T) { var transferLog types.Log err := unmarshalLogStr(erc721TransferLog, &transferLog) diff --git a/zeroex/orderwatch/order_watcher.go b/zeroex/orderwatch/order_watcher.go index 97bb3d904..37e73e3e5 100644 --- a/zeroex/orderwatch/order_watcher.go +++ b/zeroex/orderwatch/order_watcher.go @@ -73,7 +73,7 @@ type Watcher struct { contractAddresses ethereum.ContractAddresses orderFeed event.Feed orderScope event.SubscriptionScope // Subscription scope tracking current live listeners - contractAddressToSeenCount map[common.Address]uint + contractAddressToSeenCount *contractAddressesSeenCounter orderValidator *ordervalidator.OrderValidator wasStartedOnce bool mu sync.Mutex @@ -120,7 +120,7 @@ func New(config Config) (*Watcher, error) { w := &Watcher{ db: config.DB, blockWatcher: config.BlockWatcher, - contractAddressToSeenCount: map[common.Address]uint{}, + contractAddressToSeenCount: NewContractAddressesSeenCounter(), orderValidator: config.OrderValidator, eventDecoder: decoder, assetDataDecoder: assetDataDecoder, @@ -1959,8 +1959,22 @@ func (w *Watcher) checkDecodeErr(err error, eventType string) bool { }).Warn("unsupported event found") return true } + // NOTE(oskar): What happens here is that some tokens which do not + // respect the ERC20 specification can throw ABI decoder errors, we + // should handle them here and return it as a non-critical error. + // TODO(oskar): Should this be handled the same way for all non-ABI + // conforming ERC20 implementations? + if parserError, ok := err.(decoder.AbiTopicParserError); ok { + logger.WithFields(logger.Fields{ + "eventType": eventType, + "topics": parserError.Topics, + "contractAddress": parserError.ContractAddress, + }).Warn("event parsing error") + return true + } logger.WithFields(logger.Fields{ - "error": err.Error(), + "error": err.Error(), + "eventType": eventType, }).Error("unexpected event decoder error encountered") return false } @@ -1985,7 +1999,7 @@ func (w *Watcher) addAssetDataAddressToEventDecoder(assetData []byte) error { return err } w.eventDecoder.AddKnownERC20(decodedAssetData.Address) - w.contractAddressToSeenCount[decodedAssetData.Address] = w.contractAddressToSeenCount[decodedAssetData.Address] + 1 + w.contractAddressToSeenCount.Inc(decodedAssetData.Address) case "ERC721Token": var decodedAssetData zeroex.ERC721AssetData err := w.assetDataDecoder.Decode(assetData, &decodedAssetData) @@ -1993,7 +2007,7 @@ func (w *Watcher) addAssetDataAddressToEventDecoder(assetData []byte) error { return err } w.eventDecoder.AddKnownERC721(decodedAssetData.Address) - w.contractAddressToSeenCount[decodedAssetData.Address] = w.contractAddressToSeenCount[decodedAssetData.Address] + 1 + w.contractAddressToSeenCount.Inc(decodedAssetData.Address) case "ERC1155Assets": var decodedAssetData zeroex.ERC1155AssetData err := w.assetDataDecoder.Decode(assetData, &decodedAssetData) @@ -2001,7 +2015,7 @@ func (w *Watcher) addAssetDataAddressToEventDecoder(assetData []byte) error { return err } w.eventDecoder.AddKnownERC1155(decodedAssetData.Address) - w.contractAddressToSeenCount[decodedAssetData.Address] = w.contractAddressToSeenCount[decodedAssetData.Address] + 1 + w.contractAddressToSeenCount.Inc(decodedAssetData.Address) case "StaticCall": var decodedAssetData zeroex.StaticCallAssetData err := w.assetDataDecoder.Decode(assetData, &decodedAssetData) @@ -2045,8 +2059,8 @@ func (w *Watcher) removeAssetDataAddressFromEventDecoder(assetData []byte) error if err != nil { return err } - w.contractAddressToSeenCount[decodedAssetData.Address] = w.contractAddressToSeenCount[decodedAssetData.Address] - 1 - if w.contractAddressToSeenCount[decodedAssetData.Address] == 0 { + count := w.contractAddressToSeenCount.Dec(decodedAssetData.Address) + if count == 0 { w.eventDecoder.RemoveKnownERC20(decodedAssetData.Address) } case "ERC721Token": @@ -2055,8 +2069,8 @@ func (w *Watcher) removeAssetDataAddressFromEventDecoder(assetData []byte) error if err != nil { return err } - w.contractAddressToSeenCount[decodedAssetData.Address] = w.contractAddressToSeenCount[decodedAssetData.Address] - 1 - if w.contractAddressToSeenCount[decodedAssetData.Address] == 0 { + count := w.contractAddressToSeenCount.Dec(decodedAssetData.Address) + if count == 0 { w.eventDecoder.RemoveKnownERC721(decodedAssetData.Address) } case "ERC1155Assets": @@ -2065,8 +2079,8 @@ func (w *Watcher) removeAssetDataAddressFromEventDecoder(assetData []byte) error if err != nil { return err } - w.contractAddressToSeenCount[decodedAssetData.Address] = w.contractAddressToSeenCount[decodedAssetData.Address] - 1 - if w.contractAddressToSeenCount[decodedAssetData.Address] == 0 { + count := w.contractAddressToSeenCount.Dec(decodedAssetData.Address) + if count == 0 { w.eventDecoder.RemoveKnownERC1155(decodedAssetData.Address) } case "StaticCall": diff --git a/zeroex/orderwatch/order_watcher_utils.go b/zeroex/orderwatch/order_watcher_utils.go new file mode 100644 index 000000000..177b78950 --- /dev/null +++ b/zeroex/orderwatch/order_watcher_utils.go @@ -0,0 +1,41 @@ +package orderwatch + +import ( + "sync" + + "github.com/ethereum/go-ethereum/common" +) + +type contractAddressesSeenCounter struct { + contractAddressToSeenCount map[common.Address]uint + + mu sync.RWMutex +} + +func NewContractAddressesSeenCounter() *contractAddressesSeenCounter { + return &contractAddressesSeenCounter{ + contractAddressToSeenCount: map[common.Address]uint{}, + } +} + +func (ca *contractAddressesSeenCounter) Inc(address common.Address) uint { + ca.mu.Lock() + defer ca.mu.Unlock() + newValue := ca.contractAddressToSeenCount[address] + 1 + ca.contractAddressToSeenCount[address] = newValue + return newValue +} + +func (ca *contractAddressesSeenCounter) Dec(address common.Address) uint { + ca.mu.Lock() + defer ca.mu.Unlock() + newValue := ca.contractAddressToSeenCount[address] - 1 + ca.contractAddressToSeenCount[address] = newValue + return newValue +} + +func (ca *contractAddressesSeenCounter) Get(address common.Address) uint { + ca.mu.RLock() + defer ca.mu.RUnlock() + return ca.contractAddressToSeenCount[address] +}