Comparing version 2.0.0 to 2.0.1
[ | ||
{ | ||
"timestamp": 1549452781, | ||
"version": "2.0.1", | ||
"changes": [ | ||
{ | ||
"note": "Dependencies updated" | ||
} | ||
] | ||
}, | ||
{ | ||
"version": "2.0.0", | ||
@@ -8,2 +17,10 @@ "changes": [ | ||
"pr": 1517 | ||
}, | ||
{ | ||
"note": "Update `ZeroExTransaction` type and add `SignedZeroExTransaction` type", | ||
"pr": 1576 | ||
}, | ||
{ | ||
"note": "Add `EIP712DomainWithDefaultSchema` type", | ||
"pr": 1576 | ||
} | ||
@@ -10,0 +27,0 @@ ], |
@@ -8,5 +8,11 @@ <!-- | ||
## v2.0.1 - _February 6, 2019_ | ||
* Dependencies updated | ||
## v2.0.0 - _February 5, 2019_ | ||
* Upgrade the bignumber.js to v8.0.2 (#1517) | ||
* Update `ZeroExTransaction` type and add `SignedZeroExTransaction` type (#1576) | ||
* Add `EIP712DomainWithDefaultSchema` type (#1576) | ||
@@ -13,0 +19,0 @@ ## v1.5.2 - _January 15, 2019_ |
@@ -39,2 +39,3 @@ import { BigNumber } from 'bignumber.js'; | ||
export interface ZeroExTransaction { | ||
verifyingContractAddress: string; | ||
salt: BigNumber; | ||
@@ -44,2 +45,5 @@ signerAddress: string; | ||
} | ||
export interface SignedZeroExTransaction extends ZeroExTransaction { | ||
signature: string; | ||
} | ||
/** | ||
@@ -594,2 +598,7 @@ * Elliptic Curve signature | ||
} | ||
export interface EIP712DomainWithDefaultSchema { | ||
name?: string; | ||
version?: string; | ||
verifyingContractAddress: string; | ||
} | ||
//# sourceMappingURL=index.d.ts.map |
{ | ||
"name": "@0x/types", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"engines": { | ||
@@ -40,3 +40,3 @@ "node": ">=6.12" | ||
}, | ||
"gitHead": "7b583cecb29c24f561c8befa835ba9ef5a6918f6" | ||
"gitHead": "dbb3c5e32b26a8c2edf6be19a8216851b7c65888" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
62727
1204