Move generated contract wrappers and artifacts into contracts package

This commit is contained in:
Alex Browne 2018-10-01 16:44:13 -07:00
parent 83a36aff3f
commit 81c4887241
209 changed files with 64959 additions and 2461 deletions

View File

@ -0,0 +1,3 @@
contracts/tokens/ZRXToken/ERC20Token_v1.sol
contracts/tokens/ZRXToken/Token_v1.sol
contracts/tokens/ZRXToken/UnlimitedAllowanceToken_v1.sol

View File

@ -1,6 +1,6 @@
{
"artifactsDir": "../migrations/artifacts/development",
"contractsDir": "src/",
"artifactsDir": "./generated-artifacts",
"contractsDir": "./contracts",
"compilerSettings": {
"optimizer": {
"enabled": true,
@ -50,7 +50,6 @@
"TestExchangeInternals",
"TestSignatureValidator",
"TestStaticCallReceiver",
"TokenRegistry",
"Validator",
"Wallet",
"WETH9",

View File

@ -1,6 +1,6 @@
pragma solidity ^0.4.11;
import { Token_v1 as Token } from "../Token/Token_v1.sol";
import { Token_v1 as Token } from "./Token_v1.sol";
contract ERC20Token_v1 is Token {

View File

@ -18,7 +18,7 @@
pragma solidity ^0.4.11;
import { ERC20Token_v1 as ERC20Token } from "../ERC20Token/ERC20Token_v1.sol";
import { ERC20Token_v1 as ERC20Token } from "./ERC20Token_v1.sol";
contract UnlimitedAllowanceToken_v1 is ERC20Token {

View File

@ -19,7 +19,7 @@
pragma solidity 0.4.11;
// solhint-disable-next-line max-line-length
import { UnlimitedAllowanceToken_v1 as UnlimitedAllowanceToken } from "../../../1.0.0/UnlimitedAllowanceToken/UnlimitedAllowanceToken_v1.sol";
import { UnlimitedAllowanceToken_v1 as UnlimitedAllowanceToken } from "./UnlimitedAllowanceToken_v1.sol";
contract ZRXToken is

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show More