diff options
author | Jacob Evans <jacob@dekz.net> | 2018-08-14 06:32:16 +0800 |
---|---|---|
committer | Jacob Evans <jacob@dekz.net> | 2018-08-14 07:18:13 +0800 |
commit | a3517574936aa6a4911003dbff06302926b04cb4 (patch) | |
tree | 86e4c20aee5ddf4e3641d6b13e1379d1b7c26930 /packages/0x.js | |
parent | ca4905c3436931684d113ec66882836a4d0b265b (diff) | |
download | dexon-sol-tools-a3517574936aa6a4911003dbff06302926b04cb4.tar dexon-sol-tools-a3517574936aa6a4911003dbff06302926b04cb4.tar.gz dexon-sol-tools-a3517574936aa6a4911003dbff06302926b04cb4.tar.bz2 dexon-sol-tools-a3517574936aa6a4911003dbff06302926b04cb4.tar.lz dexon-sol-tools-a3517574936aa6a4911003dbff06302926b04cb4.tar.xz dexon-sol-tools-a3517574936aa6a4911003dbff06302926b04cb4.tar.zst dexon-sol-tools-a3517574936aa6a4911003dbff06302926b04cb4.zip |
Update version numbers.
Add source for Metamask future fix.
Consolidate switch statement to one return
Diffstat (limited to 'packages/0x.js')
-rw-r--r-- | packages/0x.js/CHANGELOG.json | 2 | ||||
-rw-r--r-- | packages/0x.js/src/0x.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/0x.js/CHANGELOG.json b/packages/0x.js/CHANGELOG.json index 88c1bd3a3..a1bdcc506 100644 --- a/packages/0x.js/CHANGELOG.json +++ b/packages/0x.js/CHANGELOG.json @@ -1,6 +1,6 @@ [ { - "version": "pending", + "version": "1.0.1-rc.4", "changes": [ { "pr": 914, diff --git a/packages/0x.js/src/0x.ts b/packages/0x.js/src/0x.ts index 80d784552..48d00c1ac 100644 --- a/packages/0x.js/src/0x.ts +++ b/packages/0x.js/src/0x.ts @@ -237,7 +237,7 @@ export class ZeroEx { * @param orderHash Hex encoded orderHash to sign. * @param signerAddress The hex encoded Ethereum address you wish to sign it with. This address * must be available via the Provider supplied to 0x.js. - * @param signerType the type signer that will perform the `eth_sign` operation. E.g Default, Metamask, Ledger or Trezor. + * @param signerType the signer type that will perform the `eth_sign` operation. E.g Default, Metamask, Ledger or Trezor. * Some implementations exhibit different behaviour. Default will assume a spec compliant eth_sign implementation. * This parameter is defaulted to `SignerType.Default`. * @return A hex encoded string of the Elliptic curve signature parameters generated by signing the orderHash and signature type. |