Create contract-artifacts package (needed to solve dependency cycle)

This commit is contained in:
Alex Browne
2018-10-04 13:35:45 -07:00
parent 3a7bb97ad1
commit 1da3604351
20 changed files with 6270 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
import * as AssetProxyOwner from '../artifacts/AssetProxyOwner.json';
import * as DummyERC20Token from '../artifacts/DummyERC20Token.json';
import * as DummyERC721Token from '../artifacts/DummyERC721Token.json';
import * as ERC20Proxy from '../artifacts/ERC20Proxy.json';
import * as ERC20Token from '../artifacts/ERC20Token.json';
import * as ERC721Proxy from '../artifacts/ERC721Proxy.json';
import * as ERC721Token from '../artifacts/ERC721Token.json';
import * as Exchange from '../artifacts/Exchange.json';
import * as Forwarder from '../artifacts/Forwarder.json';
import * as IValidator from '../artifacts/IValidator.json';
import * as IWallet from '../artifacts/IWallet.json';
import * as OrderValidator from '../artifacts/OrderValidator.json';
import * as WETH9 from '../artifacts/WETH9.json';
import * as ZRXToken from '../artifacts/ZRXToken.json';
// TODO(albrow): Do we need to export all of these?
export const artifacts = {
AssetProxyOwner,
DummyERC20Token,
DummyERC721Token,
ERC20Proxy,
ERC20Token,
ERC721Proxy,
ERC721Token,
Exchange,
Forwarder,
IValidator,
IWallet,
OrderValidator,
WETH9,
ZRXToken,
};