Split tokens package into erc20 and erc721

This commit is contained in:
Amir Bandeali
2019-01-21 14:20:33 -08:00
parent 9fa8619590
commit 0758f231e2
104 changed files with 729 additions and 878 deletions

View File

@@ -19,16 +19,15 @@ import * as chai from 'chai';
import { LogWithDecodedArgs } from 'ethereum-types';
import {
artifacts,
AssetProxyOwnerAssetProxyRegistrationEventArgs,
AssetProxyOwnerContract,
AssetProxyOwnerExecutionEventArgs,
AssetProxyOwnerExecutionFailureEventArgs,
AssetProxyOwnerSubmissionEventArgs,
} from '../generated-wrappers/asset_proxy_owner';
import { TestAssetProxyOwnerContract } from '../generated-wrappers/test_asset_proxy_owner';
import { artifacts } from '../src/artifacts';
import { AssetProxyOwnerWrapper } from './utils/asset_proxy_owner_wrapper';
AssetProxyOwnerWrapper,
TestAssetProxyOwnerContract,
} from '../src';
chaiSetup.configure();
const expect = chai.expect;