This repository has been archived by the owner on Jul 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 465
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cherry pick
DevUtils
refactor code from #2456
- Loading branch information
1 parent
80c58ce
commit 3947d37
Showing
54 changed files
with
3,231 additions
and
2,259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
Copyright 2019 ZeroEx Intl. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
pragma solidity ^0.5.16; | ||
pragma experimental ABIEncoderV2; | ||
|
||
import "@0x/contracts-asset-proxy/contracts/src/interfaces/IAssetData.sol"; | ||
import "@0x/contracts-exchange/contracts/src/interfaces/IExchange.sol"; | ||
import "@0x/contracts-utils/contracts/src/DeploymentConstants.sol"; | ||
|
||
|
||
// solhint-disable no-empty-blocks | ||
contract Addresses is | ||
DeploymentConstants | ||
{ | ||
address public exchangeAddress; | ||
address public erc20ProxyAddress; | ||
address public erc721ProxyAddress; | ||
address public erc1155ProxyAddress; | ||
address public staticCallProxyAddress; | ||
address public chaiBridgeAddress; | ||
|
||
constructor ( | ||
address exchange_, | ||
address chaiBridge_ | ||
) | ||
public | ||
{ | ||
exchangeAddress = exchange_; | ||
chaiBridgeAddress = chaiBridge_; | ||
erc20ProxyAddress = IExchange(exchange_).getAssetProxy(IAssetData(address(0)).ERC20Token.selector); | ||
erc721ProxyAddress = IExchange(exchange_).getAssetProxy(IAssetData(address(0)).ERC721Token.selector); | ||
erc1155ProxyAddress = IExchange(exchange_).getAssetProxy(IAssetData(address(0)).ERC1155Assets.selector); | ||
staticCallProxyAddress = IExchange(exchange_).getAssetProxy(IAssetData(address(0)).StaticCall.selector); | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
*/ | ||
|
||
pragma solidity ^0.5.5; | ||
pragma solidity ^0.5.16; | ||
|
||
|
||
contract EthBalanceChecker { | ||
|
Oops, something went wrong.