Create contract-artifacts package (needed to solve dependency cycle)
This commit is contained in:
32
packages/contract-artifacts/src/index.ts
Normal file
32
packages/contract-artifacts/src/index.ts
Normal 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,
|
||||
};
|
Reference in New Issue
Block a user