diff options
author | Fabio Berger <me@fabioberger.com> | 2017-06-01 22:21:09 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-06-01 22:21:09 +0800 |
commit | abd113f61f67b08b9a232a89832b1db4318dac9e (patch) | |
tree | 757df0cc0298508a94b4105fde323cf01ef9d0ea /src | |
parent | 44f11442424c88d1130ee398d0714636c5ade045 (diff) | |
parent | 52bdc0d3432ef917cca15522cea78255d03d82f6 (diff) | |
download | dexon-sol-tools-abd113f61f67b08b9a232a89832b1db4318dac9e.tar dexon-sol-tools-abd113f61f67b08b9a232a89832b1db4318dac9e.tar.gz dexon-sol-tools-abd113f61f67b08b9a232a89832b1db4318dac9e.tar.bz2 dexon-sol-tools-abd113f61f67b08b9a232a89832b1db4318dac9e.tar.lz dexon-sol-tools-abd113f61f67b08b9a232a89832b1db4318dac9e.tar.xz dexon-sol-tools-abd113f61f67b08b9a232a89832b1db4318dac9e.tar.zst dexon-sol-tools-abd113f61f67b08b9a232a89832b1db4318dac9e.zip |
Merge branch 'fillOrderAsync' of github.com:0xProject/0x.js into fillOrderAsync
Diffstat (limited to 'src')
-rw-r--r-- | src/contract_wrappers/exchange_wrapper.ts | 3 | ||||
-rw-r--r-- | src/types.ts | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/contract_wrappers/exchange_wrapper.ts b/src/contract_wrappers/exchange_wrapper.ts index 40f22bd28..ded0d3519 100644 --- a/src/contract_wrappers/exchange_wrapper.ts +++ b/src/contract_wrappers/exchange_wrapper.ts @@ -125,6 +125,9 @@ export class ExchangeWrapper extends ContractWrapper { if (signedOrder.taker !== constants.NULL_ADDRESS && signedOrder.taker !== senderAddress) { throw new Error(FillOrderValidationErrs.NOT_A_TAKER); } + if (signedOrder.expirationUnixTimestampSec.lessThan(Date.now() / 1000)) { + throw new Error(FillOrderValidationErrs.EXPIRED); + } } private async getExchangeInstanceOrThrowAsync(): Promise<ExchangeContract> { const contractInstance = await this.instantiateContractIfExistsAsync((ExchangeArtifacts as any)); diff --git a/src/types.ts b/src/types.ts index 216026b3d..7c5e1825d 100644 --- a/src/types.ts +++ b/src/types.ts @@ -88,6 +88,7 @@ export type ExchangeContractErrs = keyof typeof ExchangeContractErrs; export const FillOrderValidationErrs = strEnum([ 'FILL_AMOUNT_IS_ZERO', 'NOT_A_TAKER', + 'EXPIRED', ]); export type FillOrderValidationErrs = keyof typeof FillOrderValidationErrs; |