aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/src/types.ts
diff options
context:
space:
mode:
authorLeonid <logvinov.leon@gmail.com>2017-11-28 05:53:21 +0800
committerGitHub <noreply@github.com>2017-11-28 05:53:21 +0800
commitcf0a8b2d0503f9d08ac789024d44b196613ecdc3 (patch)
tree75653154b85dd6df06da46af9411baf57c23367b /packages/0x.js/src/types.ts
parent37f0051d8380279a1a882cdc724e54fc09117901 (diff)
parent4a17f5e82074b01e74ae6982e82419a037eebdb4 (diff)
downloaddexon-sol-tools-cf0a8b2d0503f9d08ac789024d44b196613ecdc3.tar
dexon-sol-tools-cf0a8b2d0503f9d08ac789024d44b196613ecdc3.tar.gz
dexon-sol-tools-cf0a8b2d0503f9d08ac789024d44b196613ecdc3.tar.bz2
dexon-sol-tools-cf0a8b2d0503f9d08ac789024d44b196613ecdc3.tar.lz
dexon-sol-tools-cf0a8b2d0503f9d08ac789024d44b196613ecdc3.tar.xz
dexon-sol-tools-cf0a8b2d0503f9d08ac789024d44b196613ecdc3.tar.zst
dexon-sol-tools-cf0a8b2d0503f9d08ac789024d44b196613ecdc3.zip
Merge branch 'development' into feature/passNetworkId
Diffstat (limited to 'packages/0x.js/src/types.ts')
-rw-r--r--packages/0x.js/src/types.ts7
1 files changed, 5 insertions, 2 deletions
diff --git a/packages/0x.js/src/types.ts b/packages/0x.js/src/types.ts
index a8da05205..af4f054f0 100644
--- a/packages/0x.js/src/types.ts
+++ b/packages/0x.js/src/types.ts
@@ -355,9 +355,11 @@ export interface IndexedFilterValues {
[index: string]: ContractEventArg;
}
+// Earliest is omitted by design. It is simply an alias for the `0` constant and
+// is thus not very helpful. Moreover, this type is used in places that only accept
+// `latest` or `pending`.
export enum BlockParamLiteral {
Latest = 'latest',
- Earliest = 'earliest',
Pending = 'pending',
}
@@ -385,7 +387,8 @@ export type AsyncMethod = (...args: any[]) => Promise<any>;
/**
* We re-export the `Web3.Provider` type specified in the Web3 Typescript typings
* since it is the type of the `provider` argument to the `ZeroEx` constructor.
- * It is however a `Web3` library type, not a native `0x.js` type.
+ * It is however a `Web3` library type, not a native `0x.js` type. To learn more
+ * about providers, visit https://0xproject.com/wiki#Web3-Provider-Explained
*/
export type Web3Provider = Web3.Provider;