diff options
author | Greg Hysen <greg.hysen@gmail.com> | 2018-12-20 08:08:59 +0800 |
---|---|---|
committer | Greg Hysen <greg.hysen@gmail.com> | 2019-01-08 07:50:48 +0800 |
commit | c850046ea0b302f61a5fd24f77bab19784a2adc0 (patch) | |
tree | 34157fa6fb1006c080d42ba3b9c7b8ceb1fb691c /packages/types | |
parent | 7dda953bc929e218121c331fedb3884b24555855 (diff) | |
download | dexon-0x-contracts-c850046ea0b302f61a5fd24f77bab19784a2adc0.tar.gz dexon-0x-contracts-c850046ea0b302f61a5fd24f77bab19784a2adc0.tar.zst dexon-0x-contracts-c850046ea0b302f61a5fd24f77bab19784a2adc0.zip |
Dutch Auction Contract Wrapper
Diffstat (limited to 'packages/types')
-rw-r--r-- | packages/types/src/index.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/packages/types/src/index.ts b/packages/types/src/index.ts index 472b56dc2..49f788fb0 100644 --- a/packages/types/src/index.ts +++ b/packages/types/src/index.ts @@ -676,3 +676,12 @@ export interface SimpleEvmOutput { export interface SimpleEvmBytecodeOutput { object: string; } + +export interface DutchAuctionDetails { + beginTimeSeconds: BigNumber; + endTimeSeconds: BigNumber; + beginAmount: BigNumber; + endAmount: BigNumber; + currentAmount: BigNumber; + currentTimeSeconds: BigNumber; +} |