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
ERC20BridgeProxy #2220
Merged
Merged
ERC20BridgeProxy #2220
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
a9f1237
`ethereum-types`: Add `DecodedLogs` type (again?).
dorothy-zbornak cf8d424
`@0x/contracts-test-utils`: Add `number_utils.ts` and `hexSize()`.
dorothy-zbornak d6a4d67
`@0x/contracts-asset-proxy`: Add `ERC20BridgeProxy` and tests.
dorothy-zbornak 3e2e05c
Update changelogs
dorothy-zbornak 1959d14
`@0x/contracts-asset-proxy`: Fix incorrect comments in `ERC20BridgePr…
dorothy-zbornak b728d13
`@0x/contracts-asset-proxy`: Remove `only` tests modifier.
dorothy-zbornak b50e26d
`@0x/contracts-asset-proxy`: Rename `IERC20Bridge.transfer()` -> `IER…
dorothy-zbornak 8006e4f
`@0x/contracts-asset-proxy`: Change proxy ID and add proxy signature …
dorothy-zbornak 737ad58
`@0x/types`: Add `ERC20Bridge` to `AssetProxyId`
dorothy-zbornak 579dba1
`@0x/contracts-asset-proxy`: Minor `ERC20BridgeProxy` test changes.
dorothy-zbornak 6da48be
`@0x/contracts-asset-proxy`: Merge `ERC20Bridge` into `IERC20Bridge`.
dorothy-zbornak File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
126 changes: 126 additions & 0 deletions
126
contracts/asset-proxy/contracts/src/ERC20BridgeProxy.sol
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,126 @@ | ||
/* | ||
|
||
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.9; | ||
pragma experimental ABIEncoderV2; | ||
|
||
import "@0x/contracts-utils/contracts/src/LibBytes.sol"; | ||
import "@0x/contracts-utils/contracts/src/LibSafeMath.sol"; | ||
import "@0x/contracts-utils/contracts/src/Authorizable.sol"; | ||
import "@0x/contracts-erc20/contracts/src/interfaces/IERC20Token.sol"; | ||
import "./interfaces/IAssetProxy.sol"; | ||
import "./interfaces/IERC20Bridge.sol"; | ||
|
||
|
||
contract ERC20BridgeProxy is | ||
IAssetProxy, | ||
Authorizable | ||
{ | ||
using LibBytes for bytes; | ||
using LibSafeMath for uint256; | ||
|
||
// @dev Id of this proxy. Also the result of a successful bridge call. | ||
// bytes4(keccak256("ERC20Bridge(address,address,bytes)")) | ||
bytes4 constant private PROXY_ID = 0xdc1600f3; | ||
|
||
/// @dev Calls a bridge contract to transfer `amount` of ERC20 from `from` | ||
/// to `to`. Asserts that the balance of `to` has increased by `amount`. | ||
/// @param assetData Abi-encoded data for this asset proxy encoded as: | ||
/// abi.encodeWithSelector( | ||
/// bytes4 PROXY_ID, | ||
/// address tokenAddress, | ||
/// address bridgeAddress, | ||
/// bytes bridgeData | ||
/// ) | ||
/// @param from Address to transfer asset from. | ||
/// @param to Address to transfer asset to. | ||
/// @param amount Amount of asset to transfer. | ||
function transferFrom( | ||
bytes calldata assetData, | ||
address from, | ||
address to, | ||
uint256 amount | ||
) | ||
external | ||
onlyAuthorized | ||
{ | ||
// Extract asset data fields. | ||
( | ||
address tokenAddress, | ||
address bridgeAddress, | ||
bytes memory bridgeData | ||
) = abi.decode( | ||
assetData.sliceDestructive(4, assetData.length), | ||
(address, address, bytes) | ||
); | ||
|
||
// Remember the balance of `to` before calling the bridge. | ||
uint256 balanceBefore = balanceOf(tokenAddress, to); | ||
// Call the bridge, who should transfer `amount` of `tokenAddress` to | ||
// `to`. | ||
bytes4 success = IERC20Bridge(bridgeAddress).withdrawTo( | ||
tokenAddress, | ||
from, | ||
to, | ||
amount, | ||
bridgeData | ||
); | ||
// Bridge must return the proxy ID to indicate success. | ||
require(success == PROXY_ID, "BRIDGE_FAILED"); | ||
// Ensure that the balance of `to` has increased by at least `amount`. | ||
require( | ||
balanceBefore.safeAdd(amount) <= balanceOf(tokenAddress, to), | ||
"BRIDGE_UNDERPAY" | ||
); | ||
} | ||
|
||
/// @dev Gets the proxy id associated with this asset proxy. | ||
/// @return proxyId The proxy id. | ||
function getProxyId() | ||
external | ||
pure | ||
returns (bytes4 proxyId) | ||
{ | ||
return PROXY_ID; | ||
} | ||
|
||
/// @dev Retrieves the balance of `owner` for this asset. | ||
/// @return balance The balance of the ERC20 token being transferred by this | ||
/// asset proxy. | ||
function balanceOf(bytes calldata assetData, address owner) | ||
external | ||
view | ||
returns (uint256 balance) | ||
{ | ||
(address tokenAddress) = abi.decode( | ||
assetData.sliceDestructive(4, assetData.length), | ||
(address) | ||
); | ||
return balanceOf(tokenAddress, owner); | ||
} | ||
|
||
/// @dev Retrieves the balance of `owner` given an ERC20 address. | ||
/// @return balance The balance of the ERC20 token for `owner`. | ||
function balanceOf(address tokenAddress, address owner) | ||
private | ||
view | ||
returns (uint256 balance) | ||
{ | ||
return IERC20Token(tokenAddress).balanceOf(owner); | ||
} | ||
} |
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
43 changes: 43 additions & 0 deletions
43
contracts/asset-proxy/contracts/src/interfaces/IERC20Bridge.sol
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,43 @@ | ||
/* | ||
|
||
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.9; | ||
|
||
|
||
contract IERC20Bridge { | ||
|
||
// @dev Result of a successful bridge call. | ||
bytes4 constant internal BRIDGE_SUCCESS = 0xdc1600f3; | ||
|
||
/// @dev Transfers `amount` of the ERC20 `tokenAddress` from `from` to `to`. | ||
/// @param tokenAddress The address of the ERC20 token to transfer. | ||
/// @param from Address to transfer asset from. | ||
/// @param to Address to transfer asset to. | ||
/// @param amount Amount of asset to transfer. | ||
/// @param bridgeData Arbitrary asset data needed by the bridge contract. | ||
/// @return success The magic bytes `0x37708e9b` if successful. | ||
function withdrawTo( | ||
address tokenAddress, | ||
address from, | ||
address to, | ||
uint256 amount, | ||
bytes calldata bridgeData | ||
) | ||
external | ||
returns (bytes4 success); | ||
} |
108 changes: 108 additions & 0 deletions
108
contracts/asset-proxy/contracts/test/TestERC20Bridge.sol
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,108 @@ | ||
/* | ||
|
||
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.9; | ||
pragma experimental ABIEncoderV2; | ||
|
||
import "../src/interfaces/IERC20Bridge.sol"; | ||
|
||
|
||
/// @dev Test bridge token | ||
contract TestERC20BridgeToken { | ||
mapping (address => uint256) private _balances; | ||
|
||
function addBalance(address owner, int256 amount) | ||
external | ||
{ | ||
setBalance(owner, uint256(int256(balanceOf(owner)) + amount)); | ||
} | ||
|
||
function setBalance(address owner, uint256 balance) | ||
public | ||
{ | ||
_balances[owner] = balance; | ||
} | ||
|
||
function balanceOf(address owner) | ||
public | ||
view | ||
returns (uint256) | ||
{ | ||
return _balances[owner]; | ||
} | ||
} | ||
|
||
|
||
/// @dev Test bridge contract. | ||
contract TestERC20Bridge is | ||
IERC20Bridge | ||
{ | ||
TestERC20BridgeToken public testToken; | ||
|
||
event BridgeWithdrawTo( | ||
address tokenAddress, | ||
address from, | ||
address to, | ||
uint256 amount, | ||
bytes bridgeData | ||
); | ||
|
||
constructor() public { | ||
testToken = new TestERC20BridgeToken(); | ||
} | ||
|
||
function setTestTokenBalance(address owner, uint256 balance) | ||
external | ||
{ | ||
testToken.setBalance(owner, balance); | ||
} | ||
|
||
function withdrawTo( | ||
address tokenAddress, | ||
address from, | ||
address to, | ||
uint256 amount, | ||
bytes calldata bridgeData | ||
) | ||
external | ||
returns (bytes4) | ||
{ | ||
emit BridgeWithdrawTo( | ||
tokenAddress, | ||
from, | ||
to, | ||
amount, | ||
bridgeData | ||
); | ||
// Unpack the bridgeData. | ||
( | ||
int256 transferAmount, | ||
bytes memory revertData, | ||
bytes memory returnData | ||
) = abi.decode(bridgeData, (int256, bytes, bytes)); | ||
|
||
// If `revertData` is set, revert. | ||
if (revertData.length != 0) { | ||
assembly { revert(add(revertData, 0x20), mload(revertData)) } | ||
} | ||
// Increase `to`'s balance by `transferAmount`. | ||
TestERC20BridgeToken(tokenAddress).addBalance(to, transferAmount); | ||
// Return `returnData`. | ||
assembly { return(add(returnData, 0x20), mload(returnData)) } | ||
} | ||
} |
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: I feel like
balanceOf(tokenAddress, to) >= balanceBefore.safeAdd(amount)
is slightly more intuitive. Not a huge deal either way.