diff options
Diffstat (limited to 'packages/pipeline/src/artifacts.ts')
-rw-r--r-- | packages/pipeline/src/artifacts.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/pipeline/src/artifacts.ts b/packages/pipeline/src/artifacts.ts new file mode 100644 index 000000000..c0d7e11f6 --- /dev/null +++ b/packages/pipeline/src/artifacts.ts @@ -0,0 +1,7 @@ +import { ContractArtifact } from 'ethereum-types'; + +import * as Exchange from './artifacts/Exchange.json'; + +export const artifacts = { + Exchange: (Exchange as any) as ContractArtifact, +}; |