Merge pull request #563 from 0xProject/feature/contracts/proxyIds

Add hard coded proxyId into each AssetProxy
This commit is contained in:
Amir Bandeali
2018-04-30 16:44:38 -07:00
committed by GitHub
7 changed files with 78 additions and 9 deletions

View File

@@ -33,4 +33,11 @@ contract IAssetProxy is IAuthorizable {
address to,
uint256 amount)
external;
/// @dev Gets the proxy id associated with the proxy address.
/// @return Proxy id.
function getProxyId()
external
view
returns (uint8);
}

View File

@@ -29,6 +29,8 @@ contract ERC20Proxy is
IAssetProxy
{
uint8 constant PROXY_ID = 1;
/// @dev Transfers ERC20 tokens. Either succeeds or throws.
/// @param assetMetadata ERC20-encoded byte array.
/// @param from Address to transfer token from.
@@ -42,9 +44,25 @@ contract ERC20Proxy is
external
onlyAuthorized
{
// Data must be intended for this proxy.
require(uint8(assetMetadata[0]) == PROXY_ID);
// Decode metadata.
require(assetMetadata.length == 21);
address token = readAddress(assetMetadata, 1);
// Transfer tokens.
bool success = IERC20Token(token).transferFrom(from, to, amount);
require(success == true);
}
/// @dev Gets the proxy id associated with the proxy address.
/// @return Proxy id.
function getProxyId()
external
view
returns (uint8)
{
return PROXY_ID;
}
}

View File

@@ -29,6 +29,8 @@ contract ERC721Proxy is
IAssetProxy
{
uint8 constant PROXY_ID = 2;
/// @dev Transfers ERC721 tokens. Either succeeds or throws.
/// @param assetMetadata ERC721-encoded byte array
/// @param from Address to transfer token from.
@@ -42,17 +44,31 @@ contract ERC721Proxy is
external
onlyAuthorized
{
// Data must be intended for this proxy.
require(uint8(assetMetadata[0]) == PROXY_ID);
// There exists only 1 of each token.
require(amount == 1);
// Decode metadata
// Decode metadata.
require(assetMetadata.length == 53);
address token = readAddress(assetMetadata, 1);
uint256 tokenId = readUint256(assetMetadata, 21);
// Transfer token.
// Either succeeds or throws.
// @TODO: Call safeTransferFrom if there is additional
// data stored in `assetMetadata`.
ERC721Token(token).transferFrom(from, to, tokenId);
}
/// @dev Gets the proxy id associated with the proxy address.
/// @return Proxy id.
function getProxyId()
external
view
returns (uint8)
{
return PROXY_ID;
}
}

View File

@@ -43,7 +43,7 @@ contract MixinAssetProxyDispatcher is
{
// Do nothing if no amount should be transferred.
if (amount > 0) {
// Lookup asset proxy
// Lookup asset proxy.
require(assetMetadata.length >= 1);
uint8 assetProxyId = uint8(assetMetadata[0]);
IAssetProxy assetProxy = assetProxies[assetProxyId];
@@ -54,8 +54,7 @@ contract MixinAssetProxyDispatcher is
}
/// @dev Registers an asset proxy to an asset proxy id.
/// An id can only be assigned to a single proxy at a given time,
/// however, an asset proxy may be registered to multiple ids.
/// An id can only be assigned to a single proxy at a given time.
/// @param assetProxyId Id to register`newAssetProxy` under.
/// @param newAssetProxy Address of new asset proxy to register, or 0x0 to unset assetProxyId.
/// @param oldAssetProxy Existing asset proxy to overwrite, or 0x0 if assetProxyId is currently unused.
@@ -66,11 +65,19 @@ contract MixinAssetProxyDispatcher is
external
onlyOwner
{
// Ensure the existing asset proxy is not unintentionally overwritten
// Ensure the existing asset proxy is not unintentionally overwritten.
require(oldAssetProxy == address(assetProxies[assetProxyId]));
// Add asset proxy and log registration
assetProxies[assetProxyId] = IAssetProxy(newAssetProxy);
IAssetProxy assetProxy = IAssetProxy(newAssetProxy);
// Ensure that the id of newAssetProxy matches the passed in assetProxyId, unless it is being reset to 0.
if (newAssetProxy != address(0)) {
uint8 newAssetProxyId = assetProxy.getProxyId();
require(newAssetProxyId == assetProxyId);
}
// Add asset proxy and log registration.
assetProxies[assetProxyId] = assetProxy;
emit AssetProxySet(assetProxyId, newAssetProxy, oldAssetProxy);
}

View File

@@ -40,8 +40,7 @@ contract MAssetProxyDispatcher {
internal;
/// @dev Registers an asset proxy to an asset proxy id.
/// An id can only be assigned to a single proxy at a given time,
/// however, an asset proxy may be registered to multiple ids.
/// An id can only be assigned to a single proxy at a given time.
/// @param assetProxyId Id to register`newAssetProxy` under.
/// @param newAssetProxy Address of new asset proxy to register, or 0x0 to unset assetProxyId.
/// @param oldAssetProxy Existing asset proxy to overwrite, or 0x0 if assetProxyId is currently unused.

View File

@@ -145,6 +145,11 @@ describe('Asset Transfer Proxies', () => {
}),
).to.be.rejectedWith(constants.REVERT);
});
it('should have an id of 1', async () => {
const proxyId = await erc20Proxy.getProxyId.callAsync();
expect(proxyId).to.equal(1);
});
});
describe('Transfer Proxy - ERC721', () => {
@@ -240,5 +245,10 @@ describe('Asset Transfer Proxies', () => {
),
).to.be.rejectedWith(constants.REVERT);
});
it('should have an id of 2', async () => {
const proxyId = await erc721Proxy.getProxyId.callAsync();
expect(proxyId).to.equal(2);
});
});
});

View File

@@ -194,6 +194,18 @@ describe('AssetProxyDispatcher', () => {
),
).to.be.rejectedWith(constants.REVERT);
});
it('should throw if attempting to register a proxy to the incorrect id', async () => {
const prevProxyAddress = ZeroEx.NULL_ADDRESS;
return expect(
assetProxyDispatcher.registerAssetProxy.sendTransactionAsync(
AssetProxyId.ERC721,
erc20Proxy.address,
prevProxyAddress,
{ from: owner },
),
).to.be.rejectedWith(constants.REVERT);
});
});
describe('getAssetProxy', () => {