diff options
author | Amir Bandeali <abandeali1@gmail.com> | 2018-03-31 02:05:35 +0800 |
---|---|---|
committer | Amir Bandeali <abandeali1@gmail.com> | 2018-04-21 04:56:17 +0800 |
commit | 2f639b77bbcad9884b25536787e1d35a2eee2e34 (patch) | |
tree | 7e6cdd50f228abe9c78a35db492b59fe4fa08179 /packages/contracts/src | |
parent | 8b5b3718213fe329231e6a94dcb77a1fd0e74fd5 (diff) | |
download | dexon-sol-tools-2f639b77bbcad9884b25536787e1d35a2eee2e34.tar dexon-sol-tools-2f639b77bbcad9884b25536787e1d35a2eee2e34.tar.gz dexon-sol-tools-2f639b77bbcad9884b25536787e1d35a2eee2e34.tar.bz2 dexon-sol-tools-2f639b77bbcad9884b25536787e1d35a2eee2e34.tar.lz dexon-sol-tools-2f639b77bbcad9884b25536787e1d35a2eee2e34.tar.xz dexon-sol-tools-2f639b77bbcad9884b25536787e1d35a2eee2e34.tar.zst dexon-sol-tools-2f639b77bbcad9884b25536787e1d35a2eee2e34.zip |
Update Solidity syntax and comments
Diffstat (limited to 'packages/contracts/src')
3 files changed, 52 insertions, 50 deletions
diff --git a/packages/contracts/src/contracts/current/protocol/Exchange/LibErrors.sol b/packages/contracts/src/contracts/current/protocol/Exchange/LibErrors.sol index 7fa9d4860..55160ad5b 100644 --- a/packages/contracts/src/contracts/current/protocol/Exchange/LibErrors.sol +++ b/packages/contracts/src/contracts/current/protocol/Exchange/LibErrors.sol @@ -30,6 +30,6 @@ contract LibErrors { INSUFFICIENT_BALANCE_OR_ALLOWANCE // Insufficient balance or allowance for token transfer } - event LogError(uint8 indexed errorId, bytes32 indexed orderHash); + event ExchangeError(uint8 indexed errorId, bytes32 indexed orderHash); } diff --git a/packages/contracts/src/contracts/current/protocol/Exchange/MixinExchangeCore.sol b/packages/contracts/src/contracts/current/protocol/Exchange/MixinExchangeCore.sol index aefffe465..ea1cf507b 100644 --- a/packages/contracts/src/contracts/current/protocol/Exchange/MixinExchangeCore.sol +++ b/packages/contracts/src/contracts/current/protocol/Exchange/MixinExchangeCore.sol @@ -49,20 +49,20 @@ contract MixinExchangeCore is // Orders with a salt less than their maker's epoch are considered cancelled mapping (address => uint256) public makerEpoch; - event LogFill( + event Fill( address indexed makerAddress, address takerAddress, address indexed feeRecipientAddress, address makerTokenAddress, address takerTokenAddress, uint256 makerAmountSold, - uint256 makerAmountBought, + uint256 takerAmountSold, uint256 makerFeePaid, uint256 takerFeePaid, bytes32 indexed orderHash ); - event LogCancel( + event Cancel( address indexed makerAddress, address indexed feeRecipientAddress, address makerTokenAddress, @@ -70,7 +70,7 @@ contract MixinExchangeCore is bytes32 indexed orderHash ); - event LogCancelUpTo( + event CancelUpTo( address indexed makerAddress, uint256 makerEpoch ); @@ -82,8 +82,8 @@ contract MixinExchangeCore is /// @dev Fills the input order. /// @param order Order struct containing order specifications. /// @param takerSellAmount Desired amount of takerToken to sell. - /// @param signature Proof of signing order by maker. - /// @return Total amount of takerToken filled in trade. + /// @param signature Proof that order has been created by maker. + /// @return Amounts filled and fees paid by maker and taker. function fillOrder( Order memory order, uint256 takerSellAmount, @@ -102,7 +102,7 @@ contract MixinExchangeCore is // Check if order has been cancelled by orderHash if (cancelled[orderHash]) { - LogError(uint8(Errors.ORDER_CANCELLED), orderHash); + emit ExchangeError(uint8(Errors.ORDER_CANCELLED), orderHash); return fillResults; } @@ -119,21 +119,21 @@ contract MixinExchangeCore is // Validate order expiration if (block.timestamp >= order.expirationTimeSeconds) { - LogError(uint8(Errors.ORDER_EXPIRED), orderHash); + emit ExchangeError(uint8(Errors.ORDER_EXPIRED), orderHash); return fillResults; } // Validate order availability uint256 remainingMakerBuyAmount = safeSub(order.makerBuyAmount, filled[orderHash]); if (remainingMakerBuyAmount == 0) { - LogError(uint8(Errors.ORDER_FULLY_FILLED), orderHash); + emit ExchangeError(uint8(Errors.ORDER_FULLY_FILLED), orderHash); return fillResults; } // Validate fill order rounding fillResults.takerAmountSold = min256(takerSellAmount, remainingMakerBuyAmount); if (isRoundingError(fillResults.takerAmountSold, order.makerBuyAmount, order.makerSellAmount)) { - LogError(uint8(Errors.ROUNDING_ERROR_TOO_LARGE), orderHash); + emit ExchangeError(uint8(Errors.ROUNDING_ERROR_TOO_LARGE), orderHash); fillResults.takerAmountSold = 0; return fillResults; } @@ -146,7 +146,7 @@ contract MixinExchangeCore is settleOrder(order, msg.sender, fillResults.takerAmountSold); // Log order - LogFill( + emit Fill( order.makerAddress, msg.sender, order.feeRecipientAddress, @@ -163,7 +163,8 @@ contract MixinExchangeCore is /// @dev After calling, the order can not be filled anymore. /// @param order Order struct containing order specifications. - /// @return True if the order state changed to cancelled. False if the transaction was already cancelled or expired. + /// @return True if the order state changed to cancelled. + /// False if the transaction was already cancelled or expired. function cancelOrder(Order memory order) public returns (bool) @@ -175,18 +176,18 @@ contract MixinExchangeCore is require(order.makerAddress == msg.sender); if (block.timestamp >= order.expirationTimeSeconds) { - LogError(uint8(Errors.ORDER_EXPIRED), orderHash); + emit ExchangeError(uint8(Errors.ORDER_EXPIRED), orderHash); return false; } if (cancelled[orderHash]) { - LogError(uint8(Errors.ORDER_CANCELLED), orderHash); + emit ExchangeError(uint8(Errors.ORDER_CANCELLED), orderHash); return false; } cancelled[orderHash] = true; - LogCancel( + emit Cancel( order.makerAddress, order.feeRecipientAddress, order.makerTokenAddress, @@ -203,7 +204,7 @@ contract MixinExchangeCore is uint256 newMakerEpoch = salt + 1; // makerEpoch is initialized to 0, so to cancelUpTo we need salt+1 require(newMakerEpoch > makerEpoch[msg.sender]); // epoch must be monotonically increasing makerEpoch[msg.sender] = newMakerEpoch; - LogCancelUpTo(msg.sender, newMakerEpoch); + emit CancelUpTo(msg.sender, newMakerEpoch); } /// @dev Checks if rounding error > 0.1%. diff --git a/packages/contracts/src/contracts/current/protocol/Exchange/MixinWrapperFunctions.sol b/packages/contracts/src/contracts/current/protocol/Exchange/MixinWrapperFunctions.sol index 34bd77092..88505ef0e 100644 --- a/packages/contracts/src/contracts/current/protocol/Exchange/MixinWrapperFunctions.sol +++ b/packages/contracts/src/contracts/current/protocol/Exchange/MixinWrapperFunctions.sol @@ -31,8 +31,8 @@ contract MixinWrapperFunctions is { /// @dev Fills the input order. Reverts if exact takerSellAmount not filled. /// @param order Order struct containing order specifications. - /// @param takerSellAmount Desired amount of takerToken to fill. - /// @param signature Maker's signature of the order. + /// @param takerSellAmount Desired amount of takerToken to sell. + /// @param signature Proof that order has been created by maker. function fillOrKillOrder( Order memory order, uint256 takerSellAmount, @@ -52,8 +52,8 @@ contract MixinWrapperFunctions is /// @dev Fills an order with specified parameters and ECDSA signature. /// Returns false if the transaction would otherwise revert. /// @param order Order struct containing order specifications. - /// @param takerSellAmount Desired amount of takerToken to fill. - /// @param signature Maker's signature of the order. + /// @param takerSellAmount Desired amount of takerToken to sell. + /// @param signature Proof that order has been created by maker. /// @return Amounts filled and fees paid by maker and taker. function fillOrderNoThrow( Order memory order, @@ -154,10 +154,10 @@ contract MixinWrapperFunctions is return fillResults; } - /// @dev Synchronously executes multiple calls of fillOrder in a single transaction. - /// @param orders Array of orders. - /// @param takerSellAmounts Array of desired amounts of takerToken to fill in orders. - /// @param signatures Maker's signatures of the orders. + /// @dev Synchronously executes multiple calls of fillOrder. + /// @param orders Array of order specifications. + /// @param takerSellAmounts Array of desired amounts of takerToken to sell in orders. + /// @param signatures Proofs that orders have been created by makers. function batchFillOrders( Order[] memory orders, uint256[] memory takerSellAmounts, @@ -173,10 +173,10 @@ contract MixinWrapperFunctions is } } - /// @dev Synchronously executes multiple calls of fillOrKill in a single transaction. - /// @param orders Array of orders. - /// @param takerSellAmounts Array of desired amounts of takerToken to fill in orders. - /// @param signatures Maker's signatures of the orders. + /// @dev Synchronously executes multiple calls of fillOrKill. + /// @param orders Array of order specifications. + /// @param takerSellAmounts Array of desired amounts of takerToken to sell in orders. + /// @param signatures Proofs that orders have been created by makers. function batchFillOrKillOrders( Order[] memory orders, uint256[] memory takerSellAmounts, @@ -192,10 +192,11 @@ contract MixinWrapperFunctions is } } - /// @dev Fills an order with specified parameters and ECDSA signature. Returns false if the transaction would otherwise revert. - /// @param orders Array of orders. - /// @param takerSellAmounts Array of desired amounts of takerToken to fill in orders. - /// @param signatures Maker's signatures of the orders. + /// @dev Fills an order with specified parameters and ECDSA signature. + /// Returns false if the transaction would otherwise revert. + /// @param orders Array of order specifications. + /// @param takerSellAmounts Array of desired amounts of takerToken to sell in orders. + /// @param signatures Proofs that orders have been created by makers. function batchFillOrdersNoThrow( Order[] memory orders, uint256[] memory takerSellAmounts, @@ -211,11 +212,11 @@ contract MixinWrapperFunctions is } } - /// @dev Synchronously executes multiple fill orders in a single transaction until total amount is sold by taker. - /// @param orders Array of orders. + /// @dev Synchronously executes multiple calls of fillOrder until total amount of takerToken is sold by taker. + /// @param orders Array of order specifications. /// @param takerSellAmount Desired amount of takerToken to sell. - /// @param signatures Maker's signatures of the orders. - /// @return Total amount of tokens sold by taker in orders. + /// @param signatures Proofs that orders have been created by makers. + /// @return Amounts filled and fees paid by makers and taker. function marketSellOrders( Order[] memory orders, uint256 takerSellAmount, @@ -242,12 +243,12 @@ contract MixinWrapperFunctions is return fillResults; } - /// @dev Synchronously executes multiple calls of fillOrderNoThrow in a single transaction until total amount is sold by taker. + /// @dev Synchronously executes multiple calls of fillOrder until total amount of takerToken is sold by taker. /// Returns false if the transaction would otherwise revert. - /// @param orders Array of orders. + /// @param orders Array of order specifications. /// @param takerSellAmount Desired amount of takerToken to sell. - /// @param signatures Maker's signatures of the orders. - /// @return Total amount of tokens sold by taker in orders. + /// @param signatures Proofs that orders have been signed by makers. + /// @return Amounts filled and fees paid by makers and taker. function marketSellOrdersNoThrow( Order[] memory orders, uint256 takerSellAmount, @@ -274,11 +275,11 @@ contract MixinWrapperFunctions is return fillResults; } - /// @dev Synchronously executes multiple fill orders in a single transaction until total amount is bought by taker. - /// @param orders Array of orders. + /// @dev Synchronously executes multiple calls of fillOrder until total amount of makerToken is bought by taker. + /// @param orders Array of order specifications. /// @param takerBuyAmount Desired amount of makerToken to buy. - /// @param signatures Maker's signatures of the orders. - /// @return Total amount of takerTokenFillAmount filled in orders. + /// @param signatures Proofs that orders have been signed by makers. + /// @return Amounts filled and fees paid by makers and taker. function marketBuyOrders( Order[] memory orders, uint256 takerBuyAmount, @@ -312,10 +313,10 @@ contract MixinWrapperFunctions is /// @dev Synchronously executes multiple fill orders in a single transaction until total amount is bought by taker. /// Returns false if the transaction would otherwise revert. - /// @param orders Array of orders. - /// @param takerBuyAmount Desired amount of makerToken to fill. - /// @param signatures Maker's signatures of the orders. - /// @return Total amount of takerTokenFillAmount filled in orders. + /// @param orders Array of order specifications. + /// @param takerBuyAmount Desired amount of makerToken to buy. + /// @param signatures Proofs that orders have been signed by makers. + /// @return Amounts filled and fees paid by makers and taker. function marketBuyOrdersNoThrow( Order[] memory orders, uint256 takerBuyAmount, @@ -348,7 +349,7 @@ contract MixinWrapperFunctions is } /// @dev Synchronously cancels multiple orders in a single transaction. - /// @param orders Array of orders. + /// @param orders Array of order specifications. function batchCancelOrders(Order[] memory orders) public { |