diff options
author | Greg Hysen <greg.hysen@gmail.com> | 2018-12-12 06:47:52 +0800 |
---|---|---|
committer | Greg Hysen <greg.hysen@gmail.com> | 2018-12-19 05:36:05 +0800 |
commit | 4417c76b130655da3b14209148191d43037e8f8a (patch) | |
tree | 1cb3cf7ea3104d2dd68d9f5f48c1183e037ad244 /contracts/extensions/src | |
parent | 8799f9bb90c6bcfffc74550d74ed87422467f9e1 (diff) | |
download | dexon-sol-tools-4417c76b130655da3b14209148191d43037e8f8a.tar dexon-sol-tools-4417c76b130655da3b14209148191d43037e8f8a.tar.gz dexon-sol-tools-4417c76b130655da3b14209148191d43037e8f8a.tar.bz2 dexon-sol-tools-4417c76b130655da3b14209148191d43037e8f8a.tar.lz dexon-sol-tools-4417c76b130655da3b14209148191d43037e8f8a.tar.xz dexon-sol-tools-4417c76b130655da3b14209148191d43037e8f8a.tar.zst dexon-sol-tools-4417c76b130655da3b14209148191d43037e8f8a.zip |
Ported Balance Threshold Filter to new contract directory structure
Diffstat (limited to 'contracts/extensions/src')
-rw-r--r-- | contracts/extensions/src/artifacts/index.ts | 2 | ||||
-rw-r--r-- | contracts/extensions/src/wrappers/index.ts | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/contracts/extensions/src/artifacts/index.ts b/contracts/extensions/src/artifacts/index.ts index 7588178f0..ebf0b8050 100644 --- a/contracts/extensions/src/artifacts/index.ts +++ b/contracts/extensions/src/artifacts/index.ts @@ -1,9 +1,11 @@ import { ContractArtifact } from 'ethereum-types'; +import * as BalanceThresholdFilter from '../../generated-artifacts/BalanceThresholdFilter.json'; import * as DutchAuction from '../../generated-artifacts/DutchAuction.json'; import * as Forwarder from '../../generated-artifacts/Forwarder.json'; export const artifacts = { + BalanceThresholdFilter: BalanceThresholdFilter as ContractArtifact, DutchAuction: DutchAuction as ContractArtifact, Forwarder: Forwarder as ContractArtifact, }; diff --git a/contracts/extensions/src/wrappers/index.ts b/contracts/extensions/src/wrappers/index.ts index 90880e37f..8a8122caa 100644 --- a/contracts/extensions/src/wrappers/index.ts +++ b/contracts/extensions/src/wrappers/index.ts @@ -1,2 +1,3 @@ +export * from '../../generated-wrappers/balance_threshold_filter'; export * from '../../generated-wrappers/dutch_auction'; export * from '../../generated-wrappers/forwarder'; |