diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-12-05 00:05:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-05 00:05:57 +0800 |
commit | c43ba6b3c7082544f8aa8f1c297eb271ca079ea4 (patch) | |
tree | d81232245f6be7412d1273c20bf0b8be58ef7277 /contracts/utils/src | |
parent | 79f5e36edbd8a4483aac46032092dece95bb0b4c (diff) | |
parent | 18489161c6871ad7e76967644f91cad2a9be1e85 (diff) | |
download | dexon-sol-tools-c43ba6b3c7082544f8aa8f1c297eb271ca079ea4.tar dexon-sol-tools-c43ba6b3c7082544f8aa8f1c297eb271ca079ea4.tar.gz dexon-sol-tools-c43ba6b3c7082544f8aa8f1c297eb271ca079ea4.tar.bz2 dexon-sol-tools-c43ba6b3c7082544f8aa8f1c297eb271ca079ea4.tar.lz dexon-sol-tools-c43ba6b3c7082544f8aa8f1c297eb271ca079ea4.tar.xz dexon-sol-tools-c43ba6b3c7082544f8aa8f1c297eb271ca079ea4.tar.zst dexon-sol-tools-c43ba6b3c7082544f8aa8f1c297eb271ca079ea4.zip |
Merge pull request #1373 from 0xProject/feature/contracts-monorepo-3
Contracts monorepo III
Diffstat (limited to 'contracts/utils/src')
-rw-r--r-- | contracts/utils/src/artifacts/index.ts | 19 | ||||
-rw-r--r-- | contracts/utils/src/index.ts | 2 | ||||
-rw-r--r-- | contracts/utils/src/wrappers/index.ts | 2 |
3 files changed, 23 insertions, 0 deletions
diff --git a/contracts/utils/src/artifacts/index.ts b/contracts/utils/src/artifacts/index.ts new file mode 100644 index 000000000..a5c2b215c --- /dev/null +++ b/contracts/utils/src/artifacts/index.ts @@ -0,0 +1,19 @@ +import { ContractArtifact } from 'ethereum-types'; + +import * as IOwnable from '../../generated-artifacts/IOwnable.json'; +import * as LibBytes from '../../generated-artifacts/LibBytes.json'; +import * as Ownable from '../../generated-artifacts/Ownable.json'; +import * as ReentrancyGuard from '../../generated-artifacts/ReentrancyGuard.json'; +import * as SafeMath from '../../generated-artifacts/SafeMath.json'; +import * as TestConstants from '../../generated-artifacts/TestConstants.json'; +import * as TestLibBytes from '../../generated-artifacts/TestLibBytes.json'; + +export const artifacts = { + TestConstants: TestConstants as ContractArtifact, + TestLibBytes: TestLibBytes as ContractArtifact, + IOwnable: IOwnable as ContractArtifact, + LibBytes: LibBytes as ContractArtifact, + Ownable: Ownable as ContractArtifact, + SafeMath: SafeMath as ContractArtifact, + ReentrancyGuard: ReentrancyGuard as ContractArtifact, +}; diff --git a/contracts/utils/src/index.ts b/contracts/utils/src/index.ts new file mode 100644 index 000000000..d55f08ea2 --- /dev/null +++ b/contracts/utils/src/index.ts @@ -0,0 +1,2 @@ +export * from './artifacts'; +export * from './wrappers'; diff --git a/contracts/utils/src/wrappers/index.ts b/contracts/utils/src/wrappers/index.ts new file mode 100644 index 000000000..823b7fa4b --- /dev/null +++ b/contracts/utils/src/wrappers/index.ts @@ -0,0 +1,2 @@ +export * from '../../generated-wrappers/test_constants'; +export * from '../../generated-wrappers/test_lib_bytes'; |